| Commit message (Expand) | Author | Age | Files | Lines |
* | turn an assert into a proper check, fixing crash on invalid here: | Chris Lattner | 2010-04-10 | 1 | -2/+1 |
* | fix a crash on invalid metadata, e.g.: call i32 @foo(), XXXX | Chris Lattner | 2010-04-07 | 2 | -3/+5 |
* | enhance SMDiagnostic to also maintain a pointer to the SourceMgr. | Chris Lattner | 2010-04-06 | 1 | -2/+2 |
* | Give llvm::SourceMgr the ability to have a client-specified | Chris Lattner | 2010-04-06 | 1 | -1/+1 |
* | stringref-ize the MemoryBuffer::get apis. This requires | Chris Lattner | 2010-04-05 | 1 | -1/+1 |
* | include header. | Chris Lattner | 2010-04-01 | 1 | -0/+1 |
* | rewrite handling of forward ref'd instruction metadata | Chris Lattner | 2010-04-01 | 2 | -9/+60 |
* | no really, we don't need to copy strings around in the accessor. | Chris Lattner | 2010-04-01 | 1 | -1/+1 |
* | eliminate a temporary smallvector | Chris Lattner | 2010-04-01 | 2 | -13/+5 |
* | Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move some | Duncan Sands | 2010-02-16 | 1 | -7/+7 |
* | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands | 2010-02-16 | 1 | -17/+17 |
* | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands | 2010-02-15 | 1 | -18/+18 |
* | Add support for a union type in LLVM IR. Patch by Talin! | Chris Lattner | 2010-02-12 | 4 | -9/+77 |
* | Add a new function attribute, 'alignstack'. It will indicate (when the backends | Charles Davis | 2010-02-12 | 2 | -0/+29 |
* | Reintroduce the InlineHint function attribute. | Jakob Stoklund Olesen | 2010-02-06 | 3 | -0/+3 |
* | Kill ModuleProvider and ghost linkage by inverting the relationship between | Jeffrey Yasskin | 2010-01-27 | 1 | -1/+0 |
* | make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. | Chris Lattner | 2010-01-24 | 1 | -1/+0 |
* | Remove MetadataBase class because it is not adding significant value. | Devang Patel | 2010-01-22 | 1 | -1/+0 |
* | Stop building RTTI information for *most* llvm libraries. Notable | Chris Lattner | 2010-01-22 | 1 | -0/+1 |
* | Make the parser include the lower level error message in its own error | Dan Gohman | 2010-01-21 | 1 | -1/+2 |
* | Remove the InlineHint attribute. There are no current or planned | Eric Christopher | 2010-01-15 | 3 | -3/+0 |
* | Consolidate ConvertGlobalValIDToValue, ConvertGlobalOrMetadataValIDToValue, a... | Victor Hernandez | 2010-01-11 | 2 | -111/+74 |
* | Compute isFunctionLocal in MDNode ctor or via argument in new function getWhe... | Victor Hernandez | 2010-01-10 | 2 | -18/+17 |
* | fix PR5983, reject function bodies with no blocks per the grammar. | Chris Lattner | 2010-01-09 | 1 | -0/+4 |
* | When parsing function-local metadata, create a function-local MDNode | Victor Hernandez | 2010-01-06 | 2 | -10/+16 |
* | Re-add parsing of function-local metadata; this time with testcase. | Victor Hernandez | 2010-01-05 | 2 | -21/+28 |
* | Allow null to be an element of NamedMDNode. e.g. !llvm.stuff = !{!0, !1, null} | Devang Patel | 2010-01-05 | 1 | -0/+6 |
* | Move remaining stuff to the isInteger predicate. | Benjamin Kramer | 2010-01-05 | 1 | -1/+1 |
* | NamedMDNode is a collection MDNodes. | Devang Patel | 2010-01-05 | 1 | -2/+1 |
* | Avoid going through the LLVMContext for type equality where it's safe to dere... | Benjamin Kramer | 2010-01-05 | 1 | -6/+3 |
* | remove some fixme's | Chris Lattner | 2009-12-30 | 1 | -2/+0 |
* | now that instruction metadata is only parsed in one place, eliminate the | Chris Lattner | 2009-12-30 | 2 | -10/+12 |
* | reimplement ParseOptionalInfo as ParseOptionalCommaAlign, correctly | Chris Lattner | 2009-12-30 | 2 | -37/+46 |
* | rename ParseOptionalCustomMetadata -> ParseInstructionMetadata, | Chris Lattner | 2009-12-30 | 2 | -20/+11 |
* | convert 4 more instructions over. | Chris Lattner | 2009-12-30 | 2 | -31/+24 |
* | add facilities to start factoring instruction metadata parsing | Chris Lattner | 2009-12-30 | 2 | -14/+33 |
* | reimplement insertvalue/extractvalue metadata handling to not blindly | Chris Lattner | 2009-12-30 | 2 | -10/+35 |
* | remove two bogus calls that accepted metadata in the middle of insert/extract... | Chris Lattner | 2009-12-30 | 1 | -5/+0 |
* | rename NamedOrCustomMD -> MetadataVar to follow conventions of all the rest o... | Chris Lattner | 2009-12-30 | 3 | -22/+24 |
* | rename lltok::Metadata -> lltok::exclaim. We name tokens | Chris Lattner | 2009-12-30 | 4 | -19/+15 |
* | rename MetadataCache -> NumberedMetadata to follow the convention | Chris Lattner | 2009-12-30 | 2 | -17/+18 |
* | rewrite ParseMDNodeVector to follow the normal patter used in the .ll parser. | Chris Lattner | 2009-12-30 | 2 | -31/+40 |
* | rename ParseMDNode -> ParseMDNodeID, since it parses !42, not !{... } as you'... | Chris Lattner | 2009-12-30 | 2 | -6/+6 |
* | fix parsing of mdstring values. | Chris Lattner | 2009-12-30 | 1 | -7/+4 |
* | remove the code added in r90497. It has several major issues and no tests. | Chris Lattner | 2009-12-30 | 2 | -43/+2 |
* | split t_Metadata into t_MDNode and t_MDString, eliminating some unsafe casting. | Chris Lattner | 2009-12-30 | 2 | -24/+36 |
* | factor code even more. | Chris Lattner | 2009-12-29 | 1 | -26/+14 |
* | simplify some code and unbreak the build by not consuming an | Chris Lattner | 2009-12-29 | 1 | -10/+4 |
* | remove a really wrong parenthesis. | Benjamin Kramer | 2009-12-29 | 1 | -1/+1 |
* | clean up some really strange code. | Chris Lattner | 2009-12-29 | 1 | -8/+8 |