aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Metadata.h
AgeCommit message (Expand)Author
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-03Sort the #include lines for the include/... tree with the script.Chandler Carruth
2012-10-11Remove unnecessary classof()'sSean Silva
2012-09-17Mark unimplemented copy constructors and copy assignment operators as LLVM_DE...Craig Topper
2012-06-16Move the Metadata merging methods from GVN and make them public in MDNode.Hal Finkel
2012-04-11Fix pasto.Benjamin Kramer
2012-04-11Cache the hash value of the operands in the MDNode.Benjamin Kramer
2012-04-10The MDString class stored a StringRef to the string which was already in aBill Wendling
2012-02-15Add a way to replace a field inside a metadata node. This can beEric Christopher
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie
2011-12-09Add dump method for debugging.Bill Wendling
2011-06-01Typos.Chad Rosier
2011-04-21PR9214: Convert Metadata API to use ArrayRef.Jay Foad
2011-03-04Add ArrayRef variant.Devang Patel
2010-09-14After Dan's recent commit this is no longer true.Devang Patel
2010-08-24MDNode, MDString, and NamedMDNode are not meant to be subclassed;Dan Gohman
2010-08-20Introduce a new temporary MDNode concept. Temporary MDNodes areDan Gohman
2010-08-20Reword NamedMDNode's comment.Dan Gohman
2010-07-21Make NamedMDNode not be a subclass of Value, and simplify the interfaceDan Gohman
2010-07-21Disallow null as a named metadata operand.Dan Gohman
2010-07-21Use TrackingVH instead of WeakVH for NamedMDNode's operands, since nodesDan Gohman
2010-04-29Fix comment typo.Duncan Sands
2010-03-13Delete MDNodes when LLVMContext is destroyed. Previous attempts: r97918, r97...Jeffrey Yasskin
2010-03-10Remove duplicated code. No functionality change.Benjamin Kramer
2010-03-07Roll back r97918 again. Just configuring against llvm-gcc wasn't enough to runJeffrey Yasskin
2010-03-07Reapply r97788 to free MDNodes when the LLVMContext is destroyed. ItJeffrey Yasskin
2010-03-05Revert r97788 because it broke test/FrontendC/2010-02-16-DbgVarScope.c.Jeffrey Yasskin
2010-03-05Free MDNodes when the LLVMContext is destroyed. Leak found by Valgrind.Jeffrey Yasskin
2010-02-18Fix comments.Devang Patel
2010-02-18Destroy MDNodes gracefully while deleting llvm context.Devang Patel
2010-01-26Add MDNode::getIfExists(), an efficient way to determine if a value is used b...Victor Hernandez
2010-01-22Remove MetadataBase class because it is not adding significant value.Devang Patel
2010-01-20Refactor common parts of MDNode::getFunction() and assertLocalFunction() into...Victor Hernandez
2010-01-18Add comment that MDNode::getFunction() is not to be used by performance-criti...Victor Hernandez
2010-01-14Add MDNode::getFunction(), which figures out the metadata's function, if it h...Victor Hernandez
2010-01-12use consistent tag kinds for ilist_traitsChris Lattner
2010-01-12Use Twine, instead of StringRef, for consistency.Devang Patel
2010-01-12Use ilist_tratis to autoinsert and remove NamedMDNode from MDSymbolTable.Devang Patel
2010-01-10Compute isFunctionLocal in MDNode ctor or via argument in new function getWhe...Victor Hernandez
2010-01-09Derive NamedMDNode from Value.Devang Patel
2010-01-07Use separate namespace for named metadata.Devang Patel
2010-01-05NamedMDNode is a collection MDNodes.Devang Patel
2009-12-31rename "elements" of metadata to "operands". "Elements" areChris Lattner
2009-12-31Optimize MDNode to coallocate the operand list immediatelyChris Lattner
2009-12-30do not bother reuniquing mdnodes whose operands drop to null. DoingChris Lattner
2009-12-29Final step in the metadata API restructuring: move the Chris Lattner
2009-12-29privatize another interface.Chris Lattner
2009-12-29the only call to this function (from clang) has been removed, zap it.Chris Lattner
2009-12-29remove some unneeded Metadata interfaces.Chris Lattner
2009-12-29When doing v1->RAUW(v2), don't do anything to metadata. We don't knowChris Lattner