Make NamedMDNode not be a subclass of Value, and simplify the interface
[oota-llvm.git] / lib / VMCore / Metadata.cpp
2010-07-21 Dan GohmanMake NamedMDNode not be a subclass of Value, and simpli...
2010-07-21 Dan GohmanDisallow null as a named metadata operand.
2010-07-21 Dan GohmanUse TrackingVH instead of WeakVH for NamedMDNode's...
2010-07-21 Dan GohmanTidy.
2010-07-20 Dan GohmanRename removeAllMetadata to clearMetadataHashEntries...
2010-07-20 Dan GohmanRemove setDbgMetadata and getDbgMetadata; their users...
2010-07-13 Dan GohmanAdd support for empty metadata nodes: !{}.
2010-07-06 Devang PatelAdd fixme.
2010-05-04 Duncan SandsFix a problem exposed by my previous commit and noticed...
2010-05-04 Duncan SandsFix a variant of PR6112 found by thinking about it...
2010-04-28 Chris Lattnerfix PR6112 - When globalopt (or any other pass) does...
2010-04-02 Chris Lattnerrename NewDebugLoc -> DebugLoc, prune #includes in...
2010-04-01 Chris LattnerSwitch the representation of the location in instructio...
2010-03-31 Chris Lattneradd new apis for getting/setting !dbg metadata on
2010-03-30 Chris LattnerFix a major source of compile-time slowness at -O0...
2010-03-30 Chris Lattnermove some method definitions to files that make sense.
2010-03-25 Devang PatelInclude isFunctionLocal while calculating folding node...
2010-03-25 Devang PatelInclude isFunctionLocal while calculating folding node...
2010-03-13 Jeffrey YasskinDelete MDNodes when LLVMContext is destroyed. Previous...
2010-03-10 Benjamin KramerRemove duplicated code. No functionality change.
2010-03-07 Jeffrey YasskinRoll back r97918 again. Just configuring against llvm...
2010-03-07 Jeffrey YasskinReapply r97788 to free MDNodes when the LLVMContext...
2010-03-05 Jeffrey YasskinRevert r97788 because it broke test/FrontendC/2010...
2010-03-05 Jeffrey YasskinFree MDNodes when the LLVMContext is destroyed. Leak...
2010-02-18 Devang PatelDestroy MDNodes gracefully while deleting llvm context.
2010-01-26 Victor HernandezAdd MDNode::getIfExists(), an efficient way to determin...
2010-01-22 Devang PatelRemove MetadataBase class because it is not adding...
2010-01-21 Chris Lattnertidy up
2010-01-20 Victor HernandezFix if/else brackets; getFunctionForValue() is to be...
2010-01-20 Chandler CarruthFix the conditions to unambiguously show the logic...
2010-01-20 Victor HernandezRefactor common parts of MDNode::getFunction() and...
2010-01-18 Victor HernandezAdd comment that MDNode::getFunction() is not to be...
2010-01-18 Victor HernandezSimplify MDNode::getFunction() and assertLocalFunction...
2010-01-14 Victor HernandezIn debug builds, assert that function-local metadata...
2010-01-14 Victor HernandezAdd MDNode::getFunction(), which figures out the metada...
2010-01-13 Benjamin KramerIntroduce Twine::toStringRef, a variant of toVector...
2010-01-12 Devang PatelUse Twine, instead of StringRef, for consistency.
2010-01-12 Devang PatelUse ilist_tratis to autoinsert and remove NamedMDNode...
2010-01-10 Mikhail GlushenkovSuppress a warning on gcc 4.4.
2010-01-10 Victor HernandezCompute isFunctionLocal in MDNode ctor or via argument...
2010-01-09 Devang PatelDerive NamedMDNode from Value.
2010-01-07 Devang PatelUse separate namespace for named metadata.
2010-01-05 Devang PatelNamedMDNode is a collection MDNodes.
2009-12-31 Chris Lattnerrename "elements" of metadata to "operands". "Elements...
2009-12-31 Chris LattnerOptimize MDNode to coallocate the operand list immediately
2009-12-30 Chris Lattnerdo not bother reuniquing mdnodes whose operands drop...
2009-12-29 Chris LattnerFinal step in the metadata API restructuring: move the
2009-12-29 Chris Lattnerprivatize another interface.
2009-12-29 Chris Lattnerthe only call to this function (from clang) has been...
2009-12-29 Chris Lattnerremove some unneeded Metadata interfaces.
2009-12-29 Chris LattnerWhen doing v1->RAUW(v2), don't do anything to metadata...
2009-12-29 Chris Lattnersink the Instruction::HasMetadata bit into SubclassData.
2009-12-29 Chris Lattneradd a layer of accessors around the Value::SubClassData...
2009-12-28 Chris LattnerThis is a major cleanup of the instruction metadata...
2009-12-28 Chris Lattnerrename getMDKind -> getMDKindID, make it autoinsert...
2009-12-28 Chris Lattnerrename getHandlerNames to getMDKindNames, simplify...
2009-12-28 Chris Lattnertidy up and delete a dead smallvector.
2009-12-28 Chris Lattneravoid a completely unneeded linear walk.
2009-12-28 Chris LattnerEliminate two bits of ugliness in MDNode::replaceElement:
2009-12-28 Chris Lattnerrearrange some methods, no functionality change.
2009-12-28 Chris Lattneravoid temporary CallbackVH's.
2009-12-28 Chris LattnerRewrite the function-local validation logic for MDNodes...
2009-12-28 Chris Lattnerrename MDNode instance variables to something meaningful.
2009-12-28 Chris Lattnersnip one more #include from Metadata.h
2009-12-28 Chris Lattnerprune some #includes
2009-12-28 Chris Lattnerchange the strange MetadataContext::getMDs function...
2009-12-28 Chris Lattnerchange NamedMDNode to use a pimpl for its operand list...
2009-12-28 Chris Lattnermove ElementVH out of the MDNode class into the MDNode...
2009-12-18 Eli FriedmanFix gcc warning.
2009-12-18 Victor HernandezFormalize MDNode's function-localness:
2009-12-16 Victor HernandezUse different name for argument and field
2009-12-16 Victor HernandezMDNodes that refer to an instruction are local to a...
2009-11-27 Nick LewyckyOops! Fix bug introduced in my recent cleanup change...
2009-11-26 Nick LewyckyFix typo spotted by Gabor Greif.
2009-11-26 Nick LewyckyClean up file, no functionality change.
2009-11-12 Devang PatelDo not use StringRef in DebugInfo interface.
2009-11-10 Jeffrey YasskinFix DenseMap iterator constness.
2009-10-26 Devang PatelDo not use expensive sort().
2009-10-22 Devang PatelHide MetadataContext implementation details.
2009-10-22 Devang PatelFix getMDs() interface such that it does not expose...
2009-10-22 Devang PatelUsing TrackingVH instead of WeakVH or WeakMetadataVH.
2009-10-22 Devang PatelSort handler names to ensure deterministic behavior.
2009-10-22 Devang PatelFix getHandlerNames() interface. Now it populate clinet...
2009-10-22 Devang PatelUse StringRef to construct MDString.
2009-10-22 Devang PatelRemove meaningless const.
2009-10-21 Devang PatelDerive metadata hierarchy from Value instead of User.
2009-10-21 Benjamin KramerFix thinko noticed by Chris.
2009-10-21 Benjamin KramerRemove pointless return; at end of function.
2009-10-21 Benjamin KramerSimplify code. No intended functionality change.
2009-10-21 Devang PatelUse StringRef.
2009-10-21 Devang PatelDo not use SmallVector to store MDNode elements.
2009-10-21 Devang PatelIncorporate various suggestions Chris gave during metad...
2009-10-20 Devang PatelCosmetic changes.
2009-10-19 Owen AndersonBanish ConstantsLock. It's serving no purpose other...
2009-10-19 Chris Lattnervarious cleanups.
2009-10-14 Devang PatelAdd copyMD to copy metadata from one instruction to...
2009-10-13 Devang PatelCopy metadata when value is RAUW'd. It is debatable...
2009-09-29 Devang PatelLookup handler name only when assertions are enabled.
2009-09-29 Devang PatelAdd removeMD().
2009-09-29 Devang PatelOnly one custom meadata of each kind can be attached...
next