Add unittest for new CanReplace flag on MDNodes
[oota-llvm.git] / unittests / IR / MetadataTest.cpp
2016-01-06 Teresa JohnsonAdd unittest for new CanReplace flag on MDNodes
2015-12-10 Amjad AboudMacro debug info support in LLVM IR
2015-12-07 Teresa Johnson[ThinLTO] Support cloning of temporary DILocation metadata
2015-11-05 Peter CollingbourneDI: Reverse direction of subprogram -> function edge.
2015-09-22 Adrian PrantlAdd a unit test for r248341.
2015-08-28 Duncan P. N. Exon... DI: Set DILexicalBlock columns >= 65536 to 0/unknown
2015-08-28 Duncan P. N. Exon... DI: Add Function::getSubprogram()
2015-08-03 Duncan P. N. Exon... DI: Disallow uniquable DICompileUnits
2015-07-31 Duncan P. N. Exon... DI: Remove DW_TAG_arg_variable and DW_TAG_auto_variable
2015-07-24 Duncan P. N. Exon... DI: Fix unit tests after r243160
2015-06-29 Adrian PrantlAdd a DIModule metadata node to the IR.
2015-06-27 Duncan P. N. Exon... IR: Expose ModuleSlotTracker in Value::print()
2015-06-15 Adrian PrantlDebug Info IR: Switch DIObjCProperty to use DITypeRef.
2015-05-21 Adrian PrantlIR / debug info: Add a DWOId field to DICompileUnit,
2015-05-13 Diego NovilloAdd function entry count metadata.
2015-04-29 Duncan P. N. Exon... IR: Give 'DI' prefix to debug info metadata
2015-04-28 Duncan P. N. Exon... DebugInfo: Support up to 2^16 arguments in a subprogram
2015-04-24 Duncan P. N. Exon... Verifier: Function metadata attachments require a body
2015-04-24 Duncan P. N. Exon... IR: Add Function metadata attachments
2015-04-16 Duncan P. N. Exon... DebugInfo: Gut DIDescriptor
2015-04-15 Duncan P. N. Exon... DebugInfo: Remove 'inlinedAt:' field from MDLocalVariable
2015-04-11 Duncan P. N. Exon... DebugInfo: Make MDSubprogram::getFunction() return...
2015-04-07 Duncan P. N. Exon... IR: Remove MDTupleTypedArrayWrapper::operator MDTuple*()
2015-04-07 Duncan P. N. Exon... IR: Rename MDSubrange::getLo() to getLowerBound()
2015-04-06 Duncan P. N. Exon... DebugInfo: Use MDTypeRef throughout the hierarchy
2015-03-31 Duncan P. N. Exon... IR: Rename replaceWithUniqued() tests from r233751
2015-03-31 Duncan P. N. Exon... IR: Enable uniquing callbacks during MDNode::replaceWit...
2015-03-30 Duncan P. N. Exon... Verifier: Add operand checks for remaining debug info
2015-03-30 Duncan P. N. Exon... Verifier: Add operand checks for MDLexicalBlock
2015-03-30 Duncan P. N. Exon... Verifier: Check operands of MDSubprogram nodes
2015-03-27 Duncan P. N. Exon... Verifier: Check operands of MDType subclasses and MDCom...
2015-03-27 Duncan P. N. Exon... Verifier: Check fields of MDVariable subclasses
2015-03-26 Duncan P. N. Exon... Verifier: Check accessors of MDLocation
2015-03-16 Duncan P. N. Exon... AsmWriter: Handle broken metadata nodes
2015-03-14 Duncan P. N. Exon... IR: Make Metadata::print() reliable and useful
2015-03-03 Duncan P. N. Exon... IR: Add missing API to specialized metadata nodes
2015-02-28 Duncan P. N. Exon... IR: Specialize MDScope::getFile() for MDFile
2015-02-25 Duncan P. N. Exon... IR: Drop newline from AssemblyWriter::printMDNodeBody()
2015-02-19 Duncan P. N. Exon... IR: Fix MDType fields from unsigned to uint64_t
2015-02-19 Duncan P. N. Exon... IR: Add missing null operand to MDSubroutineType
2015-02-19 Duncan P. N. Exon... IR: Drop scope from MDTemplateParameter
2015-02-18 Duncan P. N. Exon... IR: Allow MDSubrange to have 'count: -1'
2015-02-18 Duncan P. N. Exon... IR: Add MDCompositeTypeBase::replace*()
2015-02-18 Duncan P. N. Exon... IR: Add MDCompileUnit::replace*()
2015-02-18 Duncan P. N. Exon... IR: Add MDSubprogram::replaceFunction()
2015-02-17 Duncan P. N. Exon... IR: Add missing clone() overloads
2015-02-13 Duncan P. N. Exon... IR: Add MDExpression::ExprOperand
2015-02-10 Duncan P. N. Exon... IR: Add MDNode::replaceWithPermanent()
2015-02-10 Duncan P. N. Exon... IR: Remove unnecessary fields from MDTemplateParameter
2015-02-10 Duncan P. N. Exon... IR: Add accessors to MDExpression
2015-02-10 Duncan P. N. Exon... IR: Add specialized debug info metadata nodes
2015-02-06 Duncan P. N. Exon... IR: Allow 32-bits for lines in debug location
2015-02-02 Duncan P. N. Exon... IR: Split out DebugInfoMetadata.h, NFC
2015-02-02 Duncan P. N. Exon... Fix some file headers, NFC
2015-01-22 Duncan P. N. Exon... IR: Change GenericDwarfNode::getHeader() to StringRef
2015-01-22 Duncan P. N. Exon... IR: DwarfNode => DebugNode, NFC
2015-01-22 Duncan P. N. Exon... IR: Update references to temporaries before deleting
2015-01-20 Duncan P. N. Exon... IR: Canonicalize GenericDwarfNode empty headers to...
2015-01-20 Duncan P. N. Exon... IR: Introduce GenericDwarfNode
2015-01-19 Duncan P. N. Exon... IR: Allow temporary nodes to become uniqued or distinct
2015-01-19 Duncan P. N. Exon... IR: Return unique_ptr from MDNode::getTemporary()
2015-01-19 Duncan P. N. Exon... IR: Add MDLocation::getTemporary()
2015-01-19 Duncan P. N. Exon... IR: Remove MDNodeFwdDecl
2015-01-19 Duncan P. N. Exon... IR: Store RAUW support and Context in the same pointer...
2015-01-19 Duncan P. N. Exon... IR: Add isUniqued() and isTemporary()
2015-01-16 Duncan P. N. Exon... IR: Allow 16-bits for column info
2015-01-14 Duncan P. N. Exon... IR: Fix a use-after-free in RAUW
2015-01-14 Chandler Carruth[cleanup] Re-sort all the #include lines in LLVM using
2015-01-13 Duncan P. N. Exon... IR: Add MDLocation class
2015-01-13 NAKAMURA TakumiIR/MetadataTest.cpp: Appease msc17 to avoid initializer...
2015-01-13 Duncan P. N. Exon... IR: Use unique_ptr, NFC
2015-01-13 Duncan P. N. Exon... IR: Remove an invalid assertion when replacing resolved...
2015-01-13 Duncan P. N. Exon... Revert "IR: Fix an inverted assertion when replacing...
2015-01-13 Duncan P. N. Exon... IR: Fix an inverted assertion when replacing resolved...
2015-01-12 Duncan P. N. Exon... IR: Fix unit test memory leak reported by ASan
2015-01-12 Duncan P. N. Exon... IR: Make MDNodeFwdDecl destructor public
2015-01-12 Duncan P. N. Exon... IR: Add test for handleChangedOperand() recursion
2015-01-12 Duncan P. N. Exon... IR: Make temporary nodes distinct
2015-01-07 Duncan P. N. Exon... IR: Add MDNode::getDistinct()
2015-01-07 Duncan P. N. Exon... IR: Add MDNode::isDistinct()
2015-01-05 Duncan P. N. Exon... IR: Don't drop MDNode uniquing on null operands
2014-12-16 Duncan P. N. Exon... Remove 'metadata' from comments
2014-12-16 Duncan P. N. Exon... IR: Stop printing 'metadata' in Metadata::print()
2014-12-16 Duncan P. N. Exon... IR: Make MDNode::dump() useful by adding addresses
2014-12-12 Duncan P. N. Exon... IR: Don't track nullptr on metadata RAUW
2014-12-09 Duncan P. N. Exon... IR: Split Metadata from Value
2014-12-07 Duncan P. N. Exon... IR: Drop uniquing for self-referencing MDNodes
2014-12-07 Duncan P. N. Exon... IR: Remove reference to ENABLE_MDNODE_UNIQUING
2014-06-08 Craig Topper[C++11] Use 'nullptr'.
2014-03-04 Chandler Carruth[Modules] Move ValueHandle into the IR library where...
2013-01-07 Chandler CarruthRename the VMCore unittest tree to IR. Somehow was...