aboutsummaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.cpp
AgeCommit message (Expand)Author
2010-10-25Add a new 'hotpatch' attribute. This attribute will insert a two-byte no-opCharles Davis
2010-10-21AlignLoc is never used for anything - zap it (gcc-4.6 warning).Duncan Sands
2010-10-16Eliminate some calls to Value::getNameStr.Benjamin Kramer
2010-09-30Pacify a noisy compiler, and sink this variable declaration closer to its uses.Nick Lewycky
2010-09-29Silence compiler warning.Nick Lewycky
2010-09-27Push twines deeper into SourceMgr's error handling methods.Benjamin Kramer
2010-09-25Add ret instruction to PTX backendChe-Liang Chiou
2010-08-28remove unions from LLVM IR. They are severely buggy and notChris Lattner
2010-08-24Add a comment explaining why this code doesn't just callDan Gohman
2010-08-24Extend function-local metadata to be usable as attachments.Dan Gohman
2010-08-24Give ParseInstructionMetadata access to the PerFunctionState object.Dan Gohman
2010-08-20Create the new linker type "linker_private_weak_def_auto".Bill Wendling
2010-08-20Introduce a new temporary MDNode concept. Temporary MDNodes areDan Gohman
2010-07-30Move MaximumAlignment to be a member of the Value class.Dan Gohman
2010-07-28Define a maximum supported alignment value for load, store, andDan Gohman
2010-07-24Revert r109361; it's impossible to write a call with an argument with anEli Friedman
2010-07-24Minor simplification.Eli Friedman
2010-07-24Make the ll parser check that arguments have valid types.Eli Friedman
2010-07-21Make NamedMDNode not be a subclass of Value, and simplify the interfaceDan Gohman
2010-07-21Disallow null as a named metadata operand.Dan Gohman
2010-07-14Factor out metadata parsing into a separate function.Dan Gohman
2010-07-13Add support for empty named metadata too. This isn't particularlyDan Gohman
2010-07-13Add support for empty metadata nodes: !{}.Dan Gohman
2010-07-01Implement the "linker_private_weak" linkage type. This will be used forBill Wendling
2010-06-29Revert r107205 and r107207.Bill Wendling
2010-06-29Introducing the "linker_weak" linkage type. This will be used for Objective-CBill Wendling
2010-05-28Eliminate the restriction that the array size in an alloca must be i32.Dan Gohman
2010-05-16Add support for thiscall calling convention.Anton Korobeynikov
2010-05-03Remove the API compatibility layer which converted add, sub, and mulDan Gohman
2010-04-23reject invalid comma stuff with a message. We reject the case inChris Lattner
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