aboutsummaryrefslogtreecommitdiffstats
path: root/lib/AsmParser/LLParser.cpp
Commit message (Expand)AuthorAgeFilesLines
* Factor out metadata parsing into a separate function.Dan Gohman2010-07-141-27/+38
* Add support for empty named metadata too. This isn't particularlyDan Gohman2010-07-131-12/+13
* Add support for empty metadata nodes: !{}.Dan Gohman2010-07-131-0/+4
* Implement the "linker_private_weak" linkage type. This will be used forBill Wendling2010-07-011-14/+22
* Revert r107205 and r107207.Bill Wendling2010-06-291-6/+1
* Introducing the "linker_weak" linkage type. This will be used for Objective-CBill Wendling2010-06-291-1/+6
* Eliminate the restriction that the array size in an alloca must be i32.Dan Gohman2010-05-281-2/+4
* Add support for thiscall calling convention.Anton Korobeynikov2010-05-161-0/+2
* Remove the API compatibility layer which converted add, sub, and mulDan Gohman2010-05-031-7/+23
* reject invalid comma stuff with a message. We reject the case inChris Lattner2010-04-231-4/+4
* reapply 'reject forward references to functions whose type don't match'Chris Lattner2010-04-201-0/+4
* Revert "reject forward references to functions whose type don't match", becau...Daniel Dunbar2010-04-171-4/+0
* reject forward references to functions whose type don't matchChris Lattner2010-04-171-0/+4
* turn an assert into a proper check, fixing crash on invalid here:Chris Lattner2010-04-101-2/+1
* fix a crash on invalid metadata, e.g.: call i32 @foo(), XXXXChris Lattner2010-04-071-2/+4
* rewrite handling of forward ref'd instruction metadata Chris Lattner2010-04-011-9/+51
* eliminate a temporary smallvectorChris Lattner2010-04-011-11/+4
* Introduce isOpaqueTy and use it rather than isa<OpaqueType>. Also, move someDuncan Sands2010-02-161-7/+7
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-161-17/+17
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-151-18/+18
* Add support for a union type in LLVM IR. Patch by Talin!Chris Lattner2010-02-121-9/+71
* Add a new function attribute, 'alignstack'. It will indicate (when the backendsCharles Davis2010-02-121-0/+28
* Reintroduce the InlineHint function attribute.Jakob Stoklund Olesen2010-02-061-0/+1
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-271-1/+0
* Remove the InlineHint attribute. There are no current or plannedEric Christopher2010-01-151-1/+0
* Consolidate ConvertGlobalValIDToValue, ConvertGlobalOrMetadataValIDToValue, a...Victor Hernandez2010-01-111-107/+73
* Compute isFunctionLocal in MDNode ctor or via argument in new function getWhe...Victor Hernandez2010-01-101-14/+15
* fix PR5983, reject function bodies with no blocks per the grammar.Chris Lattner2010-01-091-0/+4
* When parsing function-local metadata, create a function-local MDNodeVictor Hernandez2010-01-061-8/+12
* Re-add parsing of function-local metadata; this time with testcase.Victor Hernandez2010-01-051-10/+18
* Allow null to be an element of NamedMDNode. e.g. !llvm.stuff = !{!0, !1, null}Devang Patel2010-01-051-0/+6
* Move remaining stuff to the isInteger predicate.Benjamin Kramer2010-01-051-1/+1
* NamedMDNode is a collection MDNodes.Devang Patel2010-01-051-2/+1
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-051-6/+3
* remove some fixme'sChris Lattner2009-12-301-2/+0
* now that instruction metadata is only parsed in one place, eliminate theChris Lattner2009-12-301-8/+10
* reimplement ParseOptionalInfo as ParseOptionalCommaAlign, correctlyChris Lattner2009-12-301-33/+42
* rename ParseOptionalCustomMetadata -> ParseInstructionMetadata,Chris Lattner2009-12-301-19/+10
* convert 4 more instructions over.Chris Lattner2009-12-301-27/+20
* add facilities to start factoring instruction metadata parsingChris Lattner2009-12-301-10/+27
* reimplement insertvalue/extractvalue metadata handling to not blindly Chris Lattner2009-12-301-9/+27
* remove two bogus calls that accepted metadata in the middle of insert/extract...Chris Lattner2009-12-301-5/+0
* rename NamedOrCustomMD -> MetadataVar to follow conventions of all the rest o...Chris Lattner2009-12-301-18/+20
* rename lltok::Metadata -> lltok::exclaim. We name tokens Chris Lattner2009-12-301-11/+9
* rename MetadataCache -> NumberedMetadata to follow the conventionChris Lattner2009-12-301-15/+17
* rewrite ParseMDNodeVector to follow the normal patter used in the .ll parser.Chris Lattner2009-12-301-31/+38
* rename ParseMDNode -> ParseMDNodeID, since it parses !42, not !{... } as you'...Chris Lattner2009-12-301-5/+5
* fix parsing of mdstring values.Chris Lattner2009-12-301-7/+4
* remove the code added in r90497. It has several major issues and no tests.Chris Lattner2009-12-301-41/+2
* split t_Metadata into t_MDNode and t_MDString, eliminating some unsafe casting.Chris Lattner2009-12-301-22/+32