summaryrefslogtreecommitdiff
path: root/lib/VMCore/Metadata.cpp
Commit message (Expand)AuthorAge
* When an MDNode changes to become identical to another MDNode,Dan Gohman2010-09-28
* Scope a varible inside an if statement, to make it clear thatDan Gohman2010-09-28
* When a function-local value with function-local metadata uses gets RAUWed with aDan Gohman2010-09-14
* Add comments explaining why it's not necessary to include theDan Gohman2010-08-30
* Don't include the is-function-local bit in the FoldingSetNodeIDDan Gohman2010-08-24
* Verify that a non-uniqued non-temporary MDNode is not deleted viaDan Gohman2010-08-23
* Use MDNode::destroy(). Fixes a delete/free mismatch.Benjamin Kramer2010-08-21
* Add an assert to MDNode::deleteTemporary check that the node being deletedDan Gohman2010-08-21
* Introduce a new temporary MDNode concept. Temporary MDNodes areDan Gohman2010-08-20
* Make NamedMDNode not be a subclass of Value, and simplify the interfaceDan Gohman2010-07-21
* Disallow null as a named metadata operand.Dan Gohman2010-07-21
* Use TrackingVH instead of WeakVH for NamedMDNode's operands, since nodesDan Gohman2010-07-21
* Tidy.Dan Gohman2010-07-21
* Rename removeAllMetadata to clearMetadataHashEntries and simplifyDan Gohman2010-07-20
* Remove setDbgMetadata and getDbgMetadata; their users have beenDan Gohman2010-07-20
* Add support for empty metadata nodes: !{}.Dan Gohman2010-07-13
* Add fixme.Devang Patel2010-07-06
* Fix a problem exposed by my previous commit and noticed by a release-assertsDuncan Sands2010-05-04
* Fix a variant of PR6112 found by thinking about it: when doingDuncan Sands2010-05-04
* fix PR6112 - When globalopt (or any other pass) does RAUW(@G, %G), Chris Lattner2010-04-28
* rename NewDebugLoc -> DebugLoc, prune #includes in DebugLoc.h.Chris Lattner2010-04-02
* Switch the representation of the location in instruction fromChris Lattner2010-04-01
* add new apis for getting/setting !dbg metadata on Chris Lattner2010-03-31
* Fix a major source of compile-time slowness at -O0 -g by optimizingChris Lattner2010-03-30
* move some method definitions to files that make sense.Chris Lattner2010-03-30
* Include isFunctionLocal while calculating folding node set profile for a MDNode.Devang Patel2010-03-25
* Include isFunctionLocal while calculating folding node set provide for a MDNode.Devang Patel2010-03-25
* Delete MDNodes when LLVMContext is destroyed. Previous attempts: r97918, r97...Jeffrey Yasskin2010-03-13
* Remove duplicated code. No functionality change.Benjamin Kramer2010-03-10
* Roll back r97918 again. Just configuring against llvm-gcc wasn't enough to runJeffrey Yasskin2010-03-07
* Reapply r97788 to free MDNodes when the LLVMContext is destroyed. ItJeffrey Yasskin2010-03-07
* Revert r97788 because it broke test/FrontendC/2010-02-16-DbgVarScope.c.Jeffrey Yasskin2010-03-05
* Free MDNodes when the LLVMContext is destroyed. Leak found by Valgrind.Jeffrey Yasskin2010-03-05
* 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