1. 3aef703 Update LLVM for merge to r171905. by Stephen Hines · 12 years ago
  2. 059800f Merge remote-tracking branch 'upstream/master' into merge-llvm by Stephen Hines · 12 years ago
  3. 3ebe59c Change SMRange to be half-open (exclusive end) instead of closed (inclusive) by Jordan Rose · 12 years ago
  4. 6af228a Remove MCTargetAsmLexer and its derived classes now that edis, by Roman Divacky · 12 years ago
  5. d04a8d4 Use the new script to sort the includes of every file under lib. by Chandler Carruth · 12 years ago
  6. 3ca6382 X86: Better diagnostics for 32-bit vs. 64-bit mode mismatches. by Jim Grosbach · 12 years ago
  7. be02a90 Add support of RTM from TSX extension by Michael Liao · 12 years ago
  8. 2fbc239 [ms-inline asm] Add support for the [] operator. Essentially, [expr1][expr2] is by Chad Rosier · 12 years ago
  9. ddb53ef [ms-inline asm] Add a comment. by Chad Rosier · 12 years ago
  10. 7ab21c7 [ms-inline asm] Emit an error for unsupported SIZE and LENGTH directives. by Chad Rosier · 12 years ago
  11. efcb3d9 [ms-inline asm] Add support for the TYPE operator. Part of rdar://12576868 by Chad Rosier · 12 years ago
  12. 6e43157 [ms-inline asm] Have the target AsmParser create the asmrewrite for the offsetof by Chad Rosier · 12 years ago
  13. ec13022 [ms-inline asm] Perform field lookups with the dot operator. by Chad Rosier · 12 years ago
  14. 6a020a7 [ms-inline asm] Add support for creating AsmRewrites in the target specific by Chad Rosier · 12 years ago
  15. 5e6b37f [ms-inline asm] Add error handling to the ParseIntelDotOperator() function. by Chad Rosier · 12 years ago
  16. 22f441a [ms-inline asm] Add support for parsing the '.' operator. Given, by Chad Rosier · 12 years ago
  17. 4284e17 Tidy up. No functional change intended. by Chad Rosier · 12 years ago
  18. c0a14b8 [ms-inline asm] Create a register operand, rather than a memory operand when we by Chad Rosier · 12 years ago
  19. a6cf7a6 [ms-inline asm] Offset operator - the size should be based on the size of a by Chad Rosier · 12 years ago
  20. d4d96ac [ms-inline asm] Clean up comment. by Chad Rosier · 12 years ago
  21. 2a78413 [ms-inline asm] When parsing inline assembly we set the base register to a by Chad Rosier · 12 years ago
  22. 5a719fc [ms-inline asm] Add an implementation of the offset operator. This is a follow by Chad Rosier · 12 years ago
  23. a703fb9 [ms-inline asm] Add the isOffsetOf() function. Part of rdar://12470317 by Chad Rosier · 12 years ago
  24. 65c8892 [ms-inline asm] Add support for parsing the offset operator. Callback for by Chad Rosier · 12 years ago
  25. ab450e4 [ms-inline asm] Reset the opcode prior to parsing a statement. by Chad Rosier · 12 years ago
  26. 96d58e6 [ms-inline asm] Have the TargetParser callback to Sema to determine the size of by Chad Rosier · 12 years ago
  27. 127f5ed [ms-inline asm] If we parsed a statement and the opcode is valid, then it's an instruction. by Chad Rosier · 12 years ago
  28. ce353b3 [ms-inline asm] Update the end loc for ParseIntelMemOperand. by Chad Rosier · 12 years ago
  29. 84125ca [ms-inline asm] Remove the MatchInstruction() function. Previously, this was by Chad Rosier · 12 years ago
  30. 7a2b624 [ms-inline asm] Capitalize per coding standard. by Chad Rosier · 12 years ago
  31. 6e006d3 [ms-inline asm] Use the new API introduced in r165830 in lieu of the by Chad Rosier · 12 years ago
  32. 9ba9d4d [ms-inline asm] Add a few typedefs to simplify future changes. by Chad Rosier · 12 years ago
  33. 5b0f1b3 [ms-inline asm] Add support for parsing [Intel dialect] memory operands that use by Chad Rosier · 12 years ago
  34. f9e008b Revert 165057, per Jim's request. This requires further discussion. by Chad Rosier · 12 years ago
  35. 95707c9 [ms-inline asm] Add basic support for wildcard MCParsedAsmOperands. This type by Chad Rosier · 12 years ago
  36. 2268587 [ms-inline asm] Add the convertToMapAndConstraints() function that is used to by Chad Rosier · 12 years ago
  37. a3c3e1f Consistently specify the assembly variant to MatchInstructionImpl. by Bob Wilson · 12 years ago
  38. 2590c2e Rather then have a wrapper function, have tblgen instantiate the implementation. by Chad Rosier · 12 years ago
  39. 00796a1 Rather then have a wrapper function, have tblgen instantiate the implementation. by Chad Rosier · 12 years ago
  40. d717a06 [ms-inline asm] Expose the mnemonicIsValid() function in the AsmParser. by Chad Rosier · 12 years ago
  41. 7d4e989 Add comment. by Chad Rosier · 12 years ago
  42. f58ae5d [ms-inline asm] Make the operand size directives case insensitive. by Chad Rosier · 12 years ago
  43. 66b64be StringSwitchify. by Chad Rosier · 12 years ago
  44. aa645f7 Simplify logic. No functional change intended. by Chad Rosier · 12 years ago
  45. 1c4ad5e Merge branch 'upstream' into merge-2012_09_10 by Stephen Hines · 12 years ago
  46. 3c4ecd7 [ms-inline asm] Add support for .att_syntax directive. by Chad Rosier · 12 years ago
  47. 8e70b55 PR13754: llvm-mc/x86 crashes on .cfi directives without the % prefix for registers. by Benjamin Kramer · 12 years ago
  48. 5d637d7 Fix function name per coding standard. by Chad Rosier · 12 years ago
  49. 2cc97de [ms-inline asm] Asm operands can map to one or more MCOperands. Therefore, add by Chad Rosier · 12 years ago
  50. 038f3e3 [ms-inline asm] Add an interface to the GetMCInstOperandNum() function in the by Chad Rosier · 12 years ago
  51. c4d2560 Removed unused argument. by Chad Rosier · 12 years ago
  52. 3a86e13 [ms-inline asm] Expose the Kind and Opcode variables from the by Chad Rosier · 12 years ago
  53. 5d04a56 The ConvertToMCInst() function can't fail, so remove the now dead Match_ConversionFail enum. by Chad Rosier · 12 years ago
  54. 4ee0808 Typo. by Chad Rosier · 12 years ago
  55. 3167515 Merge branch 'upstream' into merge_2 by Stephen Hines · 12 years ago
  56. 674101e [ms-inline asm] Avoid a false positive assertion by Chad Rosier · 12 years ago
  57. b4fdade [ms-inline asm] Do not report a Parser error when matching inline assembly. by Chad Rosier · 12 years ago
  58. 64bfcbb [ms-inline asm] Expose the ErrorInfo from the MatchInstructionImpl. In general, by Chad Rosier · 12 years ago
  59. 3246176 [ms-inline asm] Extend the MC AsmParser API to match MCInsts (but not emit). by Chad Rosier · 12 years ago
  60. 7744acd Merge with LLVM upstream r160668 (Jul 24th 2012) by Shih-wei Liao · 12 years ago
  61. 76bd938 Remove tab characters. by Craig Topper · 12 years ago
  62. 833d7f8 Fix typo in error message and remove some tab characters. by Craig Topper · 12 years ago
  63. 75dc33a Make x86 asm parser to check for xmm vs ymm for index register in gather instructions. Also fix Intel syntax for gather instructions to use 'DWORD PTR' or 'QWORD PTR' to match gas. by Craig Topper · 12 years ago
  64. 36b8fed Whitespace. by Chad Rosier · 12 years ago
  65. 1f7a1b6 X86: add GATHER intrinsics (AVX2) in LLVM by Manman Ren · 12 years ago
  66. 9f80f7f Fix lib/Target/X86/AsmParser/Android.mk for device & host. by Shih-wei Liao · 12 years ago
  67. cf5a146 Merge with LLVM upstream r155090. by Shih-wei Liao · 12 years ago
  68. 9e6ddcb Only allow symbolic names for (v)cmpss/sd/ps/pd encodings 8-31 to be used with 'v' version of instructions. by Craig Topper · 12 years ago
  69. 4e02f23 Prune some includes by Craig Topper · 12 years ago
  70. c59a799 Merge branch 'upstream' into sliao_d by Shih-wei Liao · 12 years ago
  71. 0f5ab7c Change the X86 assembler to not require a segment register on string by Kevin Enderby · 12 years ago
  72. 84faf65 Added a missing error check for X86 assembly with mismatched base and index by Kevin Enderby · 12 years ago
  73. 58dfaa1 Add the missing call to Error when a bad X86 scale expression is parsed. by Kevin Enderby · 13 years ago
  74. c02a5c5 Merge branch 'upstream' into merge-20120305 by Stephen Hines · 13 years ago
  75. b80d571 Updated the llvm-mc disassembler C API to support for the X86 target. by Kevin Enderby · 13 years ago
  76. b0934ab Remove dead code. Improve llvm_unreachable text. Simplify some control flow. by Ahmed Charles · 13 years ago
  77. 0db58bf Add assembler dialect attribute in asm parser which lets target specific asm parser change dialect on the fly. by Devang Patel · 13 years ago
  78. 885f65b Intel syntax. Adjust special code, used to recognize cmp<comparison code>{ss,sd,ps,pd}, for intel syntax. by Devang Patel · 13 years ago
  79. be3e310 Intel syntax. Support .intel_syntax directive. by Devang Patel · 13 years ago
  80. a28101e Intel Syntax: Parse mem operand with seg reg. QWORD PTR FS:[320] by Devang Patel · 13 years ago
  81. cb5dca3 Keep source location information for X86 MCFixup's. by Jim Grosbach · 13 years ago
  82. 3b96e1f Intel Syntax: Extend special hand coded logic, to recognize special instructions, for intel syntax. by Devang Patel · 13 years ago
  83. 392ad6d Fix typo. by Devang Patel · 13 years ago
  84. f2d2137 Intel syntax: Robustify parsing of memory operand's displacement experssion. by Devang Patel · 13 years ago
  85. 3e08131 Intel syntax: Parse memory operand with empty base reg, e.g. DWORD PTR [4*RDI] by Devang Patel · 13 years ago
  86. 7c64fe6 Intel syntax: Parse segment registers. by Devang Patel · 13 years ago
  87. 8608cc9 Remove unused variables. by Benjamin Kramer · 13 years ago
  88. 1aea430 Intel syntax: Robustify register parsing. by Devang Patel · 13 years ago
  89. fdd3b30 Intel syntax: Parse ... PTR [-8] by Devang Patel · 13 years ago
  90. a951f77 Post process 'and', 'sub' instructions and select better encoding, if available. by Devang Patel · 13 years ago
  91. e60540f Intel syntax: There is no need to create unary expr for simple negative displacement. by Devang Patel · 13 years ago
  92. ac0f048 Post process 'xor', 'or' and 'cmp' instructions and select better encoding, if available. by Devang Patel · 13 years ago
  93. b8ba13f Process instructions after match to select alternative encoding which may be more desirable. by Devang Patel · 13 years ago
  94. 6220fea Intel syntax: Parse "BYTE PTR [RDX + RCX]" by Devang Patel · 13 years ago
  95. bc51e50 Untabify. by Devang Patel · 13 years ago
  96. 9a3d293 Intel syntax: Do not unncessarily create plus expression for memory operand displacement. by Devang Patel · 13 years ago
  97. d37ad24 Intel syntax: Robustify memory operand parsing. by Devang Patel · 13 years ago
  98. 85d5aae by Devang Patel · 13 years ago
  99. c798cc4 Refactor. by Devang Patel · 13 years ago
  100. dd929fc Rename X86ATTAsmParser -> X86AsmParser by Devang Patel · 13 years ago