Age | Commit message (Expand) | Author |
2010-02-16 | Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move some | Duncan Sands |
2010-02-16 | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands |
2010-02-15 | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands |
2010-02-12 | Add support for a union type in LLVM IR. Patch by Talin! | Chris Lattner |
2010-02-12 | Add a new function attribute, 'alignstack'. It will indicate (when the backends | Charles Davis |
2010-02-06 | Reintroduce the InlineHint function attribute. | Jakob Stoklund Olesen |
2010-01-27 | Kill ModuleProvider and ghost linkage by inverting the relationship between | Jeffrey Yasskin |
2010-01-24 | make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. | Chris Lattner |
2010-01-22 | Remove MetadataBase class because it is not adding significant value. | Devang Patel |
2010-01-22 | Stop building RTTI information for *most* llvm libraries. Notable | Chris Lattner |
2010-01-21 | Make the parser include the lower level error message in its own error | Dan Gohman |
2010-01-15 | Remove the InlineHint attribute. There are no current or planned | Eric Christopher |
2010-01-11 | Consolidate ConvertGlobalValIDToValue, ConvertGlobalOrMetadataValIDToValue, a... | Victor Hernandez |
2010-01-10 | Compute isFunctionLocal in MDNode ctor or via argument in new function getWhe... | Victor Hernandez |
2010-01-09 | fix PR5983, reject function bodies with no blocks per the grammar. | Chris Lattner |
2010-01-06 | When parsing function-local metadata, create a function-local MDNode | Victor Hernandez |
2010-01-05 | Re-add parsing of function-local metadata; this time with testcase. | Victor Hernandez |
2010-01-05 | Allow null to be an element of NamedMDNode. e.g. !llvm.stuff = !{!0, !1, null} | Devang Patel |
2010-01-05 | Move remaining stuff to the isInteger predicate. | Benjamin Kramer |
2010-01-05 | NamedMDNode is a collection MDNodes. | Devang Patel |
2010-01-05 | Avoid going through the LLVMContext for type equality where it's safe to dere... | Benjamin Kramer |
2009-12-30 | remove some fixme's | Chris Lattner |
2009-12-30 | now that instruction metadata is only parsed in one place, eliminate the | Chris Lattner |
2009-12-30 | reimplement ParseOptionalInfo as ParseOptionalCommaAlign, correctly | Chris Lattner |
2009-12-30 | rename ParseOptionalCustomMetadata -> ParseInstructionMetadata, | Chris Lattner |
2009-12-30 | convert 4 more instructions over. | Chris Lattner |
2009-12-30 | add facilities to start factoring instruction metadata parsing | Chris Lattner |
2009-12-30 | reimplement insertvalue/extractvalue metadata handling to not blindly | Chris Lattner |
2009-12-30 | remove two bogus calls that accepted metadata in the middle of insert/extract... | Chris Lattner |
2009-12-30 | rename NamedOrCustomMD -> MetadataVar to follow conventions of all the rest o... | Chris Lattner |
2009-12-30 | rename lltok::Metadata -> lltok::exclaim. We name tokens | Chris Lattner |
2009-12-30 | rename MetadataCache -> NumberedMetadata to follow the convention | Chris Lattner |
2009-12-30 | rewrite ParseMDNodeVector to follow the normal patter used in the .ll parser. | Chris Lattner |
2009-12-30 | rename ParseMDNode -> ParseMDNodeID, since it parses !42, not !{... } as you'... | Chris Lattner |
2009-12-30 | fix parsing of mdstring values. | Chris Lattner |
2009-12-30 | remove the code added in r90497. It has several major issues and no tests. | Chris Lattner |
2009-12-30 | split t_Metadata into t_MDNode and t_MDString, eliminating some unsafe casting. | Chris Lattner |
2009-12-29 | factor code even more. | Chris Lattner |
2009-12-29 | simplify some code and unbreak the build by not consuming an | Chris Lattner |
2009-12-29 | remove a really wrong parenthesis. | Benjamin Kramer |
2009-12-29 | clean up some really strange code. | Chris Lattner |
2009-12-29 | change ParseMDString and ParseMDNode to take arguments of the right type. | Chris Lattner |
2009-12-29 | switch to TrackingVH instead of WeakVH, since these can never | Chris Lattner |
2009-12-29 | Each instruction is allowed to have *multiple* different | Chris Lattner |
2009-12-29 | Final step in the metadata API restructuring: move the | Chris Lattner |
2009-12-28 | This is a major cleanup of the instruction metadata interfaces that | Chris Lattner |
2009-12-28 | rename getMDKind -> getMDKindID, make it autoinsert if an MD Kind | Chris Lattner |
2009-12-28 | Metadata.h doesn't need to include ValueHandle.h anymore. | Chris Lattner |
2009-12-23 | Change errs() to dbgs(). | David Greene |
2009-12-07 | Add MSP430 interrupt calling conv. No functionality change yet. | Anton Korobeynikov |