blob: 4738b2773f41200eb269d4ef260a9f82dc909538 [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
Chris Lattner98986712010-01-14 22:21:20 +000010#include "llvm/Target/TargetAsmParser.h"
Daniel Dunbar4cb1e132009-07-18 23:03:22 +000011#include "X86.h"
Daniel Dunbar54074b52010-07-19 05:44:09 +000012#include "X86Subtarget.h"
Chris Lattner33d60d52010-09-22 04:11:10 +000013#include "llvm/Target/TargetRegistry.h"
14#include "llvm/Target/TargetAsmParser.h"
Kevin Enderby9c656452009-09-10 20:51:44 +000015#include "llvm/MC/MCStreamer.h"
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +000016#include "llvm/MC/MCExpr.h"
Daniel Dunbara027d222009-07-31 02:32:59 +000017#include "llvm/MC/MCInst.h"
Chris Lattnerc6ef2772010-01-22 01:44:57 +000018#include "llvm/MC/MCParser/MCAsmLexer.h"
19#include "llvm/MC/MCParser/MCAsmParser.h"
20#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Chris Lattner33d60d52010-09-22 04:11:10 +000021#include "llvm/ADT/SmallString.h"
22#include "llvm/ADT/SmallVector.h"
23#include "llvm/ADT/StringExtras.h"
24#include "llvm/ADT/StringSwitch.h"
25#include "llvm/ADT/Twine.h"
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000026#include "llvm/Support/SourceMgr.h"
Daniel Dunbar09062b12010-08-12 00:55:42 +000027#include "llvm/Support/raw_ostream.h"
Daniel Dunbar092a9dd2009-07-17 20:42:00 +000028using namespace llvm;
29
30namespace {
Benjamin Kramerc6b79ac2009-07-31 11:35:26 +000031struct X86Operand;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000032
33class X86ATTAsmParser : public TargetAsmParser {
34 MCAsmParser &Parser;
Daniel Dunbard73ada72010-07-19 00:33:49 +000035 TargetMachine &TM;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000036
Daniel Dunbarf98bc632010-03-18 20:06:02 +000037protected:
38 unsigned Is64Bit : 1;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000039
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000040private:
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000041 MCAsmParser &getParser() const { return Parser; }
42
43 MCAsmLexer &getLexer() const { return Parser.getLexer(); }
44
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000045 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
46
Chris Lattner309264d2010-01-15 18:44:13 +000047 X86Operand *ParseOperand();
Chris Lattnereef6d782010-04-17 18:56:34 +000048 X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderby9c656452009-09-10 20:51:44 +000049
50 bool ParseDirectiveWord(unsigned Size, SMLoc L);
51
Chris Lattner7036f8b2010-09-29 01:42:58 +000052 bool MatchAndEmitInstruction(SMLoc IDLoc,
Chris Lattner7c51a312010-09-29 01:50:45 +000053 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chris Lattner7036f8b2010-09-29 01:42:58 +000054 MCStreamer &Out);
Daniel Dunbar20927f22009-08-07 08:26:05 +000055
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +000056 /// isSrcOp - Returns true if operand is either (%rsi) or %ds:%(rsi)
57 /// in 64bit mode or (%edi) or %es:(%edi) in 32bit mode.
58 bool isSrcOp(X86Operand &Op);
59
60 /// isDstOp - Returns true if operand is either %es:(%rdi) in 64bit mode
61 /// or %es:(%edi) in 32bit mode.
62 bool isDstOp(X86Operand &Op);
63
Daniel Dunbar54074b52010-07-19 05:44:09 +000064 /// @name Auto-generated Matcher Functions
65 /// {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000066
Chris Lattner0692ee62010-09-06 19:11:01 +000067#define GET_ASSEMBLER_HEADER
68#include "X86GenAsmMatcher.inc"
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000069
Daniel Dunbar0e2771f2009-07-29 00:02:19 +000070 /// }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000071
72public:
Chris Lattner9a82e702010-10-30 04:57:14 +000073 X86ATTAsmParser(const Target &T, MCAsmParser &parser, TargetMachine &TM)
74 : TargetAsmParser(T), Parser(parser), TM(TM) {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +000075
Daniel Dunbar54074b52010-07-19 05:44:09 +000076 // Initialize the set of available features.
77 setAvailableFeatures(ComputeAvailableFeatures(
78 &TM.getSubtarget<X86Subtarget>()));
79 }
Roman Divackybf755322011-01-27 17:14:22 +000080 virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000081
Benjamin Kramer38e59892010-07-14 22:38:02 +000082 virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +000083 SmallVectorImpl<MCParsedAsmOperand*> &Operands);
Kevin Enderby9c656452009-09-10 20:51:44 +000084
85 virtual bool ParseDirective(AsmToken DirectiveID);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +000086};
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +000087
Daniel Dunbarf98bc632010-03-18 20:06:02 +000088class X86_32ATTAsmParser : public X86ATTAsmParser {
89public:
Chris Lattner9a82e702010-10-30 04:57:14 +000090 X86_32ATTAsmParser(const Target &T, MCAsmParser &Parser, TargetMachine &TM)
91 : X86ATTAsmParser(T, Parser, TM) {
Daniel Dunbarf98bc632010-03-18 20:06:02 +000092 Is64Bit = false;
93 }
94};
95
96class X86_64ATTAsmParser : public X86ATTAsmParser {
97public:
Chris Lattner9a82e702010-10-30 04:57:14 +000098 X86_64ATTAsmParser(const Target &T, MCAsmParser &Parser, TargetMachine &TM)
99 : X86ATTAsmParser(T, Parser, TM) {
Daniel Dunbarf98bc632010-03-18 20:06:02 +0000100 Is64Bit = true;
101 }
102};
103
Chris Lattner37dfdec2009-07-29 06:33:53 +0000104} // end anonymous namespace
105
Sean Callanane9b466d2010-01-23 00:40:33 +0000106/// @name Auto-generated Match Functions
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000107/// {
Sean Callanane9b466d2010-01-23 00:40:33 +0000108
Chris Lattnerb8d6e982010-02-09 00:34:28 +0000109static unsigned MatchRegisterName(StringRef Name);
Sean Callanane9b466d2010-01-23 00:40:33 +0000110
111/// }
Chris Lattner37dfdec2009-07-29 06:33:53 +0000112
113namespace {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000114
115/// X86Operand - Instances of this class represent a parsed X86 machine
116/// instruction.
Chris Lattner45220a82010-01-14 21:20:55 +0000117struct X86Operand : public MCParsedAsmOperand {
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000118 enum KindTy {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000119 Token,
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000120 Register,
121 Immediate,
122 Memory
123 } Kind;
124
Chris Lattner29ef9a22010-01-15 18:51:29 +0000125 SMLoc StartLoc, EndLoc;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000126
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000127 union {
128 struct {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000129 const char *Data;
130 unsigned Length;
131 } Tok;
132
133 struct {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000134 unsigned RegNo;
135 } Reg;
136
137 struct {
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000138 const MCExpr *Val;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000139 } Imm;
140
141 struct {
142 unsigned SegReg;
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000143 const MCExpr *Disp;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000144 unsigned BaseReg;
145 unsigned IndexReg;
146 unsigned Scale;
147 } Mem;
Daniel Dunbardbd692a2009-07-20 20:01:54 +0000148 };
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000149
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000150 X86Operand(KindTy K, SMLoc Start, SMLoc End)
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000151 : Kind(K), StartLoc(Start), EndLoc(End) {}
Daniel Dunbarc918d602010-05-04 16:12:42 +0000152
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000153 /// getStartLoc - Get the location of the first token of this operand.
154 SMLoc getStartLoc() const { return StartLoc; }
155 /// getEndLoc - Get the location of the last token of this operand.
156 SMLoc getEndLoc() const { return EndLoc; }
157
Daniel Dunbarb3cb6962010-08-11 06:37:04 +0000158 virtual void dump(raw_ostream &OS) const {}
159
Daniel Dunbar20927f22009-08-07 08:26:05 +0000160 StringRef getToken() const {
161 assert(Kind == Token && "Invalid access!");
162 return StringRef(Tok.Data, Tok.Length);
163 }
Daniel Dunbarc918d602010-05-04 16:12:42 +0000164 void setTokenValue(StringRef Value) {
165 assert(Kind == Token && "Invalid access!");
166 Tok.Data = Value.data();
167 Tok.Length = Value.size();
168 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000169
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000170 unsigned getReg() const {
171 assert(Kind == Register && "Invalid access!");
172 return Reg.RegNo;
173 }
Daniel Dunbara2edbab2009-07-28 20:47:52 +0000174
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000175 const MCExpr *getImm() const {
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000176 assert(Kind == Immediate && "Invalid access!");
177 return Imm.Val;
178 }
179
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000180 const MCExpr *getMemDisp() const {
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000181 assert(Kind == Memory && "Invalid access!");
182 return Mem.Disp;
183 }
184 unsigned getMemSegReg() const {
185 assert(Kind == Memory && "Invalid access!");
186 return Mem.SegReg;
187 }
188 unsigned getMemBaseReg() const {
189 assert(Kind == Memory && "Invalid access!");
190 return Mem.BaseReg;
191 }
192 unsigned getMemIndexReg() const {
193 assert(Kind == Memory && "Invalid access!");
194 return Mem.IndexReg;
195 }
196 unsigned getMemScale() const {
197 assert(Kind == Memory && "Invalid access!");
198 return Mem.Scale;
199 }
200
Daniel Dunbara3741fa2009-08-08 07:50:56 +0000201 bool isToken() const {return Kind == Token; }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000202
203 bool isImm() const { return Kind == Immediate; }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000204
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000205 bool isImmSExti16i8() const {
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000206 if (!isImm())
207 return false;
208
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000209 // If this isn't a constant expr, just assume it fits and let relaxation
210 // handle it.
211 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
212 if (!CE)
213 return true;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000214
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000215 // Otherwise, check the value is in a range that makes sense for this
216 // extension.
217 uint64_t Value = CE->getValue();
218 return (( Value <= 0x000000000000007FULL)||
219 (0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)||
220 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000221 }
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000222 bool isImmSExti32i8() const {
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000223 if (!isImm())
224 return false;
225
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000226 // If this isn't a constant expr, just assume it fits and let relaxation
227 // handle it.
228 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
229 if (!CE)
230 return true;
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000231
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000232 // Otherwise, check the value is in a range that makes sense for this
233 // extension.
234 uint64_t Value = CE->getValue();
235 return (( Value <= 0x000000000000007FULL)||
236 (0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)||
237 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
238 }
239 bool isImmSExti64i8() const {
240 if (!isImm())
241 return false;
242
243 // If this isn't a constant expr, just assume it fits and let relaxation
244 // handle it.
245 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
246 if (!CE)
247 return true;
248
249 // Otherwise, check the value is in a range that makes sense for this
250 // extension.
251 uint64_t Value = CE->getValue();
252 return (( Value <= 0x000000000000007FULL)||
253 (0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
254 }
255 bool isImmSExti64i32() const {
256 if (!isImm())
257 return false;
258
259 // 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;
264
265 // Otherwise, check the value is in a range that makes sense for this
266 // extension.
267 uint64_t Value = CE->getValue();
268 return (( Value <= 0x000000007FFFFFFFULL)||
269 (0xFFFFFFFF80000000ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000270 }
271
Daniel Dunbar20927f22009-08-07 08:26:05 +0000272 bool isMem() const { return Kind == Memory; }
273
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000274 bool isAbsMem() const {
275 return Kind == Memory && !getMemSegReg() && !getMemBaseReg() &&
Daniel Dunbar7b9147a2010-02-02 21:44:16 +0000276 !getMemIndexReg() && getMemScale() == 1;
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000277 }
278
Daniel Dunbar20927f22009-08-07 08:26:05 +0000279 bool isReg() const { return Kind == Register; }
280
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000281 void addExpr(MCInst &Inst, const MCExpr *Expr) const {
282 // Add as immediates when possible.
283 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
284 Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
285 else
286 Inst.addOperand(MCOperand::CreateExpr(Expr));
287 }
288
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000289 void addRegOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000290 assert(N == 1 && "Invalid number of operands!");
291 Inst.addOperand(MCOperand::CreateReg(getReg()));
292 }
293
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000294 void addImmOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbar20927f22009-08-07 08:26:05 +0000295 assert(N == 1 && "Invalid number of operands!");
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000296 addExpr(Inst, getImm());
Daniel Dunbar20927f22009-08-07 08:26:05 +0000297 }
298
Daniel Dunbar5c468e32009-08-10 21:00:45 +0000299 void addMemOperands(MCInst &Inst, unsigned N) const {
Daniel Dunbarec2b1f12010-01-30 00:24:00 +0000300 assert((N == 5) && "Invalid number of operands!");
Daniel Dunbar20927f22009-08-07 08:26:05 +0000301 Inst.addOperand(MCOperand::CreateReg(getMemBaseReg()));
302 Inst.addOperand(MCOperand::CreateImm(getMemScale()));
303 Inst.addOperand(MCOperand::CreateReg(getMemIndexReg()));
Daniel Dunbar9c60f532010-02-13 00:17:21 +0000304 addExpr(Inst, getMemDisp());
Daniel Dunbarec2b1f12010-01-30 00:24:00 +0000305 Inst.addOperand(MCOperand::CreateReg(getMemSegReg()));
306 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000307
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000308 void addAbsMemOperands(MCInst &Inst, unsigned N) const {
309 assert((N == 1) && "Invalid number of operands!");
310 Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
311 }
312
Chris Lattnerb4307b32010-01-15 19:28:38 +0000313 static X86Operand *CreateToken(StringRef Str, SMLoc Loc) {
314 X86Operand *Res = new X86Operand(Token, Loc, Loc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000315 Res->Tok.Data = Str.data();
316 Res->Tok.Length = Str.size();
Daniel Dunbar20927f22009-08-07 08:26:05 +0000317 return Res;
318 }
319
Chris Lattner29ef9a22010-01-15 18:51:29 +0000320 static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc) {
Chris Lattner1f19f0f2010-01-15 19:06:59 +0000321 X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000322 Res->Reg.RegNo = RegNo;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000323 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000324 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000325
Chris Lattnerb4307b32010-01-15 19:28:38 +0000326 static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){
327 X86Operand *Res = new X86Operand(Immediate, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000328 Res->Imm.Val = Val;
329 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000330 }
Daniel Dunbar20927f22009-08-07 08:26:05 +0000331
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000332 /// Create an absolute memory operand.
333 static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc,
334 SMLoc EndLoc) {
335 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
336 Res->Mem.SegReg = 0;
337 Res->Mem.Disp = Disp;
338 Res->Mem.BaseReg = 0;
339 Res->Mem.IndexReg = 0;
Daniel Dunbar7b9147a2010-02-02 21:44:16 +0000340 Res->Mem.Scale = 1;
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000341 return Res;
342 }
343
344 /// Create a generalized memory operand.
Chris Lattner309264d2010-01-15 18:44:13 +0000345 static X86Operand *CreateMem(unsigned SegReg, const MCExpr *Disp,
346 unsigned BaseReg, unsigned IndexReg,
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000347 unsigned Scale, SMLoc StartLoc, SMLoc EndLoc) {
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000348 // We should never just have a displacement, that should be parsed as an
349 // absolute memory operand.
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000350 assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!");
351
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000352 // The scale should always be one of {1,2,4,8}.
353 assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) &&
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000354 "Invalid scale!");
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000355 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
Chris Lattner29ef9a22010-01-15 18:51:29 +0000356 Res->Mem.SegReg = SegReg;
357 Res->Mem.Disp = Disp;
358 Res->Mem.BaseReg = BaseReg;
359 Res->Mem.IndexReg = IndexReg;
360 Res->Mem.Scale = Scale;
361 return Res;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000362 }
363};
Daniel Dunbara3af3702009-07-20 18:55:04 +0000364
Chris Lattner37dfdec2009-07-29 06:33:53 +0000365} // end anonymous namespace.
Daniel Dunbara2edbab2009-07-28 20:47:52 +0000366
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000367bool X86ATTAsmParser::isSrcOp(X86Operand &Op) {
368 unsigned basereg = Is64Bit ? X86::RSI : X86::ESI;
369
370 return (Op.isMem() &&
371 (Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::DS) &&
372 isa<MCConstantExpr>(Op.Mem.Disp) &&
373 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
374 Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0);
375}
376
377bool X86ATTAsmParser::isDstOp(X86Operand &Op) {
378 unsigned basereg = Is64Bit ? X86::RDI : X86::EDI;
379
380 return Op.isMem() && Op.Mem.SegReg == X86::ES &&
381 isa<MCConstantExpr>(Op.Mem.Disp) &&
382 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
383 Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0;
384}
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000385
Chris Lattner29ef9a22010-01-15 18:51:29 +0000386bool X86ATTAsmParser::ParseRegister(unsigned &RegNo,
387 SMLoc &StartLoc, SMLoc &EndLoc) {
Chris Lattner23075742010-01-15 18:27:19 +0000388 RegNo = 0;
Sean Callanan18b83232010-01-19 21:44:56 +0000389 const AsmToken &TokPercent = Parser.getTok();
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000390 assert(TokPercent.is(AsmToken::Percent) && "Invalid token kind!");
Chris Lattner29ef9a22010-01-15 18:51:29 +0000391 StartLoc = TokPercent.getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000392 Parser.Lex(); // Eat percent token.
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000393
Sean Callanan18b83232010-01-19 21:44:56 +0000394 const AsmToken &Tok = Parser.getTok();
Kevin Enderby0d6cd002009-09-16 17:18:29 +0000395 if (Tok.isNot(AsmToken::Identifier))
396 return Error(Tok.getLoc(), "invalid register name");
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000397
Daniel Dunbar0e2771f2009-07-29 00:02:19 +0000398 // FIXME: Validate register for the current architecture; we have to do
399 // validation later, so maybe there is no need for this here.
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000400 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000401
Chris Lattner33d60d52010-09-22 04:11:10 +0000402 // If the match failed, try the register name as lowercase.
403 if (RegNo == 0)
404 RegNo = MatchRegisterName(LowercaseString(Tok.getString()));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000405
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000406 // FIXME: This should be done using Requires<In32BitMode> and
407 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions
408 // can be also checked.
409 if (RegNo == X86::RIZ && !Is64Bit)
410 return Error(Tok.getLoc(), "riz register in 64-bit mode only");
411
Chris Lattner33d60d52010-09-22 04:11:10 +0000412 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
413 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000414 RegNo = X86::ST0;
415 EndLoc = Tok.getLoc();
416 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000417
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000418 // Check to see if we have '(4)' after %st.
419 if (getLexer().isNot(AsmToken::LParen))
420 return false;
421 // Lex the paren.
422 getParser().Lex();
423
424 const AsmToken &IntTok = Parser.getTok();
425 if (IntTok.isNot(AsmToken::Integer))
426 return Error(IntTok.getLoc(), "expected stack index");
427 switch (IntTok.getIntVal()) {
428 case 0: RegNo = X86::ST0; break;
429 case 1: RegNo = X86::ST1; break;
430 case 2: RegNo = X86::ST2; break;
431 case 3: RegNo = X86::ST3; break;
432 case 4: RegNo = X86::ST4; break;
433 case 5: RegNo = X86::ST5; break;
434 case 6: RegNo = X86::ST6; break;
435 case 7: RegNo = X86::ST7; break;
436 default: return Error(IntTok.getLoc(), "invalid stack index");
437 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000438
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000439 if (getParser().Lex().isNot(AsmToken::RParen))
440 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000441
Chris Lattnere16b0fc2010-02-09 00:49:22 +0000442 EndLoc = Tok.getLoc();
443 Parser.Lex(); // Eat ')'
444 return false;
445 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000446
Chris Lattner645b2092010-06-24 07:29:18 +0000447 // If this is "db[0-7]", match it as an alias
448 // for dr[0-7].
449 if (RegNo == 0 && Tok.getString().size() == 3 &&
450 Tok.getString().startswith("db")) {
451 switch (Tok.getString()[2]) {
452 case '0': RegNo = X86::DR0; break;
453 case '1': RegNo = X86::DR1; break;
454 case '2': RegNo = X86::DR2; break;
455 case '3': RegNo = X86::DR3; break;
456 case '4': RegNo = X86::DR4; break;
457 case '5': RegNo = X86::DR5; break;
458 case '6': RegNo = X86::DR6; break;
459 case '7': RegNo = X86::DR7; break;
460 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000461
Chris Lattner645b2092010-06-24 07:29:18 +0000462 if (RegNo != 0) {
463 EndLoc = Tok.getLoc();
464 Parser.Lex(); // Eat it.
465 return false;
466 }
467 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000468
Daniel Dunbar245f0582009-08-08 21:22:41 +0000469 if (RegNo == 0)
Daniel Dunbar0e2771f2009-07-29 00:02:19 +0000470 return Error(Tok.getLoc(), "invalid register name");
471
Chris Lattner29ef9a22010-01-15 18:51:29 +0000472 EndLoc = Tok.getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000473 Parser.Lex(); // Eat identifier token.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000474 return false;
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000475}
476
Chris Lattner309264d2010-01-15 18:44:13 +0000477X86Operand *X86ATTAsmParser::ParseOperand() {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000478 switch (getLexer().getKind()) {
479 default:
Chris Lattnereef6d782010-04-17 18:56:34 +0000480 // Parse a memory operand with no segment register.
481 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattner23075742010-01-15 18:27:19 +0000482 case AsmToken::Percent: {
Chris Lattnereef6d782010-04-17 18:56:34 +0000483 // Read the register.
Chris Lattner23075742010-01-15 18:27:19 +0000484 unsigned RegNo;
Chris Lattner29ef9a22010-01-15 18:51:29 +0000485 SMLoc Start, End;
486 if (ParseRegister(RegNo, Start, End)) return 0;
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000487 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
488 Error(Start, "eiz and riz can only be used as index registers");
489 return 0;
490 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000491
Chris Lattnereef6d782010-04-17 18:56:34 +0000492 // If this is a segment register followed by a ':', then this is the start
493 // of a memory reference, otherwise this is a normal register reference.
494 if (getLexer().isNot(AsmToken::Colon))
495 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000496
497
Chris Lattnereef6d782010-04-17 18:56:34 +0000498 getParser().Lex(); // Eat the colon.
499 return ParseMemOperand(RegNo, Start);
Chris Lattner23075742010-01-15 18:27:19 +0000500 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000501 case AsmToken::Dollar: {
502 // $42 -> immediate.
Sean Callanan18b83232010-01-19 21:44:56 +0000503 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callananb9a25b72010-01-19 20:27:46 +0000504 Parser.Lex();
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000505 const MCExpr *Val;
Chris Lattner54482b42010-01-15 19:39:23 +0000506 if (getParser().ParseExpression(Val, End))
Chris Lattner309264d2010-01-15 18:44:13 +0000507 return 0;
Chris Lattnerb4307b32010-01-15 19:28:38 +0000508 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000509 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000510 }
Daniel Dunbardbd692a2009-07-20 20:01:54 +0000511}
512
Chris Lattnereef6d782010-04-17 18:56:34 +0000513/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
514/// has already been parsed if present.
515X86Operand *X86ATTAsmParser::ParseMemOperand(unsigned SegReg, SMLoc MemStart) {
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000516
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000517 // We have to disambiguate a parenthesized expression "(4+5)" from the start
518 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner75f265f2010-01-24 01:07:33 +0000519 // only way to do this without lookahead is to eat the '(' and see what is
520 // after it.
Daniel Dunbar8c2eebe2009-08-31 08:08:38 +0000521 const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000522 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattner54482b42010-01-15 19:39:23 +0000523 SMLoc ExprEnd;
524 if (getParser().ParseExpression(Disp, ExprEnd)) return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000525
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000526 // After parsing the base expression we could either have a parenthesized
527 // memory address or not. If not, return now. If so, eat the (.
528 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000529 // Unless we have a segment register, treat this as an immediate.
Chris Lattner309264d2010-01-15 18:44:13 +0000530 if (SegReg == 0)
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000531 return X86Operand::CreateMem(Disp, MemStart, ExprEnd);
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000532 return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000533 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000534
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000535 // Eat the '('.
Sean Callananb9a25b72010-01-19 20:27:46 +0000536 Parser.Lex();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000537 } else {
538 // Okay, we have a '('. We don't know if this is an expression or not, but
539 // so we have to eat the ( to see beyond it.
Sean Callanan18b83232010-01-19 21:44:56 +0000540 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000541 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000542
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000543 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000544 // Nothing to do here, fall into the code below with the '(' part of the
545 // memory operand consumed.
546 } else {
Chris Lattnerb4307b32010-01-15 19:28:38 +0000547 SMLoc ExprEnd;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000548
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000549 // It must be an parenthesized expression, parse it now.
Chris Lattnerb4307b32010-01-15 19:28:38 +0000550 if (getParser().ParseParenExpression(Disp, ExprEnd))
Chris Lattner309264d2010-01-15 18:44:13 +0000551 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000552
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000553 // After parsing the base expression we could either have a parenthesized
554 // memory address or not. If not, return now. If so, eat the (.
555 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbarc09e4112009-07-31 22:22:54 +0000556 // Unless we have a segment register, treat this as an immediate.
Chris Lattner309264d2010-01-15 18:44:13 +0000557 if (SegReg == 0)
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000558 return X86Operand::CreateMem(Disp, LParenLoc, ExprEnd);
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000559 return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000560 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000561
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000562 // Eat the '('.
Sean Callananb9a25b72010-01-19 20:27:46 +0000563 Parser.Lex();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000564 }
565 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000566
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000567 // If we reached here, then we just ate the ( of the memory operand. Process
568 // the rest of the memory operand.
Daniel Dunbar022e2a82009-07-31 20:53:16 +0000569 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000570
Chris Lattner29ef9a22010-01-15 18:51:29 +0000571 if (getLexer().is(AsmToken::Percent)) {
572 SMLoc L;
573 if (ParseRegister(BaseReg, L, L)) return 0;
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000574 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
575 Error(L, "eiz and riz can only be used as index registers");
576 return 0;
577 }
Chris Lattner29ef9a22010-01-15 18:51:29 +0000578 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000579
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000580 if (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +0000581 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000582
583 // Following the comma we should have either an index register, or a scale
584 // value. We don't support the later form, but we want to parse it
585 // correctly.
586 //
587 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes3c8e1be2010-07-24 00:06:39 +0000588 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7b4608d2009-09-03 17:15:07 +0000589 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner29ef9a22010-01-15 18:51:29 +0000590 SMLoc L;
591 if (ParseRegister(IndexReg, L, L)) return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000592
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000593 if (getLexer().isNot(AsmToken::RParen)) {
594 // Parse the scale amount:
595 // ::= ',' [scale-expression]
Chris Lattner309264d2010-01-15 18:44:13 +0000596 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000597 Error(Parser.getTok().getLoc(),
Chris Lattner309264d2010-01-15 18:44:13 +0000598 "expected comma in scale expression");
599 return 0;
600 }
Sean Callananb9a25b72010-01-19 20:27:46 +0000601 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000602
603 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000604 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000605
606 int64_t ScaleVal;
607 if (getParser().ParseAbsoluteExpression(ScaleVal))
Chris Lattner309264d2010-01-15 18:44:13 +0000608 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000609
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000610 // Validate the scale amount.
Chris Lattner309264d2010-01-15 18:44:13 +0000611 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){
612 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
613 return 0;
614 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000615 Scale = (unsigned)ScaleVal;
616 }
617 }
618 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbaree910252010-08-24 19:13:38 +0000619 // A scale amount without an index is ignored.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000620 // index.
Sean Callanan18b83232010-01-19 21:44:56 +0000621 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000622
623 int64_t Value;
624 if (getParser().ParseAbsoluteExpression(Value))
Chris Lattner309264d2010-01-15 18:44:13 +0000625 return 0;
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000626
Daniel Dunbaree910252010-08-24 19:13:38 +0000627 if (Value != 1)
628 Warning(Loc, "scale factor without index register is ignored");
629 Scale = 1;
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000630 }
631 }
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000632
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000633 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattner309264d2010-01-15 18:44:13 +0000634 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000635 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Chris Lattner309264d2010-01-15 18:44:13 +0000636 return 0;
637 }
Sean Callanan18b83232010-01-19 21:44:56 +0000638 SMLoc MemEnd = Parser.getTok().getLoc();
Sean Callananb9a25b72010-01-19 20:27:46 +0000639 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesf64a7d42010-07-23 22:15:26 +0000640
Chris Lattner0a3c5a52010-01-15 19:33:43 +0000641 return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
642 MemStart, MemEnd);
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000643}
644
Chris Lattner98986712010-01-14 22:21:20 +0000645bool X86ATTAsmParser::
Benjamin Kramer38e59892010-07-14 22:38:02 +0000646ParseInstruction(StringRef Name, SMLoc NameLoc,
Chris Lattner98986712010-01-14 22:21:20 +0000647 SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
Chris Lattner693173f2010-10-30 19:23:13 +0000648 StringRef PatchedName = Name;
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000649
Chris Lattnerd8f71792010-11-28 20:23:50 +0000650 // FIXME: Hack to recognize setneb as setne.
651 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
652 PatchedName != "setb" && PatchedName != "setnb")
653 PatchedName = PatchedName.substr(0, Name.size()-1);
654
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000655 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
656 const MCExpr *ExtraImmOp = 0;
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000657 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000658 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
659 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000660 bool IsVCMP = PatchedName.startswith("vcmp");
661 unsigned SSECCIdx = IsVCMP ? 4 : 3;
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000662 unsigned SSEComparisonCode = StringSwitch<unsigned>(
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000663 PatchedName.slice(SSECCIdx, PatchedName.size() - 2))
Bruno Cardoso Lopescc69e132010-07-07 22:24:03 +0000664 .Case("eq", 0)
665 .Case("lt", 1)
666 .Case("le", 2)
667 .Case("unord", 3)
668 .Case("neq", 4)
669 .Case("nlt", 5)
670 .Case("nle", 6)
671 .Case("ord", 7)
672 .Case("eq_uq", 8)
673 .Case("nge", 9)
674 .Case("ngt", 0x0A)
675 .Case("false", 0x0B)
676 .Case("neq_oq", 0x0C)
677 .Case("ge", 0x0D)
678 .Case("gt", 0x0E)
679 .Case("true", 0x0F)
680 .Case("eq_os", 0x10)
681 .Case("lt_oq", 0x11)
682 .Case("le_oq", 0x12)
683 .Case("unord_s", 0x13)
684 .Case("neq_us", 0x14)
685 .Case("nlt_uq", 0x15)
686 .Case("nle_uq", 0x16)
687 .Case("ord_s", 0x17)
688 .Case("eq_us", 0x18)
689 .Case("nge_uq", 0x19)
690 .Case("ngt_uq", 0x1A)
691 .Case("false_os", 0x1B)
692 .Case("neq_os", 0x1C)
693 .Case("ge_oq", 0x1D)
694 .Case("gt_oq", 0x1E)
695 .Case("true_us", 0x1F)
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000696 .Default(~0U);
697 if (SSEComparisonCode != ~0U) {
698 ExtraImmOp = MCConstantExpr::Create(SSEComparisonCode,
699 getParser().getContext());
700 if (PatchedName.endswith("ss")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000701 PatchedName = IsVCMP ? "vcmpss" : "cmpss";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000702 } else if (PatchedName.endswith("sd")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000703 PatchedName = IsVCMP ? "vcmpsd" : "cmpsd";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000704 } else if (PatchedName.endswith("ps")) {
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000705 PatchedName = IsVCMP ? "vcmpps" : "cmpps";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000706 } else {
707 assert(PatchedName.endswith("pd") && "Unexpected mnemonic!");
Bruno Cardoso Lopes428256b2010-06-23 21:10:57 +0000708 PatchedName = IsVCMP ? "vcmppd" : "cmppd";
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000709 }
710 }
711 }
Bruno Cardoso Lopesf528d2b2010-07-23 18:41:12 +0000712
Daniel Dunbar1b6c0602010-02-10 21:19:28 +0000713 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000714
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000715 if (ExtraImmOp)
716 Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000717
718
Chris Lattner2544f422010-09-08 05:17:37 +0000719 // Determine whether this is an instruction prefix.
720 bool isPrefix =
Chris Lattner693173f2010-10-30 19:23:13 +0000721 Name == "lock" || Name == "rep" ||
722 Name == "repe" || Name == "repz" ||
Rafael Espindolabeb68982010-11-23 11:23:24 +0000723 Name == "repne" || Name == "repnz" ||
Rafael Espindolabfd2d262010-11-27 20:29:45 +0000724 Name == "rex64" || Name == "data16";
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000725
726
Chris Lattner2544f422010-09-08 05:17:37 +0000727 // This does the actual operand parsing. Don't parse any more if we have a
728 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
729 // just want to parse the "lock" as the first instruction and the "incl" as
730 // the next one.
731 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar0db68f42009-08-11 05:00:25 +0000732
733 // Parse '*' modifier.
734 if (getLexer().is(AsmToken::Star)) {
Sean Callanan18b83232010-01-19 21:44:56 +0000735 SMLoc Loc = Parser.getTok().getLoc();
Chris Lattnerb4307b32010-01-15 19:28:38 +0000736 Operands.push_back(X86Operand::CreateToken("*", Loc));
Sean Callananb9a25b72010-01-19 20:27:46 +0000737 Parser.Lex(); // Eat the star.
Daniel Dunbar0db68f42009-08-11 05:00:25 +0000738 }
739
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000740 // Read the first operand.
Chris Lattner309264d2010-01-15 18:44:13 +0000741 if (X86Operand *Op = ParseOperand())
742 Operands.push_back(Op);
Chris Lattnercbf8a982010-09-11 16:18:25 +0000743 else {
744 Parser.EatToEndOfStatement();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000745 return true;
Chris Lattnercbf8a982010-09-11 16:18:25 +0000746 }
Daniel Dunbar39e2dd72010-05-25 19:49:32 +0000747
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000748 while (getLexer().is(AsmToken::Comma)) {
Sean Callananb9a25b72010-01-19 20:27:46 +0000749 Parser.Lex(); // Eat the comma.
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000750
751 // Parse and remember the operand.
Chris Lattner309264d2010-01-15 18:44:13 +0000752 if (X86Operand *Op = ParseOperand())
753 Operands.push_back(Op);
Chris Lattnercbf8a982010-09-11 16:18:25 +0000754 else {
755 Parser.EatToEndOfStatement();
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000756 return true;
Chris Lattnercbf8a982010-09-11 16:18:25 +0000757 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000758 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000759
Chris Lattnercbf8a982010-09-11 16:18:25 +0000760 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Chris Lattnerc146c4d2010-11-18 02:53:02 +0000761 SMLoc Loc = getLexer().getLoc();
Chris Lattnercbf8a982010-09-11 16:18:25 +0000762 Parser.EatToEndOfStatement();
Chris Lattnerc146c4d2010-11-18 02:53:02 +0000763 return Error(Loc, "unexpected token in argument list");
Chris Lattnercbf8a982010-09-11 16:18:25 +0000764 }
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000765 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000766
Chris Lattner2544f422010-09-08 05:17:37 +0000767 if (getLexer().is(AsmToken::EndOfStatement))
768 Parser.Lex(); // Consume the EndOfStatement
Kevin Enderby76331752010-12-08 23:57:59 +0000769 else if (isPrefix && getLexer().is(AsmToken::Slash))
770 Parser.Lex(); // Consume the prefix separator Slash
Daniel Dunbar16cdcb32009-07-28 22:40:46 +0000771
Chris Lattner98c870f2010-11-06 19:25:43 +0000772 // This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
773 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
774 // documented form in various unofficial manuals, so a lot of code uses it.
775 if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
776 Operands.size() == 3) {
777 X86Operand &Op = *(X86Operand*)Operands.back();
778 if (Op.isMem() && Op.Mem.SegReg == 0 &&
779 isa<MCConstantExpr>(Op.Mem.Disp) &&
780 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
781 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
782 SMLoc Loc = Op.getEndLoc();
783 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
784 delete &Op;
785 }
786 }
Joerg Sonnenberger00743c22011-02-22 20:40:09 +0000787 // Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
788 if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
789 Operands.size() == 3) {
790 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
791 if (Op.isMem() && Op.Mem.SegReg == 0 &&
792 isa<MCConstantExpr>(Op.Mem.Disp) &&
793 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
794 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
795 SMLoc Loc = Op.getEndLoc();
796 Operands.begin()[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
797 delete &Op;
798 }
799 }
Joerg Sonnenberger96622aa2011-03-18 11:59:40 +0000800 // Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]"
801 if (Name.startswith("ins") && Operands.size() == 3 &&
802 (Name == "insb" || Name == "insw" || Name == "insl")) {
803 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
804 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
805 if (Op.isReg() && Op.getReg() == X86::DX && isDstOp(Op2)) {
806 Operands.pop_back();
807 Operands.pop_back();
808 delete &Op;
809 delete &Op2;
810 }
811 }
812
813 // Transform "outs[bwl] %ds:(%esi), %dx" into "out[bwl]"
814 if (Name.startswith("outs") && Operands.size() == 3 &&
815 (Name == "outsb" || Name == "outsw" || Name == "outsl")) {
816 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
817 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
818 if (isSrcOp(Op) && Op2.isReg() && Op2.getReg() == X86::DX) {
819 Operands.pop_back();
820 Operands.pop_back();
821 delete &Op;
822 delete &Op2;
823 }
824 }
825
826 // Transform "movs[bwl] %ds:(%esi), %es:(%edi)" into "movs[bwl]"
827 if (Name.startswith("movs") && Operands.size() == 3 &&
828 (Name == "movsb" || Name == "movsw" || Name == "movsl" ||
829 (Is64Bit && Name == "movsq"))) {
830 X86Operand &Op = *(X86Operand*)Operands.begin()[1];
831 X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
832 if (isSrcOp(Op) && isDstOp(Op2)) {
833 Operands.pop_back();
834 Operands.pop_back();
835 delete &Op;
836 delete &Op2;
837 }
838 }
839 // Transform "lods[bwl] %ds:(%esi),{%al,%ax,%eax,%rax}" into "lods[bwl]"
840 if (Name.startswith("lods") && Operands.size() == 3 &&
841 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
842 Name == "lodsl" || (Is64Bit && Name == "lodsq"))) {
843 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
844 X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
845 if (isSrcOp(*Op1) && Op2->isReg()) {
846 const char *ins;
847 unsigned reg = Op2->getReg();
848 bool isLods = Name == "lods";
849 if (reg == X86::AL && (isLods || Name == "lodsb"))
850 ins = "lodsb";
851 else if (reg == X86::AX && (isLods || Name == "lodsw"))
852 ins = "lodsw";
853 else if (reg == X86::EAX && (isLods || Name == "lodsl"))
854 ins = "lodsl";
855 else if (reg == X86::RAX && (isLods || Name == "lodsq"))
856 ins = "lodsq";
857 else
858 ins = NULL;
859 if (ins != NULL) {
860 Operands.pop_back();
861 Operands.pop_back();
862 delete Op1;
863 delete Op2;
864 if (Name != ins)
865 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
866 }
867 }
868 }
869 // Transform "stos[bwl] {%al,%ax,%eax,%rax},%es:(%edi)" into "stos[bwl]"
870 if (Name.startswith("stos") && Operands.size() == 3 &&
871 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
872 Name == "stosl" || (Is64Bit && Name == "stosq"))) {
873 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
874 X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
875 if (isDstOp(*Op2) && Op1->isReg()) {
876 const char *ins;
877 unsigned reg = Op1->getReg();
878 bool isStos = Name == "stos";
879 if (reg == X86::AL && (isStos || Name == "stosb"))
880 ins = "stosb";
881 else if (reg == X86::AX && (isStos || Name == "stosw"))
882 ins = "stosw";
883 else if (reg == X86::EAX && (isStos || Name == "stosl"))
884 ins = "stosl";
885 else if (reg == X86::RAX && (isStos || Name == "stosq"))
886 ins = "stosq";
887 else
888 ins = NULL;
889 if (ins != NULL) {
890 Operands.pop_back();
891 Operands.pop_back();
892 delete Op1;
893 delete Op2;
894 if (Name != ins)
895 static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
896 }
897 }
898 }
899
Chris Lattnere9e16a32010-09-15 04:33:27 +0000900 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattneree211d02010-09-11 16:32:12 +0000901 // "shift <op>".
Daniel Dunbard5e77052010-03-13 00:47:29 +0000902 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner8c24b0c2010-11-06 21:23:40 +0000903 Name.startswith("shl") || Name.startswith("sal") ||
904 Name.startswith("rcl") || Name.startswith("rcr") ||
905 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner47ab90b2010-09-06 18:32:06 +0000906 Operands.size() == 3) {
907 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
908 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
909 cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
910 delete Operands[1];
911 Operands.erase(Operands.begin() + 1);
912 }
Daniel Dunbarf2de13f2010-03-20 22:36:38 +0000913 }
Chris Lattner15f89512011-04-09 19:41:05 +0000914
915 // Transforms "int $3" into "int3" as a size optimization. We can't write an
916 // instalias with an immediate operand yet.
917 if (Name == "int" && Operands.size() == 2) {
918 X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
919 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
920 cast<MCConstantExpr>(Op1->getImm())->getValue() == 3) {
921 delete Operands[1];
922 Operands.erase(Operands.begin() + 1);
923 static_cast<X86Operand*>(Operands[0])->setTokenValue("int3");
924 }
925 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000926
Chris Lattner98986712010-01-14 22:21:20 +0000927 return false;
Daniel Dunbara3af3702009-07-20 18:55:04 +0000928}
929
Chris Lattner2d592d12010-09-15 04:04:33 +0000930bool X86ATTAsmParser::
Chris Lattner7036f8b2010-09-29 01:42:58 +0000931MatchAndEmitInstruction(SMLoc IDLoc,
Chris Lattner7c51a312010-09-29 01:50:45 +0000932 SmallVectorImpl<MCParsedAsmOperand*> &Operands,
Chris Lattner7036f8b2010-09-29 01:42:58 +0000933 MCStreamer &Out) {
Daniel Dunbarf1e29d42010-08-12 00:55:38 +0000934 assert(!Operands.empty() && "Unexpect empty operand list!");
Chris Lattner7c51a312010-09-29 01:50:45 +0000935 X86Operand *Op = static_cast<X86Operand*>(Operands[0]);
936 assert(Op->isToken() && "Leading operand should always be a mnemonic!");
Daniel Dunbarf1e29d42010-08-12 00:55:38 +0000937
Chris Lattner7c51a312010-09-29 01:50:45 +0000938 // First, handle aliases that expand to multiple instructions.
939 // FIXME: This should be replaced with a real .td file alias mechanism.
Chris Lattner90fd7972010-11-06 19:57:21 +0000940 // Also, MatchInstructionImpl should do actually *do* the EmitInstruction
941 // call.
Andrew Trick0966ec02010-10-22 03:58:29 +0000942 if (Op->getToken() == "fstsw" || Op->getToken() == "fstcw" ||
Chris Lattner8b260a72010-10-30 18:07:17 +0000943 Op->getToken() == "fstsww" || Op->getToken() == "fstcww" ||
Chris Lattner905f2e02010-09-30 17:11:29 +0000944 Op->getToken() == "finit" || Op->getToken() == "fsave" ||
Kevin Enderby5a378072010-10-27 02:53:04 +0000945 Op->getToken() == "fstenv" || Op->getToken() == "fclex") {
Chris Lattner7c51a312010-09-29 01:50:45 +0000946 MCInst Inst;
947 Inst.setOpcode(X86::WAIT);
948 Out.EmitInstruction(Inst);
949
Chris Lattner0bb83a82010-09-30 16:39:29 +0000950 const char *Repl =
951 StringSwitch<const char*>(Op->getToken())
Chris Lattner8b260a72010-10-30 18:07:17 +0000952 .Case("finit", "fninit")
953 .Case("fsave", "fnsave")
954 .Case("fstcw", "fnstcw")
955 .Case("fstcww", "fnstcw")
Chris Lattner905f2e02010-09-30 17:11:29 +0000956 .Case("fstenv", "fnstenv")
Chris Lattner8b260a72010-10-30 18:07:17 +0000957 .Case("fstsw", "fnstsw")
958 .Case("fstsww", "fnstsw")
959 .Case("fclex", "fnclex")
Chris Lattner0bb83a82010-09-30 16:39:29 +0000960 .Default(0);
961 assert(Repl && "Unknown wait-prefixed instruction");
Benjamin Kramerb0f96fa2010-10-01 12:25:27 +0000962 delete Operands[0];
Chris Lattner0bb83a82010-09-30 16:39:29 +0000963 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattner7c51a312010-09-29 01:50:45 +0000964 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000965
Chris Lattnera008e8a2010-09-06 21:54:15 +0000966 bool WasOriginallyInvalidOperand = false;
Chris Lattnerce4a3352010-09-06 22:11:18 +0000967 unsigned OrigErrorInfo;
Chris Lattner7036f8b2010-09-29 01:42:58 +0000968 MCInst Inst;
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000969
Daniel Dunbarc918d602010-05-04 16:12:42 +0000970 // First, try a direct match.
Chris Lattnerce4a3352010-09-06 22:11:18 +0000971 switch (MatchInstructionImpl(Operands, Inst, OrigErrorInfo)) {
Chris Lattnerec6789f2010-09-06 20:08:02 +0000972 case Match_Success:
Chris Lattner7036f8b2010-09-29 01:42:58 +0000973 Out.EmitInstruction(Inst);
Daniel Dunbarc918d602010-05-04 16:12:42 +0000974 return false;
Chris Lattnerec6789f2010-09-06 20:08:02 +0000975 case Match_MissingFeature:
976 Error(IDLoc, "instruction requires a CPU feature not currently enabled");
977 return true;
Daniel Dunbarb4129152011-02-04 17:12:23 +0000978 case Match_ConversionFail:
979 return Error(IDLoc, "unable to convert operands to instruction");
Chris Lattnera008e8a2010-09-06 21:54:15 +0000980 case Match_InvalidOperand:
981 WasOriginallyInvalidOperand = true;
982 break;
983 case Match_MnemonicFail:
Chris Lattnerec6789f2010-09-06 20:08:02 +0000984 break;
985 }
Daniel Dunbarc918d602010-05-04 16:12:42 +0000986
Daniel Dunbarc918d602010-05-04 16:12:42 +0000987 // FIXME: Ideally, we would only attempt suffix matches for things which are
988 // valid prefixes, and we could just infer the right unambiguous
989 // type. However, that requires substantially more matcher support than the
990 // following hack.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +0000991
Daniel Dunbarc918d602010-05-04 16:12:42 +0000992 // Change the operand to point to a temporary token.
Daniel Dunbarc918d602010-05-04 16:12:42 +0000993 StringRef Base = Op->getToken();
Daniel Dunbarf1e29d42010-08-12 00:55:38 +0000994 SmallString<16> Tmp;
995 Tmp += Base;
996 Tmp += ' ';
997 Op->setTokenValue(Tmp.str());
Daniel Dunbarc918d602010-05-04 16:12:42 +0000998
Chris Lattnerfb7000f2010-11-06 18:28:02 +0000999 // If this instruction starts with an 'f', then it is a floating point stack
1000 // instruction. These come in up to three forms for 32-bit, 64-bit, and
1001 // 80-bit floating point, which use the suffixes s,l,t respectively.
1002 //
1003 // Otherwise, we assume that this may be an integer instruction, which comes
1004 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
1005 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
1006
Daniel Dunbarc918d602010-05-04 16:12:42 +00001007 // Check for the various suffix matches.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001008 Tmp[Base.size()] = Suffixes[0];
1009 unsigned ErrorInfoIgnore;
1010 MatchResultTy Match1, Match2, Match3, Match4;
1011
1012 Match1 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore);
1013 Tmp[Base.size()] = Suffixes[1];
1014 Match2 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore);
1015 Tmp[Base.size()] = Suffixes[2];
1016 Match3 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore);
1017 Tmp[Base.size()] = Suffixes[3];
1018 Match4 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore);
Daniel Dunbarc918d602010-05-04 16:12:42 +00001019
1020 // Restore the old token.
1021 Op->setTokenValue(Base);
1022
1023 // If exactly one matched, then we treat that as a successful match (and the
1024 // instruction will already have been filled in correctly, since the failing
1025 // matches won't have modified it).
Chris Lattnerec6789f2010-09-06 20:08:02 +00001026 unsigned NumSuccessfulMatches =
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001027 (Match1 == Match_Success) + (Match2 == Match_Success) +
1028 (Match3 == Match_Success) + (Match4 == Match_Success);
Chris Lattner7036f8b2010-09-29 01:42:58 +00001029 if (NumSuccessfulMatches == 1) {
1030 Out.EmitInstruction(Inst);
Daniel Dunbarc918d602010-05-04 16:12:42 +00001031 return false;
Chris Lattner7036f8b2010-09-29 01:42:58 +00001032 }
Daniel Dunbarc918d602010-05-04 16:12:42 +00001033
Chris Lattnerec6789f2010-09-06 20:08:02 +00001034 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbarf1e29d42010-08-12 00:55:38 +00001035
Daniel Dunbar09062b12010-08-12 00:55:42 +00001036 // If we had multiple suffix matches, then identify this as an ambiguous
1037 // match.
Chris Lattnerec6789f2010-09-06 20:08:02 +00001038 if (NumSuccessfulMatches > 1) {
Daniel Dunbar09062b12010-08-12 00:55:42 +00001039 char MatchChars[4];
1040 unsigned NumMatches = 0;
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001041 if (Match1 == Match_Success) MatchChars[NumMatches++] = Suffixes[0];
1042 if (Match2 == Match_Success) MatchChars[NumMatches++] = Suffixes[1];
1043 if (Match3 == Match_Success) MatchChars[NumMatches++] = Suffixes[2];
1044 if (Match4 == Match_Success) MatchChars[NumMatches++] = Suffixes[3];
Daniel Dunbar09062b12010-08-12 00:55:42 +00001045
1046 SmallString<126> Msg;
1047 raw_svector_ostream OS(Msg);
1048 OS << "ambiguous instructions require an explicit suffix (could be ";
1049 for (unsigned i = 0; i != NumMatches; ++i) {
1050 if (i != 0)
1051 OS << ", ";
1052 if (i + 1 == NumMatches)
1053 OS << "or ";
1054 OS << "'" << Base << MatchChars[i] << "'";
1055 }
1056 OS << ")";
1057 Error(IDLoc, OS.str());
Chris Lattnerec6789f2010-09-06 20:08:02 +00001058 return true;
Daniel Dunbar09062b12010-08-12 00:55:42 +00001059 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001060
Chris Lattnera008e8a2010-09-06 21:54:15 +00001061 // Okay, we know that none of the variants matched successfully.
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001062
Chris Lattnera008e8a2010-09-06 21:54:15 +00001063 // If all of the instructions reported an invalid mnemonic, then the original
1064 // mnemonic was invalid.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001065 if ((Match1 == Match_MnemonicFail) && (Match2 == Match_MnemonicFail) &&
1066 (Match3 == Match_MnemonicFail) && (Match4 == Match_MnemonicFail)) {
Chris Lattnerce4a3352010-09-06 22:11:18 +00001067 if (!WasOriginallyInvalidOperand) {
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001068 Error(IDLoc, "invalid instruction mnemonic '" + Base + "'");
Chris Lattnerce4a3352010-09-06 22:11:18 +00001069 return true;
1070 }
1071
1072 // Recover location info for the operand if we know which was the problem.
1073 SMLoc ErrorLoc = IDLoc;
1074 if (OrigErrorInfo != ~0U) {
Chris Lattnerf8840122010-09-15 03:50:11 +00001075 if (OrigErrorInfo >= Operands.size())
1076 return Error(IDLoc, "too few operands for instruction");
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001077
Chris Lattnerce4a3352010-09-06 22:11:18 +00001078 ErrorLoc = ((X86Operand*)Operands[OrigErrorInfo])->getStartLoc();
1079 if (ErrorLoc == SMLoc()) ErrorLoc = IDLoc;
1080 }
1081
Chris Lattnerf8840122010-09-15 03:50:11 +00001082 return Error(ErrorLoc, "invalid operand for instruction");
Chris Lattnera008e8a2010-09-06 21:54:15 +00001083 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001084
Chris Lattnerec6789f2010-09-06 20:08:02 +00001085 // If one instruction matched with a missing feature, report this as a
1086 // missing feature.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001087 if ((Match1 == Match_MissingFeature) + (Match2 == Match_MissingFeature) +
1088 (Match3 == Match_MissingFeature) + (Match4 == Match_MissingFeature) == 1){
Chris Lattnerec6789f2010-09-06 20:08:02 +00001089 Error(IDLoc, "instruction requires a CPU feature not currently enabled");
1090 return true;
1091 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001092
Chris Lattnera008e8a2010-09-06 21:54:15 +00001093 // If one instruction matched with an invalid operand, report this as an
1094 // operand failure.
Chris Lattnerfb7000f2010-11-06 18:28:02 +00001095 if ((Match1 == Match_InvalidOperand) + (Match2 == Match_InvalidOperand) +
1096 (Match3 == Match_InvalidOperand) + (Match4 == Match_InvalidOperand) == 1){
Chris Lattnera008e8a2010-09-06 21:54:15 +00001097 Error(IDLoc, "invalid operand for instruction");
1098 return true;
1099 }
Michael J. Spencerc0c8df32010-10-09 11:00:50 +00001100
Chris Lattnerec6789f2010-09-06 20:08:02 +00001101 // If all of these were an outright failure, report it in a useless way.
1102 // FIXME: We should give nicer diagnostics about the exact failure.
Chris Lattnera008e8a2010-09-06 21:54:15 +00001103 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix");
Daniel Dunbarc918d602010-05-04 16:12:42 +00001104 return true;
1105}
1106
1107
Chris Lattner537ca842010-10-30 17:38:55 +00001108bool X86ATTAsmParser::ParseDirective(AsmToken DirectiveID) {
1109 StringRef IDVal = DirectiveID.getIdentifier();
1110 if (IDVal == ".word")
1111 return ParseDirectiveWord(2, DirectiveID.getLoc());
1112 return true;
1113}
1114
1115/// ParseDirectiveWord
1116/// ::= .word [ expression (, expression)* ]
1117bool X86ATTAsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
1118 if (getLexer().isNot(AsmToken::EndOfStatement)) {
1119 for (;;) {
1120 const MCExpr *Value;
1121 if (getParser().ParseExpression(Value))
1122 return true;
1123
1124 getParser().getStreamer().EmitValue(Value, Size, 0 /*addrspace*/);
1125
1126 if (getLexer().is(AsmToken::EndOfStatement))
1127 break;
1128
1129 // FIXME: Improve diagnostic.
1130 if (getLexer().isNot(AsmToken::Comma))
1131 return Error(L, "unexpected token in directive");
1132 Parser.Lex();
1133 }
1134 }
1135
1136 Parser.Lex();
1137 return false;
1138}
1139
1140
1141
1142
Sean Callanane88f5522010-01-23 02:43:15 +00001143extern "C" void LLVMInitializeX86AsmLexer();
1144
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00001145// Force static initialization.
1146extern "C" void LLVMInitializeX86AsmParser() {
Daniel Dunbarf98bc632010-03-18 20:06:02 +00001147 RegisterAsmParser<X86_32ATTAsmParser> X(TheX86_32Target);
1148 RegisterAsmParser<X86_64ATTAsmParser> Y(TheX86_64Target);
Sean Callanane88f5522010-01-23 02:43:15 +00001149 LLVMInitializeX86AsmLexer();
Daniel Dunbar092a9dd2009-07-17 20:42:00 +00001150}
Daniel Dunbar0e2771f2009-07-29 00:02:19 +00001151
Chris Lattner0692ee62010-09-06 19:11:01 +00001152#define GET_REGISTER_MATCHER
1153#define GET_MATCHER_IMPLEMENTATION
Daniel Dunbar0e2771f2009-07-29 00:02:19 +00001154#include "X86GenAsmMatcher.inc"