| Commit message (Expand) | Author | Age | Files | Lines |
* | Convert some tab stops into spaces. | Duncan Sands | 2010-07-12 | 1 | -2/+2 |
* | AsmMatcher: Ensure classes are totally ordered, so we can std::sort them reli... | Daniel Dunbar | 2010-05-27 | 1 | -1/+10 |
* | tblgen/AsmMatcher: Change AsmOperandClass to allow a list of superclasses ins... | Daniel Dunbar | 2010-05-22 | 1 | -4/+8 |
* | MC/Matcher: Add support for over-riding the default MatchInstruction function | Daniel Dunbar | 2010-05-04 | 1 | -4/+8 |
* | change Target.getInstructionsByEnumValue to return a reference | Chris Lattner | 2010-03-19 | 1 | -2/+2 |
* | don't go through getInstructions(). | Chris Lattner | 2010-03-19 | 1 | -10/+11 |
* | MC/AsmMatcher: Add support for target specific "instruction cleanup" functions, | Daniel Dunbar | 2010-03-18 | 1 | -5/+11 |
* | MC: Fix bug where trailing tied operands were forgotten; the X86 assembler | Daniel Dunbar | 2010-02-12 | 1 | -19/+43 |
* | MC/AsmMatcher: Tweak conversion function name. | Daniel Dunbar | 2010-02-10 | 1 | -1/+1 |
* | MC/AsmMatcher: Add support for creating tied operands when constructing MCInsts. | Daniel Dunbar | 2010-02-10 | 1 | -9/+67 |
* | pass stringref by value instead of by const& | Chris Lattner | 2010-02-09 | 1 | -10/+10 |
* | AsmMatcherEmitter: Use stable_sort when reordering instructions, so that order | Daniel Dunbar | 2010-02-02 | 1 | -3/+5 |
* | AsmMatcher: Create operand classes before use, apparently records aren't visited | Daniel Dunbar | 2010-01-30 | 1 | -1/+7 |
* | Modified the register matcher function in AsmMatcher to | Sean Callanan | 2010-01-23 | 1 | -3/+5 |
* | AsmMatcher: Add a comment. | Daniel Dunbar | 2010-01-23 | 1 | -0/+4 |
* | Split the TargetAsmParser "ParseInstruction" interface in half: | Chris Lattner | 2010-01-14 | 1 | -9/+13 |
* | llvm-mc/AsmParser: Match hard coded registers (e.g. 'shldl %cl, %eax, %eax') | Daniel Dunbar | 2009-08-11 | 1 | -25/+102 |
* | Add 'isCodeGenOnly' bit to Instruction .td records. | Daniel Dunbar | 2009-08-11 | 1 | -20/+13 |
* | llvm-mc/AsmParser: Allow target to specific a comment delimiter, which will be | Daniel Dunbar | 2009-08-11 | 1 | -1/+26 |
* | llvm-mc/AsmMatcher: Fix two thinkos in determining whether two classes are | Daniel Dunbar | 2009-08-11 | 1 | -4/+23 |
* | llvm-mc/AsmParser: Implement automatic classification of RegisterClass operands. | Daniel Dunbar | 2009-08-11 | 1 | -71/+256 |
* | llvm-mc/AsmParser: Allow .td users to redefine the names of the methods to call | Daniel Dunbar | 2009-08-10 | 1 | -2/+21 |
* | llvm-mc/AsmMatcher: Remove some code which has been obsoleted by move to | Daniel Dunbar | 2009-08-10 | 1 | -24/+4 |
* | llvm-mc/AsmMatcher: Change assembler parser match classes to their own record | Daniel Dunbar | 2009-08-10 | 1 | -61/+56 |
* | llvm-mc/AsmParser: Check for matches with super classes when matching | Daniel Dunbar | 2009-08-10 | 1 | -1/+52 |
* | llvm-mc/AsmParser: Fix thinko in ClassInfo::operator<. | Daniel Dunbar | 2009-08-09 | 1 | -2/+7 |
* | llvm-mc/AsmParser: Add hack to ignore Int_* and *_Int instructions for now, to | Daniel Dunbar | 2009-08-09 | 1 | -0/+11 |
* | llvm-mc/AsmParser: Implement user defined super classes. | Daniel Dunbar | 2009-08-09 | 1 | -10/+72 |
* | llvm-mc/AsmParser: Separate instruction ordering for ambiguity detection. | Daniel Dunbar | 2009-08-09 | 1 | -36/+45 |
* | llvm-mc/AsmParser: Define match classes in the .td file. | Daniel Dunbar | 2009-08-09 | 1 | -27/+39 |
* | llvm-mc/AsmParser: Sketch infrastructure for ordering instructions & detecting | Daniel Dunbar | 2009-08-09 | 1 | -14/+106 |
* | fix edito | Chris Lattner | 2009-08-08 | 1 | -1/+0 |
* | llvm-mc/AsmMatcher: Tweak string matcher (missed a newline). | Daniel Dunbar | 2009-08-08 | 1 | -1/+1 |
* | llvm-mc/AsmMatcher: Tweak string matcher. | Daniel Dunbar | 2009-08-08 | 1 | -26/+28 |
* | llvm-mc/AsmMatcher: Switch token matching to use the new string matcher. | Daniel Dunbar | 2009-08-08 | 1 | -33/+31 |
* | add a little function to do arbitrary string pattern matching in a | Chris Lattner | 2009-08-08 | 1 | -3/+138 |
* | add another const | Chris Lattner | 2009-08-08 | 1 | -1/+1 |
* | remove a useless anon-ns, make table const. | Chris Lattner | 2009-08-08 | 1 | -6/+1 |
* | MSVC doesn't like member variables with the same name as the class. | Benjamin Kramer | 2009-08-08 | 1 | -13/+13 |
* | llvm-mc/AsmMatcher: Improve match code. | Daniel Dunbar | 2009-08-08 | 1 | -102/+318 |
* | llvm-mc/AsmMatcher: Switch to a unified function to convert operands to MCInst, | Daniel Dunbar | 2009-08-08 | 1 | -42/+73 |
* | llvm-mc/AsmMatcher: Move emit for register -> enum matcher into a separate ro... | Daniel Dunbar | 2009-08-07 | 1 | -11/+18 |
* | llvm-mc/AsmMatcher: Tweaks in response to feedback. | Daniel Dunbar | 2009-08-07 | 1 | -14/+2 |
* | llvm-mc/AsmMatcher: Move to a slightly more sane matching design. | Daniel Dunbar | 2009-08-07 | 1 | -196/+491 |
* | TableGen / AsmMatcher: Tweaks to avoid generating completely bogus match | Daniel Dunbar | 2009-08-04 | 1 | -17/+75 |
* | Change MCOperand to use Create style instead of Make style for constructing | Daniel Dunbar | 2009-08-02 | 1 | -1/+1 |
* | llvm-mc: Match a few X86 instructions. | Daniel Dunbar | 2009-07-31 | 1 | -0/+239 |
* | Remove unintended changes. | Daniel Dunbar | 2009-07-30 | 1 | -51/+0 |
* | Twines: Don't allow implicit conversion from integers, this is too tricky. | Daniel Dunbar | 2009-07-30 | 1 | -0/+51 |
* | Match X86 register names to number. | Daniel Dunbar | 2009-07-29 | 1 | -8/+4 |