aboutsummaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.h
AgeCommit message (Expand)Author
2012-10-08Use the Attributes::Builder to build the attributes in the parser.Bill Wendling
2012-06-23Extend the IL for selecting TLS models (PR9788)Hans Wennborg
2012-01-20Extend Attributes to 64 bitsKostya Serebryany
2011-11-27remove asmparsing and documentation support for "volatile load", which was on...Chris Lattner
2011-08-12Move "atomic" and "volatile" designations on instructions after the opcodeEli Friedman
2011-08-12Initial commit of the 'landingpad' instruction.Bill Wendling
2011-08-09Representation of 'atomic load' and 'atomic store' in IR.Eli Friedman
2011-07-31Add the 'resume' instruction for the new EH rewrite.Bill Wendling
2011-07-30Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338,Bill Wendling
2011-07-28LangRef and basic memory-representation/reading/writing for 'cmpxchg' andEli Friedman
2011-07-27Merge the contents from exception-handling-rewrite to the mainline.Bill Wendling
2011-07-25Initial implementation of 'fence' instruction, the new C++0x-style replacemen...Eli Friedman
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-07-09Land the long talked about "type system rewrite" patch. ThisChris Lattner
2011-06-17remove asmparser support for the old getresult instruction, which has been su...Chris Lattner
2011-06-17remove parser support for the obsolete "multiple return values" syntax, whichChris Lattner
2011-06-17Remove old backwards compatibility support from the parser for autoupgradingChris Lattner
2011-01-13Reject uses of unnamed_addr in declarations.Rafael Espindola
2010-09-27Push twines deeper into SourceMgr's error handling methods.Benjamin Kramer
2010-08-28remove unions from LLVM IR. They are severely buggy and notChris Lattner
2010-08-24Add a comment explaining why this code is more complex than itDan 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-07-14Factor out metadata parsing into a separate function.Dan Gohman
2010-04-07fix a crash on invalid metadata, e.g.: call i32 @foo(), XXXXChris Lattner
2010-04-01include header.Chris Lattner
2010-04-01rewrite handling of forward ref'd instruction metadata Chris Lattner
2010-04-01eliminate a temporary smallvectorChris Lattner
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-01-22Remove MetadataBase class because it is not adding significant value.Devang Patel
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-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
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-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-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-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-28Metadata.h doesn't need to include ValueHandle.h anymore.Chris Lattner
2009-12-03Add ParseInlineMetadata() which can parses metadata that refers to an instruc...Victor Hernandez