aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore
AgeCommit message (Expand)Author
2009-12-31Remove #include of metadata.h from intrinsicinst.h. The onlyChris Lattner
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-30remove some misleading comments.Chris Lattner
2009-12-29Do not crash when .ll printing metadata that smells like debug info, but isn't.Chris 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-29tidy up debug info comments, use ->isVoidTy() where reasonable.Chris Lattner
2009-12-29When doing v1->RAUW(v2), don't do anything to metadata. We don't knowChris Lattner
2009-12-29sink the Instruction::HasMetadata bit into SubclassData.Chris Lattner
2009-12-29add a layer of accessors around the Value::SubClassData member, and use Chris Lattner
2009-12-28This is a major cleanup of the instruction metadata interfaces thatChris Lattner
2009-12-28add IRBuilder.cpp to cmakeChris Lattner
2009-12-28remove #include of Function.h from IRBuilderChris Lattner
2009-12-28move debug info stuff out of line, allowing two #includesChris Lattner
2009-12-28split code that doesn't need to be templated out of IRBuilder into a newChris Lattner
2009-12-28rename getMDKind -> getMDKindID, make it autoinsert if an MD KindChris Lattner
2009-12-28rename getHandlerNames to getMDKindNames, simplify its interfaceChris Lattner
2009-12-28tidy up and delete a dead smallvector.Chris Lattner
2009-12-28avoid a completely unneeded linear walk.Chris Lattner
2009-12-28Eliminate two bits of ugliness in MDNode::replaceElement:Chris Lattner
2009-12-28rearrange some methods, no functionality change.Chris Lattner
2009-12-28avoid temporary CallbackVH's.Chris Lattner
2009-12-28Rewrite the function-local validation logic for MDNodes (most of r91708).Chris Lattner
2009-12-28rename MDNode instance variables to something meaningful.Chris Lattner
2009-12-28snip one more #include from Metadata.hChris Lattner
2009-12-28prune some #includesChris Lattner
2009-12-28change the strange MetadataContext::getMDs function to expose lessChris Lattner
2009-12-28change NamedMDNode to use a pimpl for its operand list insteadChris Lattner
2009-12-28move ElementVH out of the MDNode class into the MDNode.cpp file. AmongChris Lattner
2009-12-25Avoid assigning to Changed when it won't be used after the return.Bill Wendling
2009-12-19Qualify a bunch of explicit template instantiations to satisfy clang++.John McCall
2009-12-19Put TypesEqual and TypeHasCycleThroughItself in namespace llvm so ADL fromJohn McCall
2009-12-18Fix gcc warning.Eli Friedman
2009-12-18Catch more cases of a pointer being marked garbage twice. This helps whenRafael Espindola
2009-12-18Formalize MDNode's function-localness:Victor Hernandez
2009-12-18Add utility routines for NSW multiply.Dan Gohman
2009-12-18Add utility routines for creating integer negation operators with NSW set.Dan Gohman
2009-12-17This fixes a memory leak in OpaqueType found by Google's internal heapchecker.Jeffrey Yasskin
2009-12-17Aggressively flip compare constant expressions where appropriate; constantEli Friedman
2009-12-16Use different name for argument and fieldVictor Hernandez
2009-12-16MDNodes that refer to an instruction are local to a function; in that case, e...Victor Hernandez
2009-12-15Remove isPod() from DenseMapInfo, splitting it out to its ownChris Lattner
2009-12-14Move several function bodies which are rarely inlined out of line.Dan Gohman
2009-12-11Add utility method for determining whether a function argumentDuncan Sands
2009-12-08Remove useless calls to c_str().Benjamin Kramer
2009-12-08whitespace cleanupChris Lattner