summaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.cpp
Commit message (Expand)AuthorAge
* Remove the InlineHint attribute. There are no current or plannedEric Christopher2010-01-15
* Consolidate ConvertGlobalValIDToValue, ConvertGlobalOrMetadataValIDToValue, a...Victor Hernandez2010-01-11
* Compute isFunctionLocal in MDNode ctor or via argument in new function getWhe...Victor Hernandez2010-01-10
* fix PR5983, reject function bodies with no blocks per the grammar.Chris Lattner2010-01-09
* When parsing function-local metadata, create a function-local MDNodeVictor Hernandez2010-01-06
* Re-add parsing of function-local metadata; this time with testcase.Victor Hernandez2010-01-05
* Allow null to be an element of NamedMDNode. e.g. !llvm.stuff = !{!0, !1, null}Devang Patel2010-01-05
* Move remaining stuff to the isInteger predicate.Benjamin Kramer2010-01-05
* NamedMDNode is a collection MDNodes.Devang Patel2010-01-05
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-05
* remove some fixme'sChris Lattner2009-12-30
* now that instruction metadata is only parsed in one place, eliminate theChris Lattner2009-12-30
* reimplement ParseOptionalInfo as ParseOptionalCommaAlign, correctlyChris Lattner2009-12-30
* rename ParseOptionalCustomMetadata -> ParseInstructionMetadata,Chris Lattner2009-12-30
* convert 4 more instructions over.Chris Lattner2009-12-30
* add facilities to start factoring instruction metadata parsingChris Lattner2009-12-30
* reimplement insertvalue/extractvalue metadata handling to not blindly Chris Lattner2009-12-30
* remove two bogus calls that accepted metadata in the middle of insert/extract...Chris Lattner2009-12-30
* rename NamedOrCustomMD -> MetadataVar to follow conventions of all the rest o...Chris Lattner2009-12-30
* rename lltok::Metadata -> lltok::exclaim. We name tokens Chris Lattner2009-12-30
* rename MetadataCache -> NumberedMetadata to follow the conventionChris Lattner2009-12-30
* rewrite ParseMDNodeVector to follow the normal patter used in the .ll parser.Chris Lattner2009-12-30
* rename ParseMDNode -> ParseMDNodeID, since it parses !42, not !{... } as you'...Chris Lattner2009-12-30
* fix parsing of mdstring values.Chris Lattner2009-12-30
* remove the code added in r90497. It has several major issues and no tests.Chris Lattner2009-12-30
* split t_Metadata into t_MDNode and t_MDString, eliminating some unsafe casting.Chris Lattner2009-12-30
* factor code even more.Chris Lattner2009-12-29
* simplify some code and unbreak the build by not consuming anChris Lattner2009-12-29
* remove a really wrong parenthesis.Benjamin Kramer2009-12-29
* clean up some really strange code.Chris Lattner2009-12-29
* change ParseMDString and ParseMDNode to take arguments of the right type.Chris Lattner2009-12-29
* switch to TrackingVH instead of WeakVH, since these can neverChris Lattner2009-12-29
* Each instruction is allowed to have *multiple* different Chris Lattner2009-12-29
* Final step in the metadata API restructuring: move the Chris Lattner2009-12-29
* This is a major cleanup of the instruction metadata interfaces thatChris Lattner2009-12-28
* rename getMDKind -> getMDKindID, make it autoinsert if an MD KindChris Lattner2009-12-28
* Change errs() to dbgs().David Greene2009-12-23
* Add MSP430 interrupt calling conv. No functionality change yet.Anton Korobeynikov2009-12-07
* Add ParseInlineMetadata() which can parses metadata that refers to an instruc...Victor Hernandez2009-12-03
* Add a hack for PR5601, a crash on obsolete syntax that we plan toChris Lattner2009-11-26
* Fix MSVC warning ( | with bool and unsigned int).Daniel Dunbar2009-11-07
* Re-commit r86077 now that r86290 fixes the 179.art and 175.vpr ARM regressions.Victor Hernandez2009-11-07
* Revert r86077 because it caused crashes in 179.art and 175.vpr on ARMVictor Hernandez2009-11-06
* Use WeakVH while storing metadata in containers.Devang Patel2009-11-05
* Update CreateMalloc so that its callers specify the size to allocate:Victor Hernandez2009-11-05
* Parse debug info attached with insertvalue and extractvalue instructions.Devang Patel2009-11-03
* typoChris Lattner2009-11-02
* Revert 85678/85680. The decision is to stay with the current form of Chris Lattner2009-11-01
* Make blockaddress(@func, null) be valid, and make 'deleting a basic Chris Lattner2009-10-31
* full asmparser support for blockaddress. We can now do:Chris Lattner2009-10-28