aboutsummaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.cpp
AgeCommit message (Expand)Author
2010-04-20reapply 'reject forward references to functions whose type don't match'Chris Lattner
2010-04-17Revert "reject forward references to functions whose type don't match", becau...Daniel Dunbar
2010-04-17reject forward references to functions whose type don't matchChris Lattner
2010-04-10turn an assert into a proper check, fixing crash on invalid here:Chris Lattner
2010-04-07fix a crash on invalid metadata, e.g.: call i32 @foo(), XXXXChris Lattner
2010-04-01rewrite handling of forward ref'd instruction metadata Chris Lattner
2010-04-01eliminate a temporary smallvectorChris Lattner
2010-02-16Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move someDuncan Sands
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands
2010-02-12Add support for a union type in LLVM IR. Patch by Talin!Chris Lattner
2010-02-12Add a new function attribute, 'alignstack'. It will indicate (when the backendsCharles Davis
2010-02-06Reintroduce the InlineHint function attribute.Jakob Stoklund Olesen
2010-01-27Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin
2010-01-15Remove the InlineHint attribute. There are no current or plannedEric Christopher
2010-01-11Consolidate ConvertGlobalValIDToValue, ConvertGlobalOrMetadataValIDToValue, a...Victor Hernandez
2010-01-10Compute isFunctionLocal in MDNode ctor or via argument in new function getWhe...Victor Hernandez
2010-01-09fix PR5983, reject function bodies with no blocks per the grammar.Chris Lattner
2010-01-06When parsing function-local metadata, create a function-local MDNodeVictor Hernandez
2010-01-05Re-add parsing of function-local metadata; this time with testcase.Victor Hernandez
2010-01-05Allow null to be an element of NamedMDNode. e.g. !llvm.stuff = !{!0, !1, null}Devang Patel
2010-01-05Move remaining stuff to the isInteger predicate.Benjamin Kramer
2010-01-05NamedMDNode is a collection MDNodes.Devang Patel
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer
2009-12-30remove some fixme'sChris Lattner
2009-12-30now that instruction metadata is only parsed in one place, eliminate theChris Lattner
2009-12-30reimplement ParseOptionalInfo as ParseOptionalCommaAlign, correctlyChris Lattner
2009-12-30rename ParseOptionalCustomMetadata -> ParseInstructionMetadata,Chris Lattner
2009-12-30convert 4 more instructions over.Chris Lattner
2009-12-30add facilities to start factoring instruction metadata parsingChris Lattner
2009-12-30reimplement insertvalue/extractvalue metadata handling to not blindly Chris Lattner
2009-12-30remove two bogus calls that accepted metadata in the middle of insert/extract...Chris Lattner
2009-12-30rename NamedOrCustomMD -> MetadataVar to follow conventions of all the rest o...Chris Lattner
2009-12-30rename lltok::Metadata -> lltok::exclaim. We name tokens Chris Lattner
2009-12-30rename MetadataCache -> NumberedMetadata to follow the conventionChris Lattner
2009-12-30rewrite ParseMDNodeVector to follow the normal patter used in the .ll parser.Chris Lattner
2009-12-30rename ParseMDNode -> ParseMDNodeID, since it parses !42, not !{... } as you'...Chris Lattner
2009-12-30fix parsing of mdstring values.Chris Lattner
2009-12-30remove the code added in r90497. It has several major issues and no tests.Chris Lattner
2009-12-30split t_Metadata into t_MDNode and t_MDString, eliminating some unsafe casting.Chris Lattner
2009-12-29factor code even more.Chris Lattner
2009-12-29simplify some code and unbreak the build by not consuming anChris Lattner
2009-12-29remove a really wrong parenthesis.Benjamin Kramer
2009-12-29clean up some really strange code.Chris Lattner
2009-12-29change ParseMDString and ParseMDNode to take arguments of the right type.Chris Lattner
2009-12-29switch to TrackingVH instead of WeakVH, since these can neverChris Lattner
2009-12-29Each instruction is allowed to have *multiple* different Chris Lattner
2009-12-29Final step in the metadata API restructuring: move the Chris Lattner
2009-12-28This is a major cleanup of the instruction metadata interfaces thatChris Lattner
2009-12-28rename getMDKind -> getMDKindID, make it autoinsert if an MD KindChris Lattner