blob: ce32c7753f9405b207286cdf113716517c7d3e5f [file] [log] [blame]
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00001//===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Evan Cheng94b95502011-07-26 00:24:13 +000010#include "MCTargetDesc/X86BaseInfo.h"
11#include "llvm/MC/MCTargetAsmParser.h"
Kevin Enderby9c656452009-09-10 20:51:44 +000012#include "llvm/MC/MCStreamer.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000013#include "llvm/MC/MCExpr.h"
Daniel Dunbara027d222009-07-31 02:32:59 +000014#include "llvm/MC/MCInst.h"
Evan Cheng5de728c2011-07-27 23:22:03 +000015#include "llvm/MC/MCRegisterInfo.h"
Evan Chengebdeeab2011-07-08 01:53:10 +000016#include "llvm/MC/MCSubtargetInfo.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000017#include "llvm/MC/MCParser/MCAsmLexer.h"
18#include "llvm/MC/MCParser/MCAsmParser.h"
19#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Benjamin Kramer75ca4b92011-07-08 21:06:23 +000020#include "llvm/ADT/OwningPtr.h"
Chris Lattner33d60d52010-09-22 04:11:10 +000021#include "llvm/ADT/SmallString.h"
22#include "llvm/ADT/SmallVector.h"
Chris Lattner33d60d52010-09-22 04:11:10 +000023#include "llvm/ADT/StringSwitch.h"
24#include "llvm/ADT/Twine.h"
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000025#include "llvm/Support/SourceMgr.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000026#include "llvm/Support/TargetRegistry.h"
Daniel Dunbar09062b12010-08-12 00:55:42 +000027#include "llvm/Support/raw_ostream.h"
Evan Chengebdeeab2011-07-08 01:53:10 +000028
Daniel Dunbar092a9dd2009-07-17 20:42:00 +000029using namespace llvm;
30
31namespace {
Benjamin Kramerc6b79ac2009-07-31 11:35:26 +000032struct X86Operand;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000033
Devang Pateldd929fc2012-01-12 18:03:40 +000034class X86AsmParser : public MCTargetAsmParser {
Evan Chengffc0e732011-07-09 05:47:46 +000035 MCSubtargetInfo &STI;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000036 MCAsmParser &Parser;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000037private:
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000038 MCAsmParser &getParser() const { return Parser; }
39
40 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
41
Chris Lattnerd8b7aa22011-10-16 04:47:35 +000042 bool Error(SMLoc L, const Twine &Msg,
43 ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) {
44 return Parser.Error(L, Msg, Ranges);
45 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000046
Devang Pateld37ad242012-01-17 18:00:18 +000047 X86Operand *ErrorOperand(SMLoc Loc, StringRef Msg) {
48 Error(Loc, Msg);
49 return 0;
50 }
51
Chris Lattner309264d2010-01-15 18:44:13 +000052 X86Operand *ParseOperand();
Devang Patel0a338862012-01-12 01:36:43 +000053 X86Operand *ParseATTOperand();
54 X86Operand *ParseIntelOperand();
Devang Pateld37ad242012-01-17 18:00:18 +000055 X86Operand *ParseIntelMemOperand();
Devang Patel7c64fe62012-01-23 18:31:58 +000056 X86Operand *ParseIntelBracExpression(unsigned SegReg, unsigned Size);
Chris Lattnereef6d782010-04-17 18:56:34 +000057 X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderby9c656452009-09-10 20:51:44 +000058
59 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Evan Chengbd27f5a2011-07-27 00:38:12 +000060 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
Kevin Enderby9c656452009-09-10 20:51:44 +000061
Devang Patelb8ba13f2012-01-18 22:42:29 +000062 bool processInstruction(MCInst &Inst,
63 const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
64
Chris Lattner7036f8b2010-09-29 01:42:58 +000065 bool MatchAndEmitInstruction(SMLoc IDLoc,
Chris Lattner7c51a312010-09-29 01:50:45 +000066 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chris Lattner7036f8b2010-09-29 01:42:58 +000067 MCStreamer &Out);
Daniel Dunbar20927f22009-08-07 08:26:05 +000068
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +000069 /// isSrcOp - Returns true if operand is either (%rsi) or %ds:%(rsi)
70 /// in 64bit mode or (%edi) or %es:(%edi) in 32bit mode.
71 bool isSrcOp(X86Operand &Op);
72
73 /// isDstOp - Returns true if operand is either %es:(%rdi) in 64bit mode
74 /// or %es:(%edi) in 32bit mode.
75 bool isDstOp(X86Operand &Op);
76
Evan Cheng59ee62d2011-07-11 03:57:24 +000077 bool is64BitMode() const {
Evan Chengebdeeab2011-07-08 01:53:10 +000078 // FIXME: Can tablegen auto-generate this?
Evan Chengffc0e732011-07-09 05:47:46 +000079 return (STI.getFeatureBits() & X86::Mode64Bit) != 0;
Evan Chengebdeeab2011-07-08 01:53:10 +000080 }
Evan Chengbd27f5a2011-07-27 00:38:12 +000081 void SwitchMode() {
82 unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(X86::Mode64Bit));
83 setAvailableFeatures(FB);
84 }
Evan Chengebdeeab2011-07-08 01:53:10 +000085
Daniel Dunbar54074b52010-07-19 05:44:09 +000086 /// @name Auto-generated Matcher Functions
87 /// {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000088
Chris Lattner0692ee62010-09-06 19:11:01 +000089#define GET_ASSEMBLER_HEADER
90#include "X86GenAsmMatcher.inc"
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000091
Daniel Dunbar0e2771f2009-07-29 00:02:19 +000092 /// }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000093
94public:
Devang Pateldd929fc2012-01-12 18:03:40 +000095 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &parser)
Devang Patel0db58bf2012-01-31 18:14:05 +000096 : MCTargetAsmParser(), STI(sti), Parser(parser) {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000097
Daniel Dunbar54074b52010-07-19 05:44:09 +000098 // Initialize the set of available features.
Evan Chengffc0e732011-07-09 05:47:46 +000099 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Daniel Dunbar54074b52010-07-19 05:44:09 +0000100 }
Roman Divackybf755322011-01-27 17:14:22 +0000101 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000102
Benjamin Kramer38e59892010-07-14 22:38:02 +0000103 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +0000104 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Kevin Enderby9c656452009-09-10 20:51:44 +0000105
106 virtual bool ParseDirective(AsmToken DirectiveID);
Devang Patelbe3e3102012-01-30 20:02:42 +0000107
108 bool isParsingIntelSyntax() {
Devang Patel0db58bf2012-01-31 18:14:05 +0000109 return getParser().getAssemblerDialect();
Devang Patelbe3e3102012-01-30 20:02:42 +0000110 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000111};
Chris Lattner37dfdec2009-07-29 06:33:53 +0000112} // end anonymous namespace
113
Sean Callanane9b466d2010-01-23 00:40:33 +0000114/// @name Auto-generated Match Functions
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000115/// {
Sean Callanane9b466d2010-01-23 00:40:33 +0000116
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000117static unsigned MatchRegisterName(StringRef Name);
Sean Callanane9b466d2010-01-23 00:40:33 +0000118
119/// }
Chris Lattner37dfdec2009-07-29 06:33:53 +0000120
Devang Patelb8ba13f2012-01-18 22:42:29 +0000121static bool isImmSExti16i8Value(uint64_t Value) {
122 return (( Value <= 0x000000000000007FULL)||
123 (0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)||
124 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
125}
126
127static bool isImmSExti32i8Value(uint64_t Value) {
128 return (( Value <= 0x000000000000007FULL)||
129 (0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)||
130 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
131}
132
133static bool isImmZExtu32u8Value(uint64_t Value) {
134 return (Value <= 0x00000000000000FFULL);
135}
136
137static bool isImmSExti64i8Value(uint64_t Value) {
138 return (( Value <= 0x000000000000007FULL)||
139 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
140}
141
142static bool isImmSExti64i32Value(uint64_t Value) {
143 return (( Value <= 0x000000007FFFFFFFULL)||
144 (0xFFFFFFFF80000000ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
145}
Chris Lattner37dfdec2009-07-29 06:33:53 +0000146namespace {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000147
148/// X86Operand - Instances of this class represent a parsed X86 machine
149/// instruction.
Chris Lattner45220a82010-01-14 21:20:55 +0000150struct X86Operand : public MCParsedAsmOperand {
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000151 enum KindTy {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000152 Token,
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000153 Register,
154 Immediate,
155 Memory
156 } Kind;
157
Chris Lattner29ef9a22010-01-15 18:51:29 +0000158 SMLoc StartLoc, EndLoc;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000159
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000160 union {
161 struct {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000162 const char *Data;
163 unsigned Length;
164 } Tok;
165
166 struct {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000167 unsigned RegNo;
168 } Reg;
169
170 struct {
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000171 const MCExpr *Val;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000172 } Imm;
173
174 struct {
175 unsigned SegReg;
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000176 const MCExpr *Disp;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000177 unsigned BaseReg;
178 unsigned IndexReg;
179 unsigned Scale;
Devang Patelc59d9df2012-01-12 01:51:42 +0000180 unsigned Size;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000181 } Mem;
Daniel Dunbardbd692a2009-07-20 20:01:54 +0000182 };
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000183
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000184 X86Operand(KindTy K, SMLoc Start, SMLoc End)
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000185 : Kind(K), StartLoc(Start), EndLoc(End) {}
Daniel Dunbarc918d602010-05-04 16:12:42 +0000186
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000187 /// getStartLoc - Get the location of the first token of this operand.
188 SMLoc getStartLoc() const { return StartLoc; }
189 /// getEndLoc - Get the location of the last token of this operand.
190 SMLoc getEndLoc() const { return EndLoc; }
Chris Lattnerd8b7aa22011-10-16 04:47:35 +0000191
192 SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000193
Jim Grosbachb7f689b2011-07-13 15:34:57 +0000194 virtual void print(raw_ostream &OS) const {}
Daniel Dunbarb3cb6962010-08-11 06:37:04 +0000195
Daniel Dunbar20927f22009-08-07 08:26:05 +0000196 StringRef getToken() const {
197 assert(Kind == Token && "Invalid access!");
198 return StringRef(Tok.Data, Tok.Length);
199 }
Daniel Dunbarc918d602010-05-04 16:12:42 +0000200 void setTokenValue(StringRef Value) {
201 assert(Kind == Token && "Invalid access!");
202 Tok.Data = Value.data();
203 Tok.Length = Value.size();
204 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000205
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000206 unsigned getReg() const {
207 assert(Kind == Register && "Invalid access!");
208 return Reg.RegNo;
209 }
Daniel Dunbara2edbab2009-07-28 20:47:52 +0000210
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000211 const MCExpr *getImm() const {
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000212 assert(Kind == Immediate && "Invalid access!");
213 return Imm.Val;
214 }
215
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000216 const MCExpr *getMemDisp() const {
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000217 assert(Kind == Memory && "Invalid access!");
218 return Mem.Disp;
219 }
220 unsigned getMemSegReg() const {
221 assert(Kind == Memory && "Invalid access!");
222 return Mem.SegReg;
223 }
224 unsigned getMemBaseReg() const {
225 assert(Kind == Memory && "Invalid access!");
226 return Mem.BaseReg;
227 }
228 unsigned getMemIndexReg() const {
229 assert(Kind == Memory && "Invalid access!");
230 return Mem.IndexReg;
231 }
232 unsigned getMemScale() const {
233 assert(Kind == Memory && "Invalid access!");
234 return Mem.Scale;
235 }
236
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000237 bool isToken() const {return Kind == Token; }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000238
239 bool isImm() const { return Kind == Immediate; }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000240
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000241 bool isImmSExti16i8() const {
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000242 if (!isImm())
243 return false;
244
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000245 // If this isn't a constant expr, just assume it fits and let relaxation
246 // handle it.
247 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
248 if (!CE)
249 return true;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000250
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000251 // Otherwise, check the value is in a range that makes sense for this
252 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000253 return isImmSExti16i8Value(CE->getValue());
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000254 }
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000255 bool isImmSExti32i8() const {
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000256 if (!isImm())
257 return false;
258
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000259 // If this isn't a constant expr, just assume it fits and let relaxation
260 // handle it.
261 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
262 if (!CE)
263 return true;
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000264
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000265 // Otherwise, check the value is in a range that makes sense for this
266 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000267 return isImmSExti32i8Value(CE->getValue());
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000268 }
Kevin Enderbyc37d4bb2011-07-27 23:01:50 +0000269 bool isImmZExtu32u8() const {
270 if (!isImm())
271 return false;
272
273 // If this isn't a constant expr, just assume it fits and let relaxation
274 // handle it.
275 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
276 if (!CE)
277 return true;
278
279 // Otherwise, check the value is in a range that makes sense for this
280 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000281 return isImmZExtu32u8Value(CE->getValue());
Kevin Enderbyc37d4bb2011-07-27 23:01:50 +0000282 }
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000283 bool isImmSExti64i8() const {
284 if (!isImm())
285 return false;
286
287 // If this isn't a constant expr, just assume it fits and let relaxation
288 // handle it.
289 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
290 if (!CE)
291 return true;
292
293 // Otherwise, check the value is in a range that makes sense for this
294 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000295 return isImmSExti64i8Value(CE->getValue());
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000296 }
297 bool isImmSExti64i32() const {
298 if (!isImm())
299 return false;
300
301 // If this isn't a constant expr, just assume it fits and let relaxation
302 // handle it.
303 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
304 if (!CE)
305 return true;
306
307 // Otherwise, check the value is in a range that makes sense for this
308 // extension.
Devang Patelb8ba13f2012-01-18 22:42:29 +0000309 return isImmSExti64i32Value(CE->getValue());
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000310 }
311
Daniel Dunbar20927f22009-08-07 08:26:05 +0000312 bool isMem() const { return Kind == Memory; }
Devang Patelc59d9df2012-01-12 01:51:42 +0000313 bool isMem8() const {
314 return Kind == Memory && (!Mem.Size || Mem.Size == 8);
315 }
316 bool isMem16() const {
317 return Kind == Memory && (!Mem.Size || Mem.Size == 16);
318 }
319 bool isMem32() const {
320 return Kind == Memory && (!Mem.Size || Mem.Size == 32);
321 }
322 bool isMem64() const {
323 return Kind == Memory && (!Mem.Size || Mem.Size == 64);
324 }
325 bool isMem80() const {
326 return Kind == Memory && (!Mem.Size || Mem.Size == 80);
327 }
328 bool isMem128() const {
329 return Kind == Memory && (!Mem.Size || Mem.Size == 128);
330 }
331 bool isMem256() const {
332 return Kind == Memory && (!Mem.Size || Mem.Size == 256);
333 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000334
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000335 bool isAbsMem() const {
336 return Kind == Memory && !getMemSegReg() && !getMemBaseReg() &&
Daniel Dunbar7b9147a2010-02-02 21:44:16 +0000337 !getMemIndexReg() && getMemScale() == 1;
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000338 }
339
Daniel Dunbar20927f22009-08-07 08:26:05 +0000340 bool isReg() const { return Kind == Register; }
341
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000342 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
343 // Add as immediates when possible.
344 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
345 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
346 else
347 Inst.addOperand(MCOperand::CreateExpr(Expr));
348 }
349
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000350 void addRegOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000351 assert(N == 1 && "Invalid number of operands!");
352 Inst.addOperand(MCOperand::CreateReg(getReg()));
353 }
354
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000355 void addImmOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000356 assert(N == 1 && "Invalid number of operands!");
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000357 addExpr(Inst, getImm());
Daniel Dunbar20927f22009-08-07 08:26:05 +0000358 }
359
Devang Patelc59d9df2012-01-12 01:51:42 +0000360 void addMem8Operands(MCInst &Inst, unsigned N) const {
361 addMemOperands(Inst, N);
362 }
363 void addMem16Operands(MCInst &Inst, unsigned N) const {
364 addMemOperands(Inst, N);
365 }
366 void addMem32Operands(MCInst &Inst, unsigned N) const {
367 addMemOperands(Inst, N);
368 }
369 void addMem64Operands(MCInst &Inst, unsigned N) const {
370 addMemOperands(Inst, N);
371 }
372 void addMem80Operands(MCInst &Inst, unsigned N) const {
373 addMemOperands(Inst, N);
374 }
375 void addMem128Operands(MCInst &Inst, unsigned N) const {
376 addMemOperands(Inst, N);
377 }
378 void addMem256Operands(MCInst &Inst, unsigned N) const {
379 addMemOperands(Inst, N);
380 }
381
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000382 void addMemOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbarec2b1f12010-01-30 00:24:00 +0000383 assert((N == 5) && "Invalid number of operands!");
Daniel Dunbar20927f22009-08-07 08:26:05 +0000384 Inst.addOperand(MCOperand::CreateReg(getMemBaseReg()));
385 Inst.addOperand(MCOperand::CreateImm(getMemScale()));
386 Inst.addOperand(MCOperand::CreateReg(getMemIndexReg()));
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000387 addExpr(Inst, getMemDisp());
Daniel Dunbarec2b1f12010-01-30 00:24:00 +0000388 Inst.addOperand(MCOperand::CreateReg(getMemSegReg()));
389 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000390
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000391 void addAbsMemOperands(MCInst &Inst, unsigned N) const {
392 assert((N == 1) && "Invalid number of operands!");
Kevin Enderbyb80d5712012-02-23 18:18:17 +0000393 // Add as immediates when possible.
394 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemDisp()))
395 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
396 else
397 Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000398 }
399
Chris Lattnerb4307b32010-01-15 19:28:38 +0000400 static X86Operand *CreateToken(StringRef Str, SMLoc Loc) {
Benjamin Kramerf82edaf2011-10-16 11:28:29 +0000401 SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size() - 1);
402 X86Operand *Res = new X86Operand(Token, Loc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000403 Res->Tok.Data = Str.data();
404 Res->Tok.Length = Str.size();
Daniel Dunbar20927f22009-08-07 08:26:05 +0000405 return Res;
406 }
407
Chris Lattner29ef9a22010-01-15 18:51:29 +0000408 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc) {
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000409 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000410 Res->Reg.RegNo = RegNo;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000411 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000412 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000413
Chris Lattnerb4307b32010-01-15 19:28:38 +0000414 static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){
415 X86Operand *Res = new X86Operand(Immediate, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000416 Res->Imm.Val = Val;
417 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000418 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000419
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000420 /// Create an absolute memory operand.
421 static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc,
Devang Patelc59d9df2012-01-12 01:51:42 +0000422 SMLoc EndLoc, unsigned Size = 0) {
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000423 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
424 Res->Mem.SegReg = 0;
425 Res->Mem.Disp = Disp;
426 Res->Mem.BaseReg = 0;
427 Res->Mem.IndexReg = 0;
Daniel Dunbar7b9147a2010-02-02 21:44:16 +0000428 Res->Mem.Scale = 1;
Devang Patelc59d9df2012-01-12 01:51:42 +0000429 Res->Mem.Size = Size;
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000430 return Res;
431 }
432
433 /// Create a generalized memory operand.
Chris Lattner309264d2010-01-15 18:44:13 +0000434 static X86Operand *CreateMem(unsigned SegReg, const MCExpr *Disp,
435 unsigned BaseReg, unsigned IndexReg,
Devang Patelc59d9df2012-01-12 01:51:42 +0000436 unsigned Scale, SMLoc StartLoc, SMLoc EndLoc,
437 unsigned Size = 0) {
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000438 // We should never just have a displacement, that should be parsed as an
439 // absolute memory operand.
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000440 assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!");
441
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000442 // The scale should always be one of {1,2,4,8}.
443 assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) &&
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000444 "Invalid scale!");
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000445 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000446 Res->Mem.SegReg = SegReg;
447 Res->Mem.Disp = Disp;
448 Res->Mem.BaseReg = BaseReg;
449 Res->Mem.IndexReg = IndexReg;
450 Res->Mem.Scale = Scale;
Devang Patelc59d9df2012-01-12 01:51:42 +0000451 Res->Mem.Size = Size;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000452 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000453 }
454};
Daniel Dunbara3af3702009-07-20 18:55:04 +0000455
Chris Lattner37dfdec2009-07-29 06:33:53 +0000456} // end anonymous namespace.
Daniel Dunbara2edbab2009-07-28 20:47:52 +0000457
Devang Pateldd929fc2012-01-12 18:03:40 +0000458bool X86AsmParser::isSrcOp(X86Operand &Op) {
Evan Cheng59ee62d2011-07-11 03:57:24 +0000459 unsigned basereg = is64BitMode() ? X86::RSI : X86::ESI;
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000460
461 return (Op.isMem() &&
462 (Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::DS) &&
463 isa<MCConstantExpr>(Op.Mem.Disp) &&
464 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
465 Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0);
466}
467
Devang Pateldd929fc2012-01-12 18:03:40 +0000468bool X86AsmParser::isDstOp(X86Operand &Op) {
Evan Cheng59ee62d2011-07-11 03:57:24 +0000469 unsigned basereg = is64BitMode() ? X86::RDI : X86::EDI;
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000470
471 return Op.isMem() && Op.Mem.SegReg == X86::ES &&
472 isa<MCConstantExpr>(Op.Mem.Disp) &&
473 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
474 Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0;
475}
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000476
Devang Pateldd929fc2012-01-12 18:03:40 +0000477bool X86AsmParser::ParseRegister(unsigned &RegNo,
478 SMLoc &StartLoc, SMLoc &EndLoc) {
Chris Lattner23075742010-01-15 18:27:19 +0000479 RegNo = 0;
Devang Patelbe3e3102012-01-30 20:02:42 +0000480 if (!isParsingIntelSyntax()) {
Devang Patel1aea4302012-01-20 22:32:05 +0000481 const AsmToken &TokPercent = Parser.getTok();
Devang Pateld37ad242012-01-17 18:00:18 +0000482 assert(TokPercent.is(AsmToken::Percent) && "Invalid token kind!");
483 StartLoc = TokPercent.getLoc();
484 Parser.Lex(); // Eat percent token.
485 }
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000486
Sean Callanan18b83232010-01-19 21:44:56 +0000487 const AsmToken &Tok = Parser.getTok();
Devang Patel1aea4302012-01-20 22:32:05 +0000488 if (Tok.isNot(AsmToken::Identifier)) {
Devang Patelbe3e3102012-01-30 20:02:42 +0000489 if (isParsingIntelSyntax()) return true;
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000490 return Error(StartLoc, "invalid register name",
491 SMRange(StartLoc, Tok.getEndLoc()));
Devang Patel1aea4302012-01-20 22:32:05 +0000492 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000493
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000494 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000495
Chris Lattner33d60d52010-09-22 04:11:10 +0000496 // If the match failed, try the register name as lowercase.
497 if (RegNo == 0)
Benjamin Kramer59085362011-11-06 20:37:06 +0000498 RegNo = MatchRegisterName(Tok.getString().lower());
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000499
Evan Cheng5de728c2011-07-27 23:22:03 +0000500 if (!is64BitMode()) {
501 // FIXME: This should be done using Requires<In32BitMode> and
502 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
503 // checked.
504 // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
505 // REX prefix.
506 if (RegNo == X86::RIZ ||
507 X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
508 X86II::isX86_64NonExtLowByteReg(RegNo) ||
509 X86II::isX86_64ExtendedReg(RegNo))
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000510 return Error(StartLoc, "register %"
511 + Tok.getString() + " is only available in 64-bit mode",
512 SMRange(StartLoc, Tok.getEndLoc()));
Evan Cheng5de728c2011-07-27 23:22:03 +0000513 }
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000514
Chris Lattner33d60d52010-09-22 04:11:10 +0000515 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
516 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000517 RegNo = X86::ST0;
518 EndLoc = Tok.getLoc();
519 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000520
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000521 // Check to see if we have '(4)' after %st.
522 if (getLexer().isNot(AsmToken::LParen))
523 return false;
524 // Lex the paren.
525 getParser().Lex();
526
527 const AsmToken &IntTok = Parser.getTok();
528 if (IntTok.isNot(AsmToken::Integer))
529 return Error(IntTok.getLoc(), "expected stack index");
530 switch (IntTok.getIntVal()) {
531 case 0: RegNo = X86::ST0; break;
532 case 1: RegNo = X86::ST1; break;
533 case 2: RegNo = X86::ST2; break;
534 case 3: RegNo = X86::ST3; break;
535 case 4: RegNo = X86::ST4; break;
536 case 5: RegNo = X86::ST5; break;
537 case 6: RegNo = X86::ST6; break;
538 case 7: RegNo = X86::ST7; break;
539 default: return Error(IntTok.getLoc(), "invalid stack index");
540 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000541
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000542 if (getParser().Lex().isNot(AsmToken::RParen))
543 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000544
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000545 EndLoc = Tok.getLoc();
546 Parser.Lex(); // Eat ')'
547 return false;
548 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000549
Chris Lattner645b2092010-06-24 07:29:18 +0000550 // If this is "db[0-7]", match it as an alias
551 // for dr[0-7].
552 if (RegNo == 0 && Tok.getString().size() == 3 &&
553 Tok.getString().startswith("db")) {
554 switch (Tok.getString()[2]) {
555 case '0': RegNo = X86::DR0; break;
556 case '1': RegNo = X86::DR1; break;
557 case '2': RegNo = X86::DR2; break;
558 case '3': RegNo = X86::DR3; break;
559 case '4': RegNo = X86::DR4; break;
560 case '5': RegNo = X86::DR5; break;
561 case '6': RegNo = X86::DR6; break;
562 case '7': RegNo = X86::DR7; break;
563 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000564
Chris Lattner645b2092010-06-24 07:29:18 +0000565 if (RegNo != 0) {
566 EndLoc = Tok.getLoc();
567 Parser.Lex(); // Eat it.
568 return false;
569 }
570 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000571
Devang Patel1aea4302012-01-20 22:32:05 +0000572 if (RegNo == 0) {
Devang Patelbe3e3102012-01-30 20:02:42 +0000573 if (isParsingIntelSyntax()) return true;
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000574 return Error(StartLoc, "invalid register name",
575 SMRange(StartLoc, Tok.getEndLoc()));
Devang Patel1aea4302012-01-20 22:32:05 +0000576 }
Daniel Dunbar0e2771f2009-07-29 00:02:19 +0000577
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000578 EndLoc = Tok.getEndLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000579 Parser.Lex(); // Eat identifier token.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000580 return false;
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000581}
582
Devang Pateldd929fc2012-01-12 18:03:40 +0000583X86Operand *X86AsmParser::ParseOperand() {
Devang Patelbe3e3102012-01-30 20:02:42 +0000584 if (isParsingIntelSyntax())
Devang Patel0a338862012-01-12 01:36:43 +0000585 return ParseIntelOperand();
586 return ParseATTOperand();
587}
588
Devang Pateld37ad242012-01-17 18:00:18 +0000589/// getIntelMemOperandSize - Return intel memory operand size.
590static unsigned getIntelMemOperandSize(StringRef OpStr) {
591 unsigned Size = 0;
Devang Patel0a338862012-01-12 01:36:43 +0000592 if (OpStr == "BYTE") Size = 8;
593 if (OpStr == "WORD") Size = 16;
594 if (OpStr == "DWORD") Size = 32;
595 if (OpStr == "QWORD") Size = 64;
596 if (OpStr == "XWORD") Size = 80;
597 if (OpStr == "XMMWORD") Size = 128;
598 if (OpStr == "YMMWORD") Size = 256;
Devang Pateld37ad242012-01-17 18:00:18 +0000599 return Size;
Devang Patel0a338862012-01-12 01:36:43 +0000600}
601
Devang Patel7c64fe62012-01-23 18:31:58 +0000602X86Operand *X86AsmParser::ParseIntelBracExpression(unsigned SegReg,
603 unsigned Size) {
604 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
Devang Patel0a338862012-01-12 01:36:43 +0000605 SMLoc Start = Parser.getTok().getLoc(), End;
606
Devang Pateld37ad242012-01-17 18:00:18 +0000607 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
608 // Parse [ BaseReg + Scale*IndexReg + Disp ] or [ symbol ]
609
610 // Eat '['
611 if (getLexer().isNot(AsmToken::LBrac))
612 return ErrorOperand(Start, "Expected '[' token!");
613 Parser.Lex();
614
615 if (getLexer().is(AsmToken::Identifier)) {
616 // Parse BaseReg
Devang Patel1aea4302012-01-20 22:32:05 +0000617 if (ParseRegister(BaseReg, Start, End)) {
Devang Pateld37ad242012-01-17 18:00:18 +0000618 // Handle '[' 'symbol' ']'
Devang Pateld37ad242012-01-17 18:00:18 +0000619 if (getParser().ParseExpression(Disp, End)) return 0;
620 if (getLexer().isNot(AsmToken::RBrac))
Devang Patelbc51e502012-01-17 19:09:22 +0000621 return ErrorOperand(Start, "Expected ']' token!");
Devang Pateld37ad242012-01-17 18:00:18 +0000622 Parser.Lex();
623 return X86Operand::CreateMem(Disp, Start, End, Size);
624 }
625 } else if (getLexer().is(AsmToken::Integer)) {
Devang Patel3e081312012-01-23 20:20:06 +0000626 int64_t Val = Parser.getTok().getIntVal();
Devang Pateld37ad242012-01-17 18:00:18 +0000627 Parser.Lex();
Devang Patel3e081312012-01-23 20:20:06 +0000628 SMLoc Loc = Parser.getTok().getLoc();
629 if (getLexer().is(AsmToken::RBrac)) {
630 // Handle '[' number ']'
631 Parser.Lex();
Devang Patela28101e2012-01-27 19:48:28 +0000632 const MCExpr *Disp = MCConstantExpr::Create(Val, getContext());
633 if (SegReg)
634 return X86Operand::CreateMem(SegReg, Disp, 0, 0, Scale,
635 Start, End, Size);
636 return X86Operand::CreateMem(Disp, Start, End, Size);
Devang Patel3e081312012-01-23 20:20:06 +0000637 } else if (getLexer().is(AsmToken::Star)) {
638 // Handle '[' Scale*IndexReg ']'
639 Parser.Lex();
640 SMLoc IdxRegLoc = Parser.getTok().getLoc();
641 if (ParseRegister(IndexReg, IdxRegLoc, End))
642 return ErrorOperand(IdxRegLoc, "Expected register");
643 Scale = Val;
644 } else
645 return ErrorOperand(Loc, "Unepxeted token");
Devang Pateld37ad242012-01-17 18:00:18 +0000646 }
647
648 if (getLexer().is(AsmToken::Plus) || getLexer().is(AsmToken::Minus)) {
649 bool isPlus = getLexer().is(AsmToken::Plus);
650 Parser.Lex();
651 SMLoc PlusLoc = Parser.getTok().getLoc();
652 if (getLexer().is(AsmToken::Integer)) {
653 int64_t Val = Parser.getTok().getIntVal();
654 Parser.Lex();
655 if (getLexer().is(AsmToken::Star)) {
Devang Patelbc51e502012-01-17 19:09:22 +0000656 Parser.Lex();
657 SMLoc IdxRegLoc = Parser.getTok().getLoc();
Devang Patel1aea4302012-01-20 22:32:05 +0000658 if (ParseRegister(IndexReg, IdxRegLoc, End))
659 return ErrorOperand(IdxRegLoc, "Expected register");
Devang Patelbc51e502012-01-17 19:09:22 +0000660 Scale = Val;
Devang Pateld37ad242012-01-17 18:00:18 +0000661 } else if (getLexer().is(AsmToken::RBrac)) {
Devang Patelbc51e502012-01-17 19:09:22 +0000662 const MCExpr *ValExpr = MCConstantExpr::Create(Val, getContext());
Devang Patele60540f2012-01-19 18:15:51 +0000663 Disp = isPlus ? ValExpr : MCConstantExpr::Create(0-Val, getContext());
Devang Pateld37ad242012-01-17 18:00:18 +0000664 } else
Devang Patelbc51e502012-01-17 19:09:22 +0000665 return ErrorOperand(PlusLoc, "unexpected token after +");
Devang Patelf2d21372012-01-23 22:35:25 +0000666 } else if (getLexer().is(AsmToken::Identifier)) {
Devang Patel392ad6d2012-01-23 23:56:33 +0000667 // This could be an index register or a displacement expression.
Devang Patelf2d21372012-01-23 22:35:25 +0000668 End = Parser.getTok().getLoc();
669 if (!IndexReg)
670 ParseRegister(IndexReg, Start, End);
671 else if (getParser().ParseExpression(Disp, End)) return 0;
672 }
Devang Pateld37ad242012-01-17 18:00:18 +0000673 }
674
675 if (getLexer().isNot(AsmToken::RBrac))
676 if (getParser().ParseExpression(Disp, End)) return 0;
677
678 End = Parser.getTok().getLoc();
679 if (getLexer().isNot(AsmToken::RBrac))
680 return ErrorOperand(End, "expected ']' token!");
681 Parser.Lex();
682 End = Parser.getTok().getLoc();
Devang Patelfdd3b302012-01-20 21:21:01 +0000683
684 // handle [-42]
685 if (!BaseReg && !IndexReg)
686 return X86Operand::CreateMem(Disp, Start, End, Size);
687
Devang Pateld37ad242012-01-17 18:00:18 +0000688 return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
Devang Patelbc51e502012-01-17 19:09:22 +0000689 Start, End, Size);
Devang Pateld37ad242012-01-17 18:00:18 +0000690}
691
692/// ParseIntelMemOperand - Parse intel style memory operand.
693X86Operand *X86AsmParser::ParseIntelMemOperand() {
694 const AsmToken &Tok = Parser.getTok();
695 SMLoc Start = Parser.getTok().getLoc(), End;
Devang Patel7c64fe62012-01-23 18:31:58 +0000696 unsigned SegReg = 0;
Devang Pateld37ad242012-01-17 18:00:18 +0000697
698 unsigned Size = getIntelMemOperandSize(Tok.getString());
699 if (Size) {
700 Parser.Lex();
701 assert (Tok.getString() == "PTR" && "Unexpected token!");
702 Parser.Lex();
703 }
704
705 if (getLexer().is(AsmToken::LBrac))
Devang Patel7c64fe62012-01-23 18:31:58 +0000706 return ParseIntelBracExpression(SegReg, Size);
707
708 if (!ParseRegister(SegReg, Start, End)) {
709 // Handel SegReg : [ ... ]
710 if (getLexer().isNot(AsmToken::Colon))
711 return ErrorOperand(Start, "Expected ':' token!");
712 Parser.Lex(); // Eat :
713 if (getLexer().isNot(AsmToken::LBrac))
714 return ErrorOperand(Start, "Expected '[' token!");
715 return ParseIntelBracExpression(SegReg, Size);
716 }
Devang Pateld37ad242012-01-17 18:00:18 +0000717
718 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
719 if (getParser().ParseExpression(Disp, End)) return 0;
720 return X86Operand::CreateMem(Disp, Start, End, Size);
721}
722
723X86Operand *X86AsmParser::ParseIntelOperand() {
Devang Pateld37ad242012-01-17 18:00:18 +0000724 SMLoc Start = Parser.getTok().getLoc(), End;
725
726 // immediate.
727 if (getLexer().is(AsmToken::Integer) || getLexer().is(AsmToken::Real) ||
728 getLexer().is(AsmToken::Minus)) {
729 const MCExpr *Val;
730 if (!getParser().ParseExpression(Val, End)) {
731 End = Parser.getTok().getLoc();
732 return X86Operand::CreateImm(Val, Start, End);
733 }
734 }
735
Devang Patel0a338862012-01-12 01:36:43 +0000736 // register
Devang Patel1aea4302012-01-20 22:32:05 +0000737 unsigned RegNo = 0;
738 if (!ParseRegister(RegNo, Start, End)) {
Devang Patel0a338862012-01-12 01:36:43 +0000739 End = Parser.getTok().getLoc();
740 return X86Operand::CreateReg(RegNo, Start, End);
741 }
742
743 // mem operand
Devang Pateld37ad242012-01-17 18:00:18 +0000744 return ParseIntelMemOperand();
Devang Patel0a338862012-01-12 01:36:43 +0000745}
746
Devang Pateldd929fc2012-01-12 18:03:40 +0000747X86Operand *X86AsmParser::ParseATTOperand() {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000748 switch (getLexer().getKind()) {
749 default:
Chris Lattnereef6d782010-04-17 18:56:34 +0000750 // Parse a memory operand with no segment register.
751 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattner23075742010-01-15 18:27:19 +0000752 case AsmToken::Percent: {
Chris Lattnereef6d782010-04-17 18:56:34 +0000753 // Read the register.
Chris Lattner23075742010-01-15 18:27:19 +0000754 unsigned RegNo;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000755 SMLoc Start, End;
756 if (ParseRegister(RegNo, Start, End)) return 0;
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000757 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000758 Error(Start, "%eiz and %riz can only be used as index registers",
759 SMRange(Start, End));
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000760 return 0;
761 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000762
Chris Lattnereef6d782010-04-17 18:56:34 +0000763 // If this is a segment register followed by a ':', then this is the start
764 // of a memory reference, otherwise this is a normal register reference.
765 if (getLexer().isNot(AsmToken::Colon))
766 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000767
768
Chris Lattnereef6d782010-04-17 18:56:34 +0000769 getParser().Lex(); // Eat the colon.
770 return ParseMemOperand(RegNo, Start);
Chris Lattner23075742010-01-15 18:27:19 +0000771 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000772 case AsmToken::Dollar: {
773 // $42 -> immediate.
Sean Callanan18b83232010-01-19 21:44:56 +0000774 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callananb9a25b72010-01-19 20:27:46 +0000775 Parser.Lex();
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000776 const MCExpr *Val;
Chris Lattner54482b42010-01-15 19:39:23 +0000777 if (getParser().ParseExpression(Val, End))
Chris Lattner309264d2010-01-15 18:44:13 +0000778 return 0;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000779 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000780 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000781 }
Daniel Dunbardbd692a2009-07-20 20:01:54 +0000782}
783
Chris Lattnereef6d782010-04-17 18:56:34 +0000784/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
785/// has already been parsed if present.
Devang Pateldd929fc2012-01-12 18:03:40 +0000786X86Operand *X86AsmParser::ParseMemOperand(unsigned SegReg, SMLoc MemStart) {
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000787
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000788 // We have to disambiguate a parenthesized expression "(4+5)" from the start
789 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner75f265f2010-01-24 01:07:33 +0000790 // only way to do this without lookahead is to eat the '(' and see what is
791 // after it.
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000792 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000793 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattner54482b42010-01-15 19:39:23 +0000794 SMLoc ExprEnd;
795 if (getParser().ParseExpression(Disp, ExprEnd)) return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000796
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000797 // After parsing the base expression we could either have a parenthesized
798 // memory address or not. If not, return now. If so, eat the (.
799 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000800 // Unless we have a segment register, treat this as an immediate.
Chris Lattner309264d2010-01-15 18:44:13 +0000801 if (SegReg == 0)
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000802 return X86Operand::CreateMem(Disp, MemStart, ExprEnd);
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000803 return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000804 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000805
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000806 // Eat the '('.
Sean Callananb9a25b72010-01-19 20:27:46 +0000807 Parser.Lex();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000808 } else {
809 // Okay, we have a '('. We don't know if this is an expression or not, but
810 // so we have to eat the ( to see beyond it.
Sean Callanan18b83232010-01-19 21:44:56 +0000811 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000812 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000813
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000814 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000815 // Nothing to do here, fall into the code below with the '(' part of the
816 // memory operand consumed.
817 } else {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000818 SMLoc ExprEnd;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000819
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000820 // It must be an parenthesized expression, parse it now.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000821 if (getParser().ParseParenExpression(Disp, ExprEnd))
Chris Lattner309264d2010-01-15 18:44:13 +0000822 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000823
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000824 // After parsing the base expression we could either have a parenthesized
825 // memory address or not. If not, return now. If so, eat the (.
826 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000827 // Unless we have a segment register, treat this as an immediate.
Chris Lattner309264d2010-01-15 18:44:13 +0000828 if (SegReg == 0)
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000829 return X86Operand::CreateMem(Disp, LParenLoc, ExprEnd);
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000830 return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000831 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000832
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000833 // Eat the '('.
Sean Callananb9a25b72010-01-19 20:27:46 +0000834 Parser.Lex();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000835 }
836 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000837
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000838 // If we reached here, then we just ate the ( of the memory operand. Process
839 // the rest of the memory operand.
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000840 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
Kevin Enderby84faf652012-03-12 21:32:09 +0000841 SMLoc IndexLoc;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000842
Chris Lattner29ef9a22010-01-15 18:51:29 +0000843 if (getLexer().is(AsmToken::Percent)) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000844 SMLoc StartLoc, EndLoc;
845 if (ParseRegister(BaseReg, StartLoc, EndLoc)) return 0;
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000846 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
Benjamin Kramer5efabcf2011-10-16 12:10:27 +0000847 Error(StartLoc, "eiz and riz can only be used as index registers",
848 SMRange(StartLoc, EndLoc));
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000849 return 0;
850 }
Chris Lattner29ef9a22010-01-15 18:51:29 +0000851 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000852
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000853 if (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +0000854 Parser.Lex(); // Eat the comma.
Kevin Enderby84faf652012-03-12 21:32:09 +0000855 IndexLoc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000856
857 // Following the comma we should have either an index register, or a scale
858 // value. We don't support the later form, but we want to parse it
859 // correctly.
860 //
861 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000862 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000863 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner29ef9a22010-01-15 18:51:29 +0000864 SMLoc L;
865 if (ParseRegister(IndexReg, L, L)) return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000866
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000867 if (getLexer().isNot(AsmToken::RParen)) {
868 // Parse the scale amount:
869 // ::= ',' [scale-expression]
Chris Lattner309264d2010-01-15 18:44:13 +0000870 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000871 Error(Parser.getTok().getLoc(),
Chris Lattner309264d2010-01-15 18:44:13 +0000872 "expected comma in scale expression");
873 return 0;
874 }
Sean Callananb9a25b72010-01-19 20:27:46 +0000875 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000876
877 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000878 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000879
880 int64_t ScaleVal;
Kevin Enderby58dfaa12012-03-09 22:24:10 +0000881 if (getParser().ParseAbsoluteExpression(ScaleVal)){
882 Error(Loc, "expected scale expression");
Chris Lattner309264d2010-01-15 18:44:13 +0000883 return 0;
Kevin Enderby58dfaa12012-03-09 22:24:10 +0000884 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000885
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000886 // Validate the scale amount.
Chris Lattner309264d2010-01-15 18:44:13 +0000887 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){
888 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
889 return 0;
890 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000891 Scale = (unsigned)ScaleVal;
892 }
893 }
894 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbaree910252010-08-24 19:13:38 +0000895 // A scale amount without an index is ignored.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000896 // index.
Sean Callanan18b83232010-01-19 21:44:56 +0000897 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000898
899 int64_t Value;
900 if (getParser().ParseAbsoluteExpression(Value))
Chris Lattner309264d2010-01-15 18:44:13 +0000901 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000902
Daniel Dunbaree910252010-08-24 19:13:38 +0000903 if (Value != 1)
904 Warning(Loc, "scale factor without index register is ignored");
905 Scale = 1;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000906 }
907 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000908
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000909 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattner309264d2010-01-15 18:44:13 +0000910 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000911 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Chris Lattner309264d2010-01-15 18:44:13 +0000912 return 0;
913 }
Sean Callanan18b83232010-01-19 21:44:56 +0000914 SMLoc MemEnd = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000915 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000916
Kevin Enderby84faf652012-03-12 21:32:09 +0000917 // If we have both a base register and an index register make sure they are
918 // both 64-bit or 32-bit registers.
919 if (BaseReg != 0 && IndexReg != 0) {
920 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
921 !X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg) &&
922 IndexReg != X86::RIZ) {
923 Error(IndexLoc, "index register is 32-bit, but base register is 64-bit");
924 return 0;
925 }
926 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
927 !X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg) &&
928 IndexReg != X86::EIZ){
929 Error(IndexLoc, "index register is 64-bit, but base register is 32-bit");
930 return 0;
931 }
932 }
933
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000934 return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
935 MemStart, MemEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000936}
937
Devang Pateldd929fc2012-01-12 18:03:40 +0000938bool X86AsmParser::
Benjamin Kramer38e59892010-07-14 22:38:02 +0000939ParseInstruction(StringRef Name, SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +0000940 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Chris Lattner693173f2010-10-30 19:23:13 +0000941 StringRef PatchedName = Name;
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000942
Chris Lattnerd8f71792010-11-28 20:23:50 +0000943 // FIXME: Hack to recognize setneb as setne.
944 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
945 PatchedName != "setb" && PatchedName != "setnb")
946 PatchedName = PatchedName.substr(0, Name.size()-1);
947
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000948 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
949 const MCExpr *ExtraImmOp = 0;
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000950 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000951 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
952 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000953 bool IsVCMP = PatchedName.startswith("vcmp");
954 unsigned SSECCIdx = IsVCMP ? 4 : 3;
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000955 unsigned SSEComparisonCode = StringSwitch<unsigned>(
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000956 PatchedName.slice(SSECCIdx, PatchedName.size() - 2))
Bruno Cardoso Lopescc69e132010-07-07 22:24:03 +0000957 .Case("eq", 0)
958 .Case("lt", 1)
959 .Case("le", 2)
960 .Case("unord", 3)
961 .Case("neq", 4)
962 .Case("nlt", 5)
963 .Case("nle", 6)
964 .Case("ord", 7)
965 .Case("eq_uq", 8)
966 .Case("nge", 9)
967 .Case("ngt", 0x0A)
968 .Case("false", 0x0B)
969 .Case("neq_oq", 0x0C)
970 .Case("ge", 0x0D)
971 .Case("gt", 0x0E)
972 .Case("true", 0x0F)
973 .Case("eq_os", 0x10)
974 .Case("lt_oq", 0x11)
975 .Case("le_oq", 0x12)
976 .Case("unord_s", 0x13)
977 .Case("neq_us", 0x14)
978 .Case("nlt_uq", 0x15)
979 .Case("nle_uq", 0x16)
980 .Case("ord_s", 0x17)
981 .Case("eq_us", 0x18)
982 .Case("nge_uq", 0x19)
983 .Case("ngt_uq", 0x1A)
984 .Case("false_os", 0x1B)
985 .Case("neq_os", 0x1C)
986 .Case("ge_oq", 0x1D)
987 .Case("gt_oq", 0x1E)
988 .Case("true_us", 0x1F)
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000989 .Default(~0U);
990 if (SSEComparisonCode != ~0U) {
991 ExtraImmOp = MCConstantExpr::Create(SSEComparisonCode,
992 getParser().getContext());
993 if (PatchedName.endswith("ss")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000994 PatchedName = IsVCMP ? "vcmpss" : "cmpss";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000995 } else if (PatchedName.endswith("sd")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000996 PatchedName = IsVCMP ? "vcmpsd" : "cmpsd";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000997 } else if (PatchedName.endswith("ps")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000998 PatchedName = IsVCMP ? "vcmpps" : "cmpps";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000999 } else {
1000 assert(PatchedName.endswith("pd") && "Unexpected mnemonic!");
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +00001001 PatchedName = IsVCMP ? "vcmppd" : "cmppd";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001002 }
1003 }
1004 }
Bruno Cardoso Lopesf528d2b2010-07-23 18:41:12 +00001005
Daniel Dunbar1b6c0602010-02-10 21:19:28 +00001006 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001007
Devang Patel885f65b2012-01-30 22:47:12 +00001008 if (ExtraImmOp && !isParsingIntelSyntax())
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001009 Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001010
Chris Lattner2544f422010-09-08 05:17:37 +00001011 // Determine whether this is an instruction prefix.
1012 bool isPrefix =
Chris Lattner693173f2010-10-30 19:23:13 +00001013 Name == "lock" || Name == "rep" ||
1014 Name == "repe" || Name == "repz" ||
Rafael Espindolabeb68982010-11-23 11:23:24 +00001015 Name == "repne" || Name == "repnz" ||
Rafael Espindolabfd2d262010-11-27 20:29:45 +00001016 Name == "rex64" || Name == "data16";
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001017
1018
Chris Lattner2544f422010-09-08 05:17:37 +00001019 // This does the actual operand parsing. Don't parse any more if we have a
1020 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
1021 // just want to parse the "lock" as the first instruction and the "incl" as
1022 // the next one.
1023 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar0db68f42009-08-11 05:00:25 +00001024
1025 // Parse '*' modifier.
1026 if (getLexer().is(AsmToken::Star)) {
Sean Callanan18b83232010-01-19 21:44:56 +00001027 SMLoc Loc = Parser.getTok().getLoc();
Chris Lattnerb4307b32010-01-15 19:28:38 +00001028 Operands.push_back(X86Operand::CreateToken("*", Loc));
Sean Callananb9a25b72010-01-19 20:27:46 +00001029 Parser.Lex(); // Eat the star.
Daniel Dunbar0db68f42009-08-11 05:00:25 +00001030 }
1031
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001032 // Read the first operand.
Chris Lattner309264d2010-01-15 18:44:13 +00001033 if (X86Operand *Op = ParseOperand())
1034 Operands.push_back(Op);
Chris Lattnercbf8a982010-09-11 16:18:25 +00001035 else {
1036 Parser.EatToEndOfStatement();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001037 return true;
Chris Lattnercbf8a982010-09-11 16:18:25 +00001038 }
Daniel Dunbar39e2dd72010-05-25 19:49:32 +00001039
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001040 while (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +00001041 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001042
1043 // Parse and remember the operand.
Chris Lattner309264d2010-01-15 18:44:13 +00001044 if (X86Operand *Op = ParseOperand())
1045 Operands.push_back(Op);
Chris Lattnercbf8a982010-09-11 16:18:25 +00001046 else {
1047 Parser.EatToEndOfStatement();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001048 return true;
Chris Lattnercbf8a982010-09-11 16:18:25 +00001049 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001050 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001051
Chris Lattnercbf8a982010-09-11 16:18:25 +00001052 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Chris Lattnerc146c4d2010-11-18 02:53:02 +00001053 SMLoc Loc = getLexer().getLoc();
Chris Lattnercbf8a982010-09-11 16:18:25 +00001054 Parser.EatToEndOfStatement();
Chris Lattnerc146c4d2010-11-18 02:53:02 +00001055 return Error(Loc, "unexpected token in argument list");
Chris Lattnercbf8a982010-09-11 16:18:25 +00001056 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001057 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001058
Chris Lattner2544f422010-09-08 05:17:37 +00001059 if (getLexer().is(AsmToken::EndOfStatement))
1060 Parser.Lex(); // Consume the EndOfStatement
Kevin Enderby76331752010-12-08 23:57:59 +00001061 else if (isPrefix && getLexer().is(AsmToken::Slash))
1062 Parser.Lex(); // Consume the prefix separator Slash
Daniel Dunbar16cdcb32009-07-28 22:40:46 +00001063
Devang Patel885f65b2012-01-30 22:47:12 +00001064 if (ExtraImmOp && isParsingIntelSyntax())
1065 Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
1066
Chris Lattner98c870f2010-11-06 19:25:43 +00001067 // This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
1068 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
1069 // documented form in various unofficial manuals, so a lot of code uses it.
1070 if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
1071 Operands.size() == 3) {
1072 X86Operand &Op = *(X86Operand*)Operands.back();
1073 if (Op.isMem() && Op.Mem.SegReg == 0 &&
1074 isa<MCConstantExpr>(Op.Mem.Disp) &&
1075 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
1076 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
1077 SMLoc Loc = Op.getEndLoc();
1078 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
1079 delete &Op;
1080 }
1081 }
Joerg Sonnenberger00743c22011-02-22 20:40:09 +00001082 // Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
1083 if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
1084 Operands.size() == 3) {
1085 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1086 if (Op.isMem() && Op.Mem.SegReg == 0 &&
1087 isa<MCConstantExpr>(Op.Mem.Disp) &&
1088 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
1089 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
1090 SMLoc Loc = Op.getEndLoc();
1091 Operands.begin()[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
1092 delete &Op;
1093 }
1094 }
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001095 // Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]"
1096 if (Name.startswith("ins") && Operands.size() == 3 &&
1097 (Name == "insb" || Name == "insw" || Name == "insl")) {
1098 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1099 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1100 if (Op.isReg() && Op.getReg() == X86::DX && isDstOp(Op2)) {
1101 Operands.pop_back();
1102 Operands.pop_back();
1103 delete &Op;
1104 delete &Op2;
1105 }
1106 }
1107
1108 // Transform "outs[bwl] %ds:(%esi), %dx" into "out[bwl]"
1109 if (Name.startswith("outs") && Operands.size() == 3 &&
1110 (Name == "outsb" || Name == "outsw" || Name == "outsl")) {
1111 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1112 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1113 if (isSrcOp(Op) && Op2.isReg() && Op2.getReg() == X86::DX) {
1114 Operands.pop_back();
1115 Operands.pop_back();
1116 delete &Op;
1117 delete &Op2;
1118 }
1119 }
1120
1121 // Transform "movs[bwl] %ds:(%esi), %es:(%edi)" into "movs[bwl]"
1122 if (Name.startswith("movs") && Operands.size() == 3 &&
1123 (Name == "movsb" || Name == "movsw" || Name == "movsl" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001124 (is64BitMode() && Name == "movsq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001125 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
1126 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
1127 if (isSrcOp(Op) && isDstOp(Op2)) {
1128 Operands.pop_back();
1129 Operands.pop_back();
1130 delete &Op;
1131 delete &Op2;
1132 }
1133 }
1134 // Transform "lods[bwl] %ds:(%esi),{%al,%ax,%eax,%rax}" into "lods[bwl]"
1135 if (Name.startswith("lods") && Operands.size() == 3 &&
1136 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001137 Name == "lodsl" || (is64BitMode() && Name == "lodsq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001138 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1139 X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
1140 if (isSrcOp(*Op1) && Op2->isReg()) {
1141 const char *ins;
1142 unsigned reg = Op2->getReg();
1143 bool isLods = Name == "lods";
1144 if (reg == X86::AL && (isLods || Name == "lodsb"))
1145 ins = "lodsb";
1146 else if (reg == X86::AX && (isLods || Name == "lodsw"))
1147 ins = "lodsw";
1148 else if (reg == X86::EAX && (isLods || Name == "lodsl"))
1149 ins = "lodsl";
1150 else if (reg == X86::RAX && (isLods || Name == "lodsq"))
1151 ins = "lodsq";
1152 else
1153 ins = NULL;
1154 if (ins != NULL) {
1155 Operands.pop_back();
1156 Operands.pop_back();
1157 delete Op1;
1158 delete Op2;
1159 if (Name != ins)
1160 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
1161 }
1162 }
1163 }
1164 // Transform "stos[bwl] {%al,%ax,%eax,%rax},%es:(%edi)" into "stos[bwl]"
1165 if (Name.startswith("stos") && Operands.size() == 3 &&
1166 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
Evan Cheng59ee62d2011-07-11 03:57:24 +00001167 Name == "stosl" || (is64BitMode() && Name == "stosq"))) {
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +00001168 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1169 X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
1170 if (isDstOp(*Op2) && Op1->isReg()) {
1171 const char *ins;
1172 unsigned reg = Op1->getReg();
1173 bool isStos = Name == "stos";
1174 if (reg == X86::AL && (isStos || Name == "stosb"))
1175 ins = "stosb";
1176 else if (reg == X86::AX && (isStos || Name == "stosw"))
1177 ins = "stosw";
1178 else if (reg == X86::EAX && (isStos || Name == "stosl"))
1179 ins = "stosl";
1180 else if (reg == X86::RAX && (isStos || Name == "stosq"))
1181 ins = "stosq";
1182 else
1183 ins = NULL;
1184 if (ins != NULL) {
1185 Operands.pop_back();
1186 Operands.pop_back();
1187 delete Op1;
1188 delete Op2;
1189 if (Name != ins)
1190 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
1191 }
1192 }
1193 }
1194
Chris Lattnere9e16a32010-09-15 04:33:27 +00001195 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattneree211d02010-09-11 16:32:12 +00001196 // "shift <op>".
Daniel Dunbard5e77052010-03-13 00:47:29 +00001197 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001198 Name.startswith("shl") || Name.startswith("sal") ||
1199 Name.startswith("rcl") || Name.startswith("rcr") ||
1200 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner47ab90b2010-09-06 18:32:06 +00001201 Operands.size() == 3) {
Devang Patelbe3e3102012-01-30 20:02:42 +00001202 if (isParsingIntelSyntax()) {
Devang Patel3b96e1f2012-01-24 21:43:36 +00001203 // Intel syntax
1204 X86Operand *Op1 = static_cast<X86Operand*>(Operands[2]);
1205 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1206 cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
1207 delete Operands[2];
1208 Operands.pop_back();
1209 }
1210 } else {
1211 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1212 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1213 cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
1214 delete Operands[1];
1215 Operands.erase(Operands.begin() + 1);
1216 }
Chris Lattner47ab90b2010-09-06 18:32:06 +00001217 }
Daniel Dunbarf2de13f2010-03-20 22:36:38 +00001218 }
Chris Lattner15f89512011-04-09 19:41:05 +00001219
1220 // Transforms "int $3" into "int3" as a size optimization. We can't write an
1221 // instalias with an immediate operand yet.
1222 if (Name == "int" && Operands.size() == 2) {
1223 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
1224 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1225 cast<MCConstantExpr>(Op1->getImm())->getValue() == 3) {
1226 delete Operands[1];
1227 Operands.erase(Operands.begin() + 1);
1228 static_cast<X86Operand*>(Operands[0])->setTokenValue("int3");
1229 }
1230 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001231
Chris Lattner98986712010-01-14 22:21:20 +00001232 return false;
Daniel Dunbara3af3702009-07-20 18:55:04 +00001233}
1234
Devang Pateldd929fc2012-01-12 18:03:40 +00001235bool X86AsmParser::
Devang Patelb8ba13f2012-01-18 22:42:29 +00001236processInstruction(MCInst &Inst,
1237 const SmallVectorImpl<MCParsedAsmOperand*> &Ops) {
1238 switch (Inst.getOpcode()) {
1239 default: return false;
1240 case X86::AND16i16: {
1241 if (!Inst.getOperand(0).isImm() ||
1242 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1243 return false;
1244
1245 MCInst TmpInst;
1246 TmpInst.setOpcode(X86::AND16ri8);
1247 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1248 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1249 TmpInst.addOperand(Inst.getOperand(0));
1250 Inst = TmpInst;
1251 return true;
1252 }
1253 case X86::AND32i32: {
1254 if (!Inst.getOperand(0).isImm() ||
1255 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1256 return false;
1257
1258 MCInst TmpInst;
1259 TmpInst.setOpcode(X86::AND32ri8);
1260 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1261 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1262 TmpInst.addOperand(Inst.getOperand(0));
1263 Inst = TmpInst;
1264 return true;
1265 }
1266 case X86::AND64i32: {
1267 if (!Inst.getOperand(0).isImm() ||
1268 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1269 return false;
1270
1271 MCInst TmpInst;
1272 TmpInst.setOpcode(X86::AND64ri8);
1273 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1274 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1275 TmpInst.addOperand(Inst.getOperand(0));
1276 Inst = TmpInst;
1277 return true;
1278 }
Devang Patelac0f0482012-01-19 17:53:25 +00001279 case X86::XOR16i16: {
1280 if (!Inst.getOperand(0).isImm() ||
1281 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1282 return false;
1283
1284 MCInst TmpInst;
1285 TmpInst.setOpcode(X86::XOR16ri8);
1286 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1287 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1288 TmpInst.addOperand(Inst.getOperand(0));
1289 Inst = TmpInst;
1290 return true;
1291 }
1292 case X86::XOR32i32: {
1293 if (!Inst.getOperand(0).isImm() ||
1294 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1295 return false;
1296
1297 MCInst TmpInst;
1298 TmpInst.setOpcode(X86::XOR32ri8);
1299 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1300 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1301 TmpInst.addOperand(Inst.getOperand(0));
1302 Inst = TmpInst;
1303 return true;
1304 }
1305 case X86::XOR64i32: {
1306 if (!Inst.getOperand(0).isImm() ||
1307 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1308 return false;
1309
1310 MCInst TmpInst;
1311 TmpInst.setOpcode(X86::XOR64ri8);
1312 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1313 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1314 TmpInst.addOperand(Inst.getOperand(0));
1315 Inst = TmpInst;
1316 return true;
1317 }
1318 case X86::OR16i16: {
1319 if (!Inst.getOperand(0).isImm() ||
1320 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1321 return false;
1322
1323 MCInst TmpInst;
1324 TmpInst.setOpcode(X86::OR16ri8);
1325 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1326 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1327 TmpInst.addOperand(Inst.getOperand(0));
1328 Inst = TmpInst;
1329 return true;
1330 }
1331 case X86::OR32i32: {
1332 if (!Inst.getOperand(0).isImm() ||
1333 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1334 return false;
1335
1336 MCInst TmpInst;
1337 TmpInst.setOpcode(X86::OR32ri8);
1338 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1339 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1340 TmpInst.addOperand(Inst.getOperand(0));
1341 Inst = TmpInst;
1342 return true;
1343 }
1344 case X86::OR64i32: {
1345 if (!Inst.getOperand(0).isImm() ||
1346 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1347 return false;
1348
1349 MCInst TmpInst;
1350 TmpInst.setOpcode(X86::OR64ri8);
1351 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1352 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1353 TmpInst.addOperand(Inst.getOperand(0));
1354 Inst = TmpInst;
1355 return true;
1356 }
1357 case X86::CMP16i16: {
1358 if (!Inst.getOperand(0).isImm() ||
1359 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1360 return false;
1361
1362 MCInst TmpInst;
1363 TmpInst.setOpcode(X86::CMP16ri8);
1364 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1365 TmpInst.addOperand(Inst.getOperand(0));
1366 Inst = TmpInst;
1367 return true;
1368 }
1369 case X86::CMP32i32: {
1370 if (!Inst.getOperand(0).isImm() ||
1371 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1372 return false;
1373
1374 MCInst TmpInst;
1375 TmpInst.setOpcode(X86::CMP32ri8);
1376 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1377 TmpInst.addOperand(Inst.getOperand(0));
1378 Inst = TmpInst;
1379 return true;
1380 }
1381 case X86::CMP64i32: {
1382 if (!Inst.getOperand(0).isImm() ||
1383 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1384 return false;
1385
1386 MCInst TmpInst;
1387 TmpInst.setOpcode(X86::CMP64ri8);
1388 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1389 TmpInst.addOperand(Inst.getOperand(0));
1390 Inst = TmpInst;
1391 return true;
1392 }
Devang Patela951f772012-01-19 18:40:55 +00001393 case X86::ADD16i16: {
1394 if (!Inst.getOperand(0).isImm() ||
1395 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1396 return false;
1397
1398 MCInst TmpInst;
1399 TmpInst.setOpcode(X86::ADD16ri8);
1400 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1401 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1402 TmpInst.addOperand(Inst.getOperand(0));
1403 Inst = TmpInst;
1404 return true;
1405 }
1406 case X86::ADD32i32: {
1407 if (!Inst.getOperand(0).isImm() ||
1408 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1409 return false;
1410
1411 MCInst TmpInst;
1412 TmpInst.setOpcode(X86::ADD32ri8);
1413 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1414 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1415 TmpInst.addOperand(Inst.getOperand(0));
1416 Inst = TmpInst;
1417 return true;
1418 }
1419 case X86::ADD64i32: {
1420 if (!Inst.getOperand(0).isImm() ||
1421 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1422 return false;
1423
1424 MCInst TmpInst;
1425 TmpInst.setOpcode(X86::ADD64ri8);
1426 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1427 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1428 TmpInst.addOperand(Inst.getOperand(0));
1429 Inst = TmpInst;
1430 return true;
1431 }
1432 case X86::SUB16i16: {
1433 if (!Inst.getOperand(0).isImm() ||
1434 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
1435 return false;
1436
1437 MCInst TmpInst;
1438 TmpInst.setOpcode(X86::SUB16ri8);
1439 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1440 TmpInst.addOperand(MCOperand::CreateReg(X86::AX));
1441 TmpInst.addOperand(Inst.getOperand(0));
1442 Inst = TmpInst;
1443 return true;
1444 }
1445 case X86::SUB32i32: {
1446 if (!Inst.getOperand(0).isImm() ||
1447 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
1448 return false;
1449
1450 MCInst TmpInst;
1451 TmpInst.setOpcode(X86::SUB32ri8);
1452 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1453 TmpInst.addOperand(MCOperand::CreateReg(X86::EAX));
1454 TmpInst.addOperand(Inst.getOperand(0));
1455 Inst = TmpInst;
1456 return true;
1457 }
1458 case X86::SUB64i32: {
1459 if (!Inst.getOperand(0).isImm() ||
1460 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
1461 return false;
1462
1463 MCInst TmpInst;
1464 TmpInst.setOpcode(X86::SUB64ri8);
1465 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1466 TmpInst.addOperand(MCOperand::CreateReg(X86::RAX));
1467 TmpInst.addOperand(Inst.getOperand(0));
1468 Inst = TmpInst;
1469 return true;
1470 }
Devang Patelb8ba13f2012-01-18 22:42:29 +00001471 }
Devang Patelb8ba13f2012-01-18 22:42:29 +00001472}
1473
1474bool X86AsmParser::
Chris Lattner7036f8b2010-09-29 01:42:58 +00001475MatchAndEmitInstruction(SMLoc IDLoc,
Chris Lattner7c51a312010-09-29 01:50:45 +00001476 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chris Lattner7036f8b2010-09-29 01:42:58 +00001477 MCStreamer &Out) {
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001478 assert(!Operands.empty() && "Unexpect empty operand list!");
Chris Lattner7c51a312010-09-29 01:50:45 +00001479 X86Operand *Op = static_cast<X86Operand*>(Operands[0]);
1480 assert(Op->isToken() && "Leading operand should always be a mnemonic!");
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001481
Chris Lattner7c51a312010-09-29 01:50:45 +00001482 // First, handle aliases that expand to multiple instructions.
1483 // FIXME: This should be replaced with a real .td file alias mechanism.
Chris Lattner90fd7972010-11-06 19:57:21 +00001484 // Also, MatchInstructionImpl should do actually *do* the EmitInstruction
1485 // call.
Andrew Trick0966ec02010-10-22 03:58:29 +00001486 if (Op->getToken() == "fstsw" || Op->getToken() == "fstcw" ||
Chris Lattner8b260a72010-10-30 18:07:17 +00001487 Op->getToken() == "fstsww" || Op->getToken() == "fstcww" ||
Chris Lattner905f2e02010-09-30 17:11:29 +00001488 Op->getToken() == "finit" || Op->getToken() == "fsave" ||
Kevin Enderby5a378072010-10-27 02:53:04 +00001489 Op->getToken() == "fstenv" || Op->getToken() == "fclex") {
Chris Lattner7c51a312010-09-29 01:50:45 +00001490 MCInst Inst;
1491 Inst.setOpcode(X86::WAIT);
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001492 Inst.setLoc(IDLoc);
Chris Lattner7c51a312010-09-29 01:50:45 +00001493 Out.EmitInstruction(Inst);
1494
Chris Lattner0bb83a82010-09-30 16:39:29 +00001495 const char *Repl =
1496 StringSwitch<const char*>(Op->getToken())
Chris Lattner8b260a72010-10-30 18:07:17 +00001497 .Case("finit", "fninit")
1498 .Case("fsave", "fnsave")
1499 .Case("fstcw", "fnstcw")
1500 .Case("fstcww", "fnstcw")
Chris Lattner905f2e02010-09-30 17:11:29 +00001501 .Case("fstenv", "fnstenv")
Chris Lattner8b260a72010-10-30 18:07:17 +00001502 .Case("fstsw", "fnstsw")
1503 .Case("fstsww", "fnstsw")
1504 .Case("fclex", "fnclex")
Chris Lattner0bb83a82010-09-30 16:39:29 +00001505 .Default(0);
1506 assert(Repl && "Unknown wait-prefixed instruction");
Benjamin Kramerb0f96fa2010-10-01 12:25:27 +00001507 delete Operands[0];
Chris Lattner0bb83a82010-09-30 16:39:29 +00001508 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattner7c51a312010-09-29 01:50:45 +00001509 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001510
Chris Lattnera008e8a2010-09-06 21:54:15 +00001511 bool WasOriginallyInvalidOperand = false;
Chris Lattnerce4a3352010-09-06 22:11:18 +00001512 unsigned OrigErrorInfo;
Chris Lattner7036f8b2010-09-29 01:42:58 +00001513 MCInst Inst;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001514
Daniel Dunbarc918d602010-05-04 16:12:42 +00001515 // First, try a direct match.
Devang Patelbe3e3102012-01-30 20:02:42 +00001516 switch (MatchInstructionImpl(Operands, Inst, OrigErrorInfo,
1517 isParsingIntelSyntax())) {
Jim Grosbach19cb7f42011-08-15 23:03:29 +00001518 default: break;
Chris Lattnerec6789f2010-09-06 20:08:02 +00001519 case Match_Success:
Devang Patelb8ba13f2012-01-18 22:42:29 +00001520 // Some instructions need post-processing to, for example, tweak which
1521 // encoding is selected. Loop on it while changes happen so the
1522 // individual transformations can chain off each other.
1523 while (processInstruction(Inst, Operands))
1524 ;
1525
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001526 Inst.setLoc(IDLoc);
Chris Lattner7036f8b2010-09-29 01:42:58 +00001527 Out.EmitInstruction(Inst);
Daniel Dunbarc918d602010-05-04 16:12:42 +00001528 return false;
Chris Lattnerec6789f2010-09-06 20:08:02 +00001529 case Match_MissingFeature:
1530 Error(IDLoc, "instruction requires a CPU feature not currently enabled");
1531 return true;
Daniel Dunbarb4129152011-02-04 17:12:23 +00001532 case Match_ConversionFail:
1533 return Error(IDLoc, "unable to convert operands to instruction");
Chris Lattnera008e8a2010-09-06 21:54:15 +00001534 case Match_InvalidOperand:
1535 WasOriginallyInvalidOperand = true;
1536 break;
1537 case Match_MnemonicFail:
Chris Lattnerec6789f2010-09-06 20:08:02 +00001538 break;
1539 }
Daniel Dunbarc918d602010-05-04 16:12:42 +00001540
Daniel Dunbarc918d602010-05-04 16:12:42 +00001541 // FIXME: Ideally, we would only attempt suffix matches for things which are
1542 // valid prefixes, and we could just infer the right unambiguous
1543 // type. However, that requires substantially more matcher support than the
1544 // following hack.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001545
Daniel Dunbarc918d602010-05-04 16:12:42 +00001546 // Change the operand to point to a temporary token.
Daniel Dunbarc918d602010-05-04 16:12:42 +00001547 StringRef Base = Op->getToken();
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001548 SmallString<16> Tmp;
1549 Tmp += Base;
1550 Tmp += ' ';
1551 Op->setTokenValue(Tmp.str());
Daniel Dunbarc918d602010-05-04 16:12:42 +00001552
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001553 // If this instruction starts with an 'f', then it is a floating point stack
1554 // instruction. These come in up to three forms for 32-bit, 64-bit, and
1555 // 80-bit floating point, which use the suffixes s,l,t respectively.
1556 //
1557 // Otherwise, we assume that this may be an integer instruction, which comes
1558 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
1559 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
1560
Daniel Dunbarc918d602010-05-04 16:12:42 +00001561 // Check for the various suffix matches.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001562 Tmp[Base.size()] = Suffixes[0];
1563 unsigned ErrorInfoIgnore;
Jim Grosbach19cb7f42011-08-15 23:03:29 +00001564 unsigned Match1, Match2, Match3, Match4;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001565
1566 Match1 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore);
1567 Tmp[Base.size()] = Suffixes[1];
1568 Match2 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore);
1569 Tmp[Base.size()] = Suffixes[2];
1570 Match3 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore);
1571 Tmp[Base.size()] = Suffixes[3];
1572 Match4 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore);
Daniel Dunbarc918d602010-05-04 16:12:42 +00001573
1574 // Restore the old token.
1575 Op->setTokenValue(Base);
1576
1577 // If exactly one matched, then we treat that as a successful match (and the
1578 // instruction will already have been filled in correctly, since the failing
1579 // matches won't have modified it).
Chris Lattnerec6789f2010-09-06 20:08:02 +00001580 unsigned NumSuccessfulMatches =
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001581 (Match1 == Match_Success) + (Match2 == Match_Success) +
1582 (Match3 == Match_Success) + (Match4 == Match_Success);
Chris Lattner7036f8b2010-09-29 01:42:58 +00001583 if (NumSuccessfulMatches == 1) {
Jim Grosbachcb5dca32012-01-27 00:51:27 +00001584 Inst.setLoc(IDLoc);
Chris Lattner7036f8b2010-09-29 01:42:58 +00001585 Out.EmitInstruction(Inst);
Daniel Dunbarc918d602010-05-04 16:12:42 +00001586 return false;
Chris Lattner7036f8b2010-09-29 01:42:58 +00001587 }
Daniel Dunbarc918d602010-05-04 16:12:42 +00001588
Chris Lattnerec6789f2010-09-06 20:08:02 +00001589 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001590
Daniel Dunbar09062b12010-08-12 00:55:42 +00001591 // If we had multiple suffix matches, then identify this as an ambiguous
1592 // match.
Chris Lattnerec6789f2010-09-06 20:08:02 +00001593 if (NumSuccessfulMatches > 1) {
Daniel Dunbar09062b12010-08-12 00:55:42 +00001594 char MatchChars[4];
1595 unsigned NumMatches = 0;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001596 if (Match1 == Match_Success) MatchChars[NumMatches++] = Suffixes[0];
1597 if (Match2 == Match_Success) MatchChars[NumMatches++] = Suffixes[1];
1598 if (Match3 == Match_Success) MatchChars[NumMatches++] = Suffixes[2];
1599 if (Match4 == Match_Success) MatchChars[NumMatches++] = Suffixes[3];
Daniel Dunbar09062b12010-08-12 00:55:42 +00001600
1601 SmallString<126> Msg;
1602 raw_svector_ostream OS(Msg);
1603 OS << "ambiguous instructions require an explicit suffix (could be ";
1604 for (unsigned i = 0; i != NumMatches; ++i) {
1605 if (i != 0)
1606 OS << ", ";
1607 if (i + 1 == NumMatches)
1608 OS << "or ";
1609 OS << "'" << Base << MatchChars[i] << "'";
1610 }
1611 OS << ")";
1612 Error(IDLoc, OS.str());
Chris Lattnerec6789f2010-09-06 20:08:02 +00001613 return true;
Daniel Dunbar09062b12010-08-12 00:55:42 +00001614 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001615
Chris Lattnera008e8a2010-09-06 21:54:15 +00001616 // Okay, we know that none of the variants matched successfully.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001617
Chris Lattnera008e8a2010-09-06 21:54:15 +00001618 // If all of the instructions reported an invalid mnemonic, then the original
1619 // mnemonic was invalid.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001620 if ((Match1 == Match_MnemonicFail) && (Match2 == Match_MnemonicFail) &&
1621 (Match3 == Match_MnemonicFail) && (Match4 == Match_MnemonicFail)) {
Chris Lattnerce4a3352010-09-06 22:11:18 +00001622 if (!WasOriginallyInvalidOperand) {
Benjamin Kramerf82edaf2011-10-16 11:28:29 +00001623 return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
1624 Op->getLocRange());
Chris Lattnerce4a3352010-09-06 22:11:18 +00001625 }
1626
1627 // Recover location info for the operand if we know which was the problem.
Chris Lattnerce4a3352010-09-06 22:11:18 +00001628 if (OrigErrorInfo != ~0U) {
Chris Lattnerf8840122010-09-15 03:50:11 +00001629 if (OrigErrorInfo >= Operands.size())
1630 return Error(IDLoc, "too few operands for instruction");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001631
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001632 X86Operand *Operand = (X86Operand*)Operands[OrigErrorInfo];
1633 if (Operand->getStartLoc().isValid()) {
1634 SMRange OperandRange = Operand->getLocRange();
1635 return Error(Operand->getStartLoc(), "invalid operand for instruction",
1636 OperandRange);
1637 }
Chris Lattnerce4a3352010-09-06 22:11:18 +00001638 }
1639
Chris Lattnerd8b7aa22011-10-16 04:47:35 +00001640 return Error(IDLoc, "invalid operand for instruction");
Chris Lattnera008e8a2010-09-06 21:54:15 +00001641 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001642
Chris Lattnerec6789f2010-09-06 20:08:02 +00001643 // If one instruction matched with a missing feature, report this as a
1644 // missing feature.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001645 if ((Match1 == Match_MissingFeature) + (Match2 == Match_MissingFeature) +
1646 (Match3 == Match_MissingFeature) + (Match4 == Match_MissingFeature) == 1){
Chris Lattnerec6789f2010-09-06 20:08:02 +00001647 Error(IDLoc, "instruction requires a CPU feature not currently enabled");
1648 return true;
1649 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001650
Chris Lattnera008e8a2010-09-06 21:54:15 +00001651 // If one instruction matched with an invalid operand, report this as an
1652 // operand failure.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001653 if ((Match1 == Match_InvalidOperand) + (Match2 == Match_InvalidOperand) +
1654 (Match3 == Match_InvalidOperand) + (Match4 == Match_InvalidOperand) == 1){
Chris Lattnera008e8a2010-09-06 21:54:15 +00001655 Error(IDLoc, "invalid operand for instruction");
1656 return true;
1657 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001658
Chris Lattnerec6789f2010-09-06 20:08:02 +00001659 // If all of these were an outright failure, report it in a useless way.
Chris Lattnera008e8a2010-09-06 21:54:15 +00001660 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix");
Daniel Dunbarc918d602010-05-04 16:12:42 +00001661 return true;
1662}
1663
1664
Devang Pateldd929fc2012-01-12 18:03:40 +00001665bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
Chris Lattner537ca842010-10-30 17:38:55 +00001666 StringRef IDVal = DirectiveID.getIdentifier();
1667 if (IDVal == ".word")
1668 return ParseDirectiveWord(2, DirectiveID.getLoc());
Evan Chengbd27f5a2011-07-27 00:38:12 +00001669 else if (IDVal.startswith(".code"))
1670 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
Devang Patelbe3e3102012-01-30 20:02:42 +00001671 else if (IDVal.startswith(".intel_syntax")) {
Devang Patel0db58bf2012-01-31 18:14:05 +00001672 getParser().setAssemblerDialect(1);
Devang Patelbe3e3102012-01-30 20:02:42 +00001673 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1674 if(Parser.getTok().getString() == "noprefix") {
1675 // FIXME : Handle noprefix
1676 Parser.Lex();
1677 } else
1678 return true;
1679 }
1680 return false;
1681 }
Chris Lattner537ca842010-10-30 17:38:55 +00001682 return true;
1683}
1684
1685/// ParseDirectiveWord
1686/// ::= .word [ expression (, expression)* ]
Devang Pateldd929fc2012-01-12 18:03:40 +00001687bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
Chris Lattner537ca842010-10-30 17:38:55 +00001688 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1689 for (;;) {
1690 const MCExpr *Value;
1691 if (getParser().ParseExpression(Value))
1692 return true;
1693
1694 getParser().getStreamer().EmitValue(Value, Size, 0 /*addrspace*/);
1695
1696 if (getLexer().is(AsmToken::EndOfStatement))
1697 break;
1698
1699 // FIXME: Improve diagnostic.
1700 if (getLexer().isNot(AsmToken::Comma))
1701 return Error(L, "unexpected token in directive");
1702 Parser.Lex();
1703 }
1704 }
1705
1706 Parser.Lex();
1707 return false;
1708}
1709
Evan Chengbd27f5a2011-07-27 00:38:12 +00001710/// ParseDirectiveCode
1711/// ::= .code32 | .code64
Devang Pateldd929fc2012-01-12 18:03:40 +00001712bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
Evan Chengbd27f5a2011-07-27 00:38:12 +00001713 if (IDVal == ".code32") {
1714 Parser.Lex();
1715 if (is64BitMode()) {
1716 SwitchMode();
1717 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
1718 }
1719 } else if (IDVal == ".code64") {
1720 Parser.Lex();
1721 if (!is64BitMode()) {
1722 SwitchMode();
1723 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
1724 }
1725 } else {
1726 return Error(L, "unexpected directive " + IDVal);
1727 }
Chris Lattner537ca842010-10-30 17:38:55 +00001728
Evan Chengbd27f5a2011-07-27 00:38:12 +00001729 return false;
1730}
Chris Lattner537ca842010-10-30 17:38:55 +00001731
1732
Sean Callanane88f5522010-01-23 02:43:15 +00001733extern "C" void LLVMInitializeX86AsmLexer();
1734
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00001735// Force static initialization.
1736extern "C" void LLVMInitializeX86AsmParser() {
Devang Pateldd929fc2012-01-12 18:03:40 +00001737 RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
1738 RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
Sean Callanane88f5522010-01-23 02:43:15 +00001739 LLVMInitializeX86AsmLexer();
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00001740}
Daniel Dunbar0e2771f2009-07-29 00:02:19 +00001741
Chris Lattner0692ee62010-09-06 19:11:01 +00001742#define GET_REGISTER_MATCHER
1743#define GET_MATCHER_IMPLEMENTATION
Daniel Dunbar0e2771f2009-07-29 00:02:19 +00001744#include "X86GenAsmMatcher.inc"