aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Metadata.cpp
Commit message (Expand)AuthorAgeFilesLines
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-1/+2
* Using Inst->setMetadata(..., NULL) should be safe to remove metadata even whenNick Lewycky2011-12-271-2/+4
* Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie2011-12-201-0/+2
* Push StringRefs through the metadata interface.Benjamin Kramer2011-12-061-2/+2
* Land the long talked about "type system rewrite" patch. ThisChris Lattner2011-07-091-0/+1
* PR9214: Convert Metadata API to use ArrayRef.Jay Foad2011-04-211-26/+22
* Add ArrayRef variant.Devang Patel2011-03-041-0/+3
* When an MDNode changes to become identical to another MDNode,Dan Gohman2010-09-281-5/+4
* Scope a varible inside an if statement, to make it clear thatDan Gohman2010-09-281-3/+1
* When a function-local value with function-local metadata uses gets RAUWed with aDan Gohman2010-09-141-0/+18
* Add comments explaining why it's not necessary to include theDan Gohman2010-08-301-1/+6
* Don't include the is-function-local bit in the FoldingSetNodeIDDan Gohman2010-08-241-15/+15
* Verify that a non-uniqued non-temporary MDNode is not deleted viaDan Gohman2010-08-231-1/+3
* Use MDNode::destroy(). Fixes a delete/free mismatch.Benjamin Kramer2010-08-211-3/+1
* Add an assert to MDNode::deleteTemporary check that the node being deletedDan Gohman2010-08-211-1/+3
* Introduce a new temporary MDNode concept. Temporary MDNodes areDan Gohman2010-08-201-0/+23
* Make NamedMDNode not be a subclass of Value, and simplify the interfaceDan Gohman2010-07-211-57/+4
* Disallow null as a named metadata operand.Dan Gohman2010-07-211-1/+1
* Use TrackingVH instead of WeakVH for NamedMDNode's operands, since nodesDan Gohman2010-07-211-7/+7
* Tidy.Dan Gohman2010-07-211-4/+1
* Rename removeAllMetadata to clearMetadataHashEntries and simplifyDan Gohman2010-07-201-8/+6
* Remove setDbgMetadata and getDbgMetadata; their users have beenDan Gohman2010-07-201-4/+0
* Add support for empty metadata nodes: !{}.Dan Gohman2010-07-131-1/+2
* Add fixme.Devang Patel2010-07-061-0/+1
* Fix a problem exposed by my previous commit and noticed by a release-assertsDuncan Sands2010-05-041-11/+3
* Fix a variant of PR6112 found by thinking about it: when doingDuncan Sands2010-05-041-7/+21
* fix PR6112 - When globalopt (or any other pass) does RAUW(@G, %G), Chris Lattner2010-04-281-2/+15
* rename NewDebugLoc -> DebugLoc, prune #includes in DebugLoc.h.Chris Lattner2010-04-021-3/+3
* Switch the representation of the location in instruction fromChris Lattner2010-04-011-6/+26
* add new apis for getting/setting !dbg metadata on Chris Lattner2010-03-311-0/+4
* Fix a major source of compile-time slowness at -O0 -g by optimizingChris Lattner2010-03-301-11/+36
* move some method definitions to files that make sense.Chris Lattner2010-03-301-44/+0
* Include isFunctionLocal while calculating folding node set profile for a MDNode.Devang Patel2010-03-251-13/+14
* Include isFunctionLocal while calculating folding node set provide for a MDNode.Devang Patel2010-03-251-0/+1
* Delete MDNodes when LLVMContext is destroyed. Previous attempts: r97918, r97...Jeffrey Yasskin2010-03-131-8/+8
* Remove duplicated code. No functionality change.Benjamin Kramer2010-03-101-9/+0
* Roll back r97918 again. Just configuring against llvm-gcc wasn't enough to runJeffrey Yasskin2010-03-071-8/+8
* Reapply r97788 to free MDNodes when the LLVMContext is destroyed. ItJeffrey Yasskin2010-03-071-8/+8
* Revert r97788 because it broke test/FrontendC/2010-02-16-DbgVarScope.c.Jeffrey Yasskin2010-03-051-8/+8
* Free MDNodes when the LLVMContext is destroyed. Leak found by Valgrind.Jeffrey Yasskin2010-03-051-8/+8
* Destroy MDNodes gracefully while deleting llvm context.Devang Patel2010-02-181-0/+7
* Add MDNode::getIfExists(), an efficient way to determine if a value is used b...Victor Hernandez2010-01-261-28/+40
* Remove MetadataBase class because it is not adding significant value.Devang Patel2010-01-221-2/+2
* tidy upChris Lattner2010-01-211-9/+16
* Fix if/else brackets; getFunctionForValue() is to be called for non-metadata ...Victor Hernandez2010-01-201-1/+3
* Fix the conditions to unambiguously show the logic they represent. This is theChandler Carruth2010-01-201-3/+3
* Refactor common parts of MDNode::getFunction() and assertLocalFunction() into...Victor Hernandez2010-01-201-33/+23
* Add comment that MDNode::getFunction() is not to be used by performance-criti...Victor Hernandez2010-01-181-1/+2
* Simplify MDNode::getFunction() and assertLocalFunction() by avoiding extra Fu...Victor Hernandez2010-01-181-46/+39
* In debug builds, assert that function-local metadata has only 1 parent functionVictor Hernandez2010-01-141-1/+30