summaryrefslogtreecommitdiff
path: root/lib/VMCore/Metadata.cpp
Commit message (Expand)AuthorAge
...
* Destroy MDNodes gracefully while deleting llvm context.Devang Patel2010-02-18
* Add MDNode::getIfExists(), an efficient way to determine if a value is used b...Victor Hernandez2010-01-26
* Remove MetadataBase class because it is not adding significant value.Devang Patel2010-01-22
* tidy upChris Lattner2010-01-21
* Fix if/else brackets; getFunctionForValue() is to be called for non-metadata ...Victor Hernandez2010-01-20
* Fix the conditions to unambiguously show the logic they represent. This is theChandler Carruth2010-01-20
* Refactor common parts of MDNode::getFunction() and assertLocalFunction() into...Victor Hernandez2010-01-20
* Add comment that MDNode::getFunction() is not to be used by performance-criti...Victor Hernandez2010-01-18
* Simplify MDNode::getFunction() and assertLocalFunction() by avoiding extra Fu...Victor Hernandez2010-01-18
* In debug builds, assert that function-local metadata has only 1 parent functionVictor Hernandez2010-01-14
* Add MDNode::getFunction(), which figures out the metadata's function, if it h...Victor Hernandez2010-01-14
* Introduce Twine::toStringRef, a variant of toVector which avoids the copy if theBenjamin Kramer2010-01-13
* Use Twine, instead of StringRef, for consistency.Devang Patel2010-01-12
* Use ilist_tratis to autoinsert and remove NamedMDNode from MDSymbolTable.Devang Patel2010-01-12
* Suppress a warning on gcc 4.4.Mikhail Glushenkov2010-01-10
* Compute isFunctionLocal in MDNode ctor or via argument in new function getWhe...Victor Hernandez2010-01-10
* Derive NamedMDNode from Value.Devang Patel2010-01-09
* Use separate namespace for named metadata.Devang Patel2010-01-07
* NamedMDNode is a collection MDNodes.Devang Patel2010-01-05
* rename "elements" of metadata to "operands". "Elements" areChris Lattner2009-12-31
* Optimize MDNode to coallocate the operand list immediatelyChris Lattner2009-12-31
* do not bother reuniquing mdnodes whose operands drop to null. DoingChris Lattner2009-12-30
* Final step in the metadata API restructuring: move the Chris Lattner2009-12-29
* privatize another interface.Chris Lattner2009-12-29
* the only call to this function (from clang) has been removed, zap it.Chris Lattner2009-12-29
* remove some unneeded Metadata interfaces.Chris Lattner2009-12-29
* When doing v1->RAUW(v2), don't do anything to metadata. We don't knowChris Lattner2009-12-29
* sink the Instruction::HasMetadata bit into SubclassData.Chris Lattner2009-12-29
* add a layer of accessors around the Value::SubClassData member, and use Chris Lattner2009-12-29
* This is a major cleanup of the instruction metadata interfaces thatChris Lattner2009-12-28
* rename getMDKind -> getMDKindID, make it autoinsert if an MD KindChris Lattner2009-12-28
* rename getHandlerNames to getMDKindNames, simplify its interfaceChris Lattner2009-12-28
* tidy up and delete a dead smallvector.Chris Lattner2009-12-28
* avoid a completely unneeded linear walk.Chris Lattner2009-12-28
* Eliminate two bits of ugliness in MDNode::replaceElement:Chris Lattner2009-12-28
* rearrange some methods, no functionality change.Chris Lattner2009-12-28
* avoid temporary CallbackVH's.Chris Lattner2009-12-28
* Rewrite the function-local validation logic for MDNodes (most of r91708).Chris Lattner2009-12-28
* rename MDNode instance variables to something meaningful.Chris Lattner2009-12-28
* snip one more #include from Metadata.hChris Lattner2009-12-28
* prune some #includesChris Lattner2009-12-28
* change the strange MetadataContext::getMDs function to expose lessChris Lattner2009-12-28
* change NamedMDNode to use a pimpl for its operand list insteadChris Lattner2009-12-28
* move ElementVH out of the MDNode class into the MDNode.cpp file. AmongChris Lattner2009-12-28
* Fix gcc warning.Eli Friedman2009-12-18
* Formalize MDNode's function-localness:Victor Hernandez2009-12-18
* Use different name for argument and fieldVictor Hernandez2009-12-16
* MDNodes that refer to an instruction are local to a function; in that case, e...Victor Hernandez2009-12-16
* Oops! Fix bug introduced in my recent cleanup change. Thanks to Tobias GrosserNick Lewycky2009-11-27
* Fix typo spotted by Gabor Greif.Nick Lewycky2009-11-26