blob: fdb7583ed07c7347b3c931293b4a1e1134363da6 [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"
Chad Rosier4284e172012-10-24 22:13:37 +000011#include "llvm/ADT/APFloat.h"
Chris Lattner33d60d52010-09-22 04:11:10 +000012#include "llvm/ADT/SmallString.h"
13#include "llvm/ADT/SmallVector.h"
Chris Lattner33d60d52010-09-22 04:11:10 +000014#include "llvm/ADT/StringSwitch.h"
15#include "llvm/ADT/Twine.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "llvm/MC/MCExpr.h"
17#include "llvm/MC/MCInst.h"
18#include "llvm/MC/MCParser/MCAsmLexer.h"
19#include "llvm/MC/MCParser/MCAsmParser.h"
20#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
21#include "llvm/MC/MCRegisterInfo.h"
22#include "llvm/MC/MCStreamer.h"
23#include "llvm/MC/MCSubtargetInfo.h"
24#include "llvm/MC/MCSymbol.h"
25#include "llvm/MC/MCTargetAsmParser.h"
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000026#include "llvm/Support/SourceMgr.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000027#include "llvm/Support/TargetRegistry.h"
Daniel Dunbar09062b12010-08-12 00:55:42 +000028#include "llvm/Support/raw_ostream.h"
Evan Chengebdeeab2011-07-08 01:53:10 +000029
Daniel Dunbar092a9dd2009-07-17 20:42:00 +000030using namespace llvm;
31
32namespace {
Benjamin Kramerc6b79ac2009-07-31 11:35:26 +000033struct X86Operand;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000034
Devang Pateldd929fc2012-01-12 18:03:40 +000035class X86AsmParser : public MCTargetAsmParser {
Evan Chengffc0e732011-07-09 05:47:46 +000036 MCSubtargetInfo &STI;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000037 MCAsmParser &Parser;
Chad Rosier6a020a72012-10-25 20:41:34 +000038 ParseInstructionInfo *InstInfo;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000039private:
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000040 MCAsmParser &getParser() const { return Parser; }
41
42 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
43
Chris Lattnerd8b7aa22011-10-16 04:47:35 +000044 bool Error(SMLoc L, const Twine &Msg,
Chad Rosierb4fdade2012-08-21 19:36:59 +000045 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>(),
Chad Rosier7a2b6242012-10-12 23:09:25 +000046 bool MatchingInlineAsm = false) {
47 if (MatchingInlineAsm) return true;
Chris Lattnerd8b7aa22011-10-16 04:47:35 +000048 return Parser.Error(L, Msg, Ranges);
49 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000050
Devang Pateld37ad242012-01-17 18:00:18 +000051 X86Operand *ErrorOperand(SMLoc Loc, StringRef Msg) {
52 Error(Loc, Msg);
53 return 0;
54 }
55
Chris Lattner309264d2010-01-15 18:44:13 +000056 X86Operand *ParseOperand();
Devang Patel0a338862012-01-12 01:36:43 +000057 X86Operand *ParseATTOperand();
58 X86Operand *ParseIntelOperand();
Chad Rosierc0a14b82012-10-24 17:22:29 +000059 X86Operand *ParseIntelOffsetOfOperator(SMLoc StartLoc);
Chad Rosierefcb3d92012-10-26 18:04:20 +000060 X86Operand *ParseIntelTypeOperator(SMLoc StartLoc);
Chad Rosier5b0f1b32012-10-04 23:59:38 +000061 X86Operand *ParseIntelMemOperand(unsigned SegReg, SMLoc StartLoc);
Devang Patel7c64fe62012-01-23 18:31:58 +000062 X86Operand *ParseIntelBracExpression(unsigned SegReg, unsigned Size);
Chris Lattnereef6d782010-04-17 18:56:34 +000063 X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderby9c656452009-09-10 20:51:44 +000064
Chad Rosier5e6b37f2012-10-25 17:37:43 +000065 bool ParseIntelDotOperator(const MCExpr *Disp, const MCExpr **NewDisp,
66 SmallString<64> &Err);
Chad Rosier22f441a2012-10-24 22:21:50 +000067
Kevin Enderby9c656452009-09-10 20:51:44 +000068 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Evan Chengbd27f5a2011-07-27 00:38:12 +000069 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
Kevin Enderby9c656452009-09-10 20:51:44 +000070
Devang Patelb8ba13f2012-01-18 22:42:29 +000071 bool processInstruction(MCInst &Inst,
72 const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
73
Chad Rosier84125ca2012-10-13 00:26:04 +000074 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
Chris Lattner7c51a312010-09-29 01:50:45 +000075 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chad Rosier84125ca2012-10-13 00:26:04 +000076 MCStreamer &Out, unsigned &ErrorInfo,
77 bool MatchingInlineAsm);
Chad Rosier32461762012-08-09 22:04:55 +000078
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +000079 /// isSrcOp - Returns true if operand is either (%rsi) or %ds:%(rsi)
Kevin Enderby0f5ab7c2012-03-13 19:47:55 +000080 /// in 64bit mode or (%esi) or %es:(%esi) in 32bit mode.
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +000081 bool isSrcOp(X86Operand &Op);
82
Kevin Enderby0f5ab7c2012-03-13 19:47:55 +000083 /// isDstOp - Returns true if operand is either (%rdi) or %es:(%rdi)
84 /// in 64bit mode or (%edi) or %es:(%edi) in 32bit mode.
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +000085 bool isDstOp(X86Operand &Op);
86
Evan Cheng59ee62d2011-07-11 03:57:24 +000087 bool is64BitMode() const {
Evan Chengebdeeab2011-07-08 01:53:10 +000088 // FIXME: Can tablegen auto-generate this?
Evan Chengffc0e732011-07-09 05:47:46 +000089 return (STI.getFeatureBits() & X86::Mode64Bit) != 0;
Evan Chengebdeeab2011-07-08 01:53:10 +000090 }
Evan Chengbd27f5a2011-07-27 00:38:12 +000091 void SwitchMode() {
92 unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(X86::Mode64Bit));
93 setAvailableFeatures(FB);
94 }
Evan Chengebdeeab2011-07-08 01:53:10 +000095
Daniel Dunbar54074b52010-07-19 05:44:09 +000096 /// @name Auto-generated Matcher Functions
97 /// {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000098
Chris Lattner0692ee62010-09-06 19:11:01 +000099#define GET_ASSEMBLER_HEADER
100#include "X86GenAsmMatcher.inc"
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000101
Daniel Dunbar0e2771f2009-07-29 00:02:19 +0000102 /// }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000103
104public:
Devang Pateldd929fc2012-01-12 18:03:40 +0000105 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &parser)
Chad Rosier6a020a72012-10-25 20:41:34 +0000106 : MCTargetAsmParser(), STI(sti), Parser(parser), InstInfo(0) {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000107
Daniel Dunbar54074b52010-07-19 05:44:09 +0000108 // Initialize the set of available features.
Evan Chengffc0e732011-07-09 05:47:46 +0000109 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Daniel Dunbar54074b52010-07-19 05:44:09 +0000110 }
Roman Divackybf755322011-01-27 17:14:22 +0000111 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000112
Chad Rosier6a020a72012-10-25 20:41:34 +0000113 virtual bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
114 SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +0000115 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Kevin Enderby9c656452009-09-10 20:51:44 +0000116
117 virtual bool ParseDirective(AsmToken DirectiveID);
Devang Patelbe3e3102012-01-30 20:02:42 +0000118
119 bool isParsingIntelSyntax() {
Devang Patel0db58bf2012-01-31 18:14:05 +0000120 return getParser().getAssemblerDialect();
Devang Patelbe3e3102012-01-30 20:02:42 +0000121 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000122};
Chris Lattner37dfdec2009-07-29 06:33:53 +0000123} // end anonymous namespace
124
Sean Callanane9b466d2010-01-23 00:40:33 +0000125/// @name Auto-generated Match Functions
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000126/// {
Sean Callanane9b466d2010-01-23 00:40:33 +0000127
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000128static unsigned MatchRegisterName(StringRef Name);
Sean Callanane9b466d2010-01-23 00:40:33 +0000129
130/// }
Chris Lattner37dfdec2009-07-29 06:33:53 +0000131
Craig Topper76bd9382012-07-18 04:59:16 +0000132static bool isImmSExti16i8Value(uint64_t Value) {
Devang Patelb8ba13f2012-01-18 22:42:29 +0000133 return (( Value <= 0x000000000000007FULL)||
134 (0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)||
135 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
136}
137
138static bool isImmSExti32i8Value(uint64_t Value) {
139 return (( Value <= 0x000000000000007FULL)||
140 (0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)||
141 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
142}
143
144static bool isImmZExtu32u8Value(uint64_t Value) {
145 return (Value <= 0x00000000000000FFULL);
146}
147
148static bool isImmSExti64i8Value(uint64_t Value) {
149 return (( Value <= 0x000000000000007FULL)||
Craig Topper76bd9382012-07-18 04:59:16 +0000150 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
Devang Patelb8ba13f2012-01-18 22:42:29 +0000151}
152
153static bool isImmSExti64i32Value(uint64_t Value) {
154 return (( Value <= 0x000000007FFFFFFFULL)||
Craig Topper76bd9382012-07-18 04:59:16 +0000155 (0xFFFFFFFF80000000ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
Devang Patelb8ba13f2012-01-18 22:42:29 +0000156}
Chris Lattner37dfdec2009-07-29 06:33:53 +0000157namespace {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000158
159/// X86Operand - Instances of this class represent a parsed X86 machine
160/// instruction.
Chris Lattner45220a82010-01-14 21:20:55 +0000161struct X86Operand : public MCParsedAsmOperand {
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000162 enum KindTy {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000163 Token,
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000164 Register,
165 Immediate,
Chad Rosierf9e008b2012-10-02 23:38:50 +0000166 Memory
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000167 } Kind;
168
Chris Lattner29ef9a22010-01-15 18:51:29 +0000169 SMLoc StartLoc, EndLoc;
Chad Rosier5a719fc2012-10-23 17:43:43 +0000170 SMLoc OffsetOfLoc;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000171
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000172 union {
173 struct {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000174 const char *Data;
175 unsigned Length;
176 } Tok;
177
178 struct {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000179 unsigned RegNo;
180 } Reg;
181
182 struct {
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000183 const MCExpr *Val;
Chad Rosierefcb3d92012-10-26 18:04:20 +0000184 bool NeedAsmRewrite;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000185 } Imm;
186
187 struct {
188 unsigned SegReg;
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000189 const MCExpr *Disp;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000190 unsigned BaseReg;
191 unsigned IndexReg;
192 unsigned Scale;
Devang Patelc59d9df2012-01-12 01:51:42 +0000193 unsigned Size;
Chad Rosier96d58e62012-10-19 20:57:14 +0000194 bool NeedSizeDir;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000195 } Mem;
Daniel Dunbardbd692a2009-07-20 20:01:54 +0000196 };
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000197
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000198 X86Operand(KindTy K, SMLoc Start, SMLoc End)
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000199 : Kind(K), StartLoc(Start), EndLoc(End) {}
Daniel Dunbarc918d602010-05-04 16:12:42 +0000200
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000201 /// getStartLoc - Get the location of the first token of this operand.
202 SMLoc getStartLoc() const { return StartLoc; }
203 /// getEndLoc - Get the location of the last token of this operand.
204 SMLoc getEndLoc() const { return EndLoc; }
Chad Rosier7d4e9892012-09-21 21:08:46 +0000205 /// getLocRange - Get the range between the first and last token of this
206 /// operand.
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000207 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
Chad Rosier5a719fc2012-10-23 17:43:43 +0000208 /// getOffsetOfLoc - Get the location of the offset operator.
209 SMLoc getOffsetOfLoc() const { return OffsetOfLoc; }
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000210
Jim Grosbachb7f689b2011-07-13 15:34:57 +0000211 virtual void print(raw_ostream &OS) const {}
Daniel Dunbarb3cb6962010-08-11 06:37:04 +0000212
Daniel Dunbar20927f22009-08-07 08:26:05 +0000213 StringRef getToken() const {
214 assert(Kind == Token && "Invalid access!");
215 return StringRef(Tok.Data, Tok.Length);
216 }
Daniel Dunbarc918d602010-05-04 16:12:42 +0000217 void setTokenValue(StringRef Value) {
218 assert(Kind == Token && "Invalid access!");
219 Tok.Data = Value.data();
220 Tok.Length = Value.size();
221 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000222
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000223 unsigned getReg() const {
224 assert(Kind == Register && "Invalid access!");
225 return Reg.RegNo;
226 }
Daniel Dunbara2edbab2009-07-28 20:47:52 +0000227
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000228 const MCExpr *getImm() const {
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000229 assert(Kind == Immediate && "Invalid access!");
230 return Imm.Val;
231 }
232
Chad Rosierefcb3d92012-10-26 18:04:20 +0000233 bool needAsmRewrite() const {
234 assert(Kind == Immediate && "Invalid access!");
235 return Imm.NeedAsmRewrite;
236 }
237
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000238 const MCExpr *getMemDisp() const {
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000239 assert(Kind == Memory && "Invalid access!");
240 return Mem.Disp;
241 }
242 unsigned getMemSegReg() const {
243 assert(Kind == Memory && "Invalid access!");
244 return Mem.SegReg;
245 }
246 unsigned getMemBaseReg() const {
247 assert(Kind == Memory && "Invalid access!");
248 return Mem.BaseReg;
249 }
250 unsigned getMemIndexReg() const {
251 assert(Kind == Memory && "Invalid access!");
252 return Mem.IndexReg;
253 }
254 unsigned getMemScale() const {
255 assert(Kind == Memory && "Invalid access!");
256 return Mem.Scale;
257 }
258
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000259 bool isToken() const {return Kind == Token; }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000260
261 bool isImm() const { return Kind == Immediate; }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000262
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000263 bool isImmSExti16i8() const {
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000264 if (!isImm())
265 return false;
266
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000267 // If this isn't a constant expr, just assume it fits and let relaxation
268 // handle it.
269 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
270 if (!CE)
271 return true;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000272
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000273 // Otherwise, check the value is in a range that makes sense for this
274 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000275 return isImmSExti16i8Value(CE->getValue());
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000276 }
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000277 bool isImmSExti32i8() const {
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000278 if (!isImm())
279 return false;
280
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000281 // If this isn't a constant expr, just assume it fits and let relaxation
282 // handle it.
283 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
284 if (!CE)
285 return true;
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000286
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000287 // Otherwise, check the value is in a range that makes sense for this
288 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000289 return isImmSExti32i8Value(CE->getValue());
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000290 }
Kevin Enderbyc37d4bb2011-07-27 23:01:50 +0000291 bool isImmZExtu32u8() const {
292 if (!isImm())
293 return false;
294
295 // If this isn't a constant expr, just assume it fits and let relaxation
296 // handle it.
297 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
298 if (!CE)
299 return true;
300
301 // Otherwise, check the value is in a range that makes sense for this
302 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000303 return isImmZExtu32u8Value(CE->getValue());
Kevin Enderbyc37d4bb2011-07-27 23:01:50 +0000304 }
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000305 bool isImmSExti64i8() const {
306 if (!isImm())
307 return false;
308
309 // If this isn't a constant expr, just assume it fits and let relaxation
310 // handle it.
311 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
312 if (!CE)
313 return true;
314
315 // Otherwise, check the value is in a range that makes sense for this
316 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000317 return isImmSExti64i8Value(CE->getValue());
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000318 }
319 bool isImmSExti64i32() const {
320 if (!isImm())
321 return false;
322
323 // If this isn't a constant expr, just assume it fits and let relaxation
324 // handle it.
325 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
326 if (!CE)
327 return true;
328
329 // Otherwise, check the value is in a range that makes sense for this
330 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000331 return isImmSExti64i32Value(CE->getValue());
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000332 }
333
Chad Rosier96d58e62012-10-19 20:57:14 +0000334 unsigned getMemSize() const {
335 assert(Kind == Memory && "Invalid access!");
336 return Mem.Size;
337 }
338
Chad Rosiera703fb92012-10-22 19:50:35 +0000339 bool isOffsetOf() const {
Chad Rosierc0a14b82012-10-24 17:22:29 +0000340 return OffsetOfLoc.getPointer();
Chad Rosiera703fb92012-10-22 19:50:35 +0000341 }
342
Chad Rosier96d58e62012-10-19 20:57:14 +0000343 bool needSizeDirective() const {
344 assert(Kind == Memory && "Invalid access!");
345 return Mem.NeedSizeDir;
346 }
347
Daniel Dunbar20927f22009-08-07 08:26:05 +0000348 bool isMem() const { return Kind == Memory; }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000349 bool isMem8() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000350 return Kind == Memory && (!Mem.Size || Mem.Size == 8);
Devang Patelc59d9df2012-01-12 01:51:42 +0000351 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000352 bool isMem16() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000353 return Kind == Memory && (!Mem.Size || Mem.Size == 16);
Devang Patelc59d9df2012-01-12 01:51:42 +0000354 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000355 bool isMem32() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000356 return Kind == Memory && (!Mem.Size || Mem.Size == 32);
Devang Patelc59d9df2012-01-12 01:51:42 +0000357 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000358 bool isMem64() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000359 return Kind == Memory && (!Mem.Size || Mem.Size == 64);
Devang Patelc59d9df2012-01-12 01:51:42 +0000360 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000361 bool isMem80() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000362 return Kind == Memory && (!Mem.Size || Mem.Size == 80);
Devang Patelc59d9df2012-01-12 01:51:42 +0000363 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000364 bool isMem128() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000365 return Kind == Memory && (!Mem.Size || Mem.Size == 128);
Devang Patelc59d9df2012-01-12 01:51:42 +0000366 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000367 bool isMem256() const {
Chad Rosierf9e008b2012-10-02 23:38:50 +0000368 return Kind == Memory && (!Mem.Size || Mem.Size == 256);
Devang Patelc59d9df2012-01-12 01:51:42 +0000369 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000370
Craig Topper75dc33a2012-07-18 04:11:12 +0000371 bool isMemVX32() const {
372 return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
373 getMemIndexReg() >= X86::XMM0 && getMemIndexReg() <= X86::XMM15;
374 }
375 bool isMemVY32() const {
376 return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
377 getMemIndexReg() >= X86::YMM0 && getMemIndexReg() <= X86::YMM15;
378 }
379 bool isMemVX64() const {
380 return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
381 getMemIndexReg() >= X86::XMM0 && getMemIndexReg() <= X86::XMM15;
382 }
383 bool isMemVY64() const {
384 return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
385 getMemIndexReg() >= X86::YMM0 && getMemIndexReg() <= X86::YMM15;
386 }
387
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000388 bool isAbsMem() const {
389 return Kind == Memory && !getMemSegReg() && !getMemBaseReg() &&
Daniel Dunbar7b9147a2010-02-02 21:44:16 +0000390 !getMemIndexReg() && getMemScale() == 1;
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000391 }
392
Daniel Dunbar20927f22009-08-07 08:26:05 +0000393 bool isReg() const { return Kind == Register; }
394
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000395 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
396 // Add as immediates when possible.
397 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
398 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
399 else
400 Inst.addOperand(MCOperand::CreateExpr(Expr));
401 }
402
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000403 void addRegOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000404 assert(N == 1 && "Invalid number of operands!");
405 Inst.addOperand(MCOperand::CreateReg(getReg()));
406 }
407
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000408 void addImmOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000409 assert(N == 1 && "Invalid number of operands!");
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000410 addExpr(Inst, getImm());
Daniel Dunbar20927f22009-08-07 08:26:05 +0000411 }
412
Chad Rosier36b8fed2012-06-27 22:34:28 +0000413 void addMem8Operands(MCInst &Inst, unsigned N) const {
414 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000415 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000416 void addMem16Operands(MCInst &Inst, unsigned N) const {
417 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000418 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000419 void addMem32Operands(MCInst &Inst, unsigned N) const {
420 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000421 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000422 void addMem64Operands(MCInst &Inst, unsigned N) const {
423 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000424 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000425 void addMem80Operands(MCInst &Inst, unsigned N) const {
426 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000427 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000428 void addMem128Operands(MCInst &Inst, unsigned N) const {
429 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000430 }
Chad Rosier36b8fed2012-06-27 22:34:28 +0000431 void addMem256Operands(MCInst &Inst, unsigned N) const {
432 addMemOperands(Inst, N);
Devang Patelc59d9df2012-01-12 01:51:42 +0000433 }
Craig Topper75dc33a2012-07-18 04:11:12 +0000434 void addMemVX32Operands(MCInst &Inst, unsigned N) const {
435 addMemOperands(Inst, N);
436 }
437 void addMemVY32Operands(MCInst &Inst, unsigned N) const {
438 addMemOperands(Inst, N);
439 }
440 void addMemVX64Operands(MCInst &Inst, unsigned N) const {
441 addMemOperands(Inst, N);
442 }
443 void addMemVY64Operands(MCInst &Inst, unsigned N) const {
444 addMemOperands(Inst, N);
445 }
Devang Patelc59d9df2012-01-12 01:51:42 +0000446
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000447 void addMemOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbarec2b1f12010-01-30 00:24:00 +0000448 assert((N == 5) && "Invalid number of operands!");
Daniel Dunbar20927f22009-08-07 08:26:05 +0000449 Inst.addOperand(MCOperand::CreateReg(getMemBaseReg()));
450 Inst.addOperand(MCOperand::CreateImm(getMemScale()));
451 Inst.addOperand(MCOperand::CreateReg(getMemIndexReg()));
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000452 addExpr(Inst, getMemDisp());
Daniel Dunbarec2b1f12010-01-30 00:24:00 +0000453 Inst.addOperand(MCOperand::CreateReg(getMemSegReg()));
454 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000455
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000456 void addAbsMemOperands(MCInst &Inst, unsigned N) const {
457 assert((N == 1) && "Invalid number of operands!");
Kevin Enderbyb80d5712012-02-23 18:18:17 +0000458 // Add as immediates when possible.
459 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemDisp()))
460 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
461 else
462 Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000463 }
464
Chris Lattnerb4307b32010-01-15 19:28:38 +0000465 static X86Operand *CreateToken(StringRef Str, SMLoc Loc) {
Benjamin Kramerf82edaf2011-10-16 11:28:29 +0000466 SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size() - 1);
467 X86Operand *Res = new X86Operand(Token, Loc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000468 Res->Tok.Data = Str.data();
469 Res->Tok.Length = Str.size();
Daniel Dunbar20927f22009-08-07 08:26:05 +0000470 return Res;
471 }
472
Chad Rosierc0a14b82012-10-24 17:22:29 +0000473 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc,
474 SMLoc OffsetOfLoc = SMLoc()) {
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000475 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000476 Res->Reg.RegNo = RegNo;
Chad Rosierc0a14b82012-10-24 17:22:29 +0000477 Res->OffsetOfLoc = OffsetOfLoc;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000478 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000479 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000480
Chad Rosierefcb3d92012-10-26 18:04:20 +0000481 static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc,
482 bool NeedRewrite = true){
Chris Lattnerb4307b32010-01-15 19:28:38 +0000483 X86Operand *Res = new X86Operand(Immediate, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000484 Res->Imm.Val = Val;
Chad Rosierefcb3d92012-10-26 18:04:20 +0000485 Res->Imm.NeedAsmRewrite = NeedRewrite;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000486 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000487 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000488
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000489 /// Create an absolute memory operand.
Chad Rosier4284e172012-10-24 22:13:37 +0000490 static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc, SMLoc EndLoc,
491 unsigned Size = 0, bool NeedSizeDir = false){
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000492 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
493 Res->Mem.SegReg = 0;
494 Res->Mem.Disp = Disp;
495 Res->Mem.BaseReg = 0;
496 Res->Mem.IndexReg = 0;
Daniel Dunbar7b9147a2010-02-02 21:44:16 +0000497 Res->Mem.Scale = 1;
Devang Patelc59d9df2012-01-12 01:51:42 +0000498 Res->Mem.Size = Size;
Chad Rosier96d58e62012-10-19 20:57:14 +0000499 Res->Mem.NeedSizeDir = NeedSizeDir;
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000500 return Res;
501 }
502
503 /// Create a generalized memory operand.
Chris Lattner309264d2010-01-15 18:44:13 +0000504 static X86Operand *CreateMem(unsigned SegReg, const MCExpr *Disp,
505 unsigned BaseReg, unsigned IndexReg,
Devang Patelc59d9df2012-01-12 01:51:42 +0000506 unsigned Scale, SMLoc StartLoc, SMLoc EndLoc,
Chad Rosierc0a14b82012-10-24 17:22:29 +0000507 unsigned Size = 0, bool NeedSizeDir = false) {
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000508 // We should never just have a displacement, that should be parsed as an
509 // absolute memory operand.
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000510 assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!");
511
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000512 // The scale should always be one of {1,2,4,8}.
513 assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) &&
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000514 "Invalid scale!");
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000515 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000516 Res->Mem.SegReg = SegReg;
517 Res->Mem.Disp = Disp;
518 Res->Mem.BaseReg = BaseReg;
519 Res->Mem.IndexReg = IndexReg;
520 Res->Mem.Scale = Scale;
Devang Patelc59d9df2012-01-12 01:51:42 +0000521 Res->Mem.Size = Size;
Chad Rosier96d58e62012-10-19 20:57:14 +0000522 Res->Mem.NeedSizeDir = NeedSizeDir;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000523 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000524 }
525};
Daniel Dunbara3af3702009-07-20 18:55:04 +0000526
Chris Lattner37dfdec2009-07-29 06:33:53 +0000527} // end anonymous namespace.
Daniel Dunbara2edbab2009-07-28 20:47:52 +0000528
Devang Pateldd929fc2012-01-12 18:03:40 +0000529bool X86AsmParser::isSrcOp(X86Operand &Op) {
Evan Cheng59ee62d2011-07-11 03:57:24 +0000530 unsigned basereg = is64BitMode() ? X86::RSI : X86::ESI;
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000531
532 return (Op.isMem() &&
533 (Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::DS) &&
534 isa<MCConstantExpr>(Op.Mem.Disp) &&
535 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
536 Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0);
537}
538
Devang Pateldd929fc2012-01-12 18:03:40 +0000539bool X86AsmParser::isDstOp(X86Operand &Op) {
Evan Cheng59ee62d2011-07-11 03:57:24 +0000540 unsigned basereg = is64BitMode() ? X86::RDI : X86::EDI;
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000541
Chad Rosier36b8fed2012-06-27 22:34:28 +0000542 return Op.isMem() &&
Kevin Enderby0f5ab7c2012-03-13 19:47:55 +0000543 (Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::ES) &&
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000544 isa<MCConstantExpr>(Op.Mem.Disp) &&
545 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
546 Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0;
547}
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000548
Devang Pateldd929fc2012-01-12 18:03:40 +0000549bool X86AsmParser::ParseRegister(unsigned &RegNo,
550 SMLoc &StartLoc, SMLoc &EndLoc) {
Chris Lattner23075742010-01-15 18:27:19 +0000551 RegNo = 0;
Benjamin Kramer8e70b552012-09-07 14:51:35 +0000552 const AsmToken &PercentTok = Parser.getTok();
553 StartLoc = PercentTok.getLoc();
554
555 // If we encounter a %, ignore it. This code handles registers with and
556 // without the prefix, unprefixed registers can occur in cfi directives.
557 if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
Devang Pateld37ad242012-01-17 18:00:18 +0000558 Parser.Lex(); // Eat percent token.
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000559
Sean Callanan18b83232010-01-19 21:44:56 +0000560 const AsmToken &Tok = Parser.getTok();
Devang Patel1aea4302012-01-20 22:32:05 +0000561 if (Tok.isNot(AsmToken::Identifier)) {
Devang Patelbe3e3102012-01-30 20:02:42 +0000562 if (isParsingIntelSyntax()) return true;
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000563 return Error(StartLoc, "invalid register name",
564 SMRange(StartLoc, Tok.getEndLoc()));
Devang Patel1aea4302012-01-20 22:32:05 +0000565 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000566
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000567 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000568
Chris Lattner33d60d52010-09-22 04:11:10 +0000569 // If the match failed, try the register name as lowercase.
570 if (RegNo == 0)
Benjamin Kramer59085362011-11-06 20:37:06 +0000571 RegNo = MatchRegisterName(Tok.getString().lower());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000572
Evan Cheng5de728c2011-07-27 23:22:03 +0000573 if (!is64BitMode()) {
574 // FIXME: This should be done using Requires<In32BitMode> and
575 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
576 // checked.
577 // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
578 // REX prefix.
579 if (RegNo == X86::RIZ ||
580 X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
581 X86II::isX86_64NonExtLowByteReg(RegNo) ||
582 X86II::isX86_64ExtendedReg(RegNo))
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000583 return Error(StartLoc, "register %"
584 + Tok.getString() + " is only available in 64-bit mode",
585 SMRange(StartLoc, Tok.getEndLoc()));
Evan Cheng5de728c2011-07-27 23:22:03 +0000586 }
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000587
Chris Lattner33d60d52010-09-22 04:11:10 +0000588 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
589 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000590 RegNo = X86::ST0;
591 EndLoc = Tok.getLoc();
592 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000593
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000594 // Check to see if we have '(4)' after %st.
595 if (getLexer().isNot(AsmToken::LParen))
596 return false;
597 // Lex the paren.
598 getParser().Lex();
599
600 const AsmToken &IntTok = Parser.getTok();
601 if (IntTok.isNot(AsmToken::Integer))
602 return Error(IntTok.getLoc(), "expected stack index");
603 switch (IntTok.getIntVal()) {
604 case 0: RegNo = X86::ST0; break;
605 case 1: RegNo = X86::ST1; break;
606 case 2: RegNo = X86::ST2; break;
607 case 3: RegNo = X86::ST3; break;
608 case 4: RegNo = X86::ST4; break;
609 case 5: RegNo = X86::ST5; break;
610 case 6: RegNo = X86::ST6; break;
611 case 7: RegNo = X86::ST7; break;
612 default: return Error(IntTok.getLoc(), "invalid stack index");
613 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000614
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000615 if (getParser().Lex().isNot(AsmToken::RParen))
616 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000617
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000618 EndLoc = Tok.getLoc();
619 Parser.Lex(); // Eat ')'
620 return false;
621 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000622
Chris Lattner645b2092010-06-24 07:29:18 +0000623 // If this is "db[0-7]", match it as an alias
624 // for dr[0-7].
625 if (RegNo == 0 && Tok.getString().size() == 3 &&
626 Tok.getString().startswith("db")) {
627 switch (Tok.getString()[2]) {
628 case '0': RegNo = X86::DR0; break;
629 case '1': RegNo = X86::DR1; break;
630 case '2': RegNo = X86::DR2; break;
631 case '3': RegNo = X86::DR3; break;
632 case '4': RegNo = X86::DR4; break;
633 case '5': RegNo = X86::DR5; break;
634 case '6': RegNo = X86::DR6; break;
635 case '7': RegNo = X86::DR7; break;
636 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000637
Chris Lattner645b2092010-06-24 07:29:18 +0000638 if (RegNo != 0) {
639 EndLoc = Tok.getLoc();
640 Parser.Lex(); // Eat it.
641 return false;
642 }
643 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000644
Devang Patel1aea4302012-01-20 22:32:05 +0000645 if (RegNo == 0) {
Devang Patelbe3e3102012-01-30 20:02:42 +0000646 if (isParsingIntelSyntax()) return true;
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000647 return Error(StartLoc, "invalid register name",
648 SMRange(StartLoc, Tok.getEndLoc()));
Devang Patel1aea4302012-01-20 22:32:05 +0000649 }
Daniel Dunbar0e2771f2009-07-29 00:02:19 +0000650
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000651 EndLoc = Tok.getEndLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000652 Parser.Lex(); // Eat identifier token.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000653 return false;
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000654}
655
Devang Pateldd929fc2012-01-12 18:03:40 +0000656X86Operand *X86AsmParser::ParseOperand() {
Devang Patelbe3e3102012-01-30 20:02:42 +0000657 if (isParsingIntelSyntax())
Devang Patel0a338862012-01-12 01:36:43 +0000658 return ParseIntelOperand();
659 return ParseATTOperand();
660}
661
Devang Pateld37ad242012-01-17 18:00:18 +0000662/// getIntelMemOperandSize - Return intel memory operand size.
663static unsigned getIntelMemOperandSize(StringRef OpStr) {
Chad Rosier66b64be2012-09-11 21:10:25 +0000664 unsigned Size = StringSwitch<unsigned>(OpStr)
Chad Rosierf58ae5d2012-09-12 18:24:26 +0000665 .Cases("BYTE", "byte", 8)
666 .Cases("WORD", "word", 16)
667 .Cases("DWORD", "dword", 32)
668 .Cases("QWORD", "qword", 64)
669 .Cases("XWORD", "xword", 80)
670 .Cases("XMMWORD", "xmmword", 128)
671 .Cases("YMMWORD", "ymmword", 256)
Chad Rosier66b64be2012-09-11 21:10:25 +0000672 .Default(0);
673 return Size;
Devang Patel0a338862012-01-12 01:36:43 +0000674}
675
Chad Rosier65c88922012-10-22 19:42:52 +0000676X86Operand *X86AsmParser::ParseIntelBracExpression(unsigned SegReg,
Devang Patel7c64fe62012-01-23 18:31:58 +0000677 unsigned Size) {
678 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
Chad Rosier4284e172012-10-24 22:13:37 +0000679 const AsmToken &Tok = Parser.getTok();
680 SMLoc Start = Tok.getLoc(), End;
Devang Patel0a338862012-01-12 01:36:43 +0000681
Chad Rosier4284e172012-10-24 22:13:37 +0000682 const MCExpr *Disp = MCConstantExpr::Create(0, getContext());
Devang Pateld37ad242012-01-17 18:00:18 +0000683 // Parse [ BaseReg + Scale*IndexReg + Disp ] or [ symbol ]
684
685 // Eat '['
686 if (getLexer().isNot(AsmToken::LBrac))
687 return ErrorOperand(Start, "Expected '[' token!");
688 Parser.Lex();
Chad Rosier36b8fed2012-06-27 22:34:28 +0000689
Devang Pateld37ad242012-01-17 18:00:18 +0000690 if (getLexer().is(AsmToken::Identifier)) {
691 // Parse BaseReg
Devang Patel1aea4302012-01-20 22:32:05 +0000692 if (ParseRegister(BaseReg, Start, End)) {
Devang Pateld37ad242012-01-17 18:00:18 +0000693 // Handle '[' 'symbol' ']'
Devang Pateld37ad242012-01-17 18:00:18 +0000694 if (getParser().ParseExpression(Disp, End)) return 0;
695 if (getLexer().isNot(AsmToken::RBrac))
Devang Patelbc51e502012-01-17 19:09:22 +0000696 return ErrorOperand(Start, "Expected ']' token!");
Devang Pateld37ad242012-01-17 18:00:18 +0000697 Parser.Lex();
Chad Rosier2fbc2392012-10-29 18:01:54 +0000698 End = Tok.getLoc();
Chad Rosierc0a14b82012-10-24 17:22:29 +0000699 return X86Operand::CreateMem(Disp, Start, End, Size);
Devang Pateld37ad242012-01-17 18:00:18 +0000700 }
701 } else if (getLexer().is(AsmToken::Integer)) {
Chad Rosier4284e172012-10-24 22:13:37 +0000702 int64_t Val = Tok.getIntVal();
Devang Pateld37ad242012-01-17 18:00:18 +0000703 Parser.Lex();
Chad Rosier4284e172012-10-24 22:13:37 +0000704 SMLoc Loc = Tok.getLoc();
Devang Patel3e081312012-01-23 20:20:06 +0000705 if (getLexer().is(AsmToken::RBrac)) {
706 // Handle '[' number ']'
707 Parser.Lex();
Chad Rosier2fbc2392012-10-29 18:01:54 +0000708 End = Tok.getLoc();
Devang Patela28101e2012-01-27 19:48:28 +0000709 const MCExpr *Disp = MCConstantExpr::Create(Val, getContext());
710 if (SegReg)
711 return X86Operand::CreateMem(SegReg, Disp, 0, 0, Scale,
Chad Rosierc0a14b82012-10-24 17:22:29 +0000712 Start, End, Size);
713 return X86Operand::CreateMem(Disp, Start, End, Size);
Devang Patel3e081312012-01-23 20:20:06 +0000714 } else if (getLexer().is(AsmToken::Star)) {
715 // Handle '[' Scale*IndexReg ']'
716 Parser.Lex();
Chad Rosier4284e172012-10-24 22:13:37 +0000717 SMLoc IdxRegLoc = Tok.getLoc();
Craig Topper833d7f82012-07-18 04:36:35 +0000718 if (ParseRegister(IndexReg, IdxRegLoc, End))
719 return ErrorOperand(IdxRegLoc, "Expected register");
Devang Patel3e081312012-01-23 20:20:06 +0000720 Scale = Val;
721 } else
Craig Topper833d7f82012-07-18 04:36:35 +0000722 return ErrorOperand(Loc, "Unexpected token");
Devang Pateld37ad242012-01-17 18:00:18 +0000723 }
724
Chad Rosier2fbc2392012-10-29 18:01:54 +0000725 // Parse ][ as a plus.
726 bool ExpectRBrac = true;
727 if (getLexer().is(AsmToken::RBrac)) {
728 ExpectRBrac = false;
Devang Pateld37ad242012-01-17 18:00:18 +0000729 Parser.Lex();
Chad Rosier2fbc2392012-10-29 18:01:54 +0000730 End = Tok.getLoc();
731 }
732
733 if (getLexer().is(AsmToken::Plus) || getLexer().is(AsmToken::Minus) ||
734 getLexer().is(AsmToken::LBrac)) {
735 ExpectRBrac = true;
736 bool isPlus = getLexer().is(AsmToken::Plus) ||
737 getLexer().is(AsmToken::LBrac);
738 Parser.Lex();
Chad Rosier4284e172012-10-24 22:13:37 +0000739 SMLoc PlusLoc = Tok.getLoc();
Devang Pateld37ad242012-01-17 18:00:18 +0000740 if (getLexer().is(AsmToken::Integer)) {
Chad Rosier4284e172012-10-24 22:13:37 +0000741 int64_t Val = Tok.getIntVal();
Devang Pateld37ad242012-01-17 18:00:18 +0000742 Parser.Lex();
743 if (getLexer().is(AsmToken::Star)) {
Devang Patelbc51e502012-01-17 19:09:22 +0000744 Parser.Lex();
Chad Rosier4284e172012-10-24 22:13:37 +0000745 SMLoc IdxRegLoc = Tok.getLoc();
Craig Topper833d7f82012-07-18 04:36:35 +0000746 if (ParseRegister(IndexReg, IdxRegLoc, End))
747 return ErrorOperand(IdxRegLoc, "Expected register");
Devang Patelbc51e502012-01-17 19:09:22 +0000748 Scale = Val;
Devang Pateld37ad242012-01-17 18:00:18 +0000749 } else if (getLexer().is(AsmToken::RBrac)) {
Devang Patelbc51e502012-01-17 19:09:22 +0000750 const MCExpr *ValExpr = MCConstantExpr::Create(Val, getContext());
Devang Patele60540f2012-01-19 18:15:51 +0000751 Disp = isPlus ? ValExpr : MCConstantExpr::Create(0-Val, getContext());
Devang Pateld37ad242012-01-17 18:00:18 +0000752 } else
Devang Patelbc51e502012-01-17 19:09:22 +0000753 return ErrorOperand(PlusLoc, "unexpected token after +");
Devang Patelf2d21372012-01-23 22:35:25 +0000754 } else if (getLexer().is(AsmToken::Identifier)) {
Devang Patel392ad6d2012-01-23 23:56:33 +0000755 // This could be an index register or a displacement expression.
Chad Rosier4284e172012-10-24 22:13:37 +0000756 End = Tok.getLoc();
Devang Patelf2d21372012-01-23 22:35:25 +0000757 if (!IndexReg)
758 ParseRegister(IndexReg, Start, End);
Chad Rosier36b8fed2012-06-27 22:34:28 +0000759 else if (getParser().ParseExpression(Disp, End)) return 0;
Devang Patelf2d21372012-01-23 22:35:25 +0000760 }
Devang Pateld37ad242012-01-17 18:00:18 +0000761 }
Chad Rosier2fbc2392012-10-29 18:01:54 +0000762
763 // Parse ][ as a plus.
764 if (getLexer().is(AsmToken::RBrac)) {
765 ExpectRBrac = false;
766 Parser.Lex();
767 End = Tok.getLoc();
768 if (getLexer().is(AsmToken::LBrac)) {
769 ExpectRBrac = true;
770 Parser.Lex();
771 if (getParser().ParseExpression(Disp, End))
772 return 0;
773 }
774 } else if (ExpectRBrac) {
775 if (getParser().ParseExpression(Disp, End))
776 return 0;
777 }
Devang Pateld37ad242012-01-17 18:00:18 +0000778
Chad Rosier2fbc2392012-10-29 18:01:54 +0000779 if (ExpectRBrac) {
780 if (getLexer().isNot(AsmToken::RBrac))
781 return ErrorOperand(End, "expected ']' token!");
782 Parser.Lex();
783 End = Tok.getLoc();
784 }
Devang Patelfdd3b302012-01-20 21:21:01 +0000785
Chad Rosierddb53ef2012-10-26 22:01:25 +0000786 // Parse the dot operator (e.g., [ebx].foo.bar).
Chad Rosier5e6b37f2012-10-25 17:37:43 +0000787 if (Tok.getString().startswith(".")) {
788 SmallString<64> Err;
789 const MCExpr *NewDisp;
790 if (ParseIntelDotOperator(Disp, &NewDisp, Err))
791 return ErrorOperand(Tok.getLoc(), Err);
792
793 Parser.Lex(); // Eat the field.
794 Disp = NewDisp;
795 }
Chad Rosier22f441a2012-10-24 22:21:50 +0000796
797 End = Tok.getLoc();
798
Devang Patelfdd3b302012-01-20 21:21:01 +0000799 // handle [-42]
800 if (!BaseReg && !IndexReg)
Chad Rosierc0a14b82012-10-24 17:22:29 +0000801 return X86Operand::CreateMem(Disp, Start, End, Size);
Devang Patelfdd3b302012-01-20 21:21:01 +0000802
Devang Pateld37ad242012-01-17 18:00:18 +0000803 return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
Chad Rosierc0a14b82012-10-24 17:22:29 +0000804 Start, End, Size);
Devang Pateld37ad242012-01-17 18:00:18 +0000805}
806
807/// ParseIntelMemOperand - Parse intel style memory operand.
Chad Rosier5b0f1b32012-10-04 23:59:38 +0000808X86Operand *X86AsmParser::ParseIntelMemOperand(unsigned SegReg, SMLoc Start) {
Devang Pateld37ad242012-01-17 18:00:18 +0000809 const AsmToken &Tok = Parser.getTok();
Chad Rosierc0a14b82012-10-24 17:22:29 +0000810 SMLoc End;
Devang Pateld37ad242012-01-17 18:00:18 +0000811
812 unsigned Size = getIntelMemOperandSize(Tok.getString());
813 if (Size) {
814 Parser.Lex();
Chad Rosierf58ae5d2012-09-12 18:24:26 +0000815 assert ((Tok.getString() == "PTR" || Tok.getString() == "ptr") &&
816 "Unexpected token!");
Devang Pateld37ad242012-01-17 18:00:18 +0000817 Parser.Lex();
818 }
819
Chad Rosierc0a14b82012-10-24 17:22:29 +0000820 if (getLexer().is(AsmToken::LBrac))
Devang Patel7c64fe62012-01-23 18:31:58 +0000821 return ParseIntelBracExpression(SegReg, Size);
822
823 if (!ParseRegister(SegReg, Start, End)) {
824 // Handel SegReg : [ ... ]
825 if (getLexer().isNot(AsmToken::Colon))
826 return ErrorOperand(Start, "Expected ':' token!");
827 Parser.Lex(); // Eat :
828 if (getLexer().isNot(AsmToken::LBrac))
829 return ErrorOperand(Start, "Expected '[' token!");
830 return ParseIntelBracExpression(SegReg, Size);
831 }
Devang Pateld37ad242012-01-17 18:00:18 +0000832
833 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
834 if (getParser().ParseExpression(Disp, End)) return 0;
Chad Rosierce353b32012-10-15 17:26:38 +0000835 End = Parser.getTok().getLoc();
Chad Rosier96d58e62012-10-19 20:57:14 +0000836
837 bool NeedSizeDir = false;
838 if (!Size && isParsingInlineAsm()) {
839 if (const MCSymbolRefExpr *SymRef = dyn_cast<MCSymbolRefExpr>(Disp)) {
840 const MCSymbol &Sym = SymRef->getSymbol();
841 // FIXME: The SemaLookup will fail if the name is anything other then an
842 // identifier.
843 // FIXME: Pass a valid SMLoc.
844 SemaCallback->LookupInlineAsmIdentifier(Sym.getName(), NULL, Size);
845 NeedSizeDir = Size > 0;
846 }
847 }
Chad Rosier2a784132012-10-23 23:31:33 +0000848 if (!isParsingInlineAsm())
Chad Rosierc0a14b82012-10-24 17:22:29 +0000849 return X86Operand::CreateMem(Disp, Start, End, Size);
Chad Rosier2a784132012-10-23 23:31:33 +0000850 else
Chad Rosierd4d96ac2012-10-23 23:34:28 +0000851 // When parsing inline assembly we set the base register to a non-zero value
852 // as we don't know the actual value at this time. This is necessary to
853 // get the matching correct in some cases.
Chad Rosier2a784132012-10-23 23:31:33 +0000854 return X86Operand::CreateMem(/*SegReg*/0, Disp, /*BaseReg*/1, /*IndexReg*/0,
Chad Rosierc0a14b82012-10-24 17:22:29 +0000855 /*Scale*/1, Start, End, Size, NeedSizeDir);
856}
857
Chad Rosier22f441a2012-10-24 22:21:50 +0000858/// Parse the '.' operator.
Chad Rosier5e6b37f2012-10-25 17:37:43 +0000859bool X86AsmParser::ParseIntelDotOperator(const MCExpr *Disp,
860 const MCExpr **NewDisp,
861 SmallString<64> &Err) {
Chad Rosier22f441a2012-10-24 22:21:50 +0000862 AsmToken Tok = *&Parser.getTok();
Chad Rosier5e6b37f2012-10-25 17:37:43 +0000863 uint64_t OrigDispVal, DotDispVal;
864
865 // FIXME: Handle non-constant expressions.
866 if (const MCConstantExpr *OrigDisp = dyn_cast<MCConstantExpr>(Disp)) {
867 OrigDispVal = OrigDisp->getValue();
868 } else {
869 Err = "Non-constant offsets are not supported!";
870 return true;
871 }
Chad Rosier22f441a2012-10-24 22:21:50 +0000872
873 // Drop the '.'.
874 StringRef DotDispStr = Tok.getString().drop_front(1);
875
Chad Rosier22f441a2012-10-24 22:21:50 +0000876 // .Imm gets lexed as a real.
877 if (Tok.is(AsmToken::Real)) {
878 APInt DotDisp;
879 DotDispStr.getAsInteger(10, DotDisp);
Chad Rosier5e6b37f2012-10-25 17:37:43 +0000880 DotDispVal = DotDisp.getZExtValue();
Chad Rosierec130222012-10-25 21:51:10 +0000881 } else if (Tok.is(AsmToken::Identifier)) {
882 // We should only see an identifier when parsing the original inline asm.
883 // The front-end should rewrite this in terms of immediates.
884 assert (isParsingInlineAsm() && "Unexpected field name!");
885
886 unsigned DotDisp;
887 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.');
888 if (SemaCallback->LookupInlineAsmField(BaseMember.first, BaseMember.second,
889 DotDisp)) {
890 Err = "Unable to lookup field reference!";
891 return true;
892 }
893 DotDispVal = DotDisp;
Chad Rosier5e6b37f2012-10-25 17:37:43 +0000894 } else {
895 Err = "Unexpected token type!";
896 return true;
Chad Rosier22f441a2012-10-24 22:21:50 +0000897 }
Chad Rosier5e6b37f2012-10-25 17:37:43 +0000898
Chad Rosierec130222012-10-25 21:51:10 +0000899 if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
900 SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data());
901 unsigned Len = DotDispStr.size();
902 unsigned Val = OrigDispVal + DotDispVal;
903 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_DotOperator, Loc, Len,
904 Val));
Chad Rosier5e6b37f2012-10-25 17:37:43 +0000905 }
906
907 *NewDisp = MCConstantExpr::Create(OrigDispVal + DotDispVal, getContext());
908 return false;
Chad Rosier22f441a2012-10-24 22:21:50 +0000909}
910
Chad Rosierc0a14b82012-10-24 17:22:29 +0000911/// Parse the 'offset' operator. This operator is used to specify the
912/// location rather then the content of a variable.
913X86Operand *X86AsmParser::ParseIntelOffsetOfOperator(SMLoc Start) {
914 SMLoc OffsetOfLoc = Start;
915 Parser.Lex(); // Eat offset.
916 Start = Parser.getTok().getLoc();
917 assert (Parser.getTok().is(AsmToken::Identifier) && "Expected an identifier");
918
Chad Rosier6e431572012-10-26 16:09:20 +0000919 SMLoc End;
Chad Rosierc0a14b82012-10-24 17:22:29 +0000920 const MCExpr *Val;
921 if (getParser().ParseExpression(Val, End))
Chad Rosier7ab21c72012-10-26 18:32:44 +0000922 return ErrorOperand(Start, "Unable to parse expression!");
Chad Rosierc0a14b82012-10-24 17:22:29 +0000923
924 End = Parser.getTok().getLoc();
925
Chad Rosier6e431572012-10-26 16:09:20 +0000926 // Don't emit the offset operator.
927 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Skip, OffsetOfLoc, 7));
928
Chad Rosierc0a14b82012-10-24 17:22:29 +0000929 // The offset operator will have an 'r' constraint, thus we need to create
930 // register operand to ensure proper matching. Just pick a GPR based on
931 // the size of a pointer.
932 unsigned RegNo = is64BitMode() ? X86::RBX : X86::EBX;
933 return X86Operand::CreateReg(RegNo, Start, End, OffsetOfLoc);
Devang Pateld37ad242012-01-17 18:00:18 +0000934}
935
Chad Rosierefcb3d92012-10-26 18:04:20 +0000936/// Parse the 'TYPE' operator. The TYPE operator returns the size of a C or
937/// C++ type or variable. If the variable is an array, TYPE returns the size of
938/// a single element of the array.
939X86Operand *X86AsmParser::ParseIntelTypeOperator(SMLoc Start) {
940 SMLoc TypeLoc = Start;
941 Parser.Lex(); // Eat offset.
942 Start = Parser.getTok().getLoc();
943 assert (Parser.getTok().is(AsmToken::Identifier) && "Expected an identifier");
944
945 SMLoc End;
946 const MCExpr *Val;
947 if (getParser().ParseExpression(Val, End))
948 return 0;
949
950 End = Parser.getTok().getLoc();
951
952 unsigned Size = 0;
953 if (const MCSymbolRefExpr *SymRef = dyn_cast<MCSymbolRefExpr>(Val)) {
954 const MCSymbol &Sym = SymRef->getSymbol();
955 // FIXME: The SemaLookup will fail if the name is anything other then an
956 // identifier.
957 // FIXME: Pass a valid SMLoc.
958 if (!SemaCallback->LookupInlineAsmIdentifier(Sym.getName(), NULL, Size))
Chad Rosier7ab21c72012-10-26 18:32:44 +0000959 return ErrorOperand(Start, "Unable to lookup TYPE of expr!");
Chad Rosierefcb3d92012-10-26 18:04:20 +0000960
961 Size /= 8; // Size is in terms of bits, but we want bytes in the context.
962 }
963
964 // Rewrite the type operator and the C or C++ type or variable in terms of an
965 // immediate. E.g. TYPE foo -> $$4
966 unsigned Len = End.getPointer() - TypeLoc.getPointer();
967 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, TypeLoc, Len, Size));
968
969 const MCExpr *Imm = MCConstantExpr::Create(Size, getContext());
970 return X86Operand::CreateImm(Imm, Start, End, /*NeedAsmRewrite*/false);
971}
972
Devang Pateld37ad242012-01-17 18:00:18 +0000973X86Operand *X86AsmParser::ParseIntelOperand() {
Devang Pateld37ad242012-01-17 18:00:18 +0000974 SMLoc Start = Parser.getTok().getLoc(), End;
975
Chad Rosierc0a14b82012-10-24 17:22:29 +0000976 // offset operator.
Chad Rosier7ab21c72012-10-26 18:32:44 +0000977 StringRef AsmTokStr = Parser.getTok().getString();
978 if ((AsmTokStr == "offset" || AsmTokStr == "OFFSET") &&
Chad Rosierc0a14b82012-10-24 17:22:29 +0000979 isParsingInlineAsm())
980 return ParseIntelOffsetOfOperator(Start);
981
Chad Rosierefcb3d92012-10-26 18:04:20 +0000982 // Type directive.
Chad Rosier7ab21c72012-10-26 18:32:44 +0000983 if ((AsmTokStr == "type" || AsmTokStr == "TYPE") &&
Chad Rosierefcb3d92012-10-26 18:04:20 +0000984 isParsingInlineAsm())
985 return ParseIntelTypeOperator(Start);
986
Chad Rosier7ab21c72012-10-26 18:32:44 +0000987 // Unsupported directives.
988 if (isParsingIntelSyntax() &&
989 (AsmTokStr == "size" || AsmTokStr == "SIZE" ||
990 AsmTokStr == "length" || AsmTokStr == "LENGTH"))
991 return ErrorOperand(Start, "Unsupported directive!");
992
Devang Pateld37ad242012-01-17 18:00:18 +0000993 // immediate.
994 if (getLexer().is(AsmToken::Integer) || getLexer().is(AsmToken::Real) ||
995 getLexer().is(AsmToken::Minus)) {
996 const MCExpr *Val;
997 if (!getParser().ParseExpression(Val, End)) {
998 End = Parser.getTok().getLoc();
999 return X86Operand::CreateImm(Val, Start, End);
1000 }
1001 }
1002
Devang Patel0a338862012-01-12 01:36:43 +00001003 // register
Devang Patel1aea4302012-01-20 22:32:05 +00001004 unsigned RegNo = 0;
1005 if (!ParseRegister(RegNo, Start, End)) {
Chad Rosier5b0f1b32012-10-04 23:59:38 +00001006 // If this is a segment register followed by a ':', then this is the start
1007 // of a memory reference, otherwise this is a normal register reference.
1008 if (getLexer().isNot(AsmToken::Colon))
1009 return X86Operand::CreateReg(RegNo, Start, Parser.getTok().getLoc());
1010
1011 getParser().Lex(); // Eat the colon.
1012 return ParseIntelMemOperand(RegNo, Start);
Devang Patel0a338862012-01-12 01:36:43 +00001013 }
1014
1015 // mem operand
Chad Rosier5b0f1b32012-10-04 23:59:38 +00001016 return ParseIntelMemOperand(0, Start);
Devang Patel0a338862012-01-12 01:36:43 +00001017}
1018
Devang Pateldd929fc2012-01-12 18:03:40 +00001019X86Operand *X86AsmParser::ParseATTOperand() {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001020 switch (getLexer().getKind()) {
1021 default:
Chris Lattnereef6d782010-04-17 18:56:34 +00001022 // Parse a memory operand with no segment register.
1023 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattner23075742010-01-15 18:27:19 +00001024 case AsmToken::Percent: {
Chris Lattnereef6d782010-04-17 18:56:34 +00001025 // Read the register.
Chris Lattner23075742010-01-15 18:27:19 +00001026 unsigned RegNo;
Chris Lattner29ef9a22010-01-15 18:51:29 +00001027 SMLoc Start, End;
1028 if (ParseRegister(RegNo, Start, End)) return 0;
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +00001029 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +00001030 Error(Start, "%eiz and %riz can only be used as index registers",
1031 SMRange(Start, End));
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +00001032 return 0;
1033 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001034
Chris Lattnereef6d782010-04-17 18:56:34 +00001035 // If this is a segment register followed by a ':', then this is the start
1036 // of a memory reference, otherwise this is a normal register reference.
1037 if (getLexer().isNot(AsmToken::Colon))
1038 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001039
1040
Chris Lattnereef6d782010-04-17 18:56:34 +00001041 getParser().Lex(); // Eat the colon.
1042 return ParseMemOperand(RegNo, Start);
Chris Lattner23075742010-01-15 18:27:19 +00001043 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001044 case AsmToken::Dollar: {
1045 // $42 -> immediate.
Sean Callanan18b83232010-01-19 21:44:56 +00001046 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callananb9a25b72010-01-19 20:27:46 +00001047 Parser.Lex();
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +00001048 const MCExpr *Val;
Chris Lattner54482b42010-01-15 19:39:23 +00001049 if (getParser().ParseExpression(Val, End))
Chris Lattner309264d2010-01-15 18:44:13 +00001050 return 0;
Chris Lattnerb4307b32010-01-15 19:28:38 +00001051 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001052 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001053 }
Daniel Dunbardbd692a2009-07-20 20:01:54 +00001054}
1055
Chris Lattnereef6d782010-04-17 18:56:34 +00001056/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
1057/// has already been parsed if present.
Devang Pateldd929fc2012-01-12 18:03:40 +00001058X86Operand *X86AsmParser::ParseMemOperand(unsigned SegReg, SMLoc MemStart) {
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001059
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001060 // We have to disambiguate a parenthesized expression "(4+5)" from the start
1061 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner75f265f2010-01-24 01:07:33 +00001062 // only way to do this without lookahead is to eat the '(' and see what is
1063 // after it.
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +00001064 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001065 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattner54482b42010-01-15 19:39:23 +00001066 SMLoc ExprEnd;
1067 if (getParser().ParseExpression(Disp, ExprEnd)) return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001068
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001069 // After parsing the base expression we could either have a parenthesized
1070 // memory address or not. If not, return now. If so, eat the (.
1071 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbarc09e4112009-07-31 22:22:54 +00001072 // Unless we have a segment register, treat this as an immediate.
Chris Lattner309264d2010-01-15 18:44:13 +00001073 if (SegReg == 0)
Daniel Dunbarb834f5d2010-01-30 01:02:48 +00001074 return X86Operand::CreateMem(Disp, MemStart, ExprEnd);
Chris Lattner0a3c5a52010-01-15 19:33:43 +00001075 return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001076 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001077
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001078 // Eat the '('.
Sean Callananb9a25b72010-01-19 20:27:46 +00001079 Parser.Lex();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001080 } else {
1081 // Okay, we have a '('. We don't know if this is an expression or not, but
1082 // so we have to eat the ( to see beyond it.
Sean Callanan18b83232010-01-19 21:44:56 +00001083 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00001084 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001085
Kevin Enderby7b4608d2009-09-03 17:15:07 +00001086 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001087 // Nothing to do here, fall into the code below with the '(' part of the
1088 // memory operand consumed.
1089 } else {
Chris Lattnerb4307b32010-01-15 19:28:38 +00001090 SMLoc ExprEnd;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001091
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001092 // It must be an parenthesized expression, parse it now.
Chris Lattnerb4307b32010-01-15 19:28:38 +00001093 if (getParser().ParseParenExpression(Disp, ExprEnd))
Chris Lattner309264d2010-01-15 18:44:13 +00001094 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001095
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001096 // After parsing the base expression we could either have a parenthesized
1097 // memory address or not. If not, return now. If so, eat the (.
1098 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbarc09e4112009-07-31 22:22:54 +00001099 // Unless we have a segment register, treat this as an immediate.
Chris Lattner309264d2010-01-15 18:44:13 +00001100 if (SegReg == 0)
Daniel Dunbarb834f5d2010-01-30 01:02:48 +00001101 return X86Operand::CreateMem(Disp, LParenLoc, ExprEnd);
Chris Lattner0a3c5a52010-01-15 19:33:43 +00001102 return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001103 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001104
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001105 // Eat the '('.
Sean Callananb9a25b72010-01-19 20:27:46 +00001106 Parser.Lex();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001107 }
1108 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001109
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001110 // If we reached here, then we just ate the ( of the memory operand. Process
1111 // the rest of the memory operand.
Daniel Dunbar022e2a82009-07-31 20:53:16 +00001112 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
Kevin Enderby84faf652012-03-12 21:32:09 +00001113 SMLoc IndexLoc;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001114
Chris Lattner29ef9a22010-01-15 18:51:29 +00001115 if (getLexer().is(AsmToken::Percent)) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +00001116 SMLoc StartLoc, EndLoc;
1117 if (ParseRegister(BaseReg, StartLoc, EndLoc)) return 0;
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +00001118 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +00001119 Error(StartLoc, "eiz and riz can only be used as index registers",
1120 SMRange(StartLoc, EndLoc));
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +00001121 return 0;
1122 }
Chris Lattner29ef9a22010-01-15 18:51:29 +00001123 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001124
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001125 if (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +00001126 Parser.Lex(); // Eat the comma.
Kevin Enderby84faf652012-03-12 21:32:09 +00001127 IndexLoc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001128
1129 // Following the comma we should have either an index register, or a scale
1130 // value. We don't support the later form, but we want to parse it
1131 // correctly.
1132 //
1133 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +00001134 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7b4608d2009-09-03 17:15:07 +00001135 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner29ef9a22010-01-15 18:51:29 +00001136 SMLoc L;
1137 if (ParseRegister(IndexReg, L, L)) return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001138
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001139 if (getLexer().isNot(AsmToken::RParen)) {
1140 // Parse the scale amount:
1141 // ::= ',' [scale-expression]
Chris Lattner309264d2010-01-15 18:44:13 +00001142 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001143 Error(Parser.getTok().getLoc(),
Chris Lattner309264d2010-01-15 18:44:13 +00001144 "expected comma in scale expression");
1145 return 0;
1146 }
Sean Callananb9a25b72010-01-19 20:27:46 +00001147 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001148
1149 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001150 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001151
1152 int64_t ScaleVal;
Kevin Enderby58dfaa12012-03-09 22:24:10 +00001153 if (getParser().ParseAbsoluteExpression(ScaleVal)){
1154 Error(Loc, "expected scale expression");
Chris Lattner309264d2010-01-15 18:44:13 +00001155 return 0;
Craig Topper76bd9382012-07-18 04:59:16 +00001156 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001157
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001158 // Validate the scale amount.
Chris Lattner309264d2010-01-15 18:44:13 +00001159 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){
1160 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
1161 return 0;
1162 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001163 Scale = (unsigned)ScaleVal;
1164 }
1165 }
1166 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbaree910252010-08-24 19:13:38 +00001167 // A scale amount without an index is ignored.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001168 // index.
Sean Callanan18b83232010-01-19 21:44:56 +00001169 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001170
1171 int64_t Value;
1172 if (getParser().ParseAbsoluteExpression(Value))
Chris Lattner309264d2010-01-15 18:44:13 +00001173 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001174
Daniel Dunbaree910252010-08-24 19:13:38 +00001175 if (Value != 1)
1176 Warning(Loc, "scale factor without index register is ignored");
1177 Scale = 1;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001178 }
1179 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001180
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001181 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattner309264d2010-01-15 18:44:13 +00001182 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001183 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Chris Lattner309264d2010-01-15 18:44:13 +00001184 return 0;
1185 }
Sean Callanan18b83232010-01-19 21:44:56 +00001186 SMLoc MemEnd = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +00001187 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +00001188
Kevin Enderby84faf652012-03-12 21:32:09 +00001189 // If we have both a base register and an index register make sure they are
1190 // both 64-bit or 32-bit registers.
Manman Ren1f7a1b62012-06-26 19:47:59 +00001191 // To support VSIB, IndexReg can be 128-bit or 256-bit registers.
Kevin Enderby84faf652012-03-12 21:32:09 +00001192 if (BaseReg != 0 && IndexReg != 0) {
1193 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
Manman Ren1f7a1b62012-06-26 19:47:59 +00001194 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
1195 X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
Kevin Enderby84faf652012-03-12 21:32:09 +00001196 IndexReg != X86::RIZ) {
1197 Error(IndexLoc, "index register is 32-bit, but base register is 64-bit");
1198 return 0;
1199 }
1200 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
Manman Ren1f7a1b62012-06-26 19:47:59 +00001201 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
1202 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
Kevin Enderby84faf652012-03-12 21:32:09 +00001203 IndexReg != X86::EIZ){
1204 Error(IndexLoc, "index register is 64-bit, but base register is 32-bit");
1205 return 0;
1206 }
1207 }
1208
Chris Lattner0a3c5a52010-01-15 19:33:43 +00001209 return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
1210 MemStart, MemEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001211}
1212
Devang Pateldd929fc2012-01-12 18:03:40 +00001213bool X86AsmParser::
Chad Rosier6a020a72012-10-25 20:41:34 +00001214ParseInstruction(ParseInstructionInfo &Info, StringRef Name, SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +00001215 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Chad Rosier6a020a72012-10-25 20:41:34 +00001216 InstInfo = &Info;
Chris Lattner693173f2010-10-30 19:23:13 +00001217 StringRef PatchedName = Name;
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001218
Chris Lattnerd8f71792010-11-28 20:23:50 +00001219 // FIXME: Hack to recognize setneb as setne.
1220 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
1221 PatchedName != "setb" && PatchedName != "setnb")
1222 PatchedName = PatchedName.substr(0, Name.size()-1);
Chad Rosier36b8fed2012-06-27 22:34:28 +00001223
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001224 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
1225 const MCExpr *ExtraImmOp = 0;
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001226 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001227 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
1228 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Craig Topper9e6ddcb2012-03-29 07:11:23 +00001229 bool IsVCMP = PatchedName[0] == 'v';
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001230 unsigned SSECCIdx = IsVCMP ? 4 : 3;
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001231 unsigned SSEComparisonCode = StringSwitch<unsigned>(
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001232 PatchedName.slice(SSECCIdx, PatchedName.size() - 2))
Craig Topper9e6ddcb2012-03-29 07:11:23 +00001233 .Case("eq", 0x00)
1234 .Case("lt", 0x01)
1235 .Case("le", 0x02)
1236 .Case("unord", 0x03)
1237 .Case("neq", 0x04)
1238 .Case("nlt", 0x05)
1239 .Case("nle", 0x06)
1240 .Case("ord", 0x07)
1241 /* AVX only from here */
1242 .Case("eq_uq", 0x08)
1243 .Case("nge", 0x09)
Bruno Cardoso Lopescc69e132010-07-07 22:24:03 +00001244 .Case("ngt", 0x0A)
1245 .Case("false", 0x0B)
1246 .Case("neq_oq", 0x0C)
1247 .Case("ge", 0x0D)
1248 .Case("gt", 0x0E)
1249 .Case("true", 0x0F)
1250 .Case("eq_os", 0x10)
1251 .Case("lt_oq", 0x11)
1252 .Case("le_oq", 0x12)
1253 .Case("unord_s", 0x13)
1254 .Case("neq_us", 0x14)
1255 .Case("nlt_uq", 0x15)
1256 .Case("nle_uq", 0x16)
1257 .Case("ord_s", 0x17)
1258 .Case("eq_us", 0x18)
1259 .Case("nge_uq", 0x19)
1260 .Case("ngt_uq", 0x1A)
1261 .Case("false_os", 0x1B)
1262 .Case("neq_os", 0x1C)
1263 .Case("ge_oq", 0x1D)
1264 .Case("gt_oq", 0x1E)
1265 .Case("true_us", 0x1F)
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001266 .Default(~0U);
Craig Topper9e6ddcb2012-03-29 07:11:23 +00001267 if (SSEComparisonCode != ~0U && (IsVCMP || SSEComparisonCode < 8)) {
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001268 ExtraImmOp = MCConstantExpr::Create(SSEComparisonCode,
1269 getParser().getContext());
1270 if (PatchedName.endswith("ss")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001271 PatchedName = IsVCMP ? "vcmpss" : "cmpss";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001272 } else if (PatchedName.endswith("sd")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001273 PatchedName = IsVCMP ? "vcmpsd" : "cmpsd";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001274 } else if (PatchedName.endswith("ps")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001275 PatchedName = IsVCMP ? "vcmpps" : "cmpps";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001276 } else {
1277 assert(PatchedName.endswith("pd") && "Unexpected mnemonic!");
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001278 PatchedName = IsVCMP ? "vcmppd" : "cmppd";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001279 }
1280 }
1281 }
Bruno Cardoso Lopesf528d2b2010-07-23 18:41:12 +00001282
Daniel Dunbar1b6c0602010-02-10 21:19:28 +00001283 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001284
Devang Patel885f65b2012-01-30 22:47:12 +00001285 if (ExtraImmOp && !isParsingIntelSyntax())
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001286 Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001287
Chris Lattner2544f422010-09-08 05:17:37 +00001288 // Determine whether this is an instruction prefix.
1289 bool isPrefix =
Chris Lattner693173f2010-10-30 19:23:13 +00001290 Name == "lock" || Name == "rep" ||
1291 Name == "repe" || Name == "repz" ||
Rafael Espindolabeb68982010-11-23 11:23:24 +00001292 Name == "repne" || Name == "repnz" ||
Rafael Espindolabfd2d262010-11-27 20:29:45 +00001293 Name == "rex64" || Name == "data16";
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001294
1295
Chris Lattner2544f422010-09-08 05:17:37 +00001296 // This does the actual operand parsing. Don't parse any more if we have a
1297 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
1298 // just want to parse the "lock" as the first instruction and the "incl" as
1299 // the next one.
1300 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar0db68f42009-08-11 05:00:25 +00001301
1302 // Parse '*' modifier.
1303 if (getLexer().is(AsmToken::Star)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001304 SMLoc Loc = Parser.getTok().getLoc();
Chris Lattnerb4307b32010-01-15 19:28:38 +00001305 Operands.push_back(X86Operand::CreateToken("*", Loc));
Sean Callananb9a25b72010-01-19 20:27:46 +00001306 Parser.Lex(); // Eat the star.
Daniel Dunbar0db68f42009-08-11 05:00:25 +00001307 }
1308
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001309 // Read the first operand.
Chris Lattner309264d2010-01-15 18:44:13 +00001310 if (X86Operand *Op = ParseOperand())
1311 Operands.push_back(Op);
Chris Lattnercbf8a982010-09-11 16:18:25 +00001312 else {
1313 Parser.EatToEndOfStatement();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001314 return true;
Chris Lattnercbf8a982010-09-11 16:18:25 +00001315 }
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001316
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001317 while (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +00001318 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001319
1320 // Parse and remember the operand.
Chris Lattner309264d2010-01-15 18:44:13 +00001321 if (X86Operand *Op = ParseOperand())
1322 Operands.push_back(Op);
Chris Lattnercbf8a982010-09-11 16:18:25 +00001323 else {
1324 Parser.EatToEndOfStatement();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001325 return true;
Chris Lattnercbf8a982010-09-11 16:18:25 +00001326 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001327 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001328
Chris Lattnercbf8a982010-09-11 16:18:25 +00001329 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Chris Lattnerc146c4d2010-11-18 02:53:02 +00001330 SMLoc Loc = getLexer().getLoc();
Chris Lattnercbf8a982010-09-11 16:18:25 +00001331 Parser.EatToEndOfStatement();
Chris Lattnerc146c4d2010-11-18 02:53:02 +00001332 return Error(Loc, "unexpected token in argument list");
Chris Lattnercbf8a982010-09-11 16:18:25 +00001333 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001334 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001335
Chris Lattner2544f422010-09-08 05:17:37 +00001336 if (getLexer().is(AsmToken::EndOfStatement))
1337 Parser.Lex(); // Consume the EndOfStatement
Kevin Enderby76331752010-12-08 23:57:59 +00001338 else if (isPrefix && getLexer().is(AsmToken::Slash))
1339 Parser.Lex(); // Consume the prefix separator Slash
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001340
Devang Patel885f65b2012-01-30 22:47:12 +00001341 if (ExtraImmOp && isParsingIntelSyntax())
1342 Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
1343
Chris Lattner98c870f2010-11-06 19:25:43 +00001344 // This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
1345 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
1346 // documented form in various unofficial manuals, so a lot of code uses it.
1347 if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
1348 Operands.size() == 3) {
1349 X86Operand &Op = *(X86Operand*)Operands.back();
1350 if (Op.isMem() && Op.Mem.SegReg == 0 &&
1351 isa<MCConstantExpr>(Op.Mem.Disp) &&
1352 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
1353 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
1354 SMLoc Loc = Op.getEndLoc();
1355 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
1356 delete &Op;
1357 }
1358 }
Joerg Sonnenberger00743c22011-02-22 20:40:09 +00001359 // Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
1360 if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
1361 Operands.size() == 3) {
1362 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1363 if (Op.isMem() && Op.Mem.SegReg == 0 &&
1364 isa<MCConstantExpr>(Op.Mem.Disp) &&
1365 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
1366 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
1367 SMLoc Loc = Op.getEndLoc();
1368 Operands.begin()[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
1369 delete &Op;
1370 }
1371 }
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001372 // Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]"
1373 if (Name.startswith("ins") && Operands.size() == 3 &&
1374 (Name == "insb" || Name == "insw" || Name == "insl")) {
1375 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1376 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1377 if (Op.isReg() && Op.getReg() == X86::DX && isDstOp(Op2)) {
1378 Operands.pop_back();
1379 Operands.pop_back();
1380 delete &Op;
1381 delete &Op2;
1382 }
1383 }
1384
1385 // Transform "outs[bwl] %ds:(%esi), %dx" into "out[bwl]"
1386 if (Name.startswith("outs") && Operands.size() == 3 &&
1387 (Name == "outsb" || Name == "outsw" || Name == "outsl")) {
1388 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1389 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1390 if (isSrcOp(Op) && Op2.isReg() && Op2.getReg() == X86::DX) {
1391 Operands.pop_back();
1392 Operands.pop_back();
1393 delete &Op;
1394 delete &Op2;
1395 }
1396 }
1397
1398 // Transform "movs[bwl] %ds:(%esi), %es:(%edi)" into "movs[bwl]"
1399 if (Name.startswith("movs") && Operands.size() == 3 &&
1400 (Name == "movsb" || Name == "movsw" || Name == "movsl" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001401 (is64BitMode() && Name == "movsq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001402 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1403 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1404 if (isSrcOp(Op) && isDstOp(Op2)) {
1405 Operands.pop_back();
1406 Operands.pop_back();
1407 delete &Op;
1408 delete &Op2;
1409 }
1410 }
1411 // Transform "lods[bwl] %ds:(%esi),{%al,%ax,%eax,%rax}" into "lods[bwl]"
1412 if (Name.startswith("lods") && Operands.size() == 3 &&
1413 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001414 Name == "lodsl" || (is64BitMode() && Name == "lodsq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001415 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1416 X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
1417 if (isSrcOp(*Op1) && Op2->isReg()) {
1418 const char *ins;
1419 unsigned reg = Op2->getReg();
1420 bool isLods = Name == "lods";
1421 if (reg == X86::AL && (isLods || Name == "lodsb"))
1422 ins = "lodsb";
1423 else if (reg == X86::AX && (isLods || Name == "lodsw"))
1424 ins = "lodsw";
1425 else if (reg == X86::EAX && (isLods || Name == "lodsl"))
1426 ins = "lodsl";
1427 else if (reg == X86::RAX && (isLods || Name == "lodsq"))
1428 ins = "lodsq";
1429 else
1430 ins = NULL;
1431 if (ins != NULL) {
1432 Operands.pop_back();
1433 Operands.pop_back();
1434 delete Op1;
1435 delete Op2;
1436 if (Name != ins)
1437 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
1438 }
1439 }
1440 }
1441 // Transform "stos[bwl] {%al,%ax,%eax,%rax},%es:(%edi)" into "stos[bwl]"
1442 if (Name.startswith("stos") && Operands.size() == 3 &&
1443 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001444 Name == "stosl" || (is64BitMode() && Name == "stosq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001445 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1446 X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
1447 if (isDstOp(*Op2) && Op1->isReg()) {
1448 const char *ins;
1449 unsigned reg = Op1->getReg();
1450 bool isStos = Name == "stos";
1451 if (reg == X86::AL && (isStos || Name == "stosb"))
1452 ins = "stosb";
1453 else if (reg == X86::AX && (isStos || Name == "stosw"))
1454 ins = "stosw";
1455 else if (reg == X86::EAX && (isStos || Name == "stosl"))
1456 ins = "stosl";
1457 else if (reg == X86::RAX && (isStos || Name == "stosq"))
1458 ins = "stosq";
1459 else
1460 ins = NULL;
1461 if (ins != NULL) {
1462 Operands.pop_back();
1463 Operands.pop_back();
1464 delete Op1;
1465 delete Op2;
1466 if (Name != ins)
1467 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
1468 }
1469 }
1470 }
1471
Chris Lattnere9e16a32010-09-15 04:33:27 +00001472 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattneree211d02010-09-11 16:32:12 +00001473 // "shift <op>".
Daniel Dunbard5e77052010-03-13 00:47:29 +00001474 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001475 Name.startswith("shl") || Name.startswith("sal") ||
1476 Name.startswith("rcl") || Name.startswith("rcr") ||
1477 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner47ab90b2010-09-06 18:32:06 +00001478 Operands.size() == 3) {
Devang Patelbe3e3102012-01-30 20:02:42 +00001479 if (isParsingIntelSyntax()) {
Devang Patel3b96e1f2012-01-24 21:43:36 +00001480 // Intel syntax
1481 X86Operand *Op1 = static_cast<X86Operand*>(Operands[2]);
1482 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
Craig Topper76bd9382012-07-18 04:59:16 +00001483 cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
1484 delete Operands[2];
1485 Operands.pop_back();
Devang Patel3b96e1f2012-01-24 21:43:36 +00001486 }
1487 } else {
1488 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1489 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
Craig Topper76bd9382012-07-18 04:59:16 +00001490 cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
1491 delete Operands[1];
1492 Operands.erase(Operands.begin() + 1);
Devang Patel3b96e1f2012-01-24 21:43:36 +00001493 }
Chris Lattner47ab90b2010-09-06 18:32:06 +00001494 }
Daniel Dunbarf2de13f2010-03-20 22:36:38 +00001495 }
Chad Rosier36b8fed2012-06-27 22:34:28 +00001496
Chris Lattner15f89512011-04-09 19:41:05 +00001497 // Transforms "int $3" into "int3" as a size optimization. We can't write an
1498 // instalias with an immediate operand yet.
1499 if (Name == "int" && Operands.size() == 2) {
1500 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1501 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1502 cast<MCConstantExpr>(Op1->getImm())->getValue() == 3) {
1503 delete Operands[1];
1504 Operands.erase(Operands.begin() + 1);
1505 static_cast<X86Operand*>(Operands[0])->setTokenValue("int3");
1506 }
1507 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001508
Chris Lattner98986712010-01-14 22:21:20 +00001509 return false;
Daniel Dunbara3af3702009-07-20 18:55:04 +00001510}
1511
Devang Pateldd929fc2012-01-12 18:03:40 +00001512bool X86AsmParser::
Devang Patelb8ba13f2012-01-18 22:42:29 +00001513processInstruction(MCInst &Inst,
1514 const SmallVectorImpl<MCParsedAsmOperand*> &Ops) {
1515 switch (Inst.getOpcode()) {
1516 default: return false;
1517 case X86::AND16i16: {
1518 if (!Inst.getOperand(0).isImm() ||
1519 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1520 return false;
1521
1522 MCInst TmpInst;
1523 TmpInst.setOpcode(X86::AND16ri8);
1524 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1525 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1526 TmpInst.addOperand(Inst.getOperand(0));
1527 Inst = TmpInst;
1528 return true;
1529 }
1530 case X86::AND32i32: {
1531 if (!Inst.getOperand(0).isImm() ||
1532 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1533 return false;
1534
1535 MCInst TmpInst;
1536 TmpInst.setOpcode(X86::AND32ri8);
1537 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1538 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1539 TmpInst.addOperand(Inst.getOperand(0));
1540 Inst = TmpInst;
1541 return true;
1542 }
1543 case X86::AND64i32: {
1544 if (!Inst.getOperand(0).isImm() ||
1545 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1546 return false;
1547
1548 MCInst TmpInst;
1549 TmpInst.setOpcode(X86::AND64ri8);
1550 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1551 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1552 TmpInst.addOperand(Inst.getOperand(0));
1553 Inst = TmpInst;
1554 return true;
1555 }
Devang Patelac0f0482012-01-19 17:53:25 +00001556 case X86::XOR16i16: {
1557 if (!Inst.getOperand(0).isImm() ||
1558 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1559 return false;
1560
1561 MCInst TmpInst;
1562 TmpInst.setOpcode(X86::XOR16ri8);
1563 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1564 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1565 TmpInst.addOperand(Inst.getOperand(0));
1566 Inst = TmpInst;
1567 return true;
1568 }
1569 case X86::XOR32i32: {
1570 if (!Inst.getOperand(0).isImm() ||
1571 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1572 return false;
1573
1574 MCInst TmpInst;
1575 TmpInst.setOpcode(X86::XOR32ri8);
1576 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1577 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1578 TmpInst.addOperand(Inst.getOperand(0));
1579 Inst = TmpInst;
1580 return true;
1581 }
1582 case X86::XOR64i32: {
1583 if (!Inst.getOperand(0).isImm() ||
1584 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1585 return false;
1586
1587 MCInst TmpInst;
1588 TmpInst.setOpcode(X86::XOR64ri8);
1589 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1590 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1591 TmpInst.addOperand(Inst.getOperand(0));
1592 Inst = TmpInst;
1593 return true;
1594 }
1595 case X86::OR16i16: {
1596 if (!Inst.getOperand(0).isImm() ||
1597 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1598 return false;
1599
1600 MCInst TmpInst;
1601 TmpInst.setOpcode(X86::OR16ri8);
1602 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1603 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1604 TmpInst.addOperand(Inst.getOperand(0));
1605 Inst = TmpInst;
1606 return true;
1607 }
1608 case X86::OR32i32: {
1609 if (!Inst.getOperand(0).isImm() ||
1610 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1611 return false;
1612
1613 MCInst TmpInst;
1614 TmpInst.setOpcode(X86::OR32ri8);
1615 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1616 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1617 TmpInst.addOperand(Inst.getOperand(0));
1618 Inst = TmpInst;
1619 return true;
1620 }
1621 case X86::OR64i32: {
1622 if (!Inst.getOperand(0).isImm() ||
1623 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1624 return false;
1625
1626 MCInst TmpInst;
1627 TmpInst.setOpcode(X86::OR64ri8);
1628 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1629 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1630 TmpInst.addOperand(Inst.getOperand(0));
1631 Inst = TmpInst;
1632 return true;
1633 }
1634 case X86::CMP16i16: {
1635 if (!Inst.getOperand(0).isImm() ||
1636 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1637 return false;
1638
1639 MCInst TmpInst;
1640 TmpInst.setOpcode(X86::CMP16ri8);
1641 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1642 TmpInst.addOperand(Inst.getOperand(0));
1643 Inst = TmpInst;
1644 return true;
1645 }
1646 case X86::CMP32i32: {
1647 if (!Inst.getOperand(0).isImm() ||
1648 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1649 return false;
1650
1651 MCInst TmpInst;
1652 TmpInst.setOpcode(X86::CMP32ri8);
1653 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1654 TmpInst.addOperand(Inst.getOperand(0));
1655 Inst = TmpInst;
1656 return true;
1657 }
1658 case X86::CMP64i32: {
1659 if (!Inst.getOperand(0).isImm() ||
1660 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1661 return false;
1662
1663 MCInst TmpInst;
1664 TmpInst.setOpcode(X86::CMP64ri8);
1665 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1666 TmpInst.addOperand(Inst.getOperand(0));
1667 Inst = TmpInst;
1668 return true;
1669 }
Devang Patela951f772012-01-19 18:40:55 +00001670 case X86::ADD16i16: {
1671 if (!Inst.getOperand(0).isImm() ||
1672 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1673 return false;
1674
1675 MCInst TmpInst;
1676 TmpInst.setOpcode(X86::ADD16ri8);
1677 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1678 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1679 TmpInst.addOperand(Inst.getOperand(0));
1680 Inst = TmpInst;
1681 return true;
1682 }
1683 case X86::ADD32i32: {
1684 if (!Inst.getOperand(0).isImm() ||
1685 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1686 return false;
1687
1688 MCInst TmpInst;
1689 TmpInst.setOpcode(X86::ADD32ri8);
1690 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1691 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1692 TmpInst.addOperand(Inst.getOperand(0));
1693 Inst = TmpInst;
1694 return true;
1695 }
1696 case X86::ADD64i32: {
1697 if (!Inst.getOperand(0).isImm() ||
1698 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1699 return false;
1700
1701 MCInst TmpInst;
1702 TmpInst.setOpcode(X86::ADD64ri8);
1703 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1704 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1705 TmpInst.addOperand(Inst.getOperand(0));
1706 Inst = TmpInst;
1707 return true;
1708 }
1709 case X86::SUB16i16: {
1710 if (!Inst.getOperand(0).isImm() ||
1711 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1712 return false;
1713
1714 MCInst TmpInst;
1715 TmpInst.setOpcode(X86::SUB16ri8);
1716 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1717 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1718 TmpInst.addOperand(Inst.getOperand(0));
1719 Inst = TmpInst;
1720 return true;
1721 }
1722 case X86::SUB32i32: {
1723 if (!Inst.getOperand(0).isImm() ||
1724 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1725 return false;
1726
1727 MCInst TmpInst;
1728 TmpInst.setOpcode(X86::SUB32ri8);
1729 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1730 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1731 TmpInst.addOperand(Inst.getOperand(0));
1732 Inst = TmpInst;
1733 return true;
1734 }
1735 case X86::SUB64i32: {
1736 if (!Inst.getOperand(0).isImm() ||
1737 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1738 return false;
1739
1740 MCInst TmpInst;
1741 TmpInst.setOpcode(X86::SUB64ri8);
1742 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1743 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1744 TmpInst.addOperand(Inst.getOperand(0));
1745 Inst = TmpInst;
1746 return true;
1747 }
Devang Patelb8ba13f2012-01-18 22:42:29 +00001748 }
Devang Patelb8ba13f2012-01-18 22:42:29 +00001749}
1750
Jim Grosbach3ca63822012-11-14 18:04:47 +00001751static const char *getSubtargetFeatureName(unsigned Val);
Devang Patelb8ba13f2012-01-18 22:42:29 +00001752bool X86AsmParser::
Chad Rosier84125ca2012-10-13 00:26:04 +00001753MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
Chris Lattner7c51a312010-09-29 01:50:45 +00001754 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chad Rosier84125ca2012-10-13 00:26:04 +00001755 MCStreamer &Out, unsigned &ErrorInfo,
1756 bool MatchingInlineAsm) {
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001757 assert(!Operands.empty() && "Unexpect empty operand list!");
Chris Lattner7c51a312010-09-29 01:50:45 +00001758 X86Operand *Op = static_cast<X86Operand*>(Operands[0]);
1759 assert(Op->isToken() && "Leading operand should always be a mnemonic!");
Chad Rosierb4fdade2012-08-21 19:36:59 +00001760 ArrayRef<SMRange> EmptyRanges = ArrayRef<SMRange>();
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001761
Chris Lattner7c51a312010-09-29 01:50:45 +00001762 // First, handle aliases that expand to multiple instructions.
1763 // FIXME: This should be replaced with a real .td file alias mechanism.
Chad Rosier4ee08082012-08-28 23:57:47 +00001764 // Also, MatchInstructionImpl should actually *do* the EmitInstruction
Chris Lattner90fd7972010-11-06 19:57:21 +00001765 // call.
Andrew Trick0966ec02010-10-22 03:58:29 +00001766 if (Op->getToken() == "fstsw" || Op->getToken() == "fstcw" ||
Chris Lattner8b260a72010-10-30 18:07:17 +00001767 Op->getToken() == "fstsww" || Op->getToken() == "fstcww" ||
Chris Lattner905f2e02010-09-30 17:11:29 +00001768 Op->getToken() == "finit" || Op->getToken() == "fsave" ||
Kevin Enderby5a378072010-10-27 02:53:04 +00001769 Op->getToken() == "fstenv" || Op->getToken() == "fclex") {
Chris Lattner7c51a312010-09-29 01:50:45 +00001770 MCInst Inst;
1771 Inst.setOpcode(X86::WAIT);
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001772 Inst.setLoc(IDLoc);
Chad Rosier7a2b6242012-10-12 23:09:25 +00001773 if (!MatchingInlineAsm)
Chad Rosier22685872012-10-01 23:45:51 +00001774 Out.EmitInstruction(Inst);
Chris Lattner7c51a312010-09-29 01:50:45 +00001775
Chris Lattner0bb83a82010-09-30 16:39:29 +00001776 const char *Repl =
1777 StringSwitch<const char*>(Op->getToken())
Chris Lattner8b260a72010-10-30 18:07:17 +00001778 .Case("finit", "fninit")
1779 .Case("fsave", "fnsave")
1780 .Case("fstcw", "fnstcw")
1781 .Case("fstcww", "fnstcw")
Chris Lattner905f2e02010-09-30 17:11:29 +00001782 .Case("fstenv", "fnstenv")
Chris Lattner8b260a72010-10-30 18:07:17 +00001783 .Case("fstsw", "fnstsw")
1784 .Case("fstsww", "fnstsw")
1785 .Case("fclex", "fnclex")
Chris Lattner0bb83a82010-09-30 16:39:29 +00001786 .Default(0);
1787 assert(Repl && "Unknown wait-prefixed instruction");
Benjamin Kramerb0f96fa2010-10-01 12:25:27 +00001788 delete Operands[0];
Chris Lattner0bb83a82010-09-30 16:39:29 +00001789 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattner7c51a312010-09-29 01:50:45 +00001790 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001791
Chris Lattnera008e8a2010-09-06 21:54:15 +00001792 bool WasOriginallyInvalidOperand = false;
Chris Lattner7036f8b2010-09-29 01:42:58 +00001793 MCInst Inst;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001794
Daniel Dunbarc918d602010-05-04 16:12:42 +00001795 // First, try a direct match.
Chad Rosier6e006d32012-10-12 22:53:36 +00001796 switch (MatchInstructionImpl(Operands, Inst,
Chad Rosier84125ca2012-10-13 00:26:04 +00001797 ErrorInfo, MatchingInlineAsm,
Devang Patelbe3e3102012-01-30 20:02:42 +00001798 isParsingIntelSyntax())) {
Jim Grosbach19cb7f42011-08-15 23:03:29 +00001799 default: break;
Chris Lattnerec6789f2010-09-06 20:08:02 +00001800 case Match_Success:
Devang Patelb8ba13f2012-01-18 22:42:29 +00001801 // Some instructions need post-processing to, for example, tweak which
1802 // encoding is selected. Loop on it while changes happen so the
Chad Rosier36b8fed2012-06-27 22:34:28 +00001803 // individual transformations can chain off each other.
Chad Rosier7a2b6242012-10-12 23:09:25 +00001804 if (!MatchingInlineAsm)
Chad Rosier22685872012-10-01 23:45:51 +00001805 while (processInstruction(Inst, Operands))
1806 ;
Devang Patelb8ba13f2012-01-18 22:42:29 +00001807
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001808 Inst.setLoc(IDLoc);
Chad Rosier7a2b6242012-10-12 23:09:25 +00001809 if (!MatchingInlineAsm)
Chad Rosier22685872012-10-01 23:45:51 +00001810 Out.EmitInstruction(Inst);
1811 Opcode = Inst.getOpcode();
Daniel Dunbarc918d602010-05-04 16:12:42 +00001812 return false;
Jim Grosbach3ca63822012-11-14 18:04:47 +00001813 case Match_MissingFeature: {
1814 assert(ErrorInfo && "Unknown missing feature!");
1815 // Special case the error message for the very common case where only
1816 // a single subtarget feature is missing.
1817 std::string Msg = "instruction requires:";
1818 unsigned Mask = 1;
1819 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
1820 if (ErrorInfo & Mask) {
1821 Msg += " ";
1822 Msg += getSubtargetFeatureName(ErrorInfo & Mask);
1823 }
1824 Mask <<= 1;
1825 }
1826 return Error(IDLoc, Msg, EmptyRanges, MatchingInlineAsm);
1827 }
Chris Lattnera008e8a2010-09-06 21:54:15 +00001828 case Match_InvalidOperand:
1829 WasOriginallyInvalidOperand = true;
1830 break;
1831 case Match_MnemonicFail:
Chris Lattnerec6789f2010-09-06 20:08:02 +00001832 break;
1833 }
Daniel Dunbarc918d602010-05-04 16:12:42 +00001834
Daniel Dunbarc918d602010-05-04 16:12:42 +00001835 // FIXME: Ideally, we would only attempt suffix matches for things which are
1836 // valid prefixes, and we could just infer the right unambiguous
1837 // type. However, that requires substantially more matcher support than the
1838 // following hack.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001839
Daniel Dunbarc918d602010-05-04 16:12:42 +00001840 // Change the operand to point to a temporary token.
Daniel Dunbarc918d602010-05-04 16:12:42 +00001841 StringRef Base = Op->getToken();
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001842 SmallString<16> Tmp;
1843 Tmp += Base;
1844 Tmp += ' ';
1845 Op->setTokenValue(Tmp.str());
Daniel Dunbarc918d602010-05-04 16:12:42 +00001846
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001847 // If this instruction starts with an 'f', then it is a floating point stack
1848 // instruction. These come in up to three forms for 32-bit, 64-bit, and
1849 // 80-bit floating point, which use the suffixes s,l,t respectively.
1850 //
1851 // Otherwise, we assume that this may be an integer instruction, which comes
1852 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
1853 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
Chad Rosier36b8fed2012-06-27 22:34:28 +00001854
Daniel Dunbarc918d602010-05-04 16:12:42 +00001855 // Check for the various suffix matches.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001856 Tmp[Base.size()] = Suffixes[0];
1857 unsigned ErrorInfoIgnore;
Jim Grosbach3ca63822012-11-14 18:04:47 +00001858 unsigned ErrorInfoMissingFeature;
Jim Grosbach19cb7f42011-08-15 23:03:29 +00001859 unsigned Match1, Match2, Match3, Match4;
Chad Rosier36b8fed2012-06-27 22:34:28 +00001860
Chad Rosier6e006d32012-10-12 22:53:36 +00001861 Match1 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
1862 isParsingIntelSyntax());
Jim Grosbach3ca63822012-11-14 18:04:47 +00001863 // If this returned as a missing feature failure, remember that.
1864 if (Match1 == Match_MissingFeature)
1865 ErrorInfoMissingFeature = ErrorInfoIgnore;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001866 Tmp[Base.size()] = Suffixes[1];
Chad Rosier6e006d32012-10-12 22:53:36 +00001867 Match2 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
1868 isParsingIntelSyntax());
Jim Grosbach3ca63822012-11-14 18:04:47 +00001869 // If this returned as a missing feature failure, remember that.
1870 if (Match2 == Match_MissingFeature)
1871 ErrorInfoMissingFeature = ErrorInfoIgnore;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001872 Tmp[Base.size()] = Suffixes[2];
Chad Rosier6e006d32012-10-12 22:53:36 +00001873 Match3 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
1874 isParsingIntelSyntax());
Jim Grosbach3ca63822012-11-14 18:04:47 +00001875 // If this returned as a missing feature failure, remember that.
1876 if (Match3 == Match_MissingFeature)
1877 ErrorInfoMissingFeature = ErrorInfoIgnore;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001878 Tmp[Base.size()] = Suffixes[3];
Chad Rosier6e006d32012-10-12 22:53:36 +00001879 Match4 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
1880 isParsingIntelSyntax());
Jim Grosbach3ca63822012-11-14 18:04:47 +00001881 // If this returned as a missing feature failure, remember that.
1882 if (Match4 == Match_MissingFeature)
1883 ErrorInfoMissingFeature = ErrorInfoIgnore;
Daniel Dunbarc918d602010-05-04 16:12:42 +00001884
1885 // Restore the old token.
1886 Op->setTokenValue(Base);
1887
1888 // If exactly one matched, then we treat that as a successful match (and the
1889 // instruction will already have been filled in correctly, since the failing
1890 // matches won't have modified it).
Chris Lattnerec6789f2010-09-06 20:08:02 +00001891 unsigned NumSuccessfulMatches =
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001892 (Match1 == Match_Success) + (Match2 == Match_Success) +
1893 (Match3 == Match_Success) + (Match4 == Match_Success);
Chris Lattner7036f8b2010-09-29 01:42:58 +00001894 if (NumSuccessfulMatches == 1) {
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001895 Inst.setLoc(IDLoc);
Chad Rosier7a2b6242012-10-12 23:09:25 +00001896 if (!MatchingInlineAsm)
Chad Rosier22685872012-10-01 23:45:51 +00001897 Out.EmitInstruction(Inst);
1898 Opcode = Inst.getOpcode();
Daniel Dunbarc918d602010-05-04 16:12:42 +00001899 return false;
Chris Lattner7036f8b2010-09-29 01:42:58 +00001900 }
Daniel Dunbarc918d602010-05-04 16:12:42 +00001901
Chris Lattnerec6789f2010-09-06 20:08:02 +00001902 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001903
Daniel Dunbar09062b12010-08-12 00:55:42 +00001904 // If we had multiple suffix matches, then identify this as an ambiguous
1905 // match.
Chris Lattnerec6789f2010-09-06 20:08:02 +00001906 if (NumSuccessfulMatches > 1) {
Daniel Dunbar09062b12010-08-12 00:55:42 +00001907 char MatchChars[4];
1908 unsigned NumMatches = 0;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001909 if (Match1 == Match_Success) MatchChars[NumMatches++] = Suffixes[0];
1910 if (Match2 == Match_Success) MatchChars[NumMatches++] = Suffixes[1];
1911 if (Match3 == Match_Success) MatchChars[NumMatches++] = Suffixes[2];
1912 if (Match4 == Match_Success) MatchChars[NumMatches++] = Suffixes[3];
Daniel Dunbar09062b12010-08-12 00:55:42 +00001913
1914 SmallString<126> Msg;
1915 raw_svector_ostream OS(Msg);
1916 OS << "ambiguous instructions require an explicit suffix (could be ";
1917 for (unsigned i = 0; i != NumMatches; ++i) {
1918 if (i != 0)
1919 OS << ", ";
1920 if (i + 1 == NumMatches)
1921 OS << "or ";
1922 OS << "'" << Base << MatchChars[i] << "'";
1923 }
1924 OS << ")";
Chad Rosier7a2b6242012-10-12 23:09:25 +00001925 Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
Chris Lattnerec6789f2010-09-06 20:08:02 +00001926 return true;
Daniel Dunbar09062b12010-08-12 00:55:42 +00001927 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001928
Chris Lattnera008e8a2010-09-06 21:54:15 +00001929 // Okay, we know that none of the variants matched successfully.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001930
Chris Lattnera008e8a2010-09-06 21:54:15 +00001931 // If all of the instructions reported an invalid mnemonic, then the original
1932 // mnemonic was invalid.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001933 if ((Match1 == Match_MnemonicFail) && (Match2 == Match_MnemonicFail) &&
1934 (Match3 == Match_MnemonicFail) && (Match4 == Match_MnemonicFail)) {
Chris Lattnerce4a3352010-09-06 22:11:18 +00001935 if (!WasOriginallyInvalidOperand) {
Chad Rosier7a2b6242012-10-12 23:09:25 +00001936 ArrayRef<SMRange> Ranges = MatchingInlineAsm ? EmptyRanges :
Chad Rosier674101e2012-08-22 19:14:29 +00001937 Op->getLocRange();
Benjamin Kramerf82edaf2011-10-16 11:28:29 +00001938 return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
Chad Rosier7a2b6242012-10-12 23:09:25 +00001939 Ranges, MatchingInlineAsm);
Chris Lattnerce4a3352010-09-06 22:11:18 +00001940 }
1941
1942 // Recover location info for the operand if we know which was the problem.
Chad Rosier84125ca2012-10-13 00:26:04 +00001943 if (ErrorInfo != ~0U) {
1944 if (ErrorInfo >= Operands.size())
Chad Rosierb4fdade2012-08-21 19:36:59 +00001945 return Error(IDLoc, "too few operands for instruction",
Chad Rosier7a2b6242012-10-12 23:09:25 +00001946 EmptyRanges, MatchingInlineAsm);
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001947
Chad Rosier84125ca2012-10-13 00:26:04 +00001948 X86Operand *Operand = (X86Operand*)Operands[ErrorInfo];
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001949 if (Operand->getStartLoc().isValid()) {
1950 SMRange OperandRange = Operand->getLocRange();
1951 return Error(Operand->getStartLoc(), "invalid operand for instruction",
Chad Rosier7a2b6242012-10-12 23:09:25 +00001952 OperandRange, MatchingInlineAsm);
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001953 }
Chris Lattnerce4a3352010-09-06 22:11:18 +00001954 }
1955
Chad Rosierb4fdade2012-08-21 19:36:59 +00001956 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
Chad Rosier7a2b6242012-10-12 23:09:25 +00001957 MatchingInlineAsm);
Chris Lattnera008e8a2010-09-06 21:54:15 +00001958 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001959
Chris Lattnerec6789f2010-09-06 20:08:02 +00001960 // If one instruction matched with a missing feature, report this as a
1961 // missing feature.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001962 if ((Match1 == Match_MissingFeature) + (Match2 == Match_MissingFeature) +
1963 (Match3 == Match_MissingFeature) + (Match4 == Match_MissingFeature) == 1){
Jim Grosbach3ca63822012-11-14 18:04:47 +00001964 std::string Msg = "instruction requires:";
1965 unsigned Mask = 1;
1966 for (unsigned i = 0; i < (sizeof(ErrorInfoMissingFeature)*8-1); ++i) {
1967 if (ErrorInfoMissingFeature & Mask) {
1968 Msg += " ";
1969 Msg += getSubtargetFeatureName(ErrorInfoMissingFeature & Mask);
1970 }
1971 Mask <<= 1;
1972 }
1973 return Error(IDLoc, Msg, EmptyRanges, MatchingInlineAsm);
Chris Lattnerec6789f2010-09-06 20:08:02 +00001974 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001975
Chris Lattnera008e8a2010-09-06 21:54:15 +00001976 // If one instruction matched with an invalid operand, report this as an
1977 // operand failure.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001978 if ((Match1 == Match_InvalidOperand) + (Match2 == Match_InvalidOperand) +
1979 (Match3 == Match_InvalidOperand) + (Match4 == Match_InvalidOperand) == 1){
Chad Rosierb4fdade2012-08-21 19:36:59 +00001980 Error(IDLoc, "invalid operand for instruction", EmptyRanges,
Chad Rosier7a2b6242012-10-12 23:09:25 +00001981 MatchingInlineAsm);
Chris Lattnera008e8a2010-09-06 21:54:15 +00001982 return true;
1983 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001984
Chris Lattnerec6789f2010-09-06 20:08:02 +00001985 // If all of these were an outright failure, report it in a useless way.
Chad Rosierb4fdade2012-08-21 19:36:59 +00001986 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
Chad Rosier7a2b6242012-10-12 23:09:25 +00001987 EmptyRanges, MatchingInlineAsm);
Daniel Dunbarc918d602010-05-04 16:12:42 +00001988 return true;
1989}
1990
1991
Devang Pateldd929fc2012-01-12 18:03:40 +00001992bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
Chris Lattner537ca842010-10-30 17:38:55 +00001993 StringRef IDVal = DirectiveID.getIdentifier();
1994 if (IDVal == ".word")
1995 return ParseDirectiveWord(2, DirectiveID.getLoc());
Evan Chengbd27f5a2011-07-27 00:38:12 +00001996 else if (IDVal.startswith(".code"))
1997 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
Chad Rosier3c4ecd72012-09-10 20:54:39 +00001998 else if (IDVal.startswith(".att_syntax")) {
1999 getParser().setAssemblerDialect(0);
2000 return false;
2001 } else if (IDVal.startswith(".intel_syntax")) {
Devang Patel0db58bf2012-01-31 18:14:05 +00002002 getParser().setAssemblerDialect(1);
Devang Patelbe3e3102012-01-30 20:02:42 +00002003 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2004 if(Parser.getTok().getString() == "noprefix") {
Craig Topper76bd9382012-07-18 04:59:16 +00002005 // FIXME : Handle noprefix
2006 Parser.Lex();
Devang Patelbe3e3102012-01-30 20:02:42 +00002007 } else
Craig Topper76bd9382012-07-18 04:59:16 +00002008 return true;
Devang Patelbe3e3102012-01-30 20:02:42 +00002009 }
2010 return false;
2011 }
Chris Lattner537ca842010-10-30 17:38:55 +00002012 return true;
2013}
2014
2015/// ParseDirectiveWord
2016/// ::= .word [ expression (, expression)* ]
Devang Pateldd929fc2012-01-12 18:03:40 +00002017bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
Chris Lattner537ca842010-10-30 17:38:55 +00002018 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2019 for (;;) {
2020 const MCExpr *Value;
2021 if (getParser().ParseExpression(Value))
2022 return true;
Chad Rosier36b8fed2012-06-27 22:34:28 +00002023
Chris Lattner537ca842010-10-30 17:38:55 +00002024 getParser().getStreamer().EmitValue(Value, Size, 0 /*addrspace*/);
Chad Rosier36b8fed2012-06-27 22:34:28 +00002025
Chris Lattner537ca842010-10-30 17:38:55 +00002026 if (getLexer().is(AsmToken::EndOfStatement))
2027 break;
Chad Rosier36b8fed2012-06-27 22:34:28 +00002028
Chris Lattner537ca842010-10-30 17:38:55 +00002029 // FIXME: Improve diagnostic.
2030 if (getLexer().isNot(AsmToken::Comma))
2031 return Error(L, "unexpected token in directive");
2032 Parser.Lex();
2033 }
2034 }
Chad Rosier36b8fed2012-06-27 22:34:28 +00002035
Chris Lattner537ca842010-10-30 17:38:55 +00002036 Parser.Lex();
2037 return false;
2038}
2039
Evan Chengbd27f5a2011-07-27 00:38:12 +00002040/// ParseDirectiveCode
2041/// ::= .code32 | .code64
Devang Pateldd929fc2012-01-12 18:03:40 +00002042bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
Evan Chengbd27f5a2011-07-27 00:38:12 +00002043 if (IDVal == ".code32") {
2044 Parser.Lex();
2045 if (is64BitMode()) {
2046 SwitchMode();
2047 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
2048 }
2049 } else if (IDVal == ".code64") {
2050 Parser.Lex();
2051 if (!is64BitMode()) {
2052 SwitchMode();
2053 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
2054 }
2055 } else {
2056 return Error(L, "unexpected directive " + IDVal);
2057 }
Chris Lattner537ca842010-10-30 17:38:55 +00002058
Evan Chengbd27f5a2011-07-27 00:38:12 +00002059 return false;
2060}
Chris Lattner537ca842010-10-30 17:38:55 +00002061
2062
Sean Callanane88f5522010-01-23 02:43:15 +00002063extern "C" void LLVMInitializeX86AsmLexer();
2064
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00002065// Force static initialization.
2066extern "C" void LLVMInitializeX86AsmParser() {
Devang Pateldd929fc2012-01-12 18:03:40 +00002067 RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
2068 RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
Sean Callanane88f5522010-01-23 02:43:15 +00002069 LLVMInitializeX86AsmLexer();
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00002070}
Daniel Dunbar0e2771f2009-07-29 00:02:19 +00002071
Chris Lattner0692ee62010-09-06 19:11:01 +00002072#define GET_REGISTER_MATCHER
2073#define GET_MATCHER_IMPLEMENTATION
Jim Grosbach3ca63822012-11-14 18:04:47 +00002074#define GET_SUBTARGET_FEATURE_NAME
Daniel Dunbar0e2771f2009-07-29 00:02:19 +00002075#include "X86GenAsmMatcher.inc"