Rather then have a wrapper function, have tblgen instantiate the implementation.
[oota-llvm.git] / lib / Target / X86 / AsmParser / X86AsmParser.cpp
2012-09-24 Chad RosierRather then have a wrapper function, have tblgen instan...
2012-09-24 Chad RosierRather then have a wrapper function, have tblgen instan...
2012-09-21 Chad Rosier[ms-inline asm] Expose the mnemonicIsValid() function...
2012-09-21 Chad RosierAdd comment.
2012-09-12 Chad Rosier[ms-inline asm] Make the operand size directives case...
2012-09-11 Chad RosierStringSwitchify.
2012-09-11 Chad RosierSimplify logic. No functional change intended.
2012-09-10 Chad Rosier[ms-inline asm] Add support for .att_syntax directive.
2012-09-07 Benjamin KramerPR13754: llvm-mc/x86 crashes on .cfi directives without...
2012-09-05 Chad RosierFix function name per coding standard.
2012-09-03 Chad Rosier[ms-inline asm] Asm operands can map to one or more...
2012-09-03 Chad Rosier[ms-inline asm] Add an interface to the GetMCInstOperan...
2012-09-03 Chad RosierRemoved unused argument.
2012-09-03 Chad Rosier[ms-inline asm] Expose the Kind and Opcode variables...
2012-08-31 Chad RosierThe ConvertToMCInst() function can't fail, so remove...
2012-08-28 Chad RosierTypo.
2012-08-22 Chad Rosier[ms-inline asm] Avoid a false positive assertion
2012-08-21 Chad Rosier[ms-inline asm] Do not report a Parser error when match...
2012-08-21 Chad Rosier[ms-inline asm] Expose the ErrorInfo from the MatchInst...
2012-08-09 Chad Rosier[ms-inline asm] Extend the MC AsmParser API to match...
2012-07-18 Craig TopperRemove tab characters.
2012-07-18 Craig TopperFix typo in error message and remove some tab characters.
2012-07-18 Craig TopperMake x86 asm parser to check for xmm vs ymm for index...
2012-06-27 Chad RosierWhitespace.
2012-06-26 Manman RenX86: add GATHER intrinsics (AVX2) in LLVM
2012-03-29 Craig TopperOnly allow symbolic names for (v)cmpss/sd/ps/pd encodin...
2012-03-27 Craig TopperPrune some includes
2012-03-13 Kevin EnderbyChange the X86 assembler to not require a segment regis...
2012-03-12 Kevin EnderbyAdded a missing error check for X86 assembly with misma...
2012-03-09 Kevin EnderbyAdd the missing call to Error when a bad X86 scale...
2012-02-23 Kevin EnderbyUpdated the llvm-mc disassembler C API to support for...
2012-02-19 Ahmed CharlesRemove dead code. Improve llvm_unreachable text. Simpli...
2012-01-31 Devang PatelAdd assembler dialect attribute in asm parser which...
2012-01-30 Devang PatelIntel syntax. Adjust special code, used to recognize...
2012-01-30 Devang PatelIntel syntax. Support .intel_syntax directive.
2012-01-27 Devang PatelIntel Syntax: Parse mem operand with seg reg. QWORD...
2012-01-27 Jim GrosbachKeep source location information for X86 MCFixup's.
2012-01-24 Devang PatelIntel Syntax: Extend special hand coded logic, to recog...
2012-01-23 Devang PatelFix typo.
2012-01-23 Devang PatelIntel syntax: Robustify parsing of memory operand's...
2012-01-23 Devang PatelIntel syntax: Parse memory operand with empty base...
2012-01-23 Devang PatelIntel syntax: Parse segment registers.
2012-01-21 Benjamin KramerRemove unused variables.
2012-01-20 Devang PatelIntel syntax: Robustify register parsing.
2012-01-20 Devang PatelIntel syntax: Parse ... PTR [-8]
2012-01-19 Devang PatelPost process 'and', 'sub' instructions and select bette...
2012-01-19 Devang PatelIntel syntax: There is no need to create unary expr...
2012-01-19 Devang PatelPost process 'xor', 'or' and 'cmp' instructions and...
2012-01-18 Devang PatelProcess instructions after match to select alternative...
2012-01-17 Devang PatelIntel syntax: Parse "BYTE PTR [RDX + RCX]"
2012-01-17 Devang PatelUntabify.
2012-01-17 Devang PatelIntel syntax: Do not unncessarily create plus expressio...
2012-01-17 Devang PatelIntel syntax: Robustify memory operand parsing.
2012-01-13 Devang PatelRevert r148131, it was committed before it was ready.
2012-01-13 Devang PatelRefactor.
2012-01-12 Devang PatelRename X86ATTAsmParser -> X86AsmParser
2012-01-12 Devang PatelAdd predicate method check match memory operand size...
2012-01-12 Devang PatelAdd intel style operand parser skeleton.
2011-11-06 Benjamin KramerReplace (Lower|Upper)caseString in favor of StringRef...
2011-10-16 Benjamin KramerAdd AsmToken::getEndLoc and use it to add ranges to...
2011-10-16 Benjamin KramerX86AsmParser: Synthesize EndLoc for tokens out of Start...
2011-10-16 Chris LattnerEnhance llvm::SourceMgr to support diagnostic ranges...
2011-08-24 Evan ChengMove TargetRegistry and TargetSelect from Target to...
2011-08-15 Jim GrosbachMCTargetAsmParser target match predicate support.
2011-07-27 Evan ChengEmit an error is asm parser parsed X86_64 only register...
2011-07-27 Kevin EnderbyFix llvm-mc handing of x86 instructions that take 8...
2011-07-27 Evan ChengSupport .code32 and .code64 in X86 assembler.
2011-07-26 Evan ChengRename TargetAsmParser to MCTargetAsmParser and TargetA...
2011-07-23 Evan ChengMove TargetAsmParser.h TargetAsmBackend.h and TargetAsm...
2011-07-14 Evan ChengNext round of MC refactoring. This patch factor MC...
2011-07-13 Jim GrosbachUpdate MCParsedAsmOperand debug methods.
2011-07-11 Evan Cheng- Eliminate MCCodeEmitter's dependency on TargetMachine...
2011-07-09 Evan ChengChange createAsmParser to take a MCSubtargetInfo instea...
2011-07-08 Benjamin KramerPlug a leak by giving the AsmParser ownership of the...
2011-07-08 Evan ChengTargetAsmParser doesn't need reference to Target.
2011-07-08 Evan ChengEliminate asm parser's dependency on TargetMachine:
2011-07-05 Eli FriedmanAdd assembler/disassembler support for non-AVX pclmulqd...
2011-04-09 Chris Lattnerfix rdar://8735979 - "int 3" doesn't match to "int3...
2011-03-18 Joerg SonnenbergerSupport explicit argument forms for the X86 string...
2011-02-22 Joerg SonnenbergerUse the same (%dx) hack for in[bwl] as for out[bwl].
2011-02-04 Daniel DunbarMC/AsmParser: Add support for allowing the conversion...
2011-01-27 Roman DivackyIntroduce virtual ParseRegister method in TargetAsmParser.
2010-12-08 Kevin EnderbyAllow a slash, '/', as a prefix separator for X86....
2010-11-28 Chris Lattnerfix PR8686, accepting a 'b' suffix at the end of all...
2010-11-27 Rafael EspindolaImplement the data16 prefix.
2010-11-23 Rafael EspindolaImplement the rex64 prefix.
2010-11-18 Chris Lattnertrivial QoI improvement. On this invalid input:
2010-11-06 Chris Lattnermove the "sh[lr]d op,op" -> "shld $1, op,op" aliases...
2010-11-06 Chris Lattnerrework the rotate-by-1 instructions to be defined like the
2010-11-06 Chris Lattnermove the plethora of fp stack aliases to the .td file.
2010-11-06 Chris Lattneradd (and document) the ability for alias results to...
2010-11-06 Chris Lattnergeneralize alias support to allow the result of an...
2010-11-06 Chris Lattnermove fnstsw aliases to .td file, fix typo
2010-11-06 Chris Lattnermove in/out aliases to the .td files.
2010-11-06 Chris Lattnermove sldt, imul, and movabsq aliases from c++ to .td...
2010-11-06 Chris Lattnercorrect suffix matching to search for s/l/t suffixes on
2010-11-06 Chris Lattnerfix a bug where we had an implicit assumption that the
2010-11-06 Chris Lattnermove the lcall/ljmp aliases to the .td file.
2010-11-06 Chris Lattnermove the "movsd -> movsl" alias to the .td files,
2010-11-06 Chris Lattnerfix some bugs in the alias support, unblocking changing...
next