| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix printing of function-local metadata in AsmWriter | Victor Hernandez | 2010-01-14 | 1 | -2/+3 |
* | Further progration of metadata operands. The | Dale Johannesen | 2010-01-13 | 1 | -0/+5 |
* | Allow null to be an element of NamedMDNode. e.g. !llvm.stuff = !{!0, !1, null} | Devang Patel | 2010-01-05 | 1 | -6/+5 |
* | Convert a ton of simple integer type equality tests to the new predicate. | Benjamin Kramer | 2010-01-05 | 1 | -1/+1 |
* | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -5/+6 |
* | fix refactoro | Chris Lattner | 2009-12-31 | 1 | -1/+1 |
* | use early exits to reduce indentation. | Chris Lattner | 2009-12-31 | 1 | -15/+16 |
* | eliminate another copy of the mdnode printing logic, simplify the | Chris Lattner | 2009-12-31 | 1 | -32/+23 |
* | random tidying for MDNode printing. | Chris Lattner | 2009-12-31 | 1 | -10/+7 |
* | eliminate a bunch of useless forwarding functions with one caller. | Chris Lattner | 2009-12-31 | 1 | -21/+11 |
* | make mdnMap type safe, rename accessors for consistency with the rest of llvm. | Chris Lattner | 2009-12-31 | 1 | -12/+13 |
* | metadata can't be a global var initializer. | Chris Lattner | 2009-12-31 | 1 | -4/+0 |
* | simplify mdnode printing logic. Now N->dump() only | Chris Lattner | 2009-12-31 | 1 | -127/+105 |
* | unify two copies of the NamedMDNode printing code. | Chris Lattner | 2009-12-31 | 1 | -25/+22 |
* | fix printing of function-local metadata to print all the operands of the | Chris Lattner | 2009-12-31 | 1 | -2/+2 |
* | simplify printing of mdstring and Argument. | Chris Lattner | 2009-12-31 | 1 | -12/+5 |
* | simplify asmprinting of NamedMDNode | Chris Lattner | 2009-12-31 | 1 | -34/+4 |
* | rename "elements" of metadata to "operands". "Elements" are | Chris Lattner | 2009-12-31 | 1 | -19/+19 |
* | Do not crash when .ll printing metadata that smells like debug info, but isn't. | Chris Lattner | 2009-12-29 | 1 | -3/+2 |
* | Final step in the metadata API restructuring: move the | Chris Lattner | 2009-12-29 | 1 | -2/+1 |
* | tidy up debug info comments, use ->isVoidTy() where reasonable. | Chris Lattner | 2009-12-29 | 1 | -25/+25 |
* | This is a major cleanup of the instruction metadata interfaces that | Chris Lattner | 2009-12-28 | 1 | -24/+19 |
* | rename getHandlerNames to getMDKindNames, simplify its interface | Chris Lattner | 2009-12-28 | 1 | -14/+6 |
* | change the strange MetadataContext::getMDs function to expose less | Chris Lattner | 2009-12-28 | 1 | -2/+2 |
* | Formalize MDNode's function-localness: | Victor Hernandez | 2009-12-18 | 1 | -5/+4 |
* | Add MSP430 interrupt calling conv. No functionality change yet. | Anton Korobeynikov | 2009-12-07 | 1 | -0/+3 |
* | Avoid creating a metadata slot for all metadata that contains an instruction | Victor Hernandez | 2009-12-04 | 1 | -6/+6 |
* | Fix crasher when N->getElement(n) is NULL | Victor Hernandez | 2009-12-04 | 1 | -1/+1 |
* | Teach AsmWriter to write inline (not via a global metadata slot) metadata tha... | Victor Hernandez | 2009-12-04 | 1 | -1/+25 |
* | Special case FixedStackPseudoSourceValueVal as well. Do we really need to dif... | Evan Cheng | 2009-11-16 | 1 | -1/+2 |
* | Remove extraneous commit. | Eric Christopher | 2009-11-13 | 1 | -5/+0 |
* | Print out something, even if it's non-parseable later when we've | Eric Christopher | 2009-11-13 | 1 | -2/+7 |
* | Revert 85678/85680. The decision is to stay with the current form of | Chris Lattner | 2009-11-01 | 1 | -4/+1 |
* | Make blockaddress(@func, null) be valid, and make 'deleting a basic | Chris Lattner | 2009-10-31 | 1 | -1/+4 |
* | Simplify this code and avoid an extra space character in the output. | Dan Gohman | 2009-10-30 | 1 | -2/+1 |
* | asmprinter support for BlockAddress. | Chris Lattner | 2009-10-28 | 1 | -0/+9 |
* | rename indbr -> indirectbr to appease the residents of #llvm. | Chris Lattner | 2009-10-28 | 1 | -2/+2 |
* | add enough support for indirect branch for the feature test to pass | Chris Lattner | 2009-10-27 | 1 | -1/+14 |
* | Type.h doesn't need to #include LLVMContext.h | Chris Lattner | 2009-10-27 | 1 | -0/+1 |
* | Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su... | Victor Hernandez | 2009-10-23 | 1 | -1/+1 |
* | Fix getMDs() interface such that it does not expose implementation details. | Devang Patel | 2009-10-22 | 1 | -11/+14 |
* | Using TrackingVH instead of WeakVH or WeakMetadataVH. | Devang Patel | 2009-10-22 | 1 | -5/+3 |
* | Fix getHandlerNames() interface. Now it populate clinet supplied small vector... | Devang Patel | 2009-10-22 | 1 | -6/+7 |
* | Rename msasm to alignstack per review. | Dale Johannesen | 2009-10-21 | 1 | -2/+2 |
* | Do not use SmallVector to store MDNode elements. | Devang Patel | 2009-10-21 | 1 | -9/+8 |
* | Add an "msasm" flag to inline asm as suggested in PR 5125. | Dale Johannesen | 2009-10-13 | 1 | -0/+2 |
* | Do not assume that the module is set. | Devang Patel | 2009-10-07 | 1 | -15/+18 |
* | Check for null MDNode element while printing comment. | Devang Patel | 2009-09-30 | 1 | -1/+1 |
* | Print tag name for MDNodes that are used to encode debug info. | Devang Patel | 2009-09-30 | 1 | -1/+29 |
* | Parse custom metadata attached with an instruction. | Devang Patel | 2009-09-29 | 1 | -1/+1 |