blob: 704d5f942619ceb55e246d31aa7981ecf959d98e [file] [log] [blame]
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00001//===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Evan Cheng94b95502011-07-26 00:24:13 +000010#include "MCTargetDesc/X86BaseInfo.h"
11#include "llvm/MC/MCTargetAsmParser.h"
Kevin Enderby9c656452009-09-10 20:51:44 +000012#include "llvm/MC/MCStreamer.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000013#include "llvm/MC/MCExpr.h"
Daniel Dunbara027d222009-07-31 02:32:59 +000014#include "llvm/MC/MCInst.h"
Evan Cheng5de728c2011-07-27 23:22:03 +000015#include "llvm/MC/MCRegisterInfo.h"
Evan Chengebdeeab2011-07-08 01:53:10 +000016#include "llvm/MC/MCSubtargetInfo.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000017#include "llvm/MC/MCParser/MCAsmLexer.h"
18#include "llvm/MC/MCParser/MCAsmParser.h"
19#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Chris Lattner33d60d52010-09-22 04:11:10 +000020#include "llvm/ADT/SmallString.h"
21#include "llvm/ADT/SmallVector.h"
Chris Lattner33d60d52010-09-22 04:11:10 +000022#include "llvm/ADT/StringSwitch.h"
23#include "llvm/ADT/Twine.h"
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000024#include "llvm/Support/SourceMgr.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000025#include "llvm/Support/TargetRegistry.h"
Daniel Dunbar09062b12010-08-12 00:55:42 +000026#include "llvm/Support/raw_ostream.h"
Evan Chengebdeeab2011-07-08 01:53:10 +000027
Daniel Dunbar092a9dd2009-07-17 20:42:00 +000028using namespace llvm;
29
30namespace {
Benjamin Kramerc6b79ac2009-07-31 11:35:26 +000031struct X86Operand;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000032
Devang Pateldd929fc2012-01-12 18:03:40 +000033class X86AsmParser : public MCTargetAsmParser {
Evan Chengffc0e732011-07-09 05:47:46 +000034 MCSubtargetInfo &STI;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000035 MCAsmParser &Parser;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000036private:
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000037 MCAsmParser &getParser() const { return Parser; }
38
39 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
40
Chris Lattnerd8b7aa22011-10-16 04:47:35 +000041 bool Error(SMLoc L, const Twine &Msg,
Chad Rosierb4fdade2012-08-21 19:36:59 +000042 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>(),
43 bool matchingInlineAsm = false) {
44 if (matchingInlineAsm) return true;
Chris Lattnerd8b7aa22011-10-16 04:47:35 +000045 return Parser.Error(L, Msg, Ranges);
46 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000047
Devang Pateld37ad242012-01-17 18:00:18 +000048 X86Operand *ErrorOperand(SMLoc Loc, StringRef Msg) {
49 Error(Loc, Msg);
50 return 0;
51 }
52
Chris Lattner309264d2010-01-15 18:44:13 +000053 X86Operand *ParseOperand();
Devang Patel0a338862012-01-12 01:36:43 +000054 X86Operand *ParseATTOperand();
55 X86Operand *ParseIntelOperand();
Devang Pateld37ad242012-01-17 18:00:18 +000056 X86Operand *ParseIntelMemOperand();
Devang Patel7c64fe62012-01-23 18:31:58 +000057 X86Operand *ParseIntelBracExpression(unsigned SegReg, unsigned Size);
Chris Lattnereef6d782010-04-17 18:56:34 +000058 X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderby9c656452009-09-10 20:51:44 +000059
60 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Evan Chengbd27f5a2011-07-27 00:38:12 +000061 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
Kevin Enderby9c656452009-09-10 20:51:44 +000062
Devang Patelb8ba13f2012-01-18 22:42:29 +000063 bool processInstruction(MCInst &Inst,
64 const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
65
Chris Lattner7036f8b2010-09-29 01:42:58 +000066 bool MatchAndEmitInstruction(SMLoc IDLoc,
Chris Lattner7c51a312010-09-29 01:50:45 +000067 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chris Lattner7036f8b2010-09-29 01:42:58 +000068 MCStreamer &Out);
Chad Rosier22685872012-10-01 23:45:51 +000069 bool MatchInstruction(SMLoc IDLoc,
Chad Rosier32461762012-08-09 22:04:55 +000070 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chad Rosier22685872012-10-01 23:45:51 +000071 MCStreamer &Out, unsigned &Kind, unsigned &Opcode,
72 SmallVectorImpl<std::pair< unsigned, std::string > > &MapAndConstraints,
73 unsigned &OrigErrorInfo, bool matchingInlineAsm = false);
Chad Rosier32461762012-08-09 22:04:55 +000074
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +000075 /// isSrcOp - Returns true if operand is either (%rsi) or %ds:%(rsi)
Kevin Enderby0f5ab7c2012-03-13 19:47:55 +000076 /// in 64bit mode or (%esi) or %es:(%esi) in 32bit mode.
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +000077 bool isSrcOp(X86Operand &Op);
78
Kevin Enderby0f5ab7c2012-03-13 19:47:55 +000079 /// isDstOp - Returns true if operand is either (%rdi) or %es:(%rdi)
80 /// in 64bit mode or (%edi) or %es:(%edi) in 32bit mode.
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +000081 bool isDstOp(X86Operand &Op);
82
Evan Cheng59ee62d2011-07-11 03:57:24 +000083 bool is64BitMode() const {
Evan Chengebdeeab2011-07-08 01:53:10 +000084 // FIXME: Can tablegen auto-generate this?
Evan Chengffc0e732011-07-09 05:47:46 +000085 return (STI.getFeatureBits() & X86::Mode64Bit) != 0;
Evan Chengebdeeab2011-07-08 01:53:10 +000086 }
Evan Chengbd27f5a2011-07-27 00:38:12 +000087 void SwitchMode() {
88 unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(X86::Mode64Bit));
89 setAvailableFeatures(FB);
90 }
Evan Chengebdeeab2011-07-08 01:53:10 +000091
Daniel Dunbar54074b52010-07-19 05:44:09 +000092 /// @name Auto-generated Matcher Functions
93 /// {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000094
Chris Lattner0692ee62010-09-06 19:11:01 +000095#define GET_ASSEMBLER_HEADER
96#include "X86GenAsmMatcher.inc"
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000097
Daniel Dunbar0e2771f2009-07-29 00:02:19 +000098 /// }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000099
100public:
Devang Pateldd929fc2012-01-12 18:03:40 +0000101 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &parser)
Devang Patel0db58bf2012-01-31 18:14:05 +0000102 : MCTargetAsmParser(), STI(sti), Parser(parser) {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000103
Daniel Dunbar54074b52010-07-19 05:44:09 +0000104 // Initialize the set of available features.
Evan Chengffc0e732011-07-09 05:47:46 +0000105 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Daniel Dunbar54074b52010-07-19 05:44:09 +0000106 }
Roman Divackybf755322011-01-27 17:14:22 +0000107 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000108
Benjamin Kramer38e59892010-07-14 22:38:02 +0000109 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +0000110 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Kevin Enderby9c656452009-09-10 20:51:44 +0000111
112 virtual bool ParseDirective(AsmToken DirectiveID);
Devang Patelbe3e3102012-01-30 20:02:42 +0000113
114 bool isParsingIntelSyntax() {
Devang Patel0db58bf2012-01-31 18:14:05 +0000115 return getParser().getAssemblerDialect();
Devang Patelbe3e3102012-01-30 20:02:42 +0000116 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000117};
Chris Lattner37dfdec2009-07-29 06:33:53 +0000118} // end anonymous namespace
119
Sean Callanane9b466d2010-01-23 00:40:33 +0000120/// @name Auto-generated Match Functions
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000121/// {
Sean Callanane9b466d2010-01-23 00:40:33 +0000122
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000123static unsigned MatchRegisterName(StringRef Name);
Sean Callanane9b466d2010-01-23 00:40:33 +0000124
125/// }
Chris Lattner37dfdec2009-07-29 06:33:53 +0000126
Craig Topper76bd9382012-07-18 04:59:16 +0000127static bool isImmSExti16i8Value(uint64_t Value) {
Devang Patelb8ba13f2012-01-18 22:42:29 +0000128 return (( Value <= 0x000000000000007FULL)||
129 (0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)||
130 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
131}
132
133static bool isImmSExti32i8Value(uint64_t Value) {
134 return (( Value <= 0x000000000000007FULL)||
135 (0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)||
136 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
137}
138
139static bool isImmZExtu32u8Value(uint64_t Value) {
140 return (Value <= 0x00000000000000FFULL);
141}
142
143static bool isImmSExti64i8Value(uint64_t Value) {
144 return (( Value <= 0x000000000000007FULL)||
Craig Topper76bd9382012-07-18 04:59:16 +0000145 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
Devang Patelb8ba13f2012-01-18 22:42:29 +0000146}
147
148static bool isImmSExti64i32Value(uint64_t Value) {
149 return (( Value <= 0x000000007FFFFFFFULL)||
Craig Topper76bd9382012-07-18 04:59:16 +0000150 (0xFFFFFFFF80000000ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
Devang Patelb8ba13f2012-01-18 22:42:29 +0000151}
Chris Lattner37dfdec2009-07-29 06:33:53 +0000152namespace {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000153
154/// X86Operand - Instances of this class represent a parsed X86 machine
155/// instruction.
Chris Lattner45220a82010-01-14 21:20:55 +0000156struct X86Operand : public MCParsedAsmOperand {
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000157 enum KindTy {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000158 Token,
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000159 Register,
160 Immediate,
Chad Rosierf9e008b2012-10-02 23:38:50 +0000161 Memory
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000162 } Kind;
163
Chris Lattner29ef9a22010-01-15 18:51:29 +0000164 SMLoc StartLoc, EndLoc;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000165
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000166 union {
167 struct {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000168 const char *Data;
169 unsigned Length;
170 } Tok;
171
172 struct {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000173 unsigned RegNo;
174 } Reg;
175
176 struct {
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000177 const MCExpr *Val;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000178 } Imm;
179
180 struct {
181 unsigned SegReg;
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000182 const MCExpr *Disp;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000183 unsigned BaseReg;
184 unsigned IndexReg;
185 unsigned Scale;
Devang Patelc59d9df2012-01-12 01:51:42 +0000186 unsigned Size;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000187 } Mem;
Daniel Dunbardbd692a2009-07-20 20:01:54 +0000188 };
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000189
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000190 X86Operand(KindTy K, SMLoc Start, SMLoc End)
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000191 : Kind(K), StartLoc(Start), EndLoc(End) {}
Daniel Dunbarc918d602010-05-04 16:12:42 +0000192
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000193 /// getStartLoc - Get the location of the first token of this operand.
194 SMLoc getStartLoc() const { return StartLoc; }
195 /// getEndLoc - Get the location of the last token of this operand.
196 SMLoc getEndLoc() const { return EndLoc; }
Chad Rosier7d4e9892012-09-21 21:08:46 +0000197 /// getLocRange - Get the range between the first and last token of this
198 /// operand.
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000199 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000200
Jim Grosbachb7f689b2011-07-13 15:34:57 +0000201 virtual void print(raw_ostream &OS) const {}
Daniel Dunbarb3cb6962010-08-11 06:37:04 +0000202
Daniel Dunbar20927f22009-08-07 08:26:05 +0000203 StringRef getToken() const {
204 assert(Kind == Token && "Invalid access!");
205 return StringRef(Tok.Data, Tok.Length);
206 }
Daniel Dunbarc918d602010-05-04 16:12:42 +0000207 void setTokenValue(StringRef Value) {
208 assert(Kind == Token && "Invalid access!");
209 Tok.Data = Value.data();
210 Tok.Length = Value.size();
211 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000212
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000213 unsigned getReg() const {
214 assert(Kind == Register && "Invalid access!");
215 return Reg.RegNo;
216 }
Daniel Dunbara2edbab2009-07-28 20:47:52 +0000217
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000218 const MCExpr *getImm() const {
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000219 assert(Kind == Immediate && "Invalid access!");
220 return Imm.Val;
221 }
222
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000223 const MCExpr *getMemDisp() const {
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000224 assert(Kind == Memory && "Invalid access!");
225 return Mem.Disp;
226 }
227 unsigned getMemSegReg() const {
228 assert(Kind == Memory && "Invalid access!");
229 return Mem.SegReg;
230 }
231 unsigned getMemBaseReg() const {
232 assert(Kind == Memory && "Invalid access!");
233 return Mem.BaseReg;
234 }
235 unsigned getMemIndexReg() const {
236 assert(Kind == Memory && "Invalid access!");
237 return Mem.IndexReg;
238 }
239 unsigned getMemScale() const {
240 assert(Kind == Memory && "Invalid access!");
241 return Mem.Scale;
242 }
243
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000244 bool isToken() const {return Kind == Token; }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000245
246 bool isImm() const { return Kind == Immediate; }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000247
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000248 bool isImmSExti16i8() const {
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000249 if (!isImm())
250 return false;
251
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000252 // If this isn't a constant expr, just assume it fits and let relaxation
253 // handle it.
254 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
255 if (!CE)
256 return true;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000257
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000258 // Otherwise, check the value is in a range that makes sense for this
259 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000260 return isImmSExti16i8Value(CE->getValue());
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000261 }
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000262 bool isImmSExti32i8() const {
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000263 if (!isImm())
264 return false;
265
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000266 // If this isn't a constant expr, just assume it fits and let relaxation
267 // handle it.
268 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
269 if (!CE)
270 return true;
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000271
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000272 // Otherwise, check the value is in a range that makes sense for this
273 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000274 return isImmSExti32i8Value(CE->getValue());
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000275 }
Kevin Enderbyc37d4bb2011-07-27 23:01:50 +0000276 bool isImmZExtu32u8() const {
277 if (!isImm())
278 return false;
279
280 // If this isn't a constant expr, just assume it fits and let relaxation
281 // handle it.
282 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
283 if (!CE)
284 return true;
285
286 // Otherwise, check the value is in a range that makes sense for this
287 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000288 return isImmZExtu32u8Value(CE->getValue());
Kevin Enderbyc37d4bb2011-07-27 23:01:50 +0000289 }
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000290 bool isImmSExti64i8() const {
291 if (!isImm())
292 return false;
293
294 // If this isn't a constant expr, just assume it fits and let relaxation
295 // handle it.
296 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
297 if (!CE)
298 return true;
299
300 // Otherwise, check the value is in a range that makes sense for this
301 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000302 return isImmSExti64i8Value(CE->getValue());
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000303 }
304 bool isImmSExti64i32() const {
305 if (!isImm())
306 return false;
307
308 // If this isn't a constant expr, just assume it fits and let relaxation
309 // handle it.
310 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
311 if (!CE)
312 return true;
313
314 // Otherwise, check the value is in a range that makes sense for this
315 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000316 return isImmSExti64i32Value(CE->getValue());
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000317 }
318
Daniel Dunbar20927f22009-08-07 08:26:05 +0000319 bool isMem() const { return Kind == Memory; }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000320 bool isMem8() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000321 return Kind == Memory && (!Mem.Size || Mem.Size == 8);
Devang Patelc59d9df2012-01-12 01:51:42 +0000322 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000323 bool isMem16() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000324 return Kind == Memory && (!Mem.Size || Mem.Size == 16);
Devang Patelc59d9df2012-01-12 01:51:42 +0000325 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000326 bool isMem32() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000327 return Kind == Memory && (!Mem.Size || Mem.Size == 32);
Devang Patelc59d9df2012-01-12 01:51:42 +0000328 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000329 bool isMem64() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000330 return Kind == Memory && (!Mem.Size || Mem.Size == 64);
Devang Patelc59d9df2012-01-12 01:51:42 +0000331 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000332 bool isMem80() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000333 return Kind == Memory && (!Mem.Size || Mem.Size == 80);
Devang Patelc59d9df2012-01-12 01:51:42 +0000334 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000335 bool isMem128() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000336 return Kind == Memory && (!Mem.Size || Mem.Size == 128);
Devang Patelc59d9df2012-01-12 01:51:42 +0000337 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000338 bool isMem256() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000339 return Kind == Memory && (!Mem.Size || Mem.Size == 256);
Devang Patelc59d9df2012-01-12 01:51:42 +0000340 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000341
Craig Topper75dc33a2012-07-18 04:11:12 +0000342 bool isMemVX32() const {
343 return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
344 getMemIndexReg() >= X86::XMM0 && getMemIndexReg() <= X86::XMM15;
345 }
346 bool isMemVY32() const {
347 return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
348 getMemIndexReg() >= X86::YMM0 && getMemIndexReg() <= X86::YMM15;
349 }
350 bool isMemVX64() const {
351 return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
352 getMemIndexReg() >= X86::XMM0 && getMemIndexReg() <= X86::XMM15;
353 }
354 bool isMemVY64() const {
355 return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
356 getMemIndexReg() >= X86::YMM0 && getMemIndexReg() <= X86::YMM15;
357 }
358
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000359 bool isAbsMem() const {
360 return Kind == Memory && !getMemSegReg() && !getMemBaseReg() &&
Daniel Dunbar7b9147a2010-02-02 21:44:16 +0000361 !getMemIndexReg() && getMemScale() == 1;
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000362 }
363
Daniel Dunbar20927f22009-08-07 08:26:05 +0000364 bool isReg() const { return Kind == Register; }
365
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000366 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
367 // Add as immediates when possible.
368 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
369 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
370 else
371 Inst.addOperand(MCOperand::CreateExpr(Expr));
372 }
373
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000374 void addRegOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000375 assert(N == 1 && "Invalid number of operands!");
376 Inst.addOperand(MCOperand::CreateReg(getReg()));
377 }
378
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000379 void addImmOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000380 assert(N == 1 && "Invalid number of operands!");
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000381 addExpr(Inst, getImm());
Daniel Dunbar20927f22009-08-07 08:26:05 +0000382 }
383
Chad Rosier36b8fed2012-06-27 22:34:28 +0000384 void addMem8Operands(MCInst &Inst, unsigned N) const {
385 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000386 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000387 void addMem16Operands(MCInst &Inst, unsigned N) const {
388 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000389 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000390 void addMem32Operands(MCInst &Inst, unsigned N) const {
391 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000392 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000393 void addMem64Operands(MCInst &Inst, unsigned N) const {
394 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000395 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000396 void addMem80Operands(MCInst &Inst, unsigned N) const {
397 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000398 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000399 void addMem128Operands(MCInst &Inst, unsigned N) const {
400 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000401 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000402 void addMem256Operands(MCInst &Inst, unsigned N) const {
403 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000404 }
Craig Topper75dc33a2012-07-18 04:11:12 +0000405 void addMemVX32Operands(MCInst &Inst, unsigned N) const {
406 addMemOperands(Inst, N);
407 }
408 void addMemVY32Operands(MCInst &Inst, unsigned N) const {
409 addMemOperands(Inst, N);
410 }
411 void addMemVX64Operands(MCInst &Inst, unsigned N) const {
412 addMemOperands(Inst, N);
413 }
414 void addMemVY64Operands(MCInst &Inst, unsigned N) const {
415 addMemOperands(Inst, N);
416 }
Devang Patelc59d9df2012-01-12 01:51:42 +0000417
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000418 void addMemOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbarec2b1f12010-01-30 00:24:00 +0000419 assert((N == 5) && "Invalid number of operands!");
Daniel Dunbar20927f22009-08-07 08:26:05 +0000420 Inst.addOperand(MCOperand::CreateReg(getMemBaseReg()));
421 Inst.addOperand(MCOperand::CreateImm(getMemScale()));
422 Inst.addOperand(MCOperand::CreateReg(getMemIndexReg()));
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000423 addExpr(Inst, getMemDisp());
Daniel Dunbarec2b1f12010-01-30 00:24:00 +0000424 Inst.addOperand(MCOperand::CreateReg(getMemSegReg()));
425 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000426
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000427 void addAbsMemOperands(MCInst &Inst, unsigned N) const {
428 assert((N == 1) && "Invalid number of operands!");
Kevin Enderbyb80d5712012-02-23 18:18:17 +0000429 // Add as immediates when possible.
430 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemDisp()))
431 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
432 else
433 Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000434 }
435
Chris Lattnerb4307b32010-01-15 19:28:38 +0000436 static X86Operand *CreateToken(StringRef Str, SMLoc Loc) {
Benjamin Kramerf82edaf2011-10-16 11:28:29 +0000437 SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size() - 1);
438 X86Operand *Res = new X86Operand(Token, Loc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000439 Res->Tok.Data = Str.data();
440 Res->Tok.Length = Str.size();
Daniel Dunbar20927f22009-08-07 08:26:05 +0000441 return Res;
442 }
443
Chris Lattner29ef9a22010-01-15 18:51:29 +0000444 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc) {
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000445 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000446 Res->Reg.RegNo = RegNo;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000447 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000448 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000449
Chris Lattnerb4307b32010-01-15 19:28:38 +0000450 static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){
451 X86Operand *Res = new X86Operand(Immediate, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000452 Res->Imm.Val = Val;
453 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000454 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000455
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000456 /// Create an absolute memory operand.
457 static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc,
Devang Patelc59d9df2012-01-12 01:51:42 +0000458 SMLoc EndLoc, unsigned Size = 0) {
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000459 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
460 Res->Mem.SegReg = 0;
461 Res->Mem.Disp = Disp;
462 Res->Mem.BaseReg = 0;
463 Res->Mem.IndexReg = 0;
Daniel Dunbar7b9147a2010-02-02 21:44:16 +0000464 Res->Mem.Scale = 1;
Devang Patelc59d9df2012-01-12 01:51:42 +0000465 Res->Mem.Size = Size;
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000466 return Res;
467 }
468
469 /// Create a generalized memory operand.
Chris Lattner309264d2010-01-15 18:44:13 +0000470 static X86Operand *CreateMem(unsigned SegReg, const MCExpr *Disp,
471 unsigned BaseReg, unsigned IndexReg,
Devang Patelc59d9df2012-01-12 01:51:42 +0000472 unsigned Scale, SMLoc StartLoc, SMLoc EndLoc,
473 unsigned Size = 0) {
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000474 // We should never just have a displacement, that should be parsed as an
475 // absolute memory operand.
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000476 assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!");
477
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000478 // The scale should always be one of {1,2,4,8}.
479 assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) &&
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000480 "Invalid scale!");
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000481 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000482 Res->Mem.SegReg = SegReg;
483 Res->Mem.Disp = Disp;
484 Res->Mem.BaseReg = BaseReg;
485 Res->Mem.IndexReg = IndexReg;
486 Res->Mem.Scale = Scale;
Devang Patelc59d9df2012-01-12 01:51:42 +0000487 Res->Mem.Size = Size;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000488 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000489 }
490};
Daniel Dunbara3af3702009-07-20 18:55:04 +0000491
Chris Lattner37dfdec2009-07-29 06:33:53 +0000492} // end anonymous namespace.
Daniel Dunbara2edbab2009-07-28 20:47:52 +0000493
Devang Pateldd929fc2012-01-12 18:03:40 +0000494bool X86AsmParser::isSrcOp(X86Operand &Op) {
Evan Cheng59ee62d2011-07-11 03:57:24 +0000495 unsigned basereg = is64BitMode() ? X86::RSI : X86::ESI;
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000496
497 return (Op.isMem() &&
498 (Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::DS) &&
499 isa<MCConstantExpr>(Op.Mem.Disp) &&
500 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
501 Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0);
502}
503
Devang Pateldd929fc2012-01-12 18:03:40 +0000504bool X86AsmParser::isDstOp(X86Operand &Op) {
Evan Cheng59ee62d2011-07-11 03:57:24 +0000505 unsigned basereg = is64BitMode() ? X86::RDI : X86::EDI;
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000506
Chad Rosier36b8fed2012-06-27 22:34:28 +0000507 return Op.isMem() &&
Kevin Enderby0f5ab7c2012-03-13 19:47:55 +0000508 (Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::ES) &&
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000509 isa<MCConstantExpr>(Op.Mem.Disp) &&
510 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
511 Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0;
512}
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000513
Devang Pateldd929fc2012-01-12 18:03:40 +0000514bool X86AsmParser::ParseRegister(unsigned &RegNo,
515 SMLoc &StartLoc, SMLoc &EndLoc) {
Chris Lattner23075742010-01-15 18:27:19 +0000516 RegNo = 0;
Benjamin Kramer8e70b552012-09-07 14:51:35 +0000517 const AsmToken &PercentTok = Parser.getTok();
518 StartLoc = PercentTok.getLoc();
519
520 // If we encounter a %, ignore it. This code handles registers with and
521 // without the prefix, unprefixed registers can occur in cfi directives.
522 if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
Devang Pateld37ad242012-01-17 18:00:18 +0000523 Parser.Lex(); // Eat percent token.
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000524
Sean Callanan18b83232010-01-19 21:44:56 +0000525 const AsmToken &Tok = Parser.getTok();
Devang Patel1aea4302012-01-20 22:32:05 +0000526 if (Tok.isNot(AsmToken::Identifier)) {
Devang Patelbe3e3102012-01-30 20:02:42 +0000527 if (isParsingIntelSyntax()) return true;
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000528 return Error(StartLoc, "invalid register name",
529 SMRange(StartLoc, Tok.getEndLoc()));
Devang Patel1aea4302012-01-20 22:32:05 +0000530 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000531
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000532 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000533
Chris Lattner33d60d52010-09-22 04:11:10 +0000534 // If the match failed, try the register name as lowercase.
535 if (RegNo == 0)
Benjamin Kramer59085362011-11-06 20:37:06 +0000536 RegNo = MatchRegisterName(Tok.getString().lower());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000537
Evan Cheng5de728c2011-07-27 23:22:03 +0000538 if (!is64BitMode()) {
539 // FIXME: This should be done using Requires<In32BitMode> and
540 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
541 // checked.
542 // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
543 // REX prefix.
544 if (RegNo == X86::RIZ ||
545 X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
546 X86II::isX86_64NonExtLowByteReg(RegNo) ||
547 X86II::isX86_64ExtendedReg(RegNo))
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000548 return Error(StartLoc, "register %"
549 + Tok.getString() + " is only available in 64-bit mode",
550 SMRange(StartLoc, Tok.getEndLoc()));
Evan Cheng5de728c2011-07-27 23:22:03 +0000551 }
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000552
Chris Lattner33d60d52010-09-22 04:11:10 +0000553 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
554 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000555 RegNo = X86::ST0;
556 EndLoc = Tok.getLoc();
557 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000558
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000559 // Check to see if we have '(4)' after %st.
560 if (getLexer().isNot(AsmToken::LParen))
561 return false;
562 // Lex the paren.
563 getParser().Lex();
564
565 const AsmToken &IntTok = Parser.getTok();
566 if (IntTok.isNot(AsmToken::Integer))
567 return Error(IntTok.getLoc(), "expected stack index");
568 switch (IntTok.getIntVal()) {
569 case 0: RegNo = X86::ST0; break;
570 case 1: RegNo = X86::ST1; break;
571 case 2: RegNo = X86::ST2; break;
572 case 3: RegNo = X86::ST3; break;
573 case 4: RegNo = X86::ST4; break;
574 case 5: RegNo = X86::ST5; break;
575 case 6: RegNo = X86::ST6; break;
576 case 7: RegNo = X86::ST7; break;
577 default: return Error(IntTok.getLoc(), "invalid stack index");
578 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000579
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000580 if (getParser().Lex().isNot(AsmToken::RParen))
581 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000582
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000583 EndLoc = Tok.getLoc();
584 Parser.Lex(); // Eat ')'
585 return false;
586 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000587
Chris Lattner645b2092010-06-24 07:29:18 +0000588 // If this is "db[0-7]", match it as an alias
589 // for dr[0-7].
590 if (RegNo == 0 && Tok.getString().size() == 3 &&
591 Tok.getString().startswith("db")) {
592 switch (Tok.getString()[2]) {
593 case '0': RegNo = X86::DR0; break;
594 case '1': RegNo = X86::DR1; break;
595 case '2': RegNo = X86::DR2; break;
596 case '3': RegNo = X86::DR3; break;
597 case '4': RegNo = X86::DR4; break;
598 case '5': RegNo = X86::DR5; break;
599 case '6': RegNo = X86::DR6; break;
600 case '7': RegNo = X86::DR7; break;
601 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000602
Chris Lattner645b2092010-06-24 07:29:18 +0000603 if (RegNo != 0) {
604 EndLoc = Tok.getLoc();
605 Parser.Lex(); // Eat it.
606 return false;
607 }
608 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000609
Devang Patel1aea4302012-01-20 22:32:05 +0000610 if (RegNo == 0) {
Devang Patelbe3e3102012-01-30 20:02:42 +0000611 if (isParsingIntelSyntax()) return true;
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000612 return Error(StartLoc, "invalid register name",
613 SMRange(StartLoc, Tok.getEndLoc()));
Devang Patel1aea4302012-01-20 22:32:05 +0000614 }
Daniel Dunbar0e2771f2009-07-29 00:02:19 +0000615
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000616 EndLoc = Tok.getEndLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000617 Parser.Lex(); // Eat identifier token.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000618 return false;
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000619}
620
Devang Pateldd929fc2012-01-12 18:03:40 +0000621X86Operand *X86AsmParser::ParseOperand() {
Devang Patelbe3e3102012-01-30 20:02:42 +0000622 if (isParsingIntelSyntax())
Devang Patel0a338862012-01-12 01:36:43 +0000623 return ParseIntelOperand();
624 return ParseATTOperand();
625}
626
Devang Pateld37ad242012-01-17 18:00:18 +0000627/// getIntelMemOperandSize - Return intel memory operand size.
628static unsigned getIntelMemOperandSize(StringRef OpStr) {
Chad Rosier66b64be2012-09-11 21:10:25 +0000629 unsigned Size = StringSwitch<unsigned>(OpStr)
Chad Rosierf58ae5d2012-09-12 18:24:26 +0000630 .Cases("BYTE", "byte", 8)
631 .Cases("WORD", "word", 16)
632 .Cases("DWORD", "dword", 32)
633 .Cases("QWORD", "qword", 64)
634 .Cases("XWORD", "xword", 80)
635 .Cases("XMMWORD", "xmmword", 128)
636 .Cases("YMMWORD", "ymmword", 256)
Chad Rosier66b64be2012-09-11 21:10:25 +0000637 .Default(0);
638 return Size;
Devang Patel0a338862012-01-12 01:36:43 +0000639}
640
Devang Patel7c64fe62012-01-23 18:31:58 +0000641X86Operand *X86AsmParser::ParseIntelBracExpression(unsigned SegReg,
642 unsigned Size) {
643 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
Devang Patel0a338862012-01-12 01:36:43 +0000644 SMLoc Start = Parser.getTok().getLoc(), End;
645
Devang Pateld37ad242012-01-17 18:00:18 +0000646 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
647 // Parse [ BaseReg + Scale*IndexReg + Disp ] or [ symbol ]
648
649 // Eat '['
650 if (getLexer().isNot(AsmToken::LBrac))
651 return ErrorOperand(Start, "Expected '[' token!");
652 Parser.Lex();
Chad Rosier36b8fed2012-06-27 22:34:28 +0000653
Devang Pateld37ad242012-01-17 18:00:18 +0000654 if (getLexer().is(AsmToken::Identifier)) {
655 // Parse BaseReg
Devang Patel1aea4302012-01-20 22:32:05 +0000656 if (ParseRegister(BaseReg, Start, End)) {
Devang Pateld37ad242012-01-17 18:00:18 +0000657 // Handle '[' 'symbol' ']'
Devang Pateld37ad242012-01-17 18:00:18 +0000658 if (getParser().ParseExpression(Disp, End)) return 0;
659 if (getLexer().isNot(AsmToken::RBrac))
Devang Patelbc51e502012-01-17 19:09:22 +0000660 return ErrorOperand(Start, "Expected ']' token!");
Devang Pateld37ad242012-01-17 18:00:18 +0000661 Parser.Lex();
662 return X86Operand::CreateMem(Disp, Start, End, Size);
663 }
664 } else if (getLexer().is(AsmToken::Integer)) {
Devang Patel3e081312012-01-23 20:20:06 +0000665 int64_t Val = Parser.getTok().getIntVal();
Devang Pateld37ad242012-01-17 18:00:18 +0000666 Parser.Lex();
Devang Patel3e081312012-01-23 20:20:06 +0000667 SMLoc Loc = Parser.getTok().getLoc();
668 if (getLexer().is(AsmToken::RBrac)) {
669 // Handle '[' number ']'
670 Parser.Lex();
Devang Patela28101e2012-01-27 19:48:28 +0000671 const MCExpr *Disp = MCConstantExpr::Create(Val, getContext());
672 if (SegReg)
673 return X86Operand::CreateMem(SegReg, Disp, 0, 0, Scale,
674 Start, End, Size);
675 return X86Operand::CreateMem(Disp, Start, End, Size);
Devang Patel3e081312012-01-23 20:20:06 +0000676 } else if (getLexer().is(AsmToken::Star)) {
677 // Handle '[' Scale*IndexReg ']'
678 Parser.Lex();
679 SMLoc IdxRegLoc = Parser.getTok().getLoc();
Craig Topper833d7f82012-07-18 04:36:35 +0000680 if (ParseRegister(IndexReg, IdxRegLoc, End))
681 return ErrorOperand(IdxRegLoc, "Expected register");
Devang Patel3e081312012-01-23 20:20:06 +0000682 Scale = Val;
683 } else
Craig Topper833d7f82012-07-18 04:36:35 +0000684 return ErrorOperand(Loc, "Unexpected token");
Devang Pateld37ad242012-01-17 18:00:18 +0000685 }
686
687 if (getLexer().is(AsmToken::Plus) || getLexer().is(AsmToken::Minus)) {
688 bool isPlus = getLexer().is(AsmToken::Plus);
689 Parser.Lex();
690 SMLoc PlusLoc = Parser.getTok().getLoc();
691 if (getLexer().is(AsmToken::Integer)) {
692 int64_t Val = Parser.getTok().getIntVal();
693 Parser.Lex();
694 if (getLexer().is(AsmToken::Star)) {
Devang Patelbc51e502012-01-17 19:09:22 +0000695 Parser.Lex();
696 SMLoc IdxRegLoc = Parser.getTok().getLoc();
Craig Topper833d7f82012-07-18 04:36:35 +0000697 if (ParseRegister(IndexReg, IdxRegLoc, End))
698 return ErrorOperand(IdxRegLoc, "Expected register");
Devang Patelbc51e502012-01-17 19:09:22 +0000699 Scale = Val;
Devang Pateld37ad242012-01-17 18:00:18 +0000700 } else if (getLexer().is(AsmToken::RBrac)) {
Devang Patelbc51e502012-01-17 19:09:22 +0000701 const MCExpr *ValExpr = MCConstantExpr::Create(Val, getContext());
Devang Patele60540f2012-01-19 18:15:51 +0000702 Disp = isPlus ? ValExpr : MCConstantExpr::Create(0-Val, getContext());
Devang Pateld37ad242012-01-17 18:00:18 +0000703 } else
Devang Patelbc51e502012-01-17 19:09:22 +0000704 return ErrorOperand(PlusLoc, "unexpected token after +");
Devang Patelf2d21372012-01-23 22:35:25 +0000705 } else if (getLexer().is(AsmToken::Identifier)) {
Devang Patel392ad6d2012-01-23 23:56:33 +0000706 // This could be an index register or a displacement expression.
Devang Patelf2d21372012-01-23 22:35:25 +0000707 End = Parser.getTok().getLoc();
708 if (!IndexReg)
709 ParseRegister(IndexReg, Start, End);
Chad Rosier36b8fed2012-06-27 22:34:28 +0000710 else if (getParser().ParseExpression(Disp, End)) return 0;
Devang Patelf2d21372012-01-23 22:35:25 +0000711 }
Devang Pateld37ad242012-01-17 18:00:18 +0000712 }
713
714 if (getLexer().isNot(AsmToken::RBrac))
715 if (getParser().ParseExpression(Disp, End)) return 0;
716
717 End = Parser.getTok().getLoc();
718 if (getLexer().isNot(AsmToken::RBrac))
719 return ErrorOperand(End, "expected ']' token!");
720 Parser.Lex();
721 End = Parser.getTok().getLoc();
Devang Patelfdd3b302012-01-20 21:21:01 +0000722
723 // handle [-42]
724 if (!BaseReg && !IndexReg)
725 return X86Operand::CreateMem(Disp, Start, End, Size);
726
Devang Pateld37ad242012-01-17 18:00:18 +0000727 return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
Devang Patelbc51e502012-01-17 19:09:22 +0000728 Start, End, Size);
Devang Pateld37ad242012-01-17 18:00:18 +0000729}
730
731/// ParseIntelMemOperand - Parse intel style memory operand.
732X86Operand *X86AsmParser::ParseIntelMemOperand() {
733 const AsmToken &Tok = Parser.getTok();
734 SMLoc Start = Parser.getTok().getLoc(), End;
Devang Patel7c64fe62012-01-23 18:31:58 +0000735 unsigned SegReg = 0;
Devang Pateld37ad242012-01-17 18:00:18 +0000736
737 unsigned Size = getIntelMemOperandSize(Tok.getString());
738 if (Size) {
739 Parser.Lex();
Chad Rosierf58ae5d2012-09-12 18:24:26 +0000740 assert ((Tok.getString() == "PTR" || Tok.getString() == "ptr") &&
741 "Unexpected token!");
Devang Pateld37ad242012-01-17 18:00:18 +0000742 Parser.Lex();
743 }
744
745 if (getLexer().is(AsmToken::LBrac))
Devang Patel7c64fe62012-01-23 18:31:58 +0000746 return ParseIntelBracExpression(SegReg, Size);
747
748 if (!ParseRegister(SegReg, Start, End)) {
749 // Handel SegReg : [ ... ]
750 if (getLexer().isNot(AsmToken::Colon))
751 return ErrorOperand(Start, "Expected ':' token!");
752 Parser.Lex(); // Eat :
753 if (getLexer().isNot(AsmToken::LBrac))
754 return ErrorOperand(Start, "Expected '[' token!");
755 return ParseIntelBracExpression(SegReg, Size);
756 }
Devang Pateld37ad242012-01-17 18:00:18 +0000757
758 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
759 if (getParser().ParseExpression(Disp, End)) return 0;
760 return X86Operand::CreateMem(Disp, Start, End, Size);
761}
762
763X86Operand *X86AsmParser::ParseIntelOperand() {
Devang Pateld37ad242012-01-17 18:00:18 +0000764 SMLoc Start = Parser.getTok().getLoc(), End;
765
766 // immediate.
767 if (getLexer().is(AsmToken::Integer) || getLexer().is(AsmToken::Real) ||
768 getLexer().is(AsmToken::Minus)) {
769 const MCExpr *Val;
770 if (!getParser().ParseExpression(Val, End)) {
771 End = Parser.getTok().getLoc();
772 return X86Operand::CreateImm(Val, Start, End);
773 }
774 }
775
Devang Patel0a338862012-01-12 01:36:43 +0000776 // register
Devang Patel1aea4302012-01-20 22:32:05 +0000777 unsigned RegNo = 0;
778 if (!ParseRegister(RegNo, Start, End)) {
Devang Patel0a338862012-01-12 01:36:43 +0000779 End = Parser.getTok().getLoc();
780 return X86Operand::CreateReg(RegNo, Start, End);
781 }
782
783 // mem operand
Devang Pateld37ad242012-01-17 18:00:18 +0000784 return ParseIntelMemOperand();
Devang Patel0a338862012-01-12 01:36:43 +0000785}
786
Devang Pateldd929fc2012-01-12 18:03:40 +0000787X86Operand *X86AsmParser::ParseATTOperand() {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000788 switch (getLexer().getKind()) {
789 default:
Chris Lattnereef6d782010-04-17 18:56:34 +0000790 // Parse a memory operand with no segment register.
791 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattner23075742010-01-15 18:27:19 +0000792 case AsmToken::Percent: {
Chris Lattnereef6d782010-04-17 18:56:34 +0000793 // Read the register.
Chris Lattner23075742010-01-15 18:27:19 +0000794 unsigned RegNo;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000795 SMLoc Start, End;
796 if (ParseRegister(RegNo, Start, End)) return 0;
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000797 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000798 Error(Start, "%eiz and %riz can only be used as index registers",
799 SMRange(Start, End));
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000800 return 0;
801 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000802
Chris Lattnereef6d782010-04-17 18:56:34 +0000803 // If this is a segment register followed by a ':', then this is the start
804 // of a memory reference, otherwise this is a normal register reference.
805 if (getLexer().isNot(AsmToken::Colon))
806 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000807
808
Chris Lattnereef6d782010-04-17 18:56:34 +0000809 getParser().Lex(); // Eat the colon.
810 return ParseMemOperand(RegNo, Start);
Chris Lattner23075742010-01-15 18:27:19 +0000811 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000812 case AsmToken::Dollar: {
813 // $42 -> immediate.
Sean Callanan18b83232010-01-19 21:44:56 +0000814 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callananb9a25b72010-01-19 20:27:46 +0000815 Parser.Lex();
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000816 const MCExpr *Val;
Chris Lattner54482b42010-01-15 19:39:23 +0000817 if (getParser().ParseExpression(Val, End))
Chris Lattner309264d2010-01-15 18:44:13 +0000818 return 0;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000819 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000820 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000821 }
Daniel Dunbardbd692a2009-07-20 20:01:54 +0000822}
823
Chris Lattnereef6d782010-04-17 18:56:34 +0000824/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
825/// has already been parsed if present.
Devang Pateldd929fc2012-01-12 18:03:40 +0000826X86Operand *X86AsmParser::ParseMemOperand(unsigned SegReg, SMLoc MemStart) {
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000827
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000828 // We have to disambiguate a parenthesized expression "(4+5)" from the start
829 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner75f265f2010-01-24 01:07:33 +0000830 // only way to do this without lookahead is to eat the '(' and see what is
831 // after it.
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000832 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000833 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattner54482b42010-01-15 19:39:23 +0000834 SMLoc ExprEnd;
835 if (getParser().ParseExpression(Disp, ExprEnd)) return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000836
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000837 // After parsing the base expression we could either have a parenthesized
838 // memory address or not. If not, return now. If so, eat the (.
839 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000840 // Unless we have a segment register, treat this as an immediate.
Chris Lattner309264d2010-01-15 18:44:13 +0000841 if (SegReg == 0)
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000842 return X86Operand::CreateMem(Disp, MemStart, ExprEnd);
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000843 return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000844 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000845
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000846 // Eat the '('.
Sean Callananb9a25b72010-01-19 20:27:46 +0000847 Parser.Lex();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000848 } else {
849 // Okay, we have a '('. We don't know if this is an expression or not, but
850 // so we have to eat the ( to see beyond it.
Sean Callanan18b83232010-01-19 21:44:56 +0000851 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000852 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000853
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000854 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000855 // Nothing to do here, fall into the code below with the '(' part of the
856 // memory operand consumed.
857 } else {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000858 SMLoc ExprEnd;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000859
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000860 // It must be an parenthesized expression, parse it now.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000861 if (getParser().ParseParenExpression(Disp, ExprEnd))
Chris Lattner309264d2010-01-15 18:44:13 +0000862 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000863
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000864 // After parsing the base expression we could either have a parenthesized
865 // memory address or not. If not, return now. If so, eat the (.
866 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000867 // Unless we have a segment register, treat this as an immediate.
Chris Lattner309264d2010-01-15 18:44:13 +0000868 if (SegReg == 0)
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000869 return X86Operand::CreateMem(Disp, LParenLoc, ExprEnd);
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000870 return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000871 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000872
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000873 // Eat the '('.
Sean Callananb9a25b72010-01-19 20:27:46 +0000874 Parser.Lex();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000875 }
876 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000877
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000878 // If we reached here, then we just ate the ( of the memory operand. Process
879 // the rest of the memory operand.
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000880 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
Kevin Enderby84faf652012-03-12 21:32:09 +0000881 SMLoc IndexLoc;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000882
Chris Lattner29ef9a22010-01-15 18:51:29 +0000883 if (getLexer().is(AsmToken::Percent)) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000884 SMLoc StartLoc, EndLoc;
885 if (ParseRegister(BaseReg, StartLoc, EndLoc)) return 0;
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000886 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000887 Error(StartLoc, "eiz and riz can only be used as index registers",
888 SMRange(StartLoc, EndLoc));
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000889 return 0;
890 }
Chris Lattner29ef9a22010-01-15 18:51:29 +0000891 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000892
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000893 if (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +0000894 Parser.Lex(); // Eat the comma.
Kevin Enderby84faf652012-03-12 21:32:09 +0000895 IndexLoc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000896
897 // Following the comma we should have either an index register, or a scale
898 // value. We don't support the later form, but we want to parse it
899 // correctly.
900 //
901 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000902 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000903 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner29ef9a22010-01-15 18:51:29 +0000904 SMLoc L;
905 if (ParseRegister(IndexReg, L, L)) return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000906
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000907 if (getLexer().isNot(AsmToken::RParen)) {
908 // Parse the scale amount:
909 // ::= ',' [scale-expression]
Chris Lattner309264d2010-01-15 18:44:13 +0000910 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000911 Error(Parser.getTok().getLoc(),
Chris Lattner309264d2010-01-15 18:44:13 +0000912 "expected comma in scale expression");
913 return 0;
914 }
Sean Callananb9a25b72010-01-19 20:27:46 +0000915 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000916
917 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000918 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000919
920 int64_t ScaleVal;
Kevin Enderby58dfaa12012-03-09 22:24:10 +0000921 if (getParser().ParseAbsoluteExpression(ScaleVal)){
922 Error(Loc, "expected scale expression");
Chris Lattner309264d2010-01-15 18:44:13 +0000923 return 0;
Craig Topper76bd9382012-07-18 04:59:16 +0000924 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000925
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000926 // Validate the scale amount.
Chris Lattner309264d2010-01-15 18:44:13 +0000927 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){
928 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
929 return 0;
930 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000931 Scale = (unsigned)ScaleVal;
932 }
933 }
934 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbaree910252010-08-24 19:13:38 +0000935 // A scale amount without an index is ignored.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000936 // index.
Sean Callanan18b83232010-01-19 21:44:56 +0000937 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000938
939 int64_t Value;
940 if (getParser().ParseAbsoluteExpression(Value))
Chris Lattner309264d2010-01-15 18:44:13 +0000941 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000942
Daniel Dunbaree910252010-08-24 19:13:38 +0000943 if (Value != 1)
944 Warning(Loc, "scale factor without index register is ignored");
945 Scale = 1;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000946 }
947 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000948
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000949 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattner309264d2010-01-15 18:44:13 +0000950 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000951 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Chris Lattner309264d2010-01-15 18:44:13 +0000952 return 0;
953 }
Sean Callanan18b83232010-01-19 21:44:56 +0000954 SMLoc MemEnd = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000955 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000956
Kevin Enderby84faf652012-03-12 21:32:09 +0000957 // If we have both a base register and an index register make sure they are
958 // both 64-bit or 32-bit registers.
Manman Ren1f7a1b62012-06-26 19:47:59 +0000959 // To support VSIB, IndexReg can be 128-bit or 256-bit registers.
Kevin Enderby84faf652012-03-12 21:32:09 +0000960 if (BaseReg != 0 && IndexReg != 0) {
961 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
Manman Ren1f7a1b62012-06-26 19:47:59 +0000962 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
963 X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
Kevin Enderby84faf652012-03-12 21:32:09 +0000964 IndexReg != X86::RIZ) {
965 Error(IndexLoc, "index register is 32-bit, but base register is 64-bit");
966 return 0;
967 }
968 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
Manman Ren1f7a1b62012-06-26 19:47:59 +0000969 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
970 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
Kevin Enderby84faf652012-03-12 21:32:09 +0000971 IndexReg != X86::EIZ){
972 Error(IndexLoc, "index register is 64-bit, but base register is 32-bit");
973 return 0;
974 }
975 }
976
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000977 return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
978 MemStart, MemEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000979}
980
Devang Pateldd929fc2012-01-12 18:03:40 +0000981bool X86AsmParser::
Benjamin Kramer38e59892010-07-14 22:38:02 +0000982ParseInstruction(StringRef Name, SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +0000983 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Chris Lattner693173f2010-10-30 19:23:13 +0000984 StringRef PatchedName = Name;
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000985
Chris Lattnerd8f71792010-11-28 20:23:50 +0000986 // FIXME: Hack to recognize setneb as setne.
987 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
988 PatchedName != "setb" && PatchedName != "setnb")
989 PatchedName = PatchedName.substr(0, Name.size()-1);
Chad Rosier36b8fed2012-06-27 22:34:28 +0000990
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000991 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
992 const MCExpr *ExtraImmOp = 0;
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000993 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000994 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
995 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Craig Topper9e6ddcb2012-03-29 07:11:23 +0000996 bool IsVCMP = PatchedName[0] == 'v';
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000997 unsigned SSECCIdx = IsVCMP ? 4 : 3;
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000998 unsigned SSEComparisonCode = StringSwitch<unsigned>(
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000999 PatchedName.slice(SSECCIdx, PatchedName.size() - 2))
Craig Topper9e6ddcb2012-03-29 07:11:23 +00001000 .Case("eq", 0x00)
1001 .Case("lt", 0x01)
1002 .Case("le", 0x02)
1003 .Case("unord", 0x03)
1004 .Case("neq", 0x04)
1005 .Case("nlt", 0x05)
1006 .Case("nle", 0x06)
1007 .Case("ord", 0x07)
1008 /* AVX only from here */
1009 .Case("eq_uq", 0x08)
1010 .Case("nge", 0x09)
Bruno Cardoso Lopescc69e132010-07-07 22:24:03 +00001011 .Case("ngt", 0x0A)
1012 .Case("false", 0x0B)
1013 .Case("neq_oq", 0x0C)
1014 .Case("ge", 0x0D)
1015 .Case("gt", 0x0E)
1016 .Case("true", 0x0F)
1017 .Case("eq_os", 0x10)
1018 .Case("lt_oq", 0x11)
1019 .Case("le_oq", 0x12)
1020 .Case("unord_s", 0x13)
1021 .Case("neq_us", 0x14)
1022 .Case("nlt_uq", 0x15)
1023 .Case("nle_uq", 0x16)
1024 .Case("ord_s", 0x17)
1025 .Case("eq_us", 0x18)
1026 .Case("nge_uq", 0x19)
1027 .Case("ngt_uq", 0x1A)
1028 .Case("false_os", 0x1B)
1029 .Case("neq_os", 0x1C)
1030 .Case("ge_oq", 0x1D)
1031 .Case("gt_oq", 0x1E)
1032 .Case("true_us", 0x1F)
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001033 .Default(~0U);
Craig Topper9e6ddcb2012-03-29 07:11:23 +00001034 if (SSEComparisonCode != ~0U && (IsVCMP || SSEComparisonCode < 8)) {
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001035 ExtraImmOp = MCConstantExpr::Create(SSEComparisonCode,
1036 getParser().getContext());
1037 if (PatchedName.endswith("ss")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001038 PatchedName = IsVCMP ? "vcmpss" : "cmpss";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001039 } else if (PatchedName.endswith("sd")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001040 PatchedName = IsVCMP ? "vcmpsd" : "cmpsd";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001041 } else if (PatchedName.endswith("ps")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001042 PatchedName = IsVCMP ? "vcmpps" : "cmpps";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001043 } else {
1044 assert(PatchedName.endswith("pd") && "Unexpected mnemonic!");
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001045 PatchedName = IsVCMP ? "vcmppd" : "cmppd";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001046 }
1047 }
1048 }
Bruno Cardoso Lopesf528d2b2010-07-23 18:41:12 +00001049
Daniel Dunbar1b6c0602010-02-10 21:19:28 +00001050 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001051
Devang Patel885f65b2012-01-30 22:47:12 +00001052 if (ExtraImmOp && !isParsingIntelSyntax())
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001053 Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001054
Chris Lattner2544f422010-09-08 05:17:37 +00001055 // Determine whether this is an instruction prefix.
1056 bool isPrefix =
Chris Lattner693173f2010-10-30 19:23:13 +00001057 Name == "lock" || Name == "rep" ||
1058 Name == "repe" || Name == "repz" ||
Rafael Espindolabeb68982010-11-23 11:23:24 +00001059 Name == "repne" || Name == "repnz" ||
Rafael Espindolabfd2d262010-11-27 20:29:45 +00001060 Name == "rex64" || Name == "data16";
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001061
1062
Chris Lattner2544f422010-09-08 05:17:37 +00001063 // This does the actual operand parsing. Don't parse any more if we have a
1064 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
1065 // just want to parse the "lock" as the first instruction and the "incl" as
1066 // the next one.
1067 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar0db68f42009-08-11 05:00:25 +00001068
1069 // Parse '*' modifier.
1070 if (getLexer().is(AsmToken::Star)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001071 SMLoc Loc = Parser.getTok().getLoc();
Chris Lattnerb4307b32010-01-15 19:28:38 +00001072 Operands.push_back(X86Operand::CreateToken("*", Loc));
Sean Callananb9a25b72010-01-19 20:27:46 +00001073 Parser.Lex(); // Eat the star.
Daniel Dunbar0db68f42009-08-11 05:00:25 +00001074 }
1075
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001076 // Read the first operand.
Chris Lattner309264d2010-01-15 18:44:13 +00001077 if (X86Operand *Op = ParseOperand())
1078 Operands.push_back(Op);
Chris Lattnercbf8a982010-09-11 16:18:25 +00001079 else {
1080 Parser.EatToEndOfStatement();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001081 return true;
Chris Lattnercbf8a982010-09-11 16:18:25 +00001082 }
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001083
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001084 while (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +00001085 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001086
1087 // Parse and remember the operand.
Chris Lattner309264d2010-01-15 18:44:13 +00001088 if (X86Operand *Op = ParseOperand())
1089 Operands.push_back(Op);
Chris Lattnercbf8a982010-09-11 16:18:25 +00001090 else {
1091 Parser.EatToEndOfStatement();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001092 return true;
Chris Lattnercbf8a982010-09-11 16:18:25 +00001093 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001094 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001095
Chris Lattnercbf8a982010-09-11 16:18:25 +00001096 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Chris Lattnerc146c4d2010-11-18 02:53:02 +00001097 SMLoc Loc = getLexer().getLoc();
Chris Lattnercbf8a982010-09-11 16:18:25 +00001098 Parser.EatToEndOfStatement();
Chris Lattnerc146c4d2010-11-18 02:53:02 +00001099 return Error(Loc, "unexpected token in argument list");
Chris Lattnercbf8a982010-09-11 16:18:25 +00001100 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001101 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001102
Chris Lattner2544f422010-09-08 05:17:37 +00001103 if (getLexer().is(AsmToken::EndOfStatement))
1104 Parser.Lex(); // Consume the EndOfStatement
Kevin Enderby76331752010-12-08 23:57:59 +00001105 else if (isPrefix && getLexer().is(AsmToken::Slash))
1106 Parser.Lex(); // Consume the prefix separator Slash
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001107
Devang Patel885f65b2012-01-30 22:47:12 +00001108 if (ExtraImmOp && isParsingIntelSyntax())
1109 Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
1110
Chris Lattner98c870f2010-11-06 19:25:43 +00001111 // This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
1112 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
1113 // documented form in various unofficial manuals, so a lot of code uses it.
1114 if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
1115 Operands.size() == 3) {
1116 X86Operand &Op = *(X86Operand*)Operands.back();
1117 if (Op.isMem() && Op.Mem.SegReg == 0 &&
1118 isa<MCConstantExpr>(Op.Mem.Disp) &&
1119 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
1120 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
1121 SMLoc Loc = Op.getEndLoc();
1122 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
1123 delete &Op;
1124 }
1125 }
Joerg Sonnenberger00743c22011-02-22 20:40:09 +00001126 // Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
1127 if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
1128 Operands.size() == 3) {
1129 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1130 if (Op.isMem() && Op.Mem.SegReg == 0 &&
1131 isa<MCConstantExpr>(Op.Mem.Disp) &&
1132 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
1133 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
1134 SMLoc Loc = Op.getEndLoc();
1135 Operands.begin()[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
1136 delete &Op;
1137 }
1138 }
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001139 // Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]"
1140 if (Name.startswith("ins") && Operands.size() == 3 &&
1141 (Name == "insb" || Name == "insw" || Name == "insl")) {
1142 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1143 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1144 if (Op.isReg() && Op.getReg() == X86::DX && isDstOp(Op2)) {
1145 Operands.pop_back();
1146 Operands.pop_back();
1147 delete &Op;
1148 delete &Op2;
1149 }
1150 }
1151
1152 // Transform "outs[bwl] %ds:(%esi), %dx" into "out[bwl]"
1153 if (Name.startswith("outs") && Operands.size() == 3 &&
1154 (Name == "outsb" || Name == "outsw" || Name == "outsl")) {
1155 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1156 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1157 if (isSrcOp(Op) && Op2.isReg() && Op2.getReg() == X86::DX) {
1158 Operands.pop_back();
1159 Operands.pop_back();
1160 delete &Op;
1161 delete &Op2;
1162 }
1163 }
1164
1165 // Transform "movs[bwl] %ds:(%esi), %es:(%edi)" into "movs[bwl]"
1166 if (Name.startswith("movs") && Operands.size() == 3 &&
1167 (Name == "movsb" || Name == "movsw" || Name == "movsl" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001168 (is64BitMode() && Name == "movsq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001169 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1170 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1171 if (isSrcOp(Op) && isDstOp(Op2)) {
1172 Operands.pop_back();
1173 Operands.pop_back();
1174 delete &Op;
1175 delete &Op2;
1176 }
1177 }
1178 // Transform "lods[bwl] %ds:(%esi),{%al,%ax,%eax,%rax}" into "lods[bwl]"
1179 if (Name.startswith("lods") && Operands.size() == 3 &&
1180 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001181 Name == "lodsl" || (is64BitMode() && Name == "lodsq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001182 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1183 X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
1184 if (isSrcOp(*Op1) && Op2->isReg()) {
1185 const char *ins;
1186 unsigned reg = Op2->getReg();
1187 bool isLods = Name == "lods";
1188 if (reg == X86::AL && (isLods || Name == "lodsb"))
1189 ins = "lodsb";
1190 else if (reg == X86::AX && (isLods || Name == "lodsw"))
1191 ins = "lodsw";
1192 else if (reg == X86::EAX && (isLods || Name == "lodsl"))
1193 ins = "lodsl";
1194 else if (reg == X86::RAX && (isLods || Name == "lodsq"))
1195 ins = "lodsq";
1196 else
1197 ins = NULL;
1198 if (ins != NULL) {
1199 Operands.pop_back();
1200 Operands.pop_back();
1201 delete Op1;
1202 delete Op2;
1203 if (Name != ins)
1204 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
1205 }
1206 }
1207 }
1208 // Transform "stos[bwl] {%al,%ax,%eax,%rax},%es:(%edi)" into "stos[bwl]"
1209 if (Name.startswith("stos") && Operands.size() == 3 &&
1210 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001211 Name == "stosl" || (is64BitMode() && Name == "stosq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001212 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1213 X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
1214 if (isDstOp(*Op2) && Op1->isReg()) {
1215 const char *ins;
1216 unsigned reg = Op1->getReg();
1217 bool isStos = Name == "stos";
1218 if (reg == X86::AL && (isStos || Name == "stosb"))
1219 ins = "stosb";
1220 else if (reg == X86::AX && (isStos || Name == "stosw"))
1221 ins = "stosw";
1222 else if (reg == X86::EAX && (isStos || Name == "stosl"))
1223 ins = "stosl";
1224 else if (reg == X86::RAX && (isStos || Name == "stosq"))
1225 ins = "stosq";
1226 else
1227 ins = NULL;
1228 if (ins != NULL) {
1229 Operands.pop_back();
1230 Operands.pop_back();
1231 delete Op1;
1232 delete Op2;
1233 if (Name != ins)
1234 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
1235 }
1236 }
1237 }
1238
Chris Lattnere9e16a32010-09-15 04:33:27 +00001239 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattneree211d02010-09-11 16:32:12 +00001240 // "shift <op>".
Daniel Dunbard5e77052010-03-13 00:47:29 +00001241 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001242 Name.startswith("shl") || Name.startswith("sal") ||
1243 Name.startswith("rcl") || Name.startswith("rcr") ||
1244 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner47ab90b2010-09-06 18:32:06 +00001245 Operands.size() == 3) {
Devang Patelbe3e3102012-01-30 20:02:42 +00001246 if (isParsingIntelSyntax()) {
Devang Patel3b96e1f2012-01-24 21:43:36 +00001247 // Intel syntax
1248 X86Operand *Op1 = static_cast<X86Operand*>(Operands[2]);
1249 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
Craig Topper76bd9382012-07-18 04:59:16 +00001250 cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
1251 delete Operands[2];
1252 Operands.pop_back();
Devang Patel3b96e1f2012-01-24 21:43:36 +00001253 }
1254 } else {
1255 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1256 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
Craig Topper76bd9382012-07-18 04:59:16 +00001257 cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
1258 delete Operands[1];
1259 Operands.erase(Operands.begin() + 1);
Devang Patel3b96e1f2012-01-24 21:43:36 +00001260 }
Chris Lattner47ab90b2010-09-06 18:32:06 +00001261 }
Daniel Dunbarf2de13f2010-03-20 22:36:38 +00001262 }
Chad Rosier36b8fed2012-06-27 22:34:28 +00001263
Chris Lattner15f89512011-04-09 19:41:05 +00001264 // Transforms "int $3" into "int3" as a size optimization. We can't write an
1265 // instalias with an immediate operand yet.
1266 if (Name == "int" && Operands.size() == 2) {
1267 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1268 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1269 cast<MCConstantExpr>(Op1->getImm())->getValue() == 3) {
1270 delete Operands[1];
1271 Operands.erase(Operands.begin() + 1);
1272 static_cast<X86Operand*>(Operands[0])->setTokenValue("int3");
1273 }
1274 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001275
Chris Lattner98986712010-01-14 22:21:20 +00001276 return false;
Daniel Dunbara3af3702009-07-20 18:55:04 +00001277}
1278
Devang Pateldd929fc2012-01-12 18:03:40 +00001279bool X86AsmParser::
Devang Patelb8ba13f2012-01-18 22:42:29 +00001280processInstruction(MCInst &Inst,
1281 const SmallVectorImpl<MCParsedAsmOperand*> &Ops) {
1282 switch (Inst.getOpcode()) {
1283 default: return false;
1284 case X86::AND16i16: {
1285 if (!Inst.getOperand(0).isImm() ||
1286 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1287 return false;
1288
1289 MCInst TmpInst;
1290 TmpInst.setOpcode(X86::AND16ri8);
1291 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1292 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1293 TmpInst.addOperand(Inst.getOperand(0));
1294 Inst = TmpInst;
1295 return true;
1296 }
1297 case X86::AND32i32: {
1298 if (!Inst.getOperand(0).isImm() ||
1299 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1300 return false;
1301
1302 MCInst TmpInst;
1303 TmpInst.setOpcode(X86::AND32ri8);
1304 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1305 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1306 TmpInst.addOperand(Inst.getOperand(0));
1307 Inst = TmpInst;
1308 return true;
1309 }
1310 case X86::AND64i32: {
1311 if (!Inst.getOperand(0).isImm() ||
1312 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1313 return false;
1314
1315 MCInst TmpInst;
1316 TmpInst.setOpcode(X86::AND64ri8);
1317 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1318 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1319 TmpInst.addOperand(Inst.getOperand(0));
1320 Inst = TmpInst;
1321 return true;
1322 }
Devang Patelac0f0482012-01-19 17:53:25 +00001323 case X86::XOR16i16: {
1324 if (!Inst.getOperand(0).isImm() ||
1325 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1326 return false;
1327
1328 MCInst TmpInst;
1329 TmpInst.setOpcode(X86::XOR16ri8);
1330 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1331 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1332 TmpInst.addOperand(Inst.getOperand(0));
1333 Inst = TmpInst;
1334 return true;
1335 }
1336 case X86::XOR32i32: {
1337 if (!Inst.getOperand(0).isImm() ||
1338 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1339 return false;
1340
1341 MCInst TmpInst;
1342 TmpInst.setOpcode(X86::XOR32ri8);
1343 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1344 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1345 TmpInst.addOperand(Inst.getOperand(0));
1346 Inst = TmpInst;
1347 return true;
1348 }
1349 case X86::XOR64i32: {
1350 if (!Inst.getOperand(0).isImm() ||
1351 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1352 return false;
1353
1354 MCInst TmpInst;
1355 TmpInst.setOpcode(X86::XOR64ri8);
1356 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1357 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1358 TmpInst.addOperand(Inst.getOperand(0));
1359 Inst = TmpInst;
1360 return true;
1361 }
1362 case X86::OR16i16: {
1363 if (!Inst.getOperand(0).isImm() ||
1364 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1365 return false;
1366
1367 MCInst TmpInst;
1368 TmpInst.setOpcode(X86::OR16ri8);
1369 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1370 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1371 TmpInst.addOperand(Inst.getOperand(0));
1372 Inst = TmpInst;
1373 return true;
1374 }
1375 case X86::OR32i32: {
1376 if (!Inst.getOperand(0).isImm() ||
1377 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1378 return false;
1379
1380 MCInst TmpInst;
1381 TmpInst.setOpcode(X86::OR32ri8);
1382 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1383 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1384 TmpInst.addOperand(Inst.getOperand(0));
1385 Inst = TmpInst;
1386 return true;
1387 }
1388 case X86::OR64i32: {
1389 if (!Inst.getOperand(0).isImm() ||
1390 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1391 return false;
1392
1393 MCInst TmpInst;
1394 TmpInst.setOpcode(X86::OR64ri8);
1395 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1396 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1397 TmpInst.addOperand(Inst.getOperand(0));
1398 Inst = TmpInst;
1399 return true;
1400 }
1401 case X86::CMP16i16: {
1402 if (!Inst.getOperand(0).isImm() ||
1403 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1404 return false;
1405
1406 MCInst TmpInst;
1407 TmpInst.setOpcode(X86::CMP16ri8);
1408 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1409 TmpInst.addOperand(Inst.getOperand(0));
1410 Inst = TmpInst;
1411 return true;
1412 }
1413 case X86::CMP32i32: {
1414 if (!Inst.getOperand(0).isImm() ||
1415 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1416 return false;
1417
1418 MCInst TmpInst;
1419 TmpInst.setOpcode(X86::CMP32ri8);
1420 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1421 TmpInst.addOperand(Inst.getOperand(0));
1422 Inst = TmpInst;
1423 return true;
1424 }
1425 case X86::CMP64i32: {
1426 if (!Inst.getOperand(0).isImm() ||
1427 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1428 return false;
1429
1430 MCInst TmpInst;
1431 TmpInst.setOpcode(X86::CMP64ri8);
1432 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1433 TmpInst.addOperand(Inst.getOperand(0));
1434 Inst = TmpInst;
1435 return true;
1436 }
Devang Patela951f772012-01-19 18:40:55 +00001437 case X86::ADD16i16: {
1438 if (!Inst.getOperand(0).isImm() ||
1439 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1440 return false;
1441
1442 MCInst TmpInst;
1443 TmpInst.setOpcode(X86::ADD16ri8);
1444 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1445 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1446 TmpInst.addOperand(Inst.getOperand(0));
1447 Inst = TmpInst;
1448 return true;
1449 }
1450 case X86::ADD32i32: {
1451 if (!Inst.getOperand(0).isImm() ||
1452 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1453 return false;
1454
1455 MCInst TmpInst;
1456 TmpInst.setOpcode(X86::ADD32ri8);
1457 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1458 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1459 TmpInst.addOperand(Inst.getOperand(0));
1460 Inst = TmpInst;
1461 return true;
1462 }
1463 case X86::ADD64i32: {
1464 if (!Inst.getOperand(0).isImm() ||
1465 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1466 return false;
1467
1468 MCInst TmpInst;
1469 TmpInst.setOpcode(X86::ADD64ri8);
1470 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1471 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1472 TmpInst.addOperand(Inst.getOperand(0));
1473 Inst = TmpInst;
1474 return true;
1475 }
1476 case X86::SUB16i16: {
1477 if (!Inst.getOperand(0).isImm() ||
1478 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1479 return false;
1480
1481 MCInst TmpInst;
1482 TmpInst.setOpcode(X86::SUB16ri8);
1483 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1484 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1485 TmpInst.addOperand(Inst.getOperand(0));
1486 Inst = TmpInst;
1487 return true;
1488 }
1489 case X86::SUB32i32: {
1490 if (!Inst.getOperand(0).isImm() ||
1491 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1492 return false;
1493
1494 MCInst TmpInst;
1495 TmpInst.setOpcode(X86::SUB32ri8);
1496 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1497 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1498 TmpInst.addOperand(Inst.getOperand(0));
1499 Inst = TmpInst;
1500 return true;
1501 }
1502 case X86::SUB64i32: {
1503 if (!Inst.getOperand(0).isImm() ||
1504 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1505 return false;
1506
1507 MCInst TmpInst;
1508 TmpInst.setOpcode(X86::SUB64ri8);
1509 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1510 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1511 TmpInst.addOperand(Inst.getOperand(0));
1512 Inst = TmpInst;
1513 return true;
1514 }
Devang Patelb8ba13f2012-01-18 22:42:29 +00001515 }
Devang Patelb8ba13f2012-01-18 22:42:29 +00001516}
1517
1518bool X86AsmParser::
Chris Lattner7036f8b2010-09-29 01:42:58 +00001519MatchAndEmitInstruction(SMLoc IDLoc,
Chris Lattner7c51a312010-09-29 01:50:45 +00001520 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chris Lattner7036f8b2010-09-29 01:42:58 +00001521 MCStreamer &Out) {
Chad Rosier3a86e132012-09-03 02:06:46 +00001522 unsigned Kind;
Chad Rosier22685872012-10-01 23:45:51 +00001523 unsigned Opcode;
Chad Rosier64bfcbb2012-08-21 18:14:59 +00001524 unsigned ErrorInfo;
Chad Rosier22685872012-10-01 23:45:51 +00001525 SmallVector<std::pair< unsigned, std::string >, 4> MapAndConstraints;
1526 bool Error = MatchInstruction(IDLoc, Operands, Out, Kind, Opcode,
1527 MapAndConstraints, ErrorInfo);
Chad Rosier32461762012-08-09 22:04:55 +00001528 return Error;
1529}
1530
1531bool X86AsmParser::
Chad Rosier22685872012-10-01 23:45:51 +00001532MatchInstruction(SMLoc IDLoc,
Chad Rosier32461762012-08-09 22:04:55 +00001533 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chad Rosier22685872012-10-01 23:45:51 +00001534 MCStreamer &Out, unsigned &Kind, unsigned &Opcode,
1535 SmallVectorImpl<std::pair< unsigned, std::string > > &MapAndConstraints,
1536 unsigned &OrigErrorInfo, bool matchingInlineAsm) {
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001537 assert(!Operands.empty() && "Unexpect empty operand list!");
Chris Lattner7c51a312010-09-29 01:50:45 +00001538 X86Operand *Op = static_cast<X86Operand*>(Operands[0]);
1539 assert(Op->isToken() && "Leading operand should always be a mnemonic!");
Chad Rosierb4fdade2012-08-21 19:36:59 +00001540 ArrayRef<SMRange> EmptyRanges = ArrayRef<SMRange>();
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001541
Chris Lattner7c51a312010-09-29 01:50:45 +00001542 // First, handle aliases that expand to multiple instructions.
1543 // FIXME: This should be replaced with a real .td file alias mechanism.
Chad Rosier4ee08082012-08-28 23:57:47 +00001544 // Also, MatchInstructionImpl should actually *do* the EmitInstruction
Chris Lattner90fd7972010-11-06 19:57:21 +00001545 // call.
Andrew Trick0966ec02010-10-22 03:58:29 +00001546 if (Op->getToken() == "fstsw" || Op->getToken() == "fstcw" ||
Chris Lattner8b260a72010-10-30 18:07:17 +00001547 Op->getToken() == "fstsww" || Op->getToken() == "fstcww" ||
Chris Lattner905f2e02010-09-30 17:11:29 +00001548 Op->getToken() == "finit" || Op->getToken() == "fsave" ||
Kevin Enderby5a378072010-10-27 02:53:04 +00001549 Op->getToken() == "fstenv" || Op->getToken() == "fclex") {
Chris Lattner7c51a312010-09-29 01:50:45 +00001550 MCInst Inst;
1551 Inst.setOpcode(X86::WAIT);
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001552 Inst.setLoc(IDLoc);
Chad Rosier22685872012-10-01 23:45:51 +00001553 if (!matchingInlineAsm)
1554 Out.EmitInstruction(Inst);
Chris Lattner7c51a312010-09-29 01:50:45 +00001555
Chris Lattner0bb83a82010-09-30 16:39:29 +00001556 const char *Repl =
1557 StringSwitch<const char*>(Op->getToken())
Chris Lattner8b260a72010-10-30 18:07:17 +00001558 .Case("finit", "fninit")
1559 .Case("fsave", "fnsave")
1560 .Case("fstcw", "fnstcw")
1561 .Case("fstcww", "fnstcw")
Chris Lattner905f2e02010-09-30 17:11:29 +00001562 .Case("fstenv", "fnstenv")
Chris Lattner8b260a72010-10-30 18:07:17 +00001563 .Case("fstsw", "fnstsw")
1564 .Case("fstsww", "fnstsw")
1565 .Case("fclex", "fnclex")
Chris Lattner0bb83a82010-09-30 16:39:29 +00001566 .Default(0);
1567 assert(Repl && "Unknown wait-prefixed instruction");
Benjamin Kramerb0f96fa2010-10-01 12:25:27 +00001568 delete Operands[0];
Chris Lattner0bb83a82010-09-30 16:39:29 +00001569 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattner7c51a312010-09-29 01:50:45 +00001570 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001571
Chris Lattnera008e8a2010-09-06 21:54:15 +00001572 bool WasOriginallyInvalidOperand = false;
Chris Lattner7036f8b2010-09-29 01:42:58 +00001573 MCInst Inst;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001574
Daniel Dunbarc918d602010-05-04 16:12:42 +00001575 // First, try a direct match.
Chad Rosier22685872012-10-01 23:45:51 +00001576 switch (MatchInstructionImpl(Operands, Kind, Inst, MapAndConstraints,
1577 OrigErrorInfo, matchingInlineAsm,
Devang Patelbe3e3102012-01-30 20:02:42 +00001578 isParsingIntelSyntax())) {
Jim Grosbach19cb7f42011-08-15 23:03:29 +00001579 default: break;
Chris Lattnerec6789f2010-09-06 20:08:02 +00001580 case Match_Success:
Devang Patelb8ba13f2012-01-18 22:42:29 +00001581 // Some instructions need post-processing to, for example, tweak which
1582 // encoding is selected. Loop on it while changes happen so the
Chad Rosier36b8fed2012-06-27 22:34:28 +00001583 // individual transformations can chain off each other.
Chad Rosier22685872012-10-01 23:45:51 +00001584 if (!matchingInlineAsm)
1585 while (processInstruction(Inst, Operands))
1586 ;
Devang Patelb8ba13f2012-01-18 22:42:29 +00001587
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001588 Inst.setLoc(IDLoc);
Chad Rosier22685872012-10-01 23:45:51 +00001589 if (!matchingInlineAsm)
1590 Out.EmitInstruction(Inst);
1591 Opcode = Inst.getOpcode();
Daniel Dunbarc918d602010-05-04 16:12:42 +00001592 return false;
Chris Lattnerec6789f2010-09-06 20:08:02 +00001593 case Match_MissingFeature:
Chad Rosierb4fdade2012-08-21 19:36:59 +00001594 Error(IDLoc, "instruction requires a CPU feature not currently enabled",
1595 EmptyRanges, matchingInlineAsm);
Chris Lattnerec6789f2010-09-06 20:08:02 +00001596 return true;
Chris Lattnera008e8a2010-09-06 21:54:15 +00001597 case Match_InvalidOperand:
1598 WasOriginallyInvalidOperand = true;
1599 break;
1600 case Match_MnemonicFail:
Chris Lattnerec6789f2010-09-06 20:08:02 +00001601 break;
1602 }
Daniel Dunbarc918d602010-05-04 16:12:42 +00001603
Daniel Dunbarc918d602010-05-04 16:12:42 +00001604 // FIXME: Ideally, we would only attempt suffix matches for things which are
1605 // valid prefixes, and we could just infer the right unambiguous
1606 // type. However, that requires substantially more matcher support than the
1607 // following hack.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001608
Daniel Dunbarc918d602010-05-04 16:12:42 +00001609 // Change the operand to point to a temporary token.
Daniel Dunbarc918d602010-05-04 16:12:42 +00001610 StringRef Base = Op->getToken();
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001611 SmallString<16> Tmp;
1612 Tmp += Base;
1613 Tmp += ' ';
1614 Op->setTokenValue(Tmp.str());
Daniel Dunbarc918d602010-05-04 16:12:42 +00001615
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001616 // If this instruction starts with an 'f', then it is a floating point stack
1617 // instruction. These come in up to three forms for 32-bit, 64-bit, and
1618 // 80-bit floating point, which use the suffixes s,l,t respectively.
1619 //
1620 // Otherwise, we assume that this may be an integer instruction, which comes
1621 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
1622 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
Chad Rosier36b8fed2012-06-27 22:34:28 +00001623
Daniel Dunbarc918d602010-05-04 16:12:42 +00001624 // Check for the various suffix matches.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001625 Tmp[Base.size()] = Suffixes[0];
1626 unsigned ErrorInfoIgnore;
Jim Grosbach19cb7f42011-08-15 23:03:29 +00001627 unsigned Match1, Match2, Match3, Match4;
Chad Rosierc4d25602012-09-03 03:16:09 +00001628 unsigned tKind;
Chad Rosier36b8fed2012-06-27 22:34:28 +00001629
Chad Rosier22685872012-10-01 23:45:51 +00001630 SmallVector<std::pair< unsigned, std::string >, 4> tMapAndConstraints[4];
1631 Match1 = MatchInstructionImpl(Operands, tKind, Inst, tMapAndConstraints[0],
1632 ErrorInfoIgnore, isParsingIntelSyntax());
Chad Rosierc4d25602012-09-03 03:16:09 +00001633 if (Match1 == Match_Success) Kind = tKind;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001634 Tmp[Base.size()] = Suffixes[1];
Chad Rosier22685872012-10-01 23:45:51 +00001635 Match2 = MatchInstructionImpl(Operands, tKind, Inst, tMapAndConstraints[1],
1636 ErrorInfoIgnore, isParsingIntelSyntax());
Chad Rosierc4d25602012-09-03 03:16:09 +00001637 if (Match2 == Match_Success) Kind = tKind;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001638 Tmp[Base.size()] = Suffixes[2];
Chad Rosier22685872012-10-01 23:45:51 +00001639 Match3 = MatchInstructionImpl(Operands, tKind, Inst, tMapAndConstraints[2],
1640 ErrorInfoIgnore, isParsingIntelSyntax());
Chad Rosierc4d25602012-09-03 03:16:09 +00001641 if (Match3 == Match_Success) Kind = tKind;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001642 Tmp[Base.size()] = Suffixes[3];
Chad Rosier22685872012-10-01 23:45:51 +00001643 Match4 = MatchInstructionImpl(Operands, tKind, Inst, tMapAndConstraints[3],
1644 ErrorInfoIgnore, isParsingIntelSyntax());
Chad Rosierc4d25602012-09-03 03:16:09 +00001645 if (Match4 == Match_Success) Kind = tKind;
Daniel Dunbarc918d602010-05-04 16:12:42 +00001646
1647 // Restore the old token.
1648 Op->setTokenValue(Base);
1649
1650 // If exactly one matched, then we treat that as a successful match (and the
1651 // instruction will already have been filled in correctly, since the failing
1652 // matches won't have modified it).
Chris Lattnerec6789f2010-09-06 20:08:02 +00001653 unsigned NumSuccessfulMatches =
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001654 (Match1 == Match_Success) + (Match2 == Match_Success) +
1655 (Match3 == Match_Success) + (Match4 == Match_Success);
Chris Lattner7036f8b2010-09-29 01:42:58 +00001656 if (NumSuccessfulMatches == 1) {
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001657 Inst.setLoc(IDLoc);
Chad Rosier22685872012-10-01 23:45:51 +00001658 if (!matchingInlineAsm)
1659 Out.EmitInstruction(Inst);
1660 Opcode = Inst.getOpcode();
1661 // FIXME: Handle the map and constraints.
Daniel Dunbarc918d602010-05-04 16:12:42 +00001662 return false;
Chris Lattner7036f8b2010-09-29 01:42:58 +00001663 }
Daniel Dunbarc918d602010-05-04 16:12:42 +00001664
Chris Lattnerec6789f2010-09-06 20:08:02 +00001665 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001666
Daniel Dunbar09062b12010-08-12 00:55:42 +00001667 // If we had multiple suffix matches, then identify this as an ambiguous
1668 // match.
Chris Lattnerec6789f2010-09-06 20:08:02 +00001669 if (NumSuccessfulMatches > 1) {
Daniel Dunbar09062b12010-08-12 00:55:42 +00001670 char MatchChars[4];
1671 unsigned NumMatches = 0;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001672 if (Match1 == Match_Success) MatchChars[NumMatches++] = Suffixes[0];
1673 if (Match2 == Match_Success) MatchChars[NumMatches++] = Suffixes[1];
1674 if (Match3 == Match_Success) MatchChars[NumMatches++] = Suffixes[2];
1675 if (Match4 == Match_Success) MatchChars[NumMatches++] = Suffixes[3];
Daniel Dunbar09062b12010-08-12 00:55:42 +00001676
1677 SmallString<126> Msg;
1678 raw_svector_ostream OS(Msg);
1679 OS << "ambiguous instructions require an explicit suffix (could be ";
1680 for (unsigned i = 0; i != NumMatches; ++i) {
1681 if (i != 0)
1682 OS << ", ";
1683 if (i + 1 == NumMatches)
1684 OS << "or ";
1685 OS << "'" << Base << MatchChars[i] << "'";
1686 }
1687 OS << ")";
Chad Rosierb4fdade2012-08-21 19:36:59 +00001688 Error(IDLoc, OS.str(), EmptyRanges, matchingInlineAsm);
Chris Lattnerec6789f2010-09-06 20:08:02 +00001689 return true;
Daniel Dunbar09062b12010-08-12 00:55:42 +00001690 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001691
Chris Lattnera008e8a2010-09-06 21:54:15 +00001692 // Okay, we know that none of the variants matched successfully.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001693
Chris Lattnera008e8a2010-09-06 21:54:15 +00001694 // If all of the instructions reported an invalid mnemonic, then the original
1695 // mnemonic was invalid.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001696 if ((Match1 == Match_MnemonicFail) && (Match2 == Match_MnemonicFail) &&
1697 (Match3 == Match_MnemonicFail) && (Match4 == Match_MnemonicFail)) {
Chris Lattnerce4a3352010-09-06 22:11:18 +00001698 if (!WasOriginallyInvalidOperand) {
Chad Rosier674101e2012-08-22 19:14:29 +00001699 ArrayRef<SMRange> Ranges = matchingInlineAsm ? EmptyRanges :
1700 Op->getLocRange();
Benjamin Kramerf82edaf2011-10-16 11:28:29 +00001701 return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
Chad Rosier674101e2012-08-22 19:14:29 +00001702 Ranges, matchingInlineAsm);
Chris Lattnerce4a3352010-09-06 22:11:18 +00001703 }
1704
1705 // Recover location info for the operand if we know which was the problem.
Chris Lattnerce4a3352010-09-06 22:11:18 +00001706 if (OrigErrorInfo != ~0U) {
Chris Lattnerf8840122010-09-15 03:50:11 +00001707 if (OrigErrorInfo >= Operands.size())
Chad Rosierb4fdade2012-08-21 19:36:59 +00001708 return Error(IDLoc, "too few operands for instruction",
1709 EmptyRanges, matchingInlineAsm);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001710
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001711 X86Operand *Operand = (X86Operand*)Operands[OrigErrorInfo];
1712 if (Operand->getStartLoc().isValid()) {
1713 SMRange OperandRange = Operand->getLocRange();
1714 return Error(Operand->getStartLoc(), "invalid operand for instruction",
Chad Rosierb4fdade2012-08-21 19:36:59 +00001715 OperandRange, matchingInlineAsm);
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001716 }
Chris Lattnerce4a3352010-09-06 22:11:18 +00001717 }
1718
Chad Rosierb4fdade2012-08-21 19:36:59 +00001719 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
1720 matchingInlineAsm);
Chris Lattnera008e8a2010-09-06 21:54:15 +00001721 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001722
Chris Lattnerec6789f2010-09-06 20:08:02 +00001723 // If one instruction matched with a missing feature, report this as a
1724 // missing feature.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001725 if ((Match1 == Match_MissingFeature) + (Match2 == Match_MissingFeature) +
1726 (Match3 == Match_MissingFeature) + (Match4 == Match_MissingFeature) == 1){
Chad Rosierb4fdade2012-08-21 19:36:59 +00001727 Error(IDLoc, "instruction requires a CPU feature not currently enabled",
1728 EmptyRanges, matchingInlineAsm);
Chris Lattnerec6789f2010-09-06 20:08:02 +00001729 return true;
1730 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001731
Chris Lattnera008e8a2010-09-06 21:54:15 +00001732 // If one instruction matched with an invalid operand, report this as an
1733 // operand failure.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001734 if ((Match1 == Match_InvalidOperand) + (Match2 == Match_InvalidOperand) +
1735 (Match3 == Match_InvalidOperand) + (Match4 == Match_InvalidOperand) == 1){
Chad Rosierb4fdade2012-08-21 19:36:59 +00001736 Error(IDLoc, "invalid operand for instruction", EmptyRanges,
1737 matchingInlineAsm);
Chris Lattnera008e8a2010-09-06 21:54:15 +00001738 return true;
1739 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001740
Chris Lattnerec6789f2010-09-06 20:08:02 +00001741 // If all of these were an outright failure, report it in a useless way.
Chad Rosierb4fdade2012-08-21 19:36:59 +00001742 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
1743 EmptyRanges, matchingInlineAsm);
Daniel Dunbarc918d602010-05-04 16:12:42 +00001744 return true;
1745}
1746
1747
Devang Pateldd929fc2012-01-12 18:03:40 +00001748bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
Chris Lattner537ca842010-10-30 17:38:55 +00001749 StringRef IDVal = DirectiveID.getIdentifier();
1750 if (IDVal == ".word")
1751 return ParseDirectiveWord(2, DirectiveID.getLoc());
Evan Chengbd27f5a2011-07-27 00:38:12 +00001752 else if (IDVal.startswith(".code"))
1753 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
Chad Rosier3c4ecd72012-09-10 20:54:39 +00001754 else if (IDVal.startswith(".att_syntax")) {
1755 getParser().setAssemblerDialect(0);
1756 return false;
1757 } else if (IDVal.startswith(".intel_syntax")) {
Devang Patel0db58bf2012-01-31 18:14:05 +00001758 getParser().setAssemblerDialect(1);
Devang Patelbe3e3102012-01-30 20:02:42 +00001759 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1760 if(Parser.getTok().getString() == "noprefix") {
Craig Topper76bd9382012-07-18 04:59:16 +00001761 // FIXME : Handle noprefix
1762 Parser.Lex();
Devang Patelbe3e3102012-01-30 20:02:42 +00001763 } else
Craig Topper76bd9382012-07-18 04:59:16 +00001764 return true;
Devang Patelbe3e3102012-01-30 20:02:42 +00001765 }
1766 return false;
1767 }
Chris Lattner537ca842010-10-30 17:38:55 +00001768 return true;
1769}
1770
1771/// ParseDirectiveWord
1772/// ::= .word [ expression (, expression)* ]
Devang Pateldd929fc2012-01-12 18:03:40 +00001773bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
Chris Lattner537ca842010-10-30 17:38:55 +00001774 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1775 for (;;) {
1776 const MCExpr *Value;
1777 if (getParser().ParseExpression(Value))
1778 return true;
Chad Rosier36b8fed2012-06-27 22:34:28 +00001779
Chris Lattner537ca842010-10-30 17:38:55 +00001780 getParser().getStreamer().EmitValue(Value, Size, 0 /*addrspace*/);
Chad Rosier36b8fed2012-06-27 22:34:28 +00001781
Chris Lattner537ca842010-10-30 17:38:55 +00001782 if (getLexer().is(AsmToken::EndOfStatement))
1783 break;
Chad Rosier36b8fed2012-06-27 22:34:28 +00001784
Chris Lattner537ca842010-10-30 17:38:55 +00001785 // FIXME: Improve diagnostic.
1786 if (getLexer().isNot(AsmToken::Comma))
1787 return Error(L, "unexpected token in directive");
1788 Parser.Lex();
1789 }
1790 }
Chad Rosier36b8fed2012-06-27 22:34:28 +00001791
Chris Lattner537ca842010-10-30 17:38:55 +00001792 Parser.Lex();
1793 return false;
1794}
1795
Evan Chengbd27f5a2011-07-27 00:38:12 +00001796/// ParseDirectiveCode
1797/// ::= .code32 | .code64
Devang Pateldd929fc2012-01-12 18:03:40 +00001798bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
Evan Chengbd27f5a2011-07-27 00:38:12 +00001799 if (IDVal == ".code32") {
1800 Parser.Lex();
1801 if (is64BitMode()) {
1802 SwitchMode();
1803 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
1804 }
1805 } else if (IDVal == ".code64") {
1806 Parser.Lex();
1807 if (!is64BitMode()) {
1808 SwitchMode();
1809 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
1810 }
1811 } else {
1812 return Error(L, "unexpected directive " + IDVal);
1813 }
Chris Lattner537ca842010-10-30 17:38:55 +00001814
Evan Chengbd27f5a2011-07-27 00:38:12 +00001815 return false;
1816}
Chris Lattner537ca842010-10-30 17:38:55 +00001817
1818
Sean Callanane88f5522010-01-23 02:43:15 +00001819extern "C" void LLVMInitializeX86AsmLexer();
1820
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00001821// Force static initialization.
1822extern "C" void LLVMInitializeX86AsmParser() {
Devang Pateldd929fc2012-01-12 18:03:40 +00001823 RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
1824 RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
Sean Callanane88f5522010-01-23 02:43:15 +00001825 LLVMInitializeX86AsmLexer();
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00001826}
Daniel Dunbar0e2771f2009-07-29 00:02:19 +00001827
Chris Lattner0692ee62010-09-06 19:11:01 +00001828#define GET_REGISTER_MATCHER
1829#define GET_MATCHER_IMPLEMENTATION
Daniel Dunbar0e2771f2009-07-29 00:02:19 +00001830#include "X86GenAsmMatcher.inc"