Added retl for 32-bit x86 and added retq for 64-bit x86.
[oota-llvm.git] / lib / Target / X86 / AsmParser / X86AsmParser.cpp
2010-05-21 Kevin EnderbyAdded retl for 32-bit x86 and added retq for 64-bit...
2010-05-20 Daniel DunbarX86: Model i64i32imm properly, as a subclass of all...
2010-05-20 Dan GohmanFix assembly parsing and encoding of the pushf and...
2010-05-13 Chris Lattnerreapply r103668 with a fix. Never make "minor syntax...
2010-05-12 Chris Lattnerrevert r103668 for now, it is apparently breaking things.
2010-05-12 Chris Lattnermoffset forms of moves are x86-32 only, make the parser
2010-05-12 Daniel DunbarMC/X86: Extend suffix matching hack to match 'q' suffix.
2010-05-04 Daniel DunbarMC/X86: Chris pointed that 'as' isn't consistent in...
2010-05-04 Daniel DunbarMC/X86: Add "support" for matching ATT style mnemonic...
2010-04-17 Chris Lattnerteach the x86 asm parser how to handle segment prefixes
2010-03-20 Daniel DunbarMC/X86: Fix an MCOperand link, when we parsing shrld...
2010-03-18 Daniel DunbarMC/X86/AsmMatcher: Use the new instruction cleanup...
2010-03-13 Daniel DunbarMC/X86: Add temporary hack to match shrl $1,%eax correc...
2010-02-13 Daniel DunbarMC/X86: Push immediate operands as immediates not expre...
2010-02-10 Daniel DunbarMC/X86 AsmMatcher: Fix a use after free spotted by...
2010-02-09 Chris LattnerImplement x86 asm parsing support for %st and %st(4)
2010-02-09 Chris Lattnerpass stringref by value instead of by const&
2010-02-03 Kevin EnderbyAdded support for X86 instruction prefixes so llvm...
2010-02-02 Daniel DunbarAsmParser/X86: Add temporary hack to allow parsing...
2010-02-02 Daniel DunbarMCAsmParser/X86: Represent absolute memory operands...
2010-01-30 Daniel DunbarMC/X86 AsmParser: Handle absolute memory operands corre...
2010-01-30 Daniel DunbarAsmMatcher/X86: Separate out sublass for memory operand...
2010-01-24 Chris Lattnerfix a parsing problem on instructions like:
2010-01-23 Sean CallananAdded the skeleton for the implementation of the X86
2010-01-23 Sean CallananModified the register matcher function in AsmMatcher to
2010-01-22 Chris Lattnercreate a new MCParser library and move some stuff into it.
2010-01-19 Sean CallananPromoted the getTok() method to MCAsmParser so that
2010-01-19 Sean CallananPropagated the parser-side Lex function's declaration to
2010-01-19 Chris LattnerGeneralize mcasmstreamer data emission APIs to take...
2010-01-15 Chris Lattnerfix a bug in range information for $42, eliminate an
2010-01-15 Chris Lattneradd range information for mem X86Operand's, now all
2010-01-15 Chris Lattnerextend MCAsmParser::ParseExpression and ParseParenExpre...
2010-01-15 Chris Lattnergive X86Operand a ctor and start passing SMLoc's into it.
2010-01-15 Chris Lattneradd range location info for registers, change
2010-01-15 Chris Lattnerclean up the memory management of the operands.
2010-01-15 Chris Lattnerrefactor ParseRegister to avoid using X86Operand as...
2010-01-14 Chris LattnerSplit the TargetAsmParser "ParseInstruction" interface...
2010-01-14 Chris Lattnerprune #includes in TargetAsmParser.h
2010-01-14 Chris Lattnerintroduce the MCParsedAsmOperand class.
2009-09-16 Kevin EnderbyFix incorrect assert that should be a user error for...
2009-09-10 Kevin EnderbyAdded the ParseInstruction() hook for target specific...
2009-09-06 Duncan SandsAvoid an unused variable warning when assertions are
2009-09-03 Kevin EnderbyRemoved the non-target independent AsmToken::Register...
2009-08-31 Daniel Dunbarllvm-mc: Switch MCInst to storing an MCExpr* instead...
2009-08-14 Daniel DunbarUpdate llvm-mc / MCAsmStreamer to print the instruction...
2009-08-11 Daniel Dunbarllvm-mc/X86: Parse '*' correctly (in the way the matche...
2009-08-10 Daniel Dunbarllvm-mc/AsmParser: Allow .td users to redefine the...
2009-08-09 Daniel Dunbarllvm-mc/AsmParser: Implement user defined super classes.
2009-08-08 Daniel Dunbarllvm-mc/AsmMatcher: Switch token matching to use the...
2009-08-08 Daniel Dunbarllvm-mc/AsmMatcher: Improve match code.
2009-08-07 Daniel Dunbarllvm-mc/AsmMatcher: Tweaks in response to feedback.
2009-08-07 Daniel DunbarImprove disabling of X86 AsmMatcher.
2009-08-07 Daniel DunbarDisable X86 AsmMatcher for now, it is causing gcc-4...
2009-08-07 Daniel Dunbarllvm-mc/AsmMatcher: Move to a slightly more sane matchi...
2009-08-02 Daniel DunbarChange MCOperand to use Create style instead of Make...
2009-07-31 Daniel Dunbarllvm-mc: A few more parsing / match tweaks.
2009-07-31 Daniel Dunbarllvm-mc/X86: Sketch match functions for immediates...
2009-07-31 Benjamin KramerFix a struct/class mismatch, to silence a MSVC warning.
2009-07-31 Daniel Dunbarllvm-mc: Match a few X86 instructions.
2009-07-29 Chris Lattnermore syntactic cleanups.
2009-07-29 Chris Lattnerminor smallvector cleanups
2009-07-29 Daniel DunbarMatch X86 register names to number.
2009-07-28 Daniel DunbarMove X86 instruction parsing into X86/AsmParser.
2009-07-28 Daniel DunbarProvide generic MCAsmParser when constructing target...
2009-07-27 Daniel Dunbarllvm-mc: Move AsmLexer::getCurStrVal to StringRef based...
2009-07-25 Daniel DunbarAdd new helpers for registering targets.
2009-07-21 Daniel DunbarRemove some unused code.
2009-07-20 Daniel DunbarAdd MCAsmLexer interface.
2009-07-20 Daniel DunbarAdd MCAsmParser interface.
2009-07-18 Daniel DunbarPut Target definitions inside Target specific header...
2009-07-17 Daniel DunbarSketch support for target specific assembly parser.