IR: Expose ModuleSlotTracker in Value::print()
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Sat, 27 Jun 2015 00:38:26 +0000 (00:38 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Sat, 27 Jun 2015 00:38:26 +0000 (00:38 +0000)
commit2a5fda92b4ed2ddbaa03e1e6bb2107d8fe7f2cea
tree64bdab92b42ee5cb49d82c9235bdc59d826f9f87
parente92934e0781bd87151abe20afe3a9dbbb31818b8
IR: Expose ModuleSlotTracker in Value::print()

Allow callers of `Value::print()` and `Metadata::print()` to pass in a
`ModuleSlotTracker`.  This allows them to pay only once for calculating
module-level slots (such as Metadata).

This is related to PR23865, where there was a huge cost for
`MachineFunction::print()`.  Although I don't have a *particular* user
in mind for this new code, I have hit big slowdowns before when running
`opt -debug`, and I think this will be useful.  Going forward, if
someone hits a big slowdown with `print()` statements, they can create a
`ModuleSlotTracker` and send it through.  Similarly, adding support to
`Value::dump()` and `Metadata::dump()` should be trivial.

I added unit tests to be sure the `print()` functions actually behave
the same way with and without the slot tracker.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240867 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/IR/Metadata.h
include/llvm/IR/Value.h
lib/IR/AsmWriter.cpp
unittests/IR/MetadataTest.cpp
unittests/IR/ValueTest.cpp