blob: 6b3c4d85614974ee8a84ddf17e76b05ffddf0bba [file] [log] [blame]
Daniel Dunbar71475772009-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 Cheng11424442011-07-26 00:24:13 +000010#include "MCTargetDesc/X86BaseInfo.h"
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000011#include "X86AsmInstrumentation.h"
Evgeniy Stepanove3804d42014-02-28 12:28:07 +000012#include "X86AsmParserCommon.h"
13#include "X86Operand.h"
Elena Demikhovsky18fd4962015-03-02 15:00:34 +000014#include "X86ISelLowering.h"
Chad Rosier6844ea02012-10-24 22:13:37 +000015#include "llvm/ADT/APFloat.h"
Craig Topper690d8ea2013-07-24 07:33:14 +000016#include "llvm/ADT/STLExtras.h"
Chris Lattner1261b812010-09-22 04:11:10 +000017#include "llvm/ADT/SmallString.h"
18#include "llvm/ADT/SmallVector.h"
Chris Lattner1261b812010-09-22 04:11:10 +000019#include "llvm/ADT/StringSwitch.h"
20#include "llvm/ADT/Twine.h"
Chad Rosier8a244662013-04-02 20:02:33 +000021#include "llvm/MC/MCContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCInst.h"
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000024#include "llvm/MC/MCInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/MC/MCParser/MCAsmLexer.h"
26#include "llvm/MC/MCParser/MCAsmParser.h"
27#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
28#include "llvm/MC/MCRegisterInfo.h"
29#include "llvm/MC/MCStreamer.h"
30#include "llvm/MC/MCSubtargetInfo.h"
31#include "llvm/MC/MCSymbol.h"
32#include "llvm/MC/MCTargetAsmParser.h"
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000033#include "llvm/Support/SourceMgr.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000034#include "llvm/Support/TargetRegistry.h"
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +000035#include "llvm/Support/raw_ostream.h"
Reid Kleckner7b1e1a02014-07-30 22:23:11 +000036#include <algorithm>
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000037#include <memory>
Evan Cheng4d1ca962011-07-08 01:53:10 +000038
Daniel Dunbar71475772009-07-17 20:42:00 +000039using namespace llvm;
40
41namespace {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000042
Chad Rosier5362af92013-04-16 18:15:40 +000043static const char OpPrecedence[] = {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000044 0, // IC_OR
Michael Kupersteine3de07a2015-06-14 12:59:45 +000045 1, // IC_XOR
46 2, // IC_AND
47 3, // IC_LSHIFT
48 3, // IC_RSHIFT
49 4, // IC_PLUS
50 4, // IC_MINUS
51 5, // IC_MULTIPLY
52 5, // IC_DIVIDE
53 6, // IC_RPAREN
54 7, // IC_LPAREN
Chad Rosier5362af92013-04-16 18:15:40 +000055 0, // IC_IMM
56 0 // IC_REGISTER
57};
58
Devang Patel4a6e7782012-01-12 18:03:40 +000059class X86AsmParser : public MCTargetAsmParser {
Evan Cheng91111d22011-07-09 05:47:46 +000060 MCSubtargetInfo &STI;
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000061 const MCInstrInfo &MII;
Chad Rosierf0e87202012-10-25 20:41:34 +000062 ParseInstructionInfo *InstInfo;
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000063 std::unique_ptr<X86AsmInstrumentation> Instrumentation;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000064private:
Alp Tokera5b88a52013-12-02 16:06:06 +000065 SMLoc consumeToken() {
Rafael Espindola961d4692014-11-11 05:18:41 +000066 MCAsmParser &Parser = getParser();
Alp Tokera5b88a52013-12-02 16:06:06 +000067 SMLoc Result = Parser.getTok().getLoc();
68 Parser.Lex();
69 return Result;
70 }
71
Chad Rosier5362af92013-04-16 18:15:40 +000072 enum InfixCalculatorTok {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000073 IC_OR = 0,
Michael Kupersteine3de07a2015-06-14 12:59:45 +000074 IC_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000075 IC_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +000076 IC_LSHIFT,
77 IC_RSHIFT,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000078 IC_PLUS,
Chad Rosier5362af92013-04-16 18:15:40 +000079 IC_MINUS,
80 IC_MULTIPLY,
81 IC_DIVIDE,
82 IC_RPAREN,
83 IC_LPAREN,
84 IC_IMM,
85 IC_REGISTER
86 };
87
88 class InfixCalculator {
89 typedef std::pair< InfixCalculatorTok, int64_t > ICToken;
90 SmallVector<InfixCalculatorTok, 4> InfixOperatorStack;
91 SmallVector<ICToken, 4> PostfixStack;
Michael Liao5bf95782014-12-04 05:20:33 +000092
Chad Rosier5362af92013-04-16 18:15:40 +000093 public:
94 int64_t popOperand() {
95 assert (!PostfixStack.empty() && "Poped an empty stack!");
96 ICToken Op = PostfixStack.pop_back_val();
97 assert ((Op.first == IC_IMM || Op.first == IC_REGISTER)
98 && "Expected and immediate or register!");
99 return Op.second;
100 }
101 void pushOperand(InfixCalculatorTok Op, int64_t Val = 0) {
102 assert ((Op == IC_IMM || Op == IC_REGISTER) &&
103 "Unexpected operand!");
104 PostfixStack.push_back(std::make_pair(Op, Val));
105 }
Michael Liao5bf95782014-12-04 05:20:33 +0000106
Jakub Staszak9c349222013-08-08 15:48:46 +0000107 void popOperator() { InfixOperatorStack.pop_back(); }
Chad Rosier5362af92013-04-16 18:15:40 +0000108 void pushOperator(InfixCalculatorTok Op) {
109 // Push the new operator if the stack is empty.
110 if (InfixOperatorStack.empty()) {
111 InfixOperatorStack.push_back(Op);
112 return;
113 }
Michael Liao5bf95782014-12-04 05:20:33 +0000114
Chad Rosier5362af92013-04-16 18:15:40 +0000115 // Push the new operator if it has a higher precedence than the operator
116 // on the top of the stack or the operator on the top of the stack is a
117 // left parentheses.
118 unsigned Idx = InfixOperatorStack.size() - 1;
119 InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
120 if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
121 InfixOperatorStack.push_back(Op);
122 return;
123 }
Michael Liao5bf95782014-12-04 05:20:33 +0000124
Chad Rosier5362af92013-04-16 18:15:40 +0000125 // The operator on the top of the stack has higher precedence than the
126 // new operator.
127 unsigned ParenCount = 0;
128 while (1) {
129 // Nothing to process.
130 if (InfixOperatorStack.empty())
131 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000132
Chad Rosier5362af92013-04-16 18:15:40 +0000133 Idx = InfixOperatorStack.size() - 1;
134 StackOp = InfixOperatorStack[Idx];
135 if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
136 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000137
Chad Rosier5362af92013-04-16 18:15:40 +0000138 // If we have an even parentheses count and we see a left parentheses,
139 // then stop processing.
140 if (!ParenCount && StackOp == IC_LPAREN)
141 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000142
Chad Rosier5362af92013-04-16 18:15:40 +0000143 if (StackOp == IC_RPAREN) {
144 ++ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000145 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000146 } else if (StackOp == IC_LPAREN) {
147 --ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000148 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000149 } else {
Jakub Staszak9c349222013-08-08 15:48:46 +0000150 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000151 PostfixStack.push_back(std::make_pair(StackOp, 0));
152 }
153 }
154 // Push the new operator.
155 InfixOperatorStack.push_back(Op);
156 }
157 int64_t execute() {
158 // Push any remaining operators onto the postfix stack.
159 while (!InfixOperatorStack.empty()) {
160 InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val();
161 if (StackOp != IC_LPAREN && StackOp != IC_RPAREN)
162 PostfixStack.push_back(std::make_pair(StackOp, 0));
163 }
Michael Liao5bf95782014-12-04 05:20:33 +0000164
Chad Rosier5362af92013-04-16 18:15:40 +0000165 if (PostfixStack.empty())
166 return 0;
Michael Liao5bf95782014-12-04 05:20:33 +0000167
Chad Rosier5362af92013-04-16 18:15:40 +0000168 SmallVector<ICToken, 16> OperandStack;
169 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) {
170 ICToken Op = PostfixStack[i];
171 if (Op.first == IC_IMM || Op.first == IC_REGISTER) {
172 OperandStack.push_back(Op);
173 } else {
174 assert (OperandStack.size() > 1 && "Too few operands.");
175 int64_t Val;
176 ICToken Op2 = OperandStack.pop_back_val();
177 ICToken Op1 = OperandStack.pop_back_val();
178 switch (Op.first) {
179 default:
180 report_fatal_error("Unexpected operator!");
181 break;
182 case IC_PLUS:
183 Val = Op1.second + Op2.second;
184 OperandStack.push_back(std::make_pair(IC_IMM, Val));
185 break;
186 case IC_MINUS:
187 Val = Op1.second - Op2.second;
188 OperandStack.push_back(std::make_pair(IC_IMM, Val));
189 break;
190 case IC_MULTIPLY:
191 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
192 "Multiply operation with an immediate and a register!");
193 Val = Op1.second * Op2.second;
194 OperandStack.push_back(std::make_pair(IC_IMM, Val));
195 break;
196 case IC_DIVIDE:
197 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
198 "Divide operation with an immediate and a register!");
199 assert (Op2.second != 0 && "Division by zero!");
200 Val = Op1.second / Op2.second;
201 OperandStack.push_back(std::make_pair(IC_IMM, Val));
202 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000203 case IC_OR:
204 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
205 "Or operation with an immediate and a register!");
206 Val = Op1.second | Op2.second;
207 OperandStack.push_back(std::make_pair(IC_IMM, Val));
208 break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000209 case IC_XOR:
210 assert(Op1.first == IC_IMM && Op2.first == IC_IMM &&
211 "Xor operation with an immediate and a register!");
212 Val = Op1.second ^ Op2.second;
213 OperandStack.push_back(std::make_pair(IC_IMM, Val));
214 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000215 case IC_AND:
216 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
217 "And operation with an immediate and a register!");
218 Val = Op1.second & Op2.second;
219 OperandStack.push_back(std::make_pair(IC_IMM, Val));
220 break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000221 case IC_LSHIFT:
222 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
223 "Left shift operation with an immediate and a register!");
224 Val = Op1.second << Op2.second;
225 OperandStack.push_back(std::make_pair(IC_IMM, Val));
226 break;
227 case IC_RSHIFT:
228 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
229 "Right shift operation with an immediate and a register!");
230 Val = Op1.second >> Op2.second;
231 OperandStack.push_back(std::make_pair(IC_IMM, Val));
232 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000233 }
234 }
235 }
236 assert (OperandStack.size() == 1 && "Expected a single result.");
237 return OperandStack.pop_back_val().second;
238 }
239 };
240
241 enum IntelExprState {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000242 IES_OR,
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000243 IES_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000244 IES_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000245 IES_LSHIFT,
246 IES_RSHIFT,
Chad Rosier5362af92013-04-16 18:15:40 +0000247 IES_PLUS,
248 IES_MINUS,
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000249 IES_NOT,
Chad Rosier5362af92013-04-16 18:15:40 +0000250 IES_MULTIPLY,
251 IES_DIVIDE,
252 IES_LBRAC,
253 IES_RBRAC,
254 IES_LPAREN,
255 IES_RPAREN,
256 IES_REGISTER,
Chad Rosier5362af92013-04-16 18:15:40 +0000257 IES_INTEGER,
Chad Rosier5362af92013-04-16 18:15:40 +0000258 IES_IDENTIFIER,
259 IES_ERROR
260 };
261
262 class IntelExprStateMachine {
Chad Rosier31246272013-04-17 21:01:45 +0000263 IntelExprState State, PrevState;
Chad Rosier5362af92013-04-16 18:15:40 +0000264 unsigned BaseReg, IndexReg, TmpReg, Scale;
Chad Rosierbfb70992013-04-17 00:11:46 +0000265 int64_t Imm;
Chad Rosier5362af92013-04-16 18:15:40 +0000266 const MCExpr *Sym;
267 StringRef SymName;
Chad Rosierbfb70992013-04-17 00:11:46 +0000268 bool StopOnLBrac, AddImmPrefix;
Chad Rosier5362af92013-04-16 18:15:40 +0000269 InfixCalculator IC;
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000270 InlineAsmIdentifierInfo Info;
Chad Rosier5362af92013-04-16 18:15:40 +0000271 public:
Chad Rosierbfb70992013-04-17 00:11:46 +0000272 IntelExprStateMachine(int64_t imm, bool stoponlbrac, bool addimmprefix) :
Chad Rosier31246272013-04-17 21:01:45 +0000273 State(IES_PLUS), PrevState(IES_ERROR), BaseReg(0), IndexReg(0), TmpReg(0),
Craig Topper062a2ba2014-04-25 05:30:21 +0000274 Scale(1), Imm(imm), Sym(nullptr), StopOnLBrac(stoponlbrac),
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000275 AddImmPrefix(addimmprefix) { Info.clear(); }
Michael Liao5bf95782014-12-04 05:20:33 +0000276
Chad Rosier5362af92013-04-16 18:15:40 +0000277 unsigned getBaseReg() { return BaseReg; }
278 unsigned getIndexReg() { return IndexReg; }
279 unsigned getScale() { return Scale; }
280 const MCExpr *getSym() { return Sym; }
281 StringRef getSymName() { return SymName; }
Chad Rosierbfb70992013-04-17 00:11:46 +0000282 int64_t getImm() { return Imm + IC.execute(); }
Chad Rosieredb1dc82013-05-09 23:48:53 +0000283 bool isValidEndState() {
284 return State == IES_RBRAC || State == IES_INTEGER;
285 }
Chad Rosierbfb70992013-04-17 00:11:46 +0000286 bool getStopOnLBrac() { return StopOnLBrac; }
287 bool getAddImmPrefix() { return AddImmPrefix; }
Chad Rosier31246272013-04-17 21:01:45 +0000288 bool hadError() { return State == IES_ERROR; }
Chad Rosierbfb70992013-04-17 00:11:46 +0000289
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000290 InlineAsmIdentifierInfo &getIdentifierInfo() {
291 return Info;
292 }
293
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000294 void onOr() {
295 IntelExprState CurrState = State;
296 switch (State) {
297 default:
298 State = IES_ERROR;
299 break;
300 case IES_INTEGER:
301 case IES_RPAREN:
302 case IES_REGISTER:
303 State = IES_OR;
304 IC.pushOperator(IC_OR);
305 break;
306 }
307 PrevState = CurrState;
308 }
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000309 void onXor() {
310 IntelExprState CurrState = State;
311 switch (State) {
312 default:
313 State = IES_ERROR;
314 break;
315 case IES_INTEGER:
316 case IES_RPAREN:
317 case IES_REGISTER:
318 State = IES_XOR;
319 IC.pushOperator(IC_XOR);
320 break;
321 }
322 PrevState = CurrState;
323 }
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000324 void onAnd() {
325 IntelExprState CurrState = State;
326 switch (State) {
327 default:
328 State = IES_ERROR;
329 break;
330 case IES_INTEGER:
331 case IES_RPAREN:
332 case IES_REGISTER:
333 State = IES_AND;
334 IC.pushOperator(IC_AND);
335 break;
336 }
337 PrevState = CurrState;
338 }
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000339 void onLShift() {
340 IntelExprState CurrState = State;
341 switch (State) {
342 default:
343 State = IES_ERROR;
344 break;
345 case IES_INTEGER:
346 case IES_RPAREN:
347 case IES_REGISTER:
348 State = IES_LSHIFT;
349 IC.pushOperator(IC_LSHIFT);
350 break;
351 }
352 PrevState = CurrState;
353 }
354 void onRShift() {
355 IntelExprState CurrState = State;
356 switch (State) {
357 default:
358 State = IES_ERROR;
359 break;
360 case IES_INTEGER:
361 case IES_RPAREN:
362 case IES_REGISTER:
363 State = IES_RSHIFT;
364 IC.pushOperator(IC_RSHIFT);
365 break;
366 }
367 PrevState = CurrState;
368 }
Chad Rosier5362af92013-04-16 18:15:40 +0000369 void onPlus() {
Chad Rosier31246272013-04-17 21:01:45 +0000370 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000371 switch (State) {
372 default:
373 State = IES_ERROR;
374 break;
375 case IES_INTEGER:
376 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000377 case IES_REGISTER:
378 State = IES_PLUS;
Chad Rosier5362af92013-04-16 18:15:40 +0000379 IC.pushOperator(IC_PLUS);
Chad Rosier31246272013-04-17 21:01:45 +0000380 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
381 // If we already have a BaseReg, then assume this is the IndexReg with
382 // a scale of 1.
383 if (!BaseReg) {
384 BaseReg = TmpReg;
385 } else {
386 assert (!IndexReg && "BaseReg/IndexReg already set!");
387 IndexReg = TmpReg;
388 Scale = 1;
389 }
390 }
Chad Rosier5362af92013-04-16 18:15:40 +0000391 break;
392 }
Chad Rosier31246272013-04-17 21:01:45 +0000393 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000394 }
395 void onMinus() {
Chad Rosier31246272013-04-17 21:01:45 +0000396 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000397 switch (State) {
398 default:
399 State = IES_ERROR;
400 break;
401 case IES_PLUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000402 case IES_NOT:
Chad Rosier31246272013-04-17 21:01:45 +0000403 case IES_MULTIPLY:
404 case IES_DIVIDE:
Chad Rosier5362af92013-04-16 18:15:40 +0000405 case IES_LPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000406 case IES_RPAREN:
Chad Rosier31246272013-04-17 21:01:45 +0000407 case IES_LBRAC:
408 case IES_RBRAC:
409 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000410 case IES_REGISTER:
411 State = IES_MINUS;
Chad Rosier31246272013-04-17 21:01:45 +0000412 // Only push the minus operator if it is not a unary operator.
413 if (!(CurrState == IES_PLUS || CurrState == IES_MINUS ||
414 CurrState == IES_MULTIPLY || CurrState == IES_DIVIDE ||
415 CurrState == IES_LPAREN || CurrState == IES_LBRAC))
416 IC.pushOperator(IC_MINUS);
417 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
418 // If we already have a BaseReg, then assume this is the IndexReg with
419 // a scale of 1.
420 if (!BaseReg) {
421 BaseReg = TmpReg;
422 } else {
423 assert (!IndexReg && "BaseReg/IndexReg already set!");
424 IndexReg = TmpReg;
425 Scale = 1;
426 }
Chad Rosier5362af92013-04-16 18:15:40 +0000427 }
Chad Rosier5362af92013-04-16 18:15:40 +0000428 break;
429 }
Chad Rosier31246272013-04-17 21:01:45 +0000430 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000431 }
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000432 void onNot() {
433 IntelExprState CurrState = State;
434 switch (State) {
435 default:
436 State = IES_ERROR;
437 break;
438 case IES_PLUS:
439 case IES_NOT:
440 State = IES_NOT;
441 break;
442 }
443 PrevState = CurrState;
444 }
Chad Rosier5362af92013-04-16 18:15:40 +0000445 void onRegister(unsigned Reg) {
Chad Rosier31246272013-04-17 21:01:45 +0000446 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000447 switch (State) {
448 default:
449 State = IES_ERROR;
450 break;
451 case IES_PLUS:
452 case IES_LPAREN:
453 State = IES_REGISTER;
454 TmpReg = Reg;
455 IC.pushOperand(IC_REGISTER);
456 break;
Chad Rosier31246272013-04-17 21:01:45 +0000457 case IES_MULTIPLY:
458 // Index Register - Scale * Register
459 if (PrevState == IES_INTEGER) {
460 assert (!IndexReg && "IndexReg already set!");
461 State = IES_REGISTER;
462 IndexReg = Reg;
463 // Get the scale and replace the 'Scale * Register' with '0'.
464 Scale = IC.popOperand();
465 IC.pushOperand(IC_IMM);
466 IC.popOperator();
467 } else {
468 State = IES_ERROR;
469 }
Chad Rosier5362af92013-04-16 18:15:40 +0000470 break;
471 }
Chad Rosier31246272013-04-17 21:01:45 +0000472 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000473 }
Chad Rosier95ce8892013-04-19 18:39:50 +0000474 void onIdentifierExpr(const MCExpr *SymRef, StringRef SymRefName) {
Chad Rosierdb003992013-04-18 16:28:19 +0000475 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000476 switch (State) {
477 default:
478 State = IES_ERROR;
479 break;
480 case IES_PLUS:
481 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000482 case IES_NOT:
Chad Rosier5362af92013-04-16 18:15:40 +0000483 State = IES_INTEGER;
484 Sym = SymRef;
485 SymName = SymRefName;
486 IC.pushOperand(IC_IMM);
487 break;
488 }
489 }
Kevin Enderby9d117022014-01-23 21:52:41 +0000490 bool onInteger(int64_t TmpInt, StringRef &ErrMsg) {
Chad Rosier31246272013-04-17 21:01:45 +0000491 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000492 switch (State) {
493 default:
494 State = IES_ERROR;
495 break;
496 case IES_PLUS:
497 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000498 case IES_NOT:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000499 case IES_OR:
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000500 case IES_XOR:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000501 case IES_AND:
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000502 case IES_LSHIFT:
503 case IES_RSHIFT:
Chad Rosier5362af92013-04-16 18:15:40 +0000504 case IES_DIVIDE:
Chad Rosier31246272013-04-17 21:01:45 +0000505 case IES_MULTIPLY:
Chad Rosier5362af92013-04-16 18:15:40 +0000506 case IES_LPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000507 State = IES_INTEGER;
Chad Rosier31246272013-04-17 21:01:45 +0000508 if (PrevState == IES_REGISTER && CurrState == IES_MULTIPLY) {
509 // Index Register - Register * Scale
510 assert (!IndexReg && "IndexReg already set!");
511 IndexReg = TmpReg;
512 Scale = TmpInt;
Kevin Enderby9d117022014-01-23 21:52:41 +0000513 if(Scale != 1 && Scale != 2 && Scale != 4 && Scale != 8) {
514 ErrMsg = "scale factor in address must be 1, 2, 4 or 8";
515 return true;
516 }
Chad Rosier31246272013-04-17 21:01:45 +0000517 // Get the scale and replace the 'Register * Scale' with '0'.
518 IC.popOperator();
519 } else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000520 PrevState == IES_OR || PrevState == IES_AND ||
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000521 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
Chad Rosier31246272013-04-17 21:01:45 +0000522 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000523 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000524 PrevState == IES_NOT || PrevState == IES_XOR) &&
Chad Rosier31246272013-04-17 21:01:45 +0000525 CurrState == IES_MINUS) {
526 // Unary minus. No need to pop the minus operand because it was never
527 // pushed.
528 IC.pushOperand(IC_IMM, -TmpInt); // Push -Imm.
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000529 } else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
530 PrevState == IES_OR || PrevState == IES_AND ||
531 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
532 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
533 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000534 PrevState == IES_NOT || PrevState == IES_XOR) &&
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000535 CurrState == IES_NOT) {
536 // Unary not. No need to pop the not operand because it was never
537 // pushed.
538 IC.pushOperand(IC_IMM, ~TmpInt); // Push ~Imm.
Chad Rosier31246272013-04-17 21:01:45 +0000539 } else {
540 IC.pushOperand(IC_IMM, TmpInt);
541 }
Chad Rosier5362af92013-04-16 18:15:40 +0000542 break;
543 }
Chad Rosier31246272013-04-17 21:01:45 +0000544 PrevState = CurrState;
Kevin Enderby9d117022014-01-23 21:52:41 +0000545 return false;
Chad Rosier5362af92013-04-16 18:15:40 +0000546 }
547 void onStar() {
Chad Rosierdb003992013-04-18 16:28:19 +0000548 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000549 switch (State) {
550 default:
551 State = IES_ERROR;
552 break;
553 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000554 case IES_REGISTER:
Chad Rosier5362af92013-04-16 18:15:40 +0000555 case IES_RPAREN:
556 State = IES_MULTIPLY;
557 IC.pushOperator(IC_MULTIPLY);
558 break;
559 }
560 }
561 void onDivide() {
Chad Rosierdb003992013-04-18 16:28:19 +0000562 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000563 switch (State) {
564 default:
565 State = IES_ERROR;
566 break;
567 case IES_INTEGER:
Chad Rosier31246272013-04-17 21:01:45 +0000568 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000569 State = IES_DIVIDE;
570 IC.pushOperator(IC_DIVIDE);
571 break;
572 }
573 }
574 void onLBrac() {
Chad Rosierdb003992013-04-18 16:28:19 +0000575 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000576 switch (State) {
577 default:
578 State = IES_ERROR;
579 break;
580 case IES_RBRAC:
581 State = IES_PLUS;
582 IC.pushOperator(IC_PLUS);
583 break;
584 }
585 }
586 void onRBrac() {
Chad Rosier31246272013-04-17 21:01:45 +0000587 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000588 switch (State) {
589 default:
590 State = IES_ERROR;
591 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000592 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000593 case IES_REGISTER:
Chad Rosier31246272013-04-17 21:01:45 +0000594 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000595 State = IES_RBRAC;
Chad Rosier31246272013-04-17 21:01:45 +0000596 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
597 // If we already have a BaseReg, then assume this is the IndexReg with
598 // a scale of 1.
599 if (!BaseReg) {
600 BaseReg = TmpReg;
601 } else {
602 assert (!IndexReg && "BaseReg/IndexReg already set!");
603 IndexReg = TmpReg;
604 Scale = 1;
605 }
Chad Rosier5362af92013-04-16 18:15:40 +0000606 }
607 break;
608 }
Chad Rosier31246272013-04-17 21:01:45 +0000609 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000610 }
611 void onLParen() {
Chad Rosier31246272013-04-17 21:01:45 +0000612 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000613 switch (State) {
614 default:
615 State = IES_ERROR;
616 break;
617 case IES_PLUS:
618 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000619 case IES_NOT:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000620 case IES_OR:
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000621 case IES_XOR:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000622 case IES_AND:
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000623 case IES_LSHIFT:
624 case IES_RSHIFT:
Chad Rosier5362af92013-04-16 18:15:40 +0000625 case IES_MULTIPLY:
626 case IES_DIVIDE:
Chad Rosier5362af92013-04-16 18:15:40 +0000627 case IES_LPAREN:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000628 // FIXME: We don't handle this type of unary minus or not, yet.
Chad Rosierdb003992013-04-18 16:28:19 +0000629 if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000630 PrevState == IES_OR || PrevState == IES_AND ||
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000631 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
Chad Rosierdb003992013-04-18 16:28:19 +0000632 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000633 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000634 PrevState == IES_NOT || PrevState == IES_XOR) &&
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000635 (CurrState == IES_MINUS || CurrState == IES_NOT)) {
Chad Rosierdb003992013-04-18 16:28:19 +0000636 State = IES_ERROR;
637 break;
638 }
Chad Rosier5362af92013-04-16 18:15:40 +0000639 State = IES_LPAREN;
640 IC.pushOperator(IC_LPAREN);
641 break;
642 }
Chad Rosier31246272013-04-17 21:01:45 +0000643 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000644 }
645 void onRParen() {
Chad Rosierdb003992013-04-18 16:28:19 +0000646 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000647 switch (State) {
648 default:
649 State = IES_ERROR;
650 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000651 case IES_INTEGER:
Chad Rosier31246272013-04-17 21:01:45 +0000652 case IES_REGISTER:
Chad Rosier5362af92013-04-16 18:15:40 +0000653 case IES_RPAREN:
654 State = IES_RPAREN;
655 IC.pushOperator(IC_RPAREN);
656 break;
657 }
658 }
659 };
660
Chris Lattnera3a06812011-10-16 04:47:35 +0000661 bool Error(SMLoc L, const Twine &Msg,
Dmitri Gribenko3238fb72013-05-05 00:40:33 +0000662 ArrayRef<SMRange> Ranges = None,
Chad Rosier4453e842012-10-12 23:09:25 +0000663 bool MatchingInlineAsm = false) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000664 MCAsmParser &Parser = getParser();
Chad Rosier4453e842012-10-12 23:09:25 +0000665 if (MatchingInlineAsm) return true;
Chris Lattnera3a06812011-10-16 04:47:35 +0000666 return Parser.Error(L, Msg, Ranges);
667 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000668
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000669 bool ErrorAndEatStatement(SMLoc L, const Twine &Msg,
670 ArrayRef<SMRange> Ranges = None,
671 bool MatchingInlineAsm = false) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000672 MCAsmParser &Parser = getParser();
673 Parser.eatToEndOfStatement();
674 return Error(L, Msg, Ranges, MatchingInlineAsm);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000675 }
676
David Blaikie960ea3f2014-06-08 16:18:35 +0000677 std::nullptr_t ErrorOperand(SMLoc Loc, StringRef Msg) {
Devang Patel41b9dde2012-01-17 18:00:18 +0000678 Error(Loc, Msg);
Craig Topper062a2ba2014-04-25 05:30:21 +0000679 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +0000680 }
681
David Blaikie960ea3f2014-06-08 16:18:35 +0000682 std::unique_ptr<X86Operand> DefaultMemSIOperand(SMLoc Loc);
683 std::unique_ptr<X86Operand> DefaultMemDIOperand(SMLoc Loc);
Michael Kupersteinffcc7662015-07-23 10:23:48 +0000684 void AddDefaultSrcDestOperands(
685 OperandVector& Operands, std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
686 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst);
David Blaikie960ea3f2014-06-08 16:18:35 +0000687 std::unique_ptr<X86Operand> ParseOperand();
688 std::unique_ptr<X86Operand> ParseATTOperand();
689 std::unique_ptr<X86Operand> ParseIntelOperand();
690 std::unique_ptr<X86Operand> ParseIntelOffsetOfOperator();
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000691 bool ParseIntelDotOperator(const MCExpr *Disp, const MCExpr *&NewDisp);
David Blaikie960ea3f2014-06-08 16:18:35 +0000692 std::unique_ptr<X86Operand> ParseIntelOperator(unsigned OpKind);
693 std::unique_ptr<X86Operand>
694 ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start, unsigned Size);
695 std::unique_ptr<X86Operand>
696 ParseIntelMemOperand(int64_t ImmDisp, SMLoc StartLoc, unsigned Size);
Elena Demikhovsky18fd4962015-03-02 15:00:34 +0000697 std::unique_ptr<X86Operand> ParseRoundingModeOp(SMLoc Start, SMLoc End);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000698 bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End);
David Blaikie960ea3f2014-06-08 16:18:35 +0000699 std::unique_ptr<X86Operand> ParseIntelBracExpression(unsigned SegReg,
700 SMLoc Start,
701 int64_t ImmDisp,
702 unsigned Size);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000703 bool ParseIntelIdentifier(const MCExpr *&Val, StringRef &Identifier,
704 InlineAsmIdentifierInfo &Info,
705 bool IsUnevaluatedOperand, SMLoc &End);
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000706
David Blaikie960ea3f2014-06-08 16:18:35 +0000707 std::unique_ptr<X86Operand> ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000708
David Blaikie960ea3f2014-06-08 16:18:35 +0000709 std::unique_ptr<X86Operand>
710 CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp, unsigned BaseReg,
711 unsigned IndexReg, unsigned Scale, SMLoc Start,
712 SMLoc End, unsigned Size, StringRef Identifier,
713 InlineAsmIdentifierInfo &Info);
Chad Rosier7ca135b2013-03-19 21:11:56 +0000714
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000715 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Evan Cheng481ebb02011-07-27 00:38:12 +0000716 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000717
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +0000718 bool validateInstruction(MCInst &Inst, const OperandVector &Ops);
David Blaikie960ea3f2014-06-08 16:18:35 +0000719 bool processInstruction(MCInst &Inst, const OperandVector &Ops);
Devang Patelde47cce2012-01-18 22:42:29 +0000720
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000721 /// Wrapper around MCStreamer::EmitInstruction(). Possibly adds
722 /// instrumentation around Inst.
David Blaikie960ea3f2014-06-08 16:18:35 +0000723 void EmitInstruction(MCInst &Inst, OperandVector &Operands, MCStreamer &Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000724
Chad Rosier49963552012-10-13 00:26:04 +0000725 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
David Blaikie960ea3f2014-06-08 16:18:35 +0000726 OperandVector &Operands, MCStreamer &Out,
Tim Northover26bb14e2014-08-18 11:49:42 +0000727 uint64_t &ErrorInfo,
Craig Topper39012cc2014-03-09 18:03:14 +0000728 bool MatchingInlineAsm) override;
Chad Rosier9cb988f2012-08-09 22:04:55 +0000729
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000730 void MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op, OperandVector &Operands,
731 MCStreamer &Out, bool MatchingInlineAsm);
732
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000733 bool ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000734 bool MatchingInlineAsm);
735
736 bool MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
737 OperandVector &Operands, MCStreamer &Out,
738 uint64_t &ErrorInfo,
739 bool MatchingInlineAsm);
740
741 bool MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
742 OperandVector &Operands, MCStreamer &Out,
743 uint64_t &ErrorInfo,
744 bool MatchingInlineAsm);
745
Craig Topperfd38cbe2014-08-30 16:48:34 +0000746 bool OmitRegisterFromClobberLists(unsigned RegNo) override;
Nico Weber42f79db2014-07-17 20:24:55 +0000747
David Woodhouse9bbf7ca2014-01-22 15:08:36 +0000748 /// doSrcDstMatch - Returns true if operands are matching in their
749 /// word size (%si and %di, %esi and %edi, etc.). Order depends on
750 /// the parsing mode (Intel vs. AT&T).
751 bool doSrcDstMatch(X86Operand &Op1, X86Operand &Op2);
752
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000753 /// Parses AVX512 specific operand primitives: masked registers ({%k<NUM>}, {z})
754 /// and memory broadcasting ({1to<NUM>}) primitives, updating Operands vector if required.
755 /// \return \c true if no parsing errors occurred, \c false otherwise.
David Blaikie960ea3f2014-06-08 16:18:35 +0000756 bool HandleAVX512Operand(OperandVector &Operands,
757 const MCParsedAsmOperand &Op);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000758
Evan Chengc5e6d2f2011-07-11 03:57:24 +0000759 bool is64BitMode() const {
Evan Cheng4d1ca962011-07-08 01:53:10 +0000760 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000761 return STI.getFeatureBits()[X86::Mode64Bit];
Evan Cheng4d1ca962011-07-08 01:53:10 +0000762 }
Craig Topper3c80d622014-01-06 04:55:54 +0000763 bool is32BitMode() const {
764 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000765 return STI.getFeatureBits()[X86::Mode32Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000766 }
767 bool is16BitMode() const {
768 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000769 return STI.getFeatureBits()[X86::Mode16Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000770 }
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000771 void SwitchMode(unsigned mode) {
772 FeatureBitset AllModes({X86::Mode64Bit, X86::Mode32Bit, X86::Mode16Bit});
773 FeatureBitset OldMode = STI.getFeatureBits() & AllModes;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000774 unsigned FB = ComputeAvailableFeatures(
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000775 STI.ToggleFeature(OldMode.flip(mode)));
Evan Cheng481ebb02011-07-27 00:38:12 +0000776 setAvailableFeatures(FB);
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000777
778 assert(FeatureBitset({mode}) == (STI.getFeatureBits() & AllModes));
Evan Cheng481ebb02011-07-27 00:38:12 +0000779 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000780
Reid Kleckner5b37c182014-08-01 20:21:24 +0000781 unsigned getPointerWidth() {
782 if (is16BitMode()) return 16;
783 if (is32BitMode()) return 32;
784 if (is64BitMode()) return 64;
785 llvm_unreachable("invalid mode");
786 }
787
Chad Rosierc2f055d2013-04-18 16:13:18 +0000788 bool isParsingIntelSyntax() {
789 return getParser().getAssemblerDialect();
790 }
791
Daniel Dunbareefe8612010-07-19 05:44:09 +0000792 /// @name Auto-generated Matcher Functions
793 /// {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000794
Chris Lattner3e4582a2010-09-06 19:11:01 +0000795#define GET_ASSEMBLER_HEADER
796#include "X86GenAsmMatcher.inc"
Michael J. Spencer530ce852010-10-09 11:00:50 +0000797
Daniel Dunbar00331992009-07-29 00:02:19 +0000798 /// }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000799
800public:
Rafael Espindola961d4692014-11-11 05:18:41 +0000801 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &Parser,
802 const MCInstrInfo &mii, const MCTargetOptions &Options)
Colin LeMahieufe2c8b82015-07-27 21:56:53 +0000803 : MCTargetAsmParser(Options), STI(sti), MII(mii), InstInfo(nullptr) {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000804
Daniel Dunbareefe8612010-07-19 05:44:09 +0000805 // Initialize the set of available features.
Evan Cheng91111d22011-07-09 05:47:46 +0000806 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000807 Instrumentation.reset(
808 CreateX86AsmInstrumentation(Options, Parser.getContext(), STI));
Daniel Dunbareefe8612010-07-19 05:44:09 +0000809 }
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000810
Craig Topper39012cc2014-03-09 18:03:14 +0000811 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000812
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000813 void SetFrameRegister(unsigned RegNo) override;
814
David Blaikie960ea3f2014-06-08 16:18:35 +0000815 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
816 SMLoc NameLoc, OperandVector &Operands) override;
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000817
Craig Topper39012cc2014-03-09 18:03:14 +0000818 bool ParseDirective(AsmToken DirectiveID) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000819};
Chris Lattner4eb9df02009-07-29 06:33:53 +0000820} // end anonymous namespace
821
Sean Callanan86c11812010-01-23 00:40:33 +0000822/// @name Auto-generated Match Functions
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000823/// {
Sean Callanan86c11812010-01-23 00:40:33 +0000824
Chris Lattner60db0a62010-02-09 00:34:28 +0000825static unsigned MatchRegisterName(StringRef Name);
Sean Callanan86c11812010-01-23 00:40:33 +0000826
827/// }
Chris Lattner4eb9df02009-07-29 06:33:53 +0000828
Kevin Enderbybc570f22014-01-23 22:34:42 +0000829static bool CheckBaseRegAndIndexReg(unsigned BaseReg, unsigned IndexReg,
830 StringRef &ErrMsg) {
831 // If we have both a base register and an index register make sure they are
832 // both 64-bit or 32-bit registers.
833 // To support VSIB, IndexReg can be 128-bit or 256-bit registers.
834 if (BaseReg != 0 && IndexReg != 0) {
835 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
836 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
837 X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
838 IndexReg != X86::RIZ) {
839 ErrMsg = "base register is 64-bit, but index register is not";
840 return true;
841 }
842 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
843 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
844 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
845 IndexReg != X86::EIZ){
846 ErrMsg = "base register is 32-bit, but index register is not";
847 return true;
848 }
849 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg)) {
850 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg) ||
851 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) {
852 ErrMsg = "base register is 16-bit, but index register is not";
853 return true;
854 }
855 if (((BaseReg == X86::BX || BaseReg == X86::BP) &&
856 IndexReg != X86::SI && IndexReg != X86::DI) ||
857 ((BaseReg == X86::SI || BaseReg == X86::DI) &&
858 IndexReg != X86::BX && IndexReg != X86::BP)) {
859 ErrMsg = "invalid 16-bit base/index register combination";
860 return true;
861 }
862 }
863 }
864 return false;
865}
866
David Woodhouse9bbf7ca2014-01-22 15:08:36 +0000867bool X86AsmParser::doSrcDstMatch(X86Operand &Op1, X86Operand &Op2)
868{
869 // Return true and let a normal complaint about bogus operands happen.
870 if (!Op1.isMem() || !Op2.isMem())
871 return true;
872
873 // Actually these might be the other way round if Intel syntax is
874 // being used. It doesn't matter.
875 unsigned diReg = Op1.Mem.BaseReg;
876 unsigned siReg = Op2.Mem.BaseReg;
877
878 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(siReg))
879 return X86MCRegisterClasses[X86::GR16RegClassID].contains(diReg);
880 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(siReg))
881 return X86MCRegisterClasses[X86::GR32RegClassID].contains(diReg);
882 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(siReg))
883 return X86MCRegisterClasses[X86::GR64RegClassID].contains(diReg);
884 // Again, return true and let another error happen.
885 return true;
886}
887
Devang Patel4a6e7782012-01-12 18:03:40 +0000888bool X86AsmParser::ParseRegister(unsigned &RegNo,
889 SMLoc &StartLoc, SMLoc &EndLoc) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000890 MCAsmParser &Parser = getParser();
Chris Lattnercc2ad082010-01-15 18:27:19 +0000891 RegNo = 0;
Benjamin Kramere3d658b2012-09-07 14:51:35 +0000892 const AsmToken &PercentTok = Parser.getTok();
893 StartLoc = PercentTok.getLoc();
894
895 // If we encounter a %, ignore it. This code handles registers with and
896 // without the prefix, unprefixed registers can occur in cfi directives.
897 if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
Devang Patel41b9dde2012-01-17 18:00:18 +0000898 Parser.Lex(); // Eat percent token.
Kevin Enderby7d912182009-09-03 17:15:07 +0000899
Sean Callanan936b0d32010-01-19 21:44:56 +0000900 const AsmToken &Tok = Parser.getTok();
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000901 EndLoc = Tok.getEndLoc();
902
Devang Patelce6a2ca2012-01-20 22:32:05 +0000903 if (Tok.isNot(AsmToken::Identifier)) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000904 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000905 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000906 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +0000907 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000908
Kevin Enderby7d912182009-09-03 17:15:07 +0000909 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000910
Chris Lattner1261b812010-09-22 04:11:10 +0000911 // If the match failed, try the register name as lowercase.
912 if (RegNo == 0)
Benjamin Kramer20baffb2011-11-06 20:37:06 +0000913 RegNo = MatchRegisterName(Tok.getString().lower());
Michael J. Spencer530ce852010-10-09 11:00:50 +0000914
Evan Chengeda1d4f2011-07-27 23:22:03 +0000915 if (!is64BitMode()) {
Eric Christopherc0a5aae2013-12-20 02:04:49 +0000916 // FIXME: This should be done using Requires<Not64BitMode> and
Evan Chengeda1d4f2011-07-27 23:22:03 +0000917 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
918 // checked.
919 // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
920 // REX prefix.
921 if (RegNo == X86::RIZ ||
922 X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
923 X86II::isX86_64NonExtLowByteReg(RegNo) ||
924 X86II::isX86_64ExtendedReg(RegNo))
Benjamin Kramer1930b002011-10-16 12:10:27 +0000925 return Error(StartLoc, "register %"
926 + Tok.getString() + " is only available in 64-bit mode",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000927 SMRange(StartLoc, EndLoc));
Evan Chengeda1d4f2011-07-27 23:22:03 +0000928 }
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +0000929
Chris Lattner1261b812010-09-22 04:11:10 +0000930 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
931 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000932 RegNo = X86::ST0;
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000933 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000934
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000935 // Check to see if we have '(4)' after %st.
936 if (getLexer().isNot(AsmToken::LParen))
937 return false;
938 // Lex the paren.
939 getParser().Lex();
940
941 const AsmToken &IntTok = Parser.getTok();
942 if (IntTok.isNot(AsmToken::Integer))
943 return Error(IntTok.getLoc(), "expected stack index");
944 switch (IntTok.getIntVal()) {
945 case 0: RegNo = X86::ST0; break;
946 case 1: RegNo = X86::ST1; break;
947 case 2: RegNo = X86::ST2; break;
948 case 3: RegNo = X86::ST3; break;
949 case 4: RegNo = X86::ST4; break;
950 case 5: RegNo = X86::ST5; break;
951 case 6: RegNo = X86::ST6; break;
952 case 7: RegNo = X86::ST7; break;
953 default: return Error(IntTok.getLoc(), "invalid stack index");
954 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000955
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000956 if (getParser().Lex().isNot(AsmToken::RParen))
957 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000958
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000959 EndLoc = Parser.getTok().getEndLoc();
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000960 Parser.Lex(); // Eat ')'
961 return false;
962 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000963
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000964 EndLoc = Parser.getTok().getEndLoc();
965
Chris Lattner80486622010-06-24 07:29:18 +0000966 // If this is "db[0-7]", match it as an alias
967 // for dr[0-7].
968 if (RegNo == 0 && Tok.getString().size() == 3 &&
969 Tok.getString().startswith("db")) {
970 switch (Tok.getString()[2]) {
971 case '0': RegNo = X86::DR0; break;
972 case '1': RegNo = X86::DR1; break;
973 case '2': RegNo = X86::DR2; break;
974 case '3': RegNo = X86::DR3; break;
975 case '4': RegNo = X86::DR4; break;
976 case '5': RegNo = X86::DR5; break;
977 case '6': RegNo = X86::DR6; break;
978 case '7': RegNo = X86::DR7; break;
979 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000980
Chris Lattner80486622010-06-24 07:29:18 +0000981 if (RegNo != 0) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000982 EndLoc = Parser.getTok().getEndLoc();
Chris Lattner80486622010-06-24 07:29:18 +0000983 Parser.Lex(); // Eat it.
984 return false;
985 }
986 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000987
Devang Patelce6a2ca2012-01-20 22:32:05 +0000988 if (RegNo == 0) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000989 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000990 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000991 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +0000992 }
Daniel Dunbar00331992009-07-29 00:02:19 +0000993
Sean Callanana83fd7d2010-01-19 20:27:46 +0000994 Parser.Lex(); // Eat identifier token.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000995 return false;
Daniel Dunbar71475772009-07-17 20:42:00 +0000996}
997
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000998void X86AsmParser::SetFrameRegister(unsigned RegNo) {
Yuri Gorshenine8c81fd2014-10-07 11:03:09 +0000999 Instrumentation->SetInitialFrameRegister(RegNo);
Yuri Gorshenin3939dec2014-09-10 09:45:49 +00001000}
1001
David Blaikie960ea3f2014-06-08 16:18:35 +00001002std::unique_ptr<X86Operand> X86AsmParser::DefaultMemSIOperand(SMLoc Loc) {
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00001003 unsigned basereg =
1004 is64BitMode() ? X86::RSI : (is32BitMode() ? X86::ESI : X86::SI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001005 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001006 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1007 /*BaseReg=*/basereg, /*IndexReg=*/0, /*Scale=*/1,
1008 Loc, Loc, 0);
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00001009}
1010
David Blaikie960ea3f2014-06-08 16:18:35 +00001011std::unique_ptr<X86Operand> X86AsmParser::DefaultMemDIOperand(SMLoc Loc) {
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001012 unsigned basereg =
1013 is64BitMode() ? X86::RDI : (is32BitMode() ? X86::EDI : X86::DI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001014 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001015 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1016 /*BaseReg=*/basereg, /*IndexReg=*/0, /*Scale=*/1,
1017 Loc, Loc, 0);
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001018}
1019
Michael Kupersteinffcc7662015-07-23 10:23:48 +00001020void X86AsmParser::AddDefaultSrcDestOperands(
1021 OperandVector& Operands, std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
1022 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst) {
1023 if (isParsingIntelSyntax()) {
1024 Operands.push_back(std::move(Dst));
1025 Operands.push_back(std::move(Src));
1026 }
1027 else {
1028 Operands.push_back(std::move(Src));
1029 Operands.push_back(std::move(Dst));
1030 }
1031}
1032
David Blaikie960ea3f2014-06-08 16:18:35 +00001033std::unique_ptr<X86Operand> X86AsmParser::ParseOperand() {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00001034 if (isParsingIntelSyntax())
Devang Patel46831de2012-01-12 01:36:43 +00001035 return ParseIntelOperand();
1036 return ParseATTOperand();
1037}
1038
Devang Patel41b9dde2012-01-17 18:00:18 +00001039/// getIntelMemOperandSize - Return intel memory operand size.
1040static unsigned getIntelMemOperandSize(StringRef OpStr) {
Chad Rosierb6b8e962012-09-11 21:10:25 +00001041 unsigned Size = StringSwitch<unsigned>(OpStr)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001042 .Cases("BYTE", "byte", 8)
1043 .Cases("WORD", "word", 16)
1044 .Cases("DWORD", "dword", 32)
1045 .Cases("QWORD", "qword", 64)
1046 .Cases("XWORD", "xword", 80)
Michael Kuperstein69e40a42015-07-19 11:03:08 +00001047 .Cases("TBYTE", "tbyte", 80)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001048 .Cases("XMMWORD", "xmmword", 128)
1049 .Cases("YMMWORD", "ymmword", 256)
Craig Topper9ac290a2014-01-17 07:37:39 +00001050 .Cases("ZMMWORD", "zmmword", 512)
Craig Topper2d4b3c92014-01-17 07:44:10 +00001051 .Cases("OPAQUE", "opaque", -1U) // needs to be non-zero, but doesn't matter
Chad Rosierb6b8e962012-09-11 21:10:25 +00001052 .Default(0);
1053 return Size;
Devang Patel46831de2012-01-12 01:36:43 +00001054}
1055
David Blaikie960ea3f2014-06-08 16:18:35 +00001056std::unique_ptr<X86Operand> X86AsmParser::CreateMemForInlineAsm(
1057 unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg,
1058 unsigned Scale, SMLoc Start, SMLoc End, unsigned Size, StringRef Identifier,
1059 InlineAsmIdentifierInfo &Info) {
Reid Kleckner5b37c182014-08-01 20:21:24 +00001060 // If we found a decl other than a VarDecl, then assume it is a FuncDecl or
1061 // some other label reference.
1062 if (isa<MCSymbolRefExpr>(Disp) && Info.OpDecl && !Info.IsVarDecl) {
1063 // Insert an explicit size if the user didn't have one.
1064 if (!Size) {
1065 Size = getPointerWidth();
1066 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_SizeDirective, Start,
1067 /*Len=*/0, Size));
1068 }
1069
1070 // Create an absolute memory reference in order to match against
1071 // instructions taking a PC relative operand.
Craig Topper055845f2015-01-02 07:02:25 +00001072 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size,
1073 Identifier, Info.OpDecl);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001074 }
1075
1076 // We either have a direct symbol reference, or an offset from a symbol. The
1077 // parser always puts the symbol on the LHS, so look there for size
1078 // calculation purposes.
1079 const MCBinaryExpr *BinOp = dyn_cast<MCBinaryExpr>(Disp);
1080 bool IsSymRef =
1081 isa<MCSymbolRefExpr>(BinOp ? BinOp->getLHS() : Disp);
1082 if (IsSymRef) {
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001083 if (!Size) {
1084 Size = Info.Type * 8; // Size is in terms of bits in this context.
1085 if (Size)
1086 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_SizeDirective, Start,
1087 /*Len=*/0, Size));
1088 }
Chad Rosier7ca135b2013-03-19 21:11:56 +00001089 }
1090
Chad Rosier7ca135b2013-03-19 21:11:56 +00001091 // When parsing inline assembly we set the base register to a non-zero value
Chad Rosier175d0ae2013-04-12 18:21:18 +00001092 // if we don't know the actual value at this time. This is necessary to
Chad Rosier7ca135b2013-03-19 21:11:56 +00001093 // get the matching correct in some cases.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001094 BaseReg = BaseReg ? BaseReg : 1;
Craig Topper055845f2015-01-02 07:02:25 +00001095 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1096 IndexReg, Scale, Start, End, Size, Identifier,
1097 Info.OpDecl);
Chad Rosier7ca135b2013-03-19 21:11:56 +00001098}
1099
Chad Rosierd383db52013-04-12 20:20:54 +00001100static void
1101RewriteIntelBracExpression(SmallVectorImpl<AsmRewrite> *AsmRewrites,
1102 StringRef SymName, int64_t ImmDisp,
1103 int64_t FinalImmDisp, SMLoc &BracLoc,
1104 SMLoc &StartInBrac, SMLoc &End) {
1105 // Remove the '[' and ']' from the IR string.
1106 AsmRewrites->push_back(AsmRewrite(AOK_Skip, BracLoc, 1));
1107 AsmRewrites->push_back(AsmRewrite(AOK_Skip, End, 1));
1108
1109 // If ImmDisp is non-zero, then we parsed a displacement before the
1110 // bracketed expression (i.e., ImmDisp [ BaseReg + Scale*IndexReg + Disp])
1111 // If ImmDisp doesn't match the displacement computed by the state machine
1112 // then we have an additional displacement in the bracketed expression.
1113 if (ImmDisp != FinalImmDisp) {
1114 if (ImmDisp) {
1115 // We have an immediate displacement before the bracketed expression.
1116 // Adjust this to match the final immediate displacement.
1117 bool Found = false;
1118 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
1119 E = AsmRewrites->end(); I != E; ++I) {
1120 if ((*I).Loc.getPointer() > BracLoc.getPointer())
1121 continue;
Chad Rosierbfb70992013-04-17 00:11:46 +00001122 if ((*I).Kind == AOK_ImmPrefix || (*I).Kind == AOK_Imm) {
1123 assert (!Found && "ImmDisp already rewritten.");
Chad Rosierd383db52013-04-12 20:20:54 +00001124 (*I).Kind = AOK_Imm;
1125 (*I).Len = BracLoc.getPointer() - (*I).Loc.getPointer();
1126 (*I).Val = FinalImmDisp;
1127 Found = true;
1128 break;
1129 }
1130 }
1131 assert (Found && "Unable to rewrite ImmDisp.");
Duncan Sands0480b9b2013-05-13 07:50:47 +00001132 (void)Found;
Chad Rosierd383db52013-04-12 20:20:54 +00001133 } else {
1134 // We have a symbolic and an immediate displacement, but no displacement
Chad Rosierbfb70992013-04-17 00:11:46 +00001135 // before the bracketed expression. Put the immediate displacement
Chad Rosierd383db52013-04-12 20:20:54 +00001136 // before the bracketed expression.
Chad Rosierbfb70992013-04-17 00:11:46 +00001137 AsmRewrites->push_back(AsmRewrite(AOK_Imm, BracLoc, 0, FinalImmDisp));
Chad Rosierd383db52013-04-12 20:20:54 +00001138 }
1139 }
1140 // Remove all the ImmPrefix rewrites within the brackets.
1141 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
1142 E = AsmRewrites->end(); I != E; ++I) {
1143 if ((*I).Loc.getPointer() < StartInBrac.getPointer())
1144 continue;
1145 if ((*I).Kind == AOK_ImmPrefix)
1146 (*I).Kind = AOK_Delete;
1147 }
1148 const char *SymLocPtr = SymName.data();
Michael Liao5bf95782014-12-04 05:20:33 +00001149 // Skip everything before the symbol.
Chad Rosierd383db52013-04-12 20:20:54 +00001150 if (unsigned Len = SymLocPtr - StartInBrac.getPointer()) {
1151 assert(Len > 0 && "Expected a non-negative length.");
1152 AsmRewrites->push_back(AsmRewrite(AOK_Skip, StartInBrac, Len));
1153 }
1154 // Skip everything after the symbol.
1155 if (unsigned Len = End.getPointer() - (SymLocPtr + SymName.size())) {
1156 SMLoc Loc = SMLoc::getFromPointer(SymLocPtr + SymName.size());
1157 assert(Len > 0 && "Expected a non-negative length.");
1158 AsmRewrites->push_back(AsmRewrite(AOK_Skip, Loc, Len));
1159 }
1160}
1161
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001162bool X86AsmParser::ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001163 MCAsmParser &Parser = getParser();
Chad Rosier6844ea02012-10-24 22:13:37 +00001164 const AsmToken &Tok = Parser.getTok();
Chad Rosier51afe632012-06-27 22:34:28 +00001165
Chad Rosier5c118fd2013-01-14 22:31:35 +00001166 bool Done = false;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001167 while (!Done) {
1168 bool UpdateLocLex = true;
1169
1170 // The period in the dot operator (e.g., [ebx].foo.bar) is parsed as an
1171 // identifier. Don't try an parse it as a register.
1172 if (Tok.getString().startswith("."))
1173 break;
Michael Liao5bf95782014-12-04 05:20:33 +00001174
Chad Rosierbfb70992013-04-17 00:11:46 +00001175 // If we're parsing an immediate expression, we don't expect a '['.
1176 if (SM.getStopOnLBrac() && getLexer().getKind() == AsmToken::LBrac)
1177 break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001178
David Majnemer6a5b8122014-06-19 01:25:43 +00001179 AsmToken::TokenKind TK = getLexer().getKind();
1180 switch (TK) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001181 default: {
1182 if (SM.isValidEndState()) {
1183 Done = true;
1184 break;
1185 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001186 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001187 }
Chad Rosierbfb70992013-04-17 00:11:46 +00001188 case AsmToken::EndOfStatement: {
1189 Done = true;
1190 break;
1191 }
David Majnemer6a5b8122014-06-19 01:25:43 +00001192 case AsmToken::String:
Chad Rosier5c118fd2013-01-14 22:31:35 +00001193 case AsmToken::Identifier: {
Chad Rosier175d0ae2013-04-12 18:21:18 +00001194 // This could be a register or a symbolic displacement.
1195 unsigned TmpReg;
Chad Rosier95ce8892013-04-19 18:39:50 +00001196 const MCExpr *Val;
Chad Rosier152749c2013-04-12 18:54:20 +00001197 SMLoc IdentLoc = Tok.getLoc();
1198 StringRef Identifier = Tok.getString();
David Majnemer6a5b8122014-06-19 01:25:43 +00001199 if (TK != AsmToken::String && !ParseRegister(TmpReg, IdentLoc, End)) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001200 SM.onRegister(TmpReg);
1201 UpdateLocLex = false;
1202 break;
Chad Rosier95ce8892013-04-19 18:39:50 +00001203 } else {
1204 if (!isParsingInlineAsm()) {
1205 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001206 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier95ce8892013-04-19 18:39:50 +00001207 } else {
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001208 // This is a dot operator, not an adjacent identifier.
1209 if (Identifier.find('.') != StringRef::npos) {
1210 return false;
1211 } else {
1212 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
1213 if (ParseIntelIdentifier(Val, Identifier, Info,
1214 /*Unevaluated=*/false, End))
1215 return true;
1216 }
Chad Rosier95ce8892013-04-19 18:39:50 +00001217 }
1218 SM.onIdentifierExpr(Val, Identifier);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001219 UpdateLocLex = false;
1220 break;
1221 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001222 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001223 }
Kevin Enderby36eba252013-12-19 23:16:14 +00001224 case AsmToken::Integer: {
Kevin Enderby9d117022014-01-23 21:52:41 +00001225 StringRef ErrMsg;
Chad Rosierbfb70992013-04-17 00:11:46 +00001226 if (isParsingInlineAsm() && SM.getAddImmPrefix())
Chad Rosier4a7005e2013-04-05 16:28:55 +00001227 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix,
1228 Tok.getLoc()));
Kevin Enderby36eba252013-12-19 23:16:14 +00001229 // Look for 'b' or 'f' following an Integer as a directional label
1230 SMLoc Loc = getTok().getLoc();
1231 int64_t IntVal = getTok().getIntVal();
1232 End = consumeToken();
1233 UpdateLocLex = false;
1234 if (getLexer().getKind() == AsmToken::Identifier) {
1235 StringRef IDVal = getTok().getString();
1236 if (IDVal == "f" || IDVal == "b") {
1237 MCSymbol *Sym =
Jim Grosbach6f482002015-05-18 18:43:14 +00001238 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b");
Kevin Enderby36eba252013-12-19 23:16:14 +00001239 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Michael Liao5bf95782014-12-04 05:20:33 +00001240 const MCExpr *Val =
Jim Grosbach13760bd2015-05-30 01:25:56 +00001241 MCSymbolRefExpr::create(Sym, Variant, getContext());
Kevin Enderby36eba252013-12-19 23:16:14 +00001242 if (IDVal == "b" && Sym->isUndefined())
1243 return Error(Loc, "invalid reference to undefined symbol");
1244 StringRef Identifier = Sym->getName();
1245 SM.onIdentifierExpr(Val, Identifier);
1246 End = consumeToken();
1247 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001248 if (SM.onInteger(IntVal, ErrMsg))
1249 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001250 }
1251 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001252 if (SM.onInteger(IntVal, ErrMsg))
1253 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001254 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001255 break;
Kevin Enderby36eba252013-12-19 23:16:14 +00001256 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001257 case AsmToken::Plus: SM.onPlus(); break;
1258 case AsmToken::Minus: SM.onMinus(); break;
Ehsan Akhgari4103da62014-07-04 19:13:05 +00001259 case AsmToken::Tilde: SM.onNot(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001260 case AsmToken::Star: SM.onStar(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001261 case AsmToken::Slash: SM.onDivide(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001262 case AsmToken::Pipe: SM.onOr(); break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +00001263 case AsmToken::Caret: SM.onXor(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001264 case AsmToken::Amp: SM.onAnd(); break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +00001265 case AsmToken::LessLess:
1266 SM.onLShift(); break;
1267 case AsmToken::GreaterGreater:
1268 SM.onRShift(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001269 case AsmToken::LBrac: SM.onLBrac(); break;
1270 case AsmToken::RBrac: SM.onRBrac(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001271 case AsmToken::LParen: SM.onLParen(); break;
1272 case AsmToken::RParen: SM.onRParen(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001273 }
Chad Rosier31246272013-04-17 21:01:45 +00001274 if (SM.hadError())
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001275 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier31246272013-04-17 21:01:45 +00001276
Alp Tokera5b88a52013-12-02 16:06:06 +00001277 if (!Done && UpdateLocLex)
1278 End = consumeToken();
Devang Patel41b9dde2012-01-17 18:00:18 +00001279 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001280 return false;
Chad Rosier5362af92013-04-16 18:15:40 +00001281}
1282
David Blaikie960ea3f2014-06-08 16:18:35 +00001283std::unique_ptr<X86Operand>
1284X86AsmParser::ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
1285 int64_t ImmDisp, unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001286 MCAsmParser &Parser = getParser();
Chad Rosier5362af92013-04-16 18:15:40 +00001287 const AsmToken &Tok = Parser.getTok();
1288 SMLoc BracLoc = Tok.getLoc(), End = Tok.getEndLoc();
1289 if (getLexer().isNot(AsmToken::LBrac))
1290 return ErrorOperand(BracLoc, "Expected '[' token!");
1291 Parser.Lex(); // Eat '['
1292
1293 SMLoc StartInBrac = Tok.getLoc();
1294 // Parse [ Symbol + ImmDisp ] and [ BaseReg + Scale*IndexReg + ImmDisp ]. We
1295 // may have already parsed an immediate displacement before the bracketed
1296 // expression.
Chad Rosierbfb70992013-04-17 00:11:46 +00001297 IntelExprStateMachine SM(ImmDisp, /*StopOnLBrac=*/false, /*AddImmPrefix=*/true);
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001298 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001299 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +00001300
Craig Topper062a2ba2014-04-25 05:30:21 +00001301 const MCExpr *Disp = nullptr;
Chad Rosier175d0ae2013-04-12 18:21:18 +00001302 if (const MCExpr *Sym = SM.getSym()) {
Chad Rosierd383db52013-04-12 20:20:54 +00001303 // A symbolic displacement.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001304 Disp = Sym;
Chad Rosierd383db52013-04-12 20:20:54 +00001305 if (isParsingInlineAsm())
1306 RewriteIntelBracExpression(InstInfo->AsmRewrites, SM.getSymName(),
Chad Rosier5362af92013-04-16 18:15:40 +00001307 ImmDisp, SM.getImm(), BracLoc, StartInBrac,
Chad Rosierd383db52013-04-12 20:20:54 +00001308 End);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001309 }
1310
1311 if (SM.getImm() || !Disp) {
Jim Grosbach13760bd2015-05-30 01:25:56 +00001312 const MCExpr *Imm = MCConstantExpr::create(SM.getImm(), getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001313 if (Disp)
Jim Grosbach13760bd2015-05-30 01:25:56 +00001314 Disp = MCBinaryExpr::createAdd(Disp, Imm, getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001315 else
1316 Disp = Imm; // An immediate displacement only.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001317 }
Devang Pateld0930ff2012-01-20 21:21:01 +00001318
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001319 // Parse struct field access. Intel requires a dot, but MSVC doesn't. MSVC
1320 // will in fact do global lookup the field name inside all global typedefs,
1321 // but we don't emulate that.
1322 if (Tok.getString().find('.') != StringRef::npos) {
Chad Rosier911c1f32012-10-25 17:37:43 +00001323 const MCExpr *NewDisp;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001324 if (ParseIntelDotOperator(Disp, NewDisp))
Craig Topper062a2ba2014-04-25 05:30:21 +00001325 return nullptr;
Michael Liao5bf95782014-12-04 05:20:33 +00001326
Chad Rosier70f47592013-04-10 20:07:47 +00001327 End = Tok.getEndLoc();
Chad Rosier911c1f32012-10-25 17:37:43 +00001328 Parser.Lex(); // Eat the field.
1329 Disp = NewDisp;
1330 }
Chad Rosier5dcb4662012-10-24 22:21:50 +00001331
Chad Rosier5c118fd2013-01-14 22:31:35 +00001332 int BaseReg = SM.getBaseReg();
1333 int IndexReg = SM.getIndexReg();
Chad Rosier175d0ae2013-04-12 18:21:18 +00001334 int Scale = SM.getScale();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001335 if (!isParsingInlineAsm()) {
1336 // handle [-42]
1337 if (!BaseReg && !IndexReg) {
1338 if (!SegReg)
Craig Topper055845f2015-01-02 07:02:25 +00001339 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size);
1340 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1341 Start, End, Size);
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001342 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00001343 StringRef ErrMsg;
1344 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
1345 Error(StartInBrac, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00001346 return nullptr;
Kevin Enderbybc570f22014-01-23 22:34:42 +00001347 }
Craig Topper055845f2015-01-02 07:02:25 +00001348 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1349 IndexReg, Scale, Start, End, Size);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001350 }
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001351
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001352 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001353 return CreateMemForInlineAsm(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001354 End, Size, SM.getSymName(), Info);
Devang Patel41b9dde2012-01-17 18:00:18 +00001355}
1356
Chad Rosier8a244662013-04-02 20:02:33 +00001357// Inline assembly may use variable names with namespace alias qualifiers.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001358bool X86AsmParser::ParseIntelIdentifier(const MCExpr *&Val,
1359 StringRef &Identifier,
1360 InlineAsmIdentifierInfo &Info,
1361 bool IsUnevaluatedOperand, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001362 MCAsmParser &Parser = getParser();
Chad Rosier95ce8892013-04-19 18:39:50 +00001363 assert (isParsingInlineAsm() && "Expected to be parsing inline assembly.");
Craig Topper062a2ba2014-04-25 05:30:21 +00001364 Val = nullptr;
Chad Rosier8a244662013-04-02 20:02:33 +00001365
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001366 StringRef LineBuf(Identifier.data());
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001367 void *Result =
1368 SemaCallback->LookupInlineAsmIdentifier(LineBuf, Info, IsUnevaluatedOperand);
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001369
Chad Rosier8a244662013-04-02 20:02:33 +00001370 const AsmToken &Tok = Parser.getTok();
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001371 SMLoc Loc = Tok.getLoc();
John McCallf73981b2013-05-03 00:15:41 +00001372
1373 // Advance the token stream until the end of the current token is
1374 // after the end of what the frontend claimed.
1375 const char *EndPtr = Tok.getLoc().getPointer() + LineBuf.size();
1376 while (true) {
1377 End = Tok.getEndLoc();
1378 getLexer().Lex();
1379
1380 assert(End.getPointer() <= EndPtr && "frontend claimed part of a token?");
1381 if (End.getPointer() == EndPtr) break;
Chad Rosier8a244662013-04-02 20:02:33 +00001382 }
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001383 Identifier = LineBuf;
1384
1385 // If the identifier lookup was unsuccessful, assume that we are dealing with
1386 // a label.
1387 if (!Result) {
Ehsan Akhgaribb6bb072014-09-22 20:40:36 +00001388 StringRef InternalName =
1389 SemaCallback->LookupInlineAsmLabel(Identifier, getSourceManager(),
1390 Loc, false);
1391 assert(InternalName.size() && "We should have an internal name here.");
1392 // Push a rewrite for replacing the identifier name with the internal name.
1393 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Label, Loc,
1394 Identifier.size(),
1395 InternalName));
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001396 }
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001397
1398 // Create the symbol reference.
Jim Grosbach6f482002015-05-18 18:43:14 +00001399 MCSymbol *Sym = getContext().getOrCreateSymbol(Identifier);
Chad Rosier8a244662013-04-02 20:02:33 +00001400 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach13760bd2015-05-30 01:25:56 +00001401 Val = MCSymbolRefExpr::create(Sym, Variant, getParser().getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001402 return false;
Chad Rosier8a244662013-04-02 20:02:33 +00001403}
1404
David Majnemeraa34d792013-08-27 21:56:17 +00001405/// \brief Parse intel style segment override.
David Blaikie960ea3f2014-06-08 16:18:35 +00001406std::unique_ptr<X86Operand>
1407X86AsmParser::ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start,
1408 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001409 MCAsmParser &Parser = getParser();
David Majnemeraa34d792013-08-27 21:56:17 +00001410 assert(SegReg != 0 && "Tried to parse a segment override without a segment!");
1411 const AsmToken &Tok = Parser.getTok(); // Eat colon.
1412 if (Tok.isNot(AsmToken::Colon))
1413 return ErrorOperand(Tok.getLoc(), "Expected ':' token!");
1414 Parser.Lex(); // Eat ':'
Devang Patel41b9dde2012-01-17 18:00:18 +00001415
David Majnemeraa34d792013-08-27 21:56:17 +00001416 int64_t ImmDisp = 0;
Chad Rosier1530ba52013-03-27 21:49:56 +00001417 if (getLexer().is(AsmToken::Integer)) {
David Majnemeraa34d792013-08-27 21:56:17 +00001418 ImmDisp = Tok.getIntVal();
1419 AsmToken ImmDispToken = Parser.Lex(); // Eat the integer.
1420
Chad Rosier1530ba52013-03-27 21:49:56 +00001421 if (isParsingInlineAsm())
David Majnemeraa34d792013-08-27 21:56:17 +00001422 InstInfo->AsmRewrites->push_back(
1423 AsmRewrite(AOK_ImmPrefix, ImmDispToken.getLoc()));
1424
1425 if (getLexer().isNot(AsmToken::LBrac)) {
1426 // An immediate following a 'segment register', 'colon' token sequence can
1427 // be followed by a bracketed expression. If it isn't we know we have our
1428 // final segment override.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001429 const MCExpr *Disp = MCConstantExpr::create(ImmDisp, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001430 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp,
1431 /*BaseReg=*/0, /*IndexReg=*/0, /*Scale=*/1,
1432 Start, ImmDispToken.getEndLoc(), Size);
David Majnemeraa34d792013-08-27 21:56:17 +00001433 }
Chad Rosier1530ba52013-03-27 21:49:56 +00001434 }
1435
Chad Rosier91c82662012-10-24 17:22:29 +00001436 if (getLexer().is(AsmToken::LBrac))
Chad Rosierfce4fab2013-04-08 17:43:47 +00001437 return ParseIntelBracExpression(SegReg, Start, ImmDisp, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001438
David Majnemeraa34d792013-08-27 21:56:17 +00001439 const MCExpr *Val;
1440 SMLoc End;
1441 if (!isParsingInlineAsm()) {
1442 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001443 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
David Majnemeraa34d792013-08-27 21:56:17 +00001444
Craig Topper055845f2015-01-02 07:02:25 +00001445 return X86Operand::CreateMem(getPointerWidth(), Val, Start, End, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001446 }
Devang Patel41b9dde2012-01-17 18:00:18 +00001447
David Majnemeraa34d792013-08-27 21:56:17 +00001448 InlineAsmIdentifierInfo Info;
1449 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001450 if (ParseIntelIdentifier(Val, Identifier, Info,
1451 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001452 return nullptr;
David Majnemeraa34d792013-08-27 21:56:17 +00001453 return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0,/*IndexReg=*/0,
1454 /*Scale=*/1, Start, End, Size, Identifier, Info);
1455}
1456
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001457//ParseRoundingModeOp - Parse AVX-512 rounding mode operand
1458std::unique_ptr<X86Operand>
1459X86AsmParser::ParseRoundingModeOp(SMLoc Start, SMLoc End) {
1460 MCAsmParser &Parser = getParser();
1461 const AsmToken &Tok = Parser.getTok();
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001462 // Eat "{" and mark the current place.
1463 const SMLoc consumedToken = consumeToken();
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001464 if (Tok.getIdentifier().startswith("r")){
1465 int rndMode = StringSwitch<int>(Tok.getIdentifier())
1466 .Case("rn", X86::STATIC_ROUNDING::TO_NEAREST_INT)
1467 .Case("rd", X86::STATIC_ROUNDING::TO_NEG_INF)
1468 .Case("ru", X86::STATIC_ROUNDING::TO_POS_INF)
1469 .Case("rz", X86::STATIC_ROUNDING::TO_ZERO)
1470 .Default(-1);
1471 if (-1 == rndMode)
1472 return ErrorOperand(Tok.getLoc(), "Invalid rounding mode.");
1473 Parser.Lex(); // Eat "r*" of r*-sae
1474 if (!getLexer().is(AsmToken::Minus))
1475 return ErrorOperand(Tok.getLoc(), "Expected - at this point");
1476 Parser.Lex(); // Eat "-"
1477 Parser.Lex(); // Eat the sae
1478 if (!getLexer().is(AsmToken::RCurly))
1479 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1480 Parser.Lex(); // Eat "}"
1481 const MCExpr *RndModeOp =
Jim Grosbach13760bd2015-05-30 01:25:56 +00001482 MCConstantExpr::create(rndMode, Parser.getContext());
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001483 return X86Operand::CreateImm(RndModeOp, Start, End);
1484 }
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001485 if(Tok.getIdentifier().equals("sae")){
1486 Parser.Lex(); // Eat the sae
1487 if (!getLexer().is(AsmToken::RCurly))
1488 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1489 Parser.Lex(); // Eat "}"
1490 return X86Operand::CreateToken("{sae}", consumedToken);
1491 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001492 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
1493}
David Majnemeraa34d792013-08-27 21:56:17 +00001494/// ParseIntelMemOperand - Parse intel style memory operand.
David Blaikie960ea3f2014-06-08 16:18:35 +00001495std::unique_ptr<X86Operand> X86AsmParser::ParseIntelMemOperand(int64_t ImmDisp,
1496 SMLoc Start,
1497 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001498 MCAsmParser &Parser = getParser();
David Majnemeraa34d792013-08-27 21:56:17 +00001499 const AsmToken &Tok = Parser.getTok();
1500 SMLoc End;
1501
1502 // Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
1503 if (getLexer().is(AsmToken::LBrac))
1504 return ParseIntelBracExpression(/*SegReg=*/0, Start, ImmDisp, Size);
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001505 assert(ImmDisp == 0);
David Majnemeraa34d792013-08-27 21:56:17 +00001506
Chad Rosier95ce8892013-04-19 18:39:50 +00001507 const MCExpr *Val;
1508 if (!isParsingInlineAsm()) {
1509 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001510 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
Chad Rosier95ce8892013-04-19 18:39:50 +00001511
Craig Topper055845f2015-01-02 07:02:25 +00001512 return X86Operand::CreateMem(getPointerWidth(), Val, Start, End, Size);
Chad Rosier95ce8892013-04-19 18:39:50 +00001513 }
1514
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001515 InlineAsmIdentifierInfo Info;
Chad Rosierce031892013-04-11 23:24:15 +00001516 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001517 if (ParseIntelIdentifier(Val, Identifier, Info,
1518 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001519 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001520
1521 if (!getLexer().is(AsmToken::LBrac))
1522 return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0, /*IndexReg=*/0,
1523 /*Scale=*/1, Start, End, Size, Identifier, Info);
1524
1525 Parser.Lex(); // Eat '['
1526
1527 // Parse Identifier [ ImmDisp ]
1528 IntelExprStateMachine SM(/*ImmDisp=*/0, /*StopOnLBrac=*/true,
1529 /*AddImmPrefix=*/false);
1530 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001531 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001532
1533 if (SM.getSym()) {
1534 Error(Start, "cannot use more than one symbol in memory operand");
Craig Topper062a2ba2014-04-25 05:30:21 +00001535 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001536 }
1537 if (SM.getBaseReg()) {
1538 Error(Start, "cannot use base register with variable reference");
Craig Topper062a2ba2014-04-25 05:30:21 +00001539 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001540 }
1541 if (SM.getIndexReg()) {
1542 Error(Start, "cannot use index register with variable reference");
Craig Topper062a2ba2014-04-25 05:30:21 +00001543 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001544 }
1545
Jim Grosbach13760bd2015-05-30 01:25:56 +00001546 const MCExpr *Disp = MCConstantExpr::create(SM.getImm(), getContext());
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001547 // BaseReg is non-zero to avoid assertions. In the context of inline asm,
1548 // we're pointing to a local variable in memory, so the base register is
1549 // really the frame or stack pointer.
Craig Topper055845f2015-01-02 07:02:25 +00001550 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1551 /*BaseReg=*/1, /*IndexReg=*/0, /*Scale=*/1,
1552 Start, End, Size, Identifier, Info.OpDecl);
Chad Rosier91c82662012-10-24 17:22:29 +00001553}
1554
Chad Rosier5dcb4662012-10-24 22:21:50 +00001555/// Parse the '.' operator.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001556bool X86AsmParser::ParseIntelDotOperator(const MCExpr *Disp,
Chad Rosiercc541e82013-04-19 15:57:00 +00001557 const MCExpr *&NewDisp) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001558 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001559 const AsmToken &Tok = Parser.getTok();
Chad Rosier6241c1a2013-04-17 21:14:38 +00001560 int64_t OrigDispVal, DotDispVal;
Chad Rosier911c1f32012-10-25 17:37:43 +00001561
1562 // FIXME: Handle non-constant expressions.
Chad Rosiercc541e82013-04-19 15:57:00 +00001563 if (const MCConstantExpr *OrigDisp = dyn_cast<MCConstantExpr>(Disp))
Chad Rosier911c1f32012-10-25 17:37:43 +00001564 OrigDispVal = OrigDisp->getValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001565 else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001566 return Error(Tok.getLoc(), "Non-constant offsets are not supported!");
Chad Rosier5dcb4662012-10-24 22:21:50 +00001567
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001568 // Drop the optional '.'.
1569 StringRef DotDispStr = Tok.getString();
1570 if (DotDispStr.startswith("."))
1571 DotDispStr = DotDispStr.drop_front(1);
Chad Rosier5dcb4662012-10-24 22:21:50 +00001572
Chad Rosier5dcb4662012-10-24 22:21:50 +00001573 // .Imm gets lexed as a real.
1574 if (Tok.is(AsmToken::Real)) {
1575 APInt DotDisp;
1576 DotDispStr.getAsInteger(10, DotDisp);
Chad Rosier911c1f32012-10-25 17:37:43 +00001577 DotDispVal = DotDisp.getZExtValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001578 } else if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
Chad Rosier240b7b92012-10-25 21:51:10 +00001579 unsigned DotDisp;
1580 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.');
1581 if (SemaCallback->LookupInlineAsmField(BaseMember.first, BaseMember.second,
Chad Rosiercc541e82013-04-19 15:57:00 +00001582 DotDisp))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001583 return Error(Tok.getLoc(), "Unable to lookup field reference!");
Chad Rosier240b7b92012-10-25 21:51:10 +00001584 DotDispVal = DotDisp;
Chad Rosiercc541e82013-04-19 15:57:00 +00001585 } else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001586 return Error(Tok.getLoc(), "Unexpected token type!");
Chad Rosier911c1f32012-10-25 17:37:43 +00001587
Chad Rosier240b7b92012-10-25 21:51:10 +00001588 if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
1589 SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data());
1590 unsigned Len = DotDispStr.size();
1591 unsigned Val = OrigDispVal + DotDispVal;
1592 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_DotOperator, Loc, Len,
1593 Val));
Chad Rosier911c1f32012-10-25 17:37:43 +00001594 }
1595
Jim Grosbach13760bd2015-05-30 01:25:56 +00001596 NewDisp = MCConstantExpr::create(OrigDispVal + DotDispVal, getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001597 return false;
Chad Rosier5dcb4662012-10-24 22:21:50 +00001598}
1599
Chad Rosier91c82662012-10-24 17:22:29 +00001600/// Parse the 'offset' operator. This operator is used to specify the
1601/// location rather then the content of a variable.
David Blaikie960ea3f2014-06-08 16:18:35 +00001602std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOffsetOfOperator() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001603 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001604 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001605 SMLoc OffsetOfLoc = Tok.getLoc();
Chad Rosier91c82662012-10-24 17:22:29 +00001606 Parser.Lex(); // Eat offset.
Chad Rosier91c82662012-10-24 17:22:29 +00001607
Chad Rosier91c82662012-10-24 17:22:29 +00001608 const MCExpr *Val;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001609 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001610 SMLoc Start = Tok.getLoc(), End;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001611 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001612 if (ParseIntelIdentifier(Val, Identifier, Info,
1613 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001614 return nullptr;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001615
Chad Rosiere2f03772012-10-26 16:09:20 +00001616 // Don't emit the offset operator.
1617 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Skip, OffsetOfLoc, 7));
1618
Chad Rosier91c82662012-10-24 17:22:29 +00001619 // The offset operator will have an 'r' constraint, thus we need to create
1620 // register operand to ensure proper matching. Just pick a GPR based on
1621 // the size of a pointer.
Craig Topper3c80d622014-01-06 04:55:54 +00001622 unsigned RegNo =
1623 is64BitMode() ? X86::RBX : (is32BitMode() ? X86::EBX : X86::BX);
Chad Rosiera4bc9432013-01-10 22:10:27 +00001624 return X86Operand::CreateReg(RegNo, Start, End, /*GetAddress=*/true,
Chad Rosier732b8372013-04-22 22:04:25 +00001625 OffsetOfLoc, Identifier, Info.OpDecl);
Devang Patel41b9dde2012-01-17 18:00:18 +00001626}
1627
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001628enum IntelOperatorKind {
1629 IOK_LENGTH,
1630 IOK_SIZE,
1631 IOK_TYPE
1632};
1633
1634/// Parse the 'LENGTH', 'TYPE' and 'SIZE' operators. The LENGTH operator
1635/// returns the number of elements in an array. It returns the value 1 for
1636/// non-array variables. The SIZE operator returns the size of a C or C++
1637/// variable. A variable's size is the product of its LENGTH and TYPE. The
1638/// TYPE operator returns the size of a C or C++ type or variable. If the
1639/// variable is an array, TYPE returns the size of a single element.
David Blaikie960ea3f2014-06-08 16:18:35 +00001640std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperator(unsigned OpKind) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001641 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001642 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001643 SMLoc TypeLoc = Tok.getLoc();
1644 Parser.Lex(); // Eat operator.
Chad Rosier11c42f22012-10-26 18:04:20 +00001645
Craig Topper062a2ba2014-04-25 05:30:21 +00001646 const MCExpr *Val = nullptr;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001647 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001648 SMLoc Start = Tok.getLoc(), End;
Chad Rosierb67f8052013-04-11 23:57:04 +00001649 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001650 if (ParseIntelIdentifier(Val, Identifier, Info,
1651 /*Unevaluated=*/true, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001652 return nullptr;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001653
1654 if (!Info.OpDecl)
1655 return ErrorOperand(Start, "unable to lookup expression");
Chad Rosier11c42f22012-10-26 18:04:20 +00001656
Chad Rosierf6675c32013-04-22 17:01:46 +00001657 unsigned CVal = 0;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001658 switch(OpKind) {
1659 default: llvm_unreachable("Unexpected operand kind!");
1660 case IOK_LENGTH: CVal = Info.Length; break;
1661 case IOK_SIZE: CVal = Info.Size; break;
1662 case IOK_TYPE: CVal = Info.Type; break;
1663 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001664
1665 // Rewrite the type operator and the C or C++ type or variable in terms of an
1666 // immediate. E.g. TYPE foo -> $$4
1667 unsigned Len = End.getPointer() - TypeLoc.getPointer();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001668 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, TypeLoc, Len, CVal));
Chad Rosier11c42f22012-10-26 18:04:20 +00001669
Jim Grosbach13760bd2015-05-30 01:25:56 +00001670 const MCExpr *Imm = MCConstantExpr::create(CVal, getContext());
Chad Rosierf3c04f62013-03-19 21:58:18 +00001671 return X86Operand::CreateImm(Imm, Start, End);
Chad Rosier11c42f22012-10-26 18:04:20 +00001672}
1673
David Blaikie960ea3f2014-06-08 16:18:35 +00001674std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001675 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001676 const AsmToken &Tok = Parser.getTok();
David Majnemeraa34d792013-08-27 21:56:17 +00001677 SMLoc Start, End;
Chad Rosier91c82662012-10-24 17:22:29 +00001678
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001679 // Offset, length, type and size operators.
1680 if (isParsingInlineAsm()) {
Chad Rosier99e54642013-04-19 17:32:29 +00001681 StringRef AsmTokStr = Tok.getString();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001682 if (AsmTokStr == "offset" || AsmTokStr == "OFFSET")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001683 return ParseIntelOffsetOfOperator();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001684 if (AsmTokStr == "length" || AsmTokStr == "LENGTH")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001685 return ParseIntelOperator(IOK_LENGTH);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001686 if (AsmTokStr == "size" || AsmTokStr == "SIZE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001687 return ParseIntelOperator(IOK_SIZE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001688 if (AsmTokStr == "type" || AsmTokStr == "TYPE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001689 return ParseIntelOperator(IOK_TYPE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001690 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001691
David Majnemeraa34d792013-08-27 21:56:17 +00001692 unsigned Size = getIntelMemOperandSize(Tok.getString());
1693 if (Size) {
1694 Parser.Lex(); // Eat operand size (e.g., byte, word).
1695 if (Tok.getString() != "PTR" && Tok.getString() != "ptr")
Reid Kleckner71ff3f22014-08-01 00:59:22 +00001696 return ErrorOperand(Tok.getLoc(), "Expected 'PTR' or 'ptr' token!");
David Majnemeraa34d792013-08-27 21:56:17 +00001697 Parser.Lex(); // Eat ptr.
1698 }
1699 Start = Tok.getLoc();
1700
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001701 // Immediate.
Chad Rosierbfb70992013-04-17 00:11:46 +00001702 if (getLexer().is(AsmToken::Integer) || getLexer().is(AsmToken::Minus) ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +00001703 getLexer().is(AsmToken::Tilde) || getLexer().is(AsmToken::LParen)) {
Chad Rosierbfb70992013-04-17 00:11:46 +00001704 AsmToken StartTok = Tok;
1705 IntelExprStateMachine SM(/*Imm=*/0, /*StopOnLBrac=*/true,
1706 /*AddImmPrefix=*/false);
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001707 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001708 return nullptr;
Chad Rosierbfb70992013-04-17 00:11:46 +00001709
1710 int64_t Imm = SM.getImm();
1711 if (isParsingInlineAsm()) {
1712 unsigned Len = Tok.getLoc().getPointer() - Start.getPointer();
1713 if (StartTok.getString().size() == Len)
1714 // Just add a prefix if this wasn't a complex immediate expression.
Chad Rosierf3c04f62013-03-19 21:58:18 +00001715 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix, Start));
Chad Rosierbfb70992013-04-17 00:11:46 +00001716 else
1717 // Otherwise, rewrite the complex expression as a single immediate.
1718 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, Start, Len, Imm));
Devang Patel41b9dde2012-01-17 18:00:18 +00001719 }
Chad Rosierbfb70992013-04-17 00:11:46 +00001720
1721 if (getLexer().isNot(AsmToken::LBrac)) {
Kevin Enderby36eba252013-12-19 23:16:14 +00001722 // If a directional label (ie. 1f or 2b) was parsed above from
1723 // ParseIntelExpression() then SM.getSym() was set to a pointer to
1724 // to the MCExpr with the directional local symbol and this is a
1725 // memory operand not an immediate operand.
1726 if (SM.getSym())
Craig Topper055845f2015-01-02 07:02:25 +00001727 return X86Operand::CreateMem(getPointerWidth(), SM.getSym(), Start, End,
1728 Size);
Kevin Enderby36eba252013-12-19 23:16:14 +00001729
Jim Grosbach13760bd2015-05-30 01:25:56 +00001730 const MCExpr *ImmExpr = MCConstantExpr::create(Imm, getContext());
Chad Rosierbfb70992013-04-17 00:11:46 +00001731 return X86Operand::CreateImm(ImmExpr, Start, End);
1732 }
1733
1734 // Only positive immediates are valid.
1735 if (Imm < 0)
1736 return ErrorOperand(Start, "expected a positive immediate displacement "
1737 "before bracketed expr.");
1738
1739 // Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
David Majnemeraa34d792013-08-27 21:56:17 +00001740 return ParseIntelMemOperand(Imm, Start, Size);
Devang Patel41b9dde2012-01-17 18:00:18 +00001741 }
1742
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001743 // rounding mode token
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001744 if (STI.getFeatureBits()[X86::FeatureAVX512] &&
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001745 getLexer().is(AsmToken::LCurly))
1746 return ParseRoundingModeOp(Start, End);
1747
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001748 // Register.
Devang Patelce6a2ca2012-01-20 22:32:05 +00001749 unsigned RegNo = 0;
1750 if (!ParseRegister(RegNo, Start, End)) {
Chad Rosier0397edd2012-10-04 23:59:38 +00001751 // If this is a segment register followed by a ':', then this is the start
David Majnemeraa34d792013-08-27 21:56:17 +00001752 // of a segment override, otherwise this is a normal register reference.
Chad Rosier0397edd2012-10-04 23:59:38 +00001753 if (getLexer().isNot(AsmToken::Colon))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00001754 return X86Operand::CreateReg(RegNo, Start, End);
Chad Rosier0397edd2012-10-04 23:59:38 +00001755
David Majnemeraa34d792013-08-27 21:56:17 +00001756 return ParseIntelSegmentOverride(/*SegReg=*/RegNo, Start, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001757 }
1758
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001759 // Memory operand.
David Majnemeraa34d792013-08-27 21:56:17 +00001760 return ParseIntelMemOperand(/*Disp=*/0, Start, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001761}
1762
David Blaikie960ea3f2014-06-08 16:18:35 +00001763std::unique_ptr<X86Operand> X86AsmParser::ParseATTOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001764 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001765 switch (getLexer().getKind()) {
1766 default:
Chris Lattnerb9270732010-04-17 18:56:34 +00001767 // Parse a memory operand with no segment register.
1768 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattnercc2ad082010-01-15 18:27:19 +00001769 case AsmToken::Percent: {
Chris Lattnerb9270732010-04-17 18:56:34 +00001770 // Read the register.
Chris Lattnercc2ad082010-01-15 18:27:19 +00001771 unsigned RegNo;
Chris Lattner0c2538f2010-01-15 18:51:29 +00001772 SMLoc Start, End;
Craig Topper062a2ba2014-04-25 05:30:21 +00001773 if (ParseRegister(RegNo, Start, End)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001774 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001775 Error(Start, "%eiz and %riz can only be used as index registers",
1776 SMRange(Start, End));
Craig Topper062a2ba2014-04-25 05:30:21 +00001777 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001778 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001779
Chris Lattnerb9270732010-04-17 18:56:34 +00001780 // If this is a segment register followed by a ':', then this is the start
1781 // of a memory reference, otherwise this is a normal register reference.
1782 if (getLexer().isNot(AsmToken::Colon))
1783 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001784
Reid Kleckner0c5da972014-07-31 23:03:22 +00001785 if (!X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo))
1786 return ErrorOperand(Start, "invalid segment register");
1787
Chris Lattnerb9270732010-04-17 18:56:34 +00001788 getParser().Lex(); // Eat the colon.
1789 return ParseMemOperand(RegNo, Start);
Chris Lattnercc2ad082010-01-15 18:27:19 +00001790 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001791 case AsmToken::Dollar: {
1792 // $42 -> immediate.
Sean Callanan936b0d32010-01-19 21:44:56 +00001793 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callanana83fd7d2010-01-19 20:27:46 +00001794 Parser.Lex();
Daniel Dunbar73da11e2009-08-31 08:08:38 +00001795 const MCExpr *Val;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001796 if (getParser().parseExpression(Val, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001797 return nullptr;
Chris Lattner528d00b2010-01-15 19:28:38 +00001798 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001799 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001800 case AsmToken::LCurly:{
1801 SMLoc Start = Parser.getTok().getLoc(), End;
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001802 if (STI.getFeatureBits()[X86::FeatureAVX512])
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001803 return ParseRoundingModeOp(Start, End);
1804 return ErrorOperand(Start, "unknown token in expression");
1805 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001806 }
Daniel Dunbar2b11c7d2009-07-20 20:01:54 +00001807}
1808
David Blaikie960ea3f2014-06-08 16:18:35 +00001809bool X86AsmParser::HandleAVX512Operand(OperandVector &Operands,
1810 const MCParsedAsmOperand &Op) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001811 MCAsmParser &Parser = getParser();
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001812 if(STI.getFeatureBits()[X86::FeatureAVX512]) {
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001813 if (getLexer().is(AsmToken::LCurly)) {
1814 // Eat "{" and mark the current place.
1815 const SMLoc consumedToken = consumeToken();
1816 // Distinguish {1to<NUM>} from {%k<NUM>}.
1817 if(getLexer().is(AsmToken::Integer)) {
1818 // Parse memory broadcasting ({1to<NUM>}).
1819 if (getLexer().getTok().getIntVal() != 1)
1820 return !ErrorAndEatStatement(getLexer().getLoc(),
1821 "Expected 1to<NUM> at this point");
1822 Parser.Lex(); // Eat "1" of 1to8
1823 if (!getLexer().is(AsmToken::Identifier) ||
1824 !getLexer().getTok().getIdentifier().startswith("to"))
1825 return !ErrorAndEatStatement(getLexer().getLoc(),
1826 "Expected 1to<NUM> at this point");
1827 // Recognize only reasonable suffixes.
1828 const char *BroadcastPrimitive =
1829 StringSwitch<const char*>(getLexer().getTok().getIdentifier())
Robert Khasanovbfa01312014-07-21 14:54:21 +00001830 .Case("to2", "{1to2}")
1831 .Case("to4", "{1to4}")
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001832 .Case("to8", "{1to8}")
1833 .Case("to16", "{1to16}")
Craig Topper062a2ba2014-04-25 05:30:21 +00001834 .Default(nullptr);
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001835 if (!BroadcastPrimitive)
1836 return !ErrorAndEatStatement(getLexer().getLoc(),
1837 "Invalid memory broadcast primitive.");
1838 Parser.Lex(); // Eat "toN" of 1toN
1839 if (!getLexer().is(AsmToken::RCurly))
1840 return !ErrorAndEatStatement(getLexer().getLoc(),
1841 "Expected } at this point");
1842 Parser.Lex(); // Eat "}"
1843 Operands.push_back(X86Operand::CreateToken(BroadcastPrimitive,
1844 consumedToken));
1845 // No AVX512 specific primitives can pass
1846 // after memory broadcasting, so return.
1847 return true;
1848 } else {
1849 // Parse mask register {%k1}
1850 Operands.push_back(X86Operand::CreateToken("{", consumedToken));
David Blaikie960ea3f2014-06-08 16:18:35 +00001851 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
1852 Operands.push_back(std::move(Op));
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001853 if (!getLexer().is(AsmToken::RCurly))
1854 return !ErrorAndEatStatement(getLexer().getLoc(),
1855 "Expected } at this point");
1856 Operands.push_back(X86Operand::CreateToken("}", consumeToken()));
1857
1858 // Parse "zeroing non-masked" semantic {z}
1859 if (getLexer().is(AsmToken::LCurly)) {
1860 Operands.push_back(X86Operand::CreateToken("{z}", consumeToken()));
1861 if (!getLexer().is(AsmToken::Identifier) ||
1862 getLexer().getTok().getIdentifier() != "z")
1863 return !ErrorAndEatStatement(getLexer().getLoc(),
1864 "Expected z at this point");
1865 Parser.Lex(); // Eat the z
1866 if (!getLexer().is(AsmToken::RCurly))
1867 return !ErrorAndEatStatement(getLexer().getLoc(),
1868 "Expected } at this point");
1869 Parser.Lex(); // Eat the }
1870 }
1871 }
1872 }
1873 }
1874 }
1875 return true;
1876}
1877
Chris Lattnerb9270732010-04-17 18:56:34 +00001878/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
1879/// has already been parsed if present.
David Blaikie960ea3f2014-06-08 16:18:35 +00001880std::unique_ptr<X86Operand> X86AsmParser::ParseMemOperand(unsigned SegReg,
1881 SMLoc MemStart) {
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001882
Rafael Espindola961d4692014-11-11 05:18:41 +00001883 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001884 // We have to disambiguate a parenthesized expression "(4+5)" from the start
1885 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner807a3bc2010-01-24 01:07:33 +00001886 // only way to do this without lookahead is to eat the '(' and see what is
1887 // after it.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001888 const MCExpr *Disp = MCConstantExpr::create(0, getParser().getContext());
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001889 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattnere17df0b2010-01-15 19:39:23 +00001890 SMLoc ExprEnd;
Craig Topper062a2ba2014-04-25 05:30:21 +00001891 if (getParser().parseExpression(Disp, ExprEnd)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001892
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001893 // After parsing the base expression we could either have a parenthesized
1894 // memory address or not. If not, return now. If so, eat the (.
1895 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00001896 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001897 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00001898 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, ExprEnd);
1899 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1900 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001901 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001902
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001903 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00001904 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001905 } else {
1906 // Okay, we have a '('. We don't know if this is an expression or not, but
1907 // so we have to eat the ( to see beyond it.
Sean Callanan936b0d32010-01-19 21:44:56 +00001908 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00001909 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001910
Kevin Enderby7d912182009-09-03 17:15:07 +00001911 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001912 // Nothing to do here, fall into the code below with the '(' part of the
1913 // memory operand consumed.
1914 } else {
Chris Lattner528d00b2010-01-15 19:28:38 +00001915 SMLoc ExprEnd;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001916
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001917 // It must be an parenthesized expression, parse it now.
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001918 if (getParser().parseParenExpression(Disp, ExprEnd))
Craig Topper062a2ba2014-04-25 05:30:21 +00001919 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001920
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001921 // After parsing the base expression we could either have a parenthesized
1922 // memory address or not. If not, return now. If so, eat the (.
1923 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00001924 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001925 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00001926 return X86Operand::CreateMem(getPointerWidth(), Disp, LParenLoc,
1927 ExprEnd);
1928 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1929 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001930 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001931
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001932 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00001933 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001934 }
1935 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001936
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001937 // If we reached here, then we just ate the ( of the memory operand. Process
1938 // the rest of the memory operand.
Daniel Dunbar3ebf8482009-07-31 20:53:16 +00001939 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
David Woodhouse6dbda442014-01-08 12:58:28 +00001940 SMLoc IndexLoc, BaseLoc;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001941
Chris Lattner0c2538f2010-01-15 18:51:29 +00001942 if (getLexer().is(AsmToken::Percent)) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001943 SMLoc StartLoc, EndLoc;
David Woodhouse6dbda442014-01-08 12:58:28 +00001944 BaseLoc = Parser.getTok().getLoc();
Craig Topper062a2ba2014-04-25 05:30:21 +00001945 if (ParseRegister(BaseReg, StartLoc, EndLoc)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001946 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001947 Error(StartLoc, "eiz and riz can only be used as index registers",
1948 SMRange(StartLoc, EndLoc));
Craig Topper062a2ba2014-04-25 05:30:21 +00001949 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001950 }
Chris Lattner0c2538f2010-01-15 18:51:29 +00001951 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001952
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001953 if (getLexer().is(AsmToken::Comma)) {
Sean Callanana83fd7d2010-01-19 20:27:46 +00001954 Parser.Lex(); // Eat the comma.
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00001955 IndexLoc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001956
1957 // Following the comma we should have either an index register, or a scale
1958 // value. We don't support the later form, but we want to parse it
1959 // correctly.
1960 //
1961 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001962 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7d912182009-09-03 17:15:07 +00001963 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner0c2538f2010-01-15 18:51:29 +00001964 SMLoc L;
Craig Topper062a2ba2014-04-25 05:30:21 +00001965 if (ParseRegister(IndexReg, L, L)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001966
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001967 if (getLexer().isNot(AsmToken::RParen)) {
1968 // Parse the scale amount:
1969 // ::= ',' [scale-expression]
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001970 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00001971 Error(Parser.getTok().getLoc(),
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001972 "expected comma in scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00001973 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001974 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00001975 Parser.Lex(); // Eat the comma.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001976
1977 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00001978 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001979
1980 int64_t ScaleVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001981 if (getParser().parseAbsoluteExpression(ScaleVal)){
Kevin Enderbydeed5aa2012-03-09 22:24:10 +00001982 Error(Loc, "expected scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00001983 return nullptr;
Craig Topper6bf3ed42012-07-18 04:59:16 +00001984 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001985
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001986 // Validate the scale amount.
David Woodhouse6dbda442014-01-08 12:58:28 +00001987 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
1988 ScaleVal != 1) {
1989 Error(Loc, "scale factor in 16-bit address must be 1");
Craig Topper062a2ba2014-04-25 05:30:21 +00001990 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00001991 }
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001992 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){
1993 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
Craig Topper062a2ba2014-04-25 05:30:21 +00001994 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001995 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001996 Scale = (unsigned)ScaleVal;
1997 }
1998 }
1999 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002000 // A scale amount without an index is ignored.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002001 // index.
Sean Callanan936b0d32010-01-19 21:44:56 +00002002 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002003
2004 int64_t Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002005 if (getParser().parseAbsoluteExpression(Value))
Craig Topper062a2ba2014-04-25 05:30:21 +00002006 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002007
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002008 if (Value != 1)
2009 Warning(Loc, "scale factor without index register is ignored");
2010 Scale = 1;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002011 }
2012 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002013
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002014 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002015 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002016 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Craig Topper062a2ba2014-04-25 05:30:21 +00002017 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002018 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002019 SMLoc MemEnd = Parser.getTok().getEndLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00002020 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002021
David Woodhouse6dbda442014-01-08 12:58:28 +00002022 // Check for use of invalid 16-bit registers. Only BX/BP/SI/DI are allowed,
2023 // and then only in non-64-bit modes. Except for DX, which is a special case
2024 // because an unofficial form of in/out instructions uses it.
2025 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
2026 (is64BitMode() || (BaseReg != X86::BX && BaseReg != X86::BP &&
2027 BaseReg != X86::SI && BaseReg != X86::DI)) &&
2028 BaseReg != X86::DX) {
2029 Error(BaseLoc, "invalid 16-bit base register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002030 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002031 }
2032 if (BaseReg == 0 &&
2033 X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg)) {
2034 Error(IndexLoc, "16-bit memory operand may not include only index register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002035 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002036 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00002037
2038 StringRef ErrMsg;
2039 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
2040 Error(BaseLoc, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00002041 return nullptr;
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00002042 }
2043
Reid Klecknerb7e2f602014-07-31 23:26:35 +00002044 if (SegReg || BaseReg || IndexReg)
Craig Topper055845f2015-01-02 07:02:25 +00002045 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
2046 IndexReg, Scale, MemStart, MemEnd);
2047 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, MemEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002048}
2049
David Blaikie960ea3f2014-06-08 16:18:35 +00002050bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
2051 SMLoc NameLoc, OperandVector &Operands) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002052 MCAsmParser &Parser = getParser();
Chad Rosierf0e87202012-10-25 20:41:34 +00002053 InstInfo = &Info;
Chris Lattner2cb092d2010-10-30 19:23:13 +00002054 StringRef PatchedName = Name;
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002055
Chris Lattner7e8a99b2010-11-28 20:23:50 +00002056 // FIXME: Hack to recognize setneb as setne.
2057 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
2058 PatchedName != "setb" && PatchedName != "setnb")
2059 PatchedName = PatchedName.substr(0, Name.size()-1);
Chad Rosier51afe632012-06-27 22:34:28 +00002060
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002061 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
Bruno Cardoso Lopes3183dd52010-06-23 21:10:57 +00002062 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002063 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
2064 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Craig Toppera0a603e2012-03-29 07:11:23 +00002065 bool IsVCMP = PatchedName[0] == 'v';
Craig Topper78c424d2015-02-15 07:13:48 +00002066 unsigned CCIdx = IsVCMP ? 4 : 3;
2067 unsigned ComparisonCode = StringSwitch<unsigned>(
2068 PatchedName.slice(CCIdx, PatchedName.size() - 2))
Craig Toppera0a603e2012-03-29 07:11:23 +00002069 .Case("eq", 0x00)
2070 .Case("lt", 0x01)
2071 .Case("le", 0x02)
2072 .Case("unord", 0x03)
2073 .Case("neq", 0x04)
2074 .Case("nlt", 0x05)
2075 .Case("nle", 0x06)
2076 .Case("ord", 0x07)
2077 /* AVX only from here */
2078 .Case("eq_uq", 0x08)
2079 .Case("nge", 0x09)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002080 .Case("ngt", 0x0A)
2081 .Case("false", 0x0B)
2082 .Case("neq_oq", 0x0C)
2083 .Case("ge", 0x0D)
2084 .Case("gt", 0x0E)
2085 .Case("true", 0x0F)
2086 .Case("eq_os", 0x10)
2087 .Case("lt_oq", 0x11)
2088 .Case("le_oq", 0x12)
2089 .Case("unord_s", 0x13)
2090 .Case("neq_us", 0x14)
2091 .Case("nlt_uq", 0x15)
2092 .Case("nle_uq", 0x16)
2093 .Case("ord_s", 0x17)
2094 .Case("eq_us", 0x18)
2095 .Case("nge_uq", 0x19)
2096 .Case("ngt_uq", 0x1A)
2097 .Case("false_os", 0x1B)
2098 .Case("neq_os", 0x1C)
2099 .Case("ge_oq", 0x1D)
2100 .Case("gt_oq", 0x1E)
2101 .Case("true_us", 0x1F)
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002102 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002103 if (ComparisonCode != ~0U && (IsVCMP || ComparisonCode < 8)) {
Craig Topper43860832015-02-14 21:54:03 +00002104
Craig Topper78c424d2015-02-15 07:13:48 +00002105 Operands.push_back(X86Operand::CreateToken(PatchedName.slice(0, CCIdx),
Craig Topper43860832015-02-14 21:54:03 +00002106 NameLoc));
2107
Jim Grosbach13760bd2015-05-30 01:25:56 +00002108 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper43860832015-02-14 21:54:03 +00002109 getParser().getContext());
2110 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2111
2112 PatchedName = PatchedName.substr(PatchedName.size() - 2);
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002113 }
2114 }
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +00002115
Craig Topper78c424d2015-02-15 07:13:48 +00002116 // FIXME: Hack to recognize vpcmp<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2117 if (PatchedName.startswith("vpcmp") &&
2118 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2119 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
2120 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2121 unsigned ComparisonCode = StringSwitch<unsigned>(
2122 PatchedName.slice(5, PatchedName.size() - CCIdx))
2123 .Case("eq", 0x0) // Only allowed on unsigned. Checked below.
2124 .Case("lt", 0x1)
2125 .Case("le", 0x2)
2126 //.Case("false", 0x3) // Not a documented alias.
2127 .Case("neq", 0x4)
2128 .Case("nlt", 0x5)
2129 .Case("nle", 0x6)
2130 //.Case("true", 0x7) // Not a documented alias.
2131 .Default(~0U);
2132 if (ComparisonCode != ~0U && (ComparisonCode != 0 || CCIdx == 2)) {
2133 Operands.push_back(X86Operand::CreateToken("vpcmp", NameLoc));
2134
Jim Grosbach13760bd2015-05-30 01:25:56 +00002135 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper78c424d2015-02-15 07:13:48 +00002136 getParser().getContext());
2137 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2138
2139 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
2140 }
2141 }
2142
Craig Topper916708f2015-02-13 07:42:25 +00002143 // FIXME: Hack to recognize vpcom<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2144 if (PatchedName.startswith("vpcom") &&
2145 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2146 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
Craig Topper78c424d2015-02-15 07:13:48 +00002147 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2148 unsigned ComparisonCode = StringSwitch<unsigned>(
2149 PatchedName.slice(5, PatchedName.size() - CCIdx))
Craig Topper916708f2015-02-13 07:42:25 +00002150 .Case("lt", 0x0)
2151 .Case("le", 0x1)
2152 .Case("gt", 0x2)
2153 .Case("ge", 0x3)
2154 .Case("eq", 0x4)
2155 .Case("neq", 0x5)
2156 .Case("false", 0x6)
2157 .Case("true", 0x7)
2158 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002159 if (ComparisonCode != ~0U) {
Craig Topper916708f2015-02-13 07:42:25 +00002160 Operands.push_back(X86Operand::CreateToken("vpcom", NameLoc));
2161
Jim Grosbach13760bd2015-05-30 01:25:56 +00002162 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper916708f2015-02-13 07:42:25 +00002163 getParser().getContext());
2164 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2165
Craig Topper78c424d2015-02-15 07:13:48 +00002166 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
Craig Topper916708f2015-02-13 07:42:25 +00002167 }
2168 }
2169
Daniel Dunbar3e0c9792010-02-10 21:19:28 +00002170 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002171
Chris Lattner086a83a2010-09-08 05:17:37 +00002172 // Determine whether this is an instruction prefix.
2173 bool isPrefix =
Chris Lattner2cb092d2010-10-30 19:23:13 +00002174 Name == "lock" || Name == "rep" ||
2175 Name == "repe" || Name == "repz" ||
Rafael Espindolaf6c05b12010-11-23 11:23:24 +00002176 Name == "repne" || Name == "repnz" ||
Rafael Espindolaeab08002010-11-27 20:29:45 +00002177 Name == "rex64" || Name == "data16";
Michael J. Spencer530ce852010-10-09 11:00:50 +00002178
2179
Chris Lattner086a83a2010-09-08 05:17:37 +00002180 // This does the actual operand parsing. Don't parse any more if we have a
2181 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
2182 // just want to parse the "lock" as the first instruction and the "incl" as
2183 // the next one.
2184 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar71527c12009-08-11 05:00:25 +00002185
2186 // Parse '*' modifier.
Alp Tokera5b88a52013-12-02 16:06:06 +00002187 if (getLexer().is(AsmToken::Star))
2188 Operands.push_back(X86Operand::CreateToken("*", consumeToken()));
Daniel Dunbar71527c12009-08-11 05:00:25 +00002189
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002190 // Read the operands.
2191 while(1) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002192 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
2193 Operands.push_back(std::move(Op));
2194 if (!HandleAVX512Operand(Operands, *Operands.back()))
Elena Demikhovsky89529742013-09-12 08:55:00 +00002195 return true;
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002196 } else {
2197 Parser.eatToEndOfStatement();
2198 return true;
Elena Demikhovsky89529742013-09-12 08:55:00 +00002199 }
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002200 // check for comma and eat it
2201 if (getLexer().is(AsmToken::Comma))
2202 Parser.Lex();
2203 else
2204 break;
2205 }
Elena Demikhovsky89529742013-09-12 08:55:00 +00002206
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002207 if (getLexer().isNot(AsmToken::EndOfStatement))
Elena Demikhovsky9f09b3e2014-02-20 07:00:10 +00002208 return ErrorAndEatStatement(getLexer().getLoc(),
2209 "unexpected token in argument list");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002210 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002211
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002212 // Consume the EndOfStatement or the prefix separator Slash
Elena Demikhovsky9f09b3e2014-02-20 07:00:10 +00002213 if (getLexer().is(AsmToken::EndOfStatement) ||
2214 (isPrefix && getLexer().is(AsmToken::Slash)))
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002215 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002216
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002217 // This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
2218 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
2219 // documented form in various unofficial manuals, so a lot of code uses it.
2220 if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
2221 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002222 X86Operand &Op = (X86Operand &)*Operands.back();
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002223 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2224 isa<MCConstantExpr>(Op.Mem.Disp) &&
2225 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2226 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2227 SMLoc Loc = Op.getEndLoc();
2228 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002229 }
2230 }
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002231 // Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
2232 if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
2233 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002234 X86Operand &Op = (X86Operand &)*Operands[1];
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002235 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2236 isa<MCConstantExpr>(Op.Mem.Disp) &&
2237 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2238 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2239 SMLoc Loc = Op.getEndLoc();
David Blaikie960ea3f2014-06-08 16:18:35 +00002240 Operands[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002241 }
2242 }
David Woodhouse4ce66062014-01-22 15:08:55 +00002243
2244 // Append default arguments to "ins[bwld]"
2245 if (Name.startswith("ins") && Operands.size() == 1 &&
2246 (Name == "insb" || Name == "insw" || Name == "insl" ||
2247 Name == "insd" )) {
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002248 AddDefaultSrcDestOperands(Operands,
2249 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc),
2250 DefaultMemDIOperand(NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002251 }
2252
David Woodhousec472b812014-01-22 15:08:49 +00002253 // Append default arguments to "outs[bwld]"
2254 if (Name.startswith("outs") && Operands.size() == 1 &&
2255 (Name == "outsb" || Name == "outsw" || Name == "outsl" ||
2256 Name == "outsd" )) {
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002257 AddDefaultSrcDestOperands(Operands,
2258 DefaultMemSIOperand(NameLoc),
2259 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002260 }
2261
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002262 // Transform "lods[bwlq]" into "lods[bwlq] ($SIREG)" for appropriate
2263 // values of $SIREG according to the mode. It would be nice if this
2264 // could be achieved with InstAlias in the tables.
2265 if (Name.startswith("lods") && Operands.size() == 1 &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002266 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002267 Name == "lodsl" || Name == "lodsd" || Name == "lodsq"))
2268 Operands.push_back(DefaultMemSIOperand(NameLoc));
2269
David Woodhouseb33c2ef2014-01-22 15:08:21 +00002270 // Transform "stos[bwlq]" into "stos[bwlq] ($DIREG)" for appropriate
2271 // values of $DIREG according to the mode. It would be nice if this
2272 // could be achieved with InstAlias in the tables.
2273 if (Name.startswith("stos") && Operands.size() == 1 &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002274 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
David Woodhouseb33c2ef2014-01-22 15:08:21 +00002275 Name == "stosl" || Name == "stosd" || Name == "stosq"))
2276 Operands.push_back(DefaultMemDIOperand(NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002277
David Woodhouse20fe4802014-01-22 15:08:27 +00002278 // Transform "scas[bwlq]" into "scas[bwlq] ($DIREG)" for appropriate
2279 // values of $DIREG according to the mode. It would be nice if this
2280 // could be achieved with InstAlias in the tables.
2281 if (Name.startswith("scas") && Operands.size() == 1 &&
2282 (Name == "scas" || Name == "scasb" || Name == "scasw" ||
2283 Name == "scasl" || Name == "scasd" || Name == "scasq"))
2284 Operands.push_back(DefaultMemDIOperand(NameLoc));
2285
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002286 // Add default SI and DI operands to "cmps[bwlq]".
2287 if (Name.startswith("cmps") &&
2288 (Name == "cmps" || Name == "cmpsb" || Name == "cmpsw" ||
2289 Name == "cmpsl" || Name == "cmpsd" || Name == "cmpsq")) {
2290 if (Operands.size() == 1) {
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002291 AddDefaultSrcDestOperands(Operands,
2292 DefaultMemDIOperand(NameLoc),
2293 DefaultMemSIOperand(NameLoc));
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002294 } else if (Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002295 X86Operand &Op = (X86Operand &)*Operands[1];
2296 X86Operand &Op2 = (X86Operand &)*Operands[2];
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002297 if (!doSrcDstMatch(Op, Op2))
2298 return Error(Op.getStartLoc(),
2299 "mismatching source and destination index registers");
2300 }
2301 }
2302
David Woodhouse6f417de2014-01-22 15:08:42 +00002303 // Add default SI and DI operands to "movs[bwlq]".
2304 if ((Name.startswith("movs") &&
2305 (Name == "movs" || Name == "movsb" || Name == "movsw" ||
2306 Name == "movsl" || Name == "movsd" || Name == "movsq")) ||
2307 (Name.startswith("smov") &&
2308 (Name == "smov" || Name == "smovb" || Name == "smovw" ||
2309 Name == "smovl" || Name == "smovd" || Name == "smovq"))) {
2310 if (Operands.size() == 1) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002311 if (Name == "movsd")
David Woodhouse6f417de2014-01-22 15:08:42 +00002312 Operands.back() = X86Operand::CreateToken("movsl", NameLoc);
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002313 AddDefaultSrcDestOperands(Operands,
2314 DefaultMemSIOperand(NameLoc),
2315 DefaultMemDIOperand(NameLoc));
David Woodhouse6f417de2014-01-22 15:08:42 +00002316 } else if (Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002317 X86Operand &Op = (X86Operand &)*Operands[1];
2318 X86Operand &Op2 = (X86Operand &)*Operands[2];
David Woodhouse6f417de2014-01-22 15:08:42 +00002319 if (!doSrcDstMatch(Op, Op2))
2320 return Error(Op.getStartLoc(),
2321 "mismatching source and destination index registers");
2322 }
2323 }
2324
Chris Lattner4bd21712010-09-15 04:33:27 +00002325 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattner30561ab2010-09-11 16:32:12 +00002326 // "shift <op>".
Daniel Dunbar18fc3442010-03-13 00:47:29 +00002327 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner64f91b92010-11-06 21:23:40 +00002328 Name.startswith("shl") || Name.startswith("sal") ||
2329 Name.startswith("rcl") || Name.startswith("rcr") ||
2330 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002331 Operands.size() == 3) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002332 if (isParsingIntelSyntax()) {
Devang Patela410ed32012-01-24 21:43:36 +00002333 // Intel syntax
David Blaikie960ea3f2014-06-08 16:18:35 +00002334 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[2]);
2335 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2336 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002337 Operands.pop_back();
Devang Patela410ed32012-01-24 21:43:36 +00002338 } else {
David Blaikie960ea3f2014-06-08 16:18:35 +00002339 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
2340 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2341 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002342 Operands.erase(Operands.begin() + 1);
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002343 }
Daniel Dunbarfbd12cc2010-03-20 22:36:38 +00002344 }
Chad Rosier51afe632012-06-27 22:34:28 +00002345
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002346 // Transforms "int $3" into "int3" as a size optimization. We can't write an
2347 // instalias with an immediate operand yet.
2348 if (Name == "int" && Operands.size() == 2) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002349 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
Duncan P. N. Exon Smithd5313222015-07-23 19:27:07 +00002350 if (Op1.isImm())
2351 if (auto *CE = dyn_cast<MCConstantExpr>(Op1.getImm()))
2352 if (CE->getValue() == 3) {
2353 Operands.erase(Operands.begin() + 1);
2354 static_cast<X86Operand &>(*Operands[0]).setTokenValue("int3");
2355 }
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002356 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002357
Chris Lattnerf29c0b62010-01-14 22:21:20 +00002358 return false;
Daniel Dunbar3c2a8932009-07-20 18:55:04 +00002359}
2360
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002361static bool convertToSExti8(MCInst &Inst, unsigned Opcode, unsigned Reg,
2362 bool isCmp) {
2363 MCInst TmpInst;
2364 TmpInst.setOpcode(Opcode);
2365 if (!isCmp)
Jim Grosbache9119e42015-05-13 18:37:00 +00002366 TmpInst.addOperand(MCOperand::createReg(Reg));
2367 TmpInst.addOperand(MCOperand::createReg(Reg));
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002368 TmpInst.addOperand(Inst.getOperand(0));
2369 Inst = TmpInst;
2370 return true;
2371}
2372
2373static bool convert16i16to16ri8(MCInst &Inst, unsigned Opcode,
2374 bool isCmp = false) {
2375 if (!Inst.getOperand(0).isImm() ||
2376 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
2377 return false;
2378
2379 return convertToSExti8(Inst, Opcode, X86::AX, isCmp);
2380}
2381
2382static bool convert32i32to32ri8(MCInst &Inst, unsigned Opcode,
2383 bool isCmp = false) {
2384 if (!Inst.getOperand(0).isImm() ||
2385 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
2386 return false;
2387
2388 return convertToSExti8(Inst, Opcode, X86::EAX, isCmp);
2389}
2390
2391static bool convert64i32to64ri8(MCInst &Inst, unsigned Opcode,
2392 bool isCmp = false) {
2393 if (!Inst.getOperand(0).isImm() ||
2394 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
2395 return false;
2396
2397 return convertToSExti8(Inst, Opcode, X86::RAX, isCmp);
2398}
2399
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002400bool X86AsmParser::validateInstruction(MCInst &Inst, const OperandVector &Ops) {
2401 switch (Inst.getOpcode()) {
2402 default: return true;
2403 case X86::INT:
David Majnemer7efc6132015-01-14 06:14:36 +00002404 X86Operand &Op = static_cast<X86Operand &>(*Ops[1]);
2405 assert(Op.isImm() && "expected immediate");
2406 int64_t Res;
Jim Grosbach13760bd2015-05-30 01:25:56 +00002407 if (!Op.getImm()->evaluateAsAbsolute(Res) || Res > 255) {
David Majnemer7efc6132015-01-14 06:14:36 +00002408 Error(Op.getStartLoc(), "interrupt vector must be in range [0-255]");
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002409 return false;
2410 }
2411 return true;
2412 }
2413 llvm_unreachable("handle the instruction appropriately");
2414}
2415
David Blaikie960ea3f2014-06-08 16:18:35 +00002416bool X86AsmParser::processInstruction(MCInst &Inst, const OperandVector &Ops) {
Devang Patelde47cce2012-01-18 22:42:29 +00002417 switch (Inst.getOpcode()) {
2418 default: return false;
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002419 case X86::AND16i16: return convert16i16to16ri8(Inst, X86::AND16ri8);
2420 case X86::AND32i32: return convert32i32to32ri8(Inst, X86::AND32ri8);
2421 case X86::AND64i32: return convert64i32to64ri8(Inst, X86::AND64ri8);
2422 case X86::XOR16i16: return convert16i16to16ri8(Inst, X86::XOR16ri8);
2423 case X86::XOR32i32: return convert32i32to32ri8(Inst, X86::XOR32ri8);
2424 case X86::XOR64i32: return convert64i32to64ri8(Inst, X86::XOR64ri8);
2425 case X86::OR16i16: return convert16i16to16ri8(Inst, X86::OR16ri8);
2426 case X86::OR32i32: return convert32i32to32ri8(Inst, X86::OR32ri8);
2427 case X86::OR64i32: return convert64i32to64ri8(Inst, X86::OR64ri8);
2428 case X86::CMP16i16: return convert16i16to16ri8(Inst, X86::CMP16ri8, true);
2429 case X86::CMP32i32: return convert32i32to32ri8(Inst, X86::CMP32ri8, true);
2430 case X86::CMP64i32: return convert64i32to64ri8(Inst, X86::CMP64ri8, true);
2431 case X86::ADD16i16: return convert16i16to16ri8(Inst, X86::ADD16ri8);
2432 case X86::ADD32i32: return convert32i32to32ri8(Inst, X86::ADD32ri8);
2433 case X86::ADD64i32: return convert64i32to64ri8(Inst, X86::ADD64ri8);
2434 case X86::SUB16i16: return convert16i16to16ri8(Inst, X86::SUB16ri8);
2435 case X86::SUB32i32: return convert32i32to32ri8(Inst, X86::SUB32ri8);
2436 case X86::SUB64i32: return convert64i32to64ri8(Inst, X86::SUB64ri8);
Craig Topper0498b882013-03-18 03:34:55 +00002437 case X86::ADC16i16: return convert16i16to16ri8(Inst, X86::ADC16ri8);
2438 case X86::ADC32i32: return convert32i32to32ri8(Inst, X86::ADC32ri8);
2439 case X86::ADC64i32: return convert64i32to64ri8(Inst, X86::ADC64ri8);
2440 case X86::SBB16i16: return convert16i16to16ri8(Inst, X86::SBB16ri8);
2441 case X86::SBB32i32: return convert32i32to32ri8(Inst, X86::SBB32ri8);
2442 case X86::SBB64i32: return convert64i32to64ri8(Inst, X86::SBB64ri8);
Craig Toppera0e07352013-10-07 05:42:48 +00002443 case X86::VMOVAPDrr:
2444 case X86::VMOVAPDYrr:
2445 case X86::VMOVAPSrr:
2446 case X86::VMOVAPSYrr:
2447 case X86::VMOVDQArr:
2448 case X86::VMOVDQAYrr:
2449 case X86::VMOVDQUrr:
2450 case X86::VMOVDQUYrr:
2451 case X86::VMOVUPDrr:
2452 case X86::VMOVUPDYrr:
2453 case X86::VMOVUPSrr:
2454 case X86::VMOVUPSYrr: {
2455 if (X86II::isX86_64ExtendedReg(Inst.getOperand(0).getReg()) ||
2456 !X86II::isX86_64ExtendedReg(Inst.getOperand(1).getReg()))
2457 return false;
2458
2459 unsigned NewOpc;
2460 switch (Inst.getOpcode()) {
2461 default: llvm_unreachable("Invalid opcode");
2462 case X86::VMOVAPDrr: NewOpc = X86::VMOVAPDrr_REV; break;
2463 case X86::VMOVAPDYrr: NewOpc = X86::VMOVAPDYrr_REV; break;
2464 case X86::VMOVAPSrr: NewOpc = X86::VMOVAPSrr_REV; break;
2465 case X86::VMOVAPSYrr: NewOpc = X86::VMOVAPSYrr_REV; break;
2466 case X86::VMOVDQArr: NewOpc = X86::VMOVDQArr_REV; break;
2467 case X86::VMOVDQAYrr: NewOpc = X86::VMOVDQAYrr_REV; break;
2468 case X86::VMOVDQUrr: NewOpc = X86::VMOVDQUrr_REV; break;
2469 case X86::VMOVDQUYrr: NewOpc = X86::VMOVDQUYrr_REV; break;
2470 case X86::VMOVUPDrr: NewOpc = X86::VMOVUPDrr_REV; break;
2471 case X86::VMOVUPDYrr: NewOpc = X86::VMOVUPDYrr_REV; break;
2472 case X86::VMOVUPSrr: NewOpc = X86::VMOVUPSrr_REV; break;
2473 case X86::VMOVUPSYrr: NewOpc = X86::VMOVUPSYrr_REV; break;
2474 }
2475 Inst.setOpcode(NewOpc);
2476 return true;
2477 }
2478 case X86::VMOVSDrr:
2479 case X86::VMOVSSrr: {
2480 if (X86II::isX86_64ExtendedReg(Inst.getOperand(0).getReg()) ||
2481 !X86II::isX86_64ExtendedReg(Inst.getOperand(2).getReg()))
2482 return false;
2483 unsigned NewOpc;
2484 switch (Inst.getOpcode()) {
2485 default: llvm_unreachable("Invalid opcode");
2486 case X86::VMOVSDrr: NewOpc = X86::VMOVSDrr_REV; break;
2487 case X86::VMOVSSrr: NewOpc = X86::VMOVSSrr_REV; break;
2488 }
2489 Inst.setOpcode(NewOpc);
2490 return true;
2491 }
Devang Patelde47cce2012-01-18 22:42:29 +00002492 }
Devang Patelde47cce2012-01-18 22:42:29 +00002493}
2494
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002495static const char *getSubtargetFeatureName(uint64_t Val);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002496
David Blaikie960ea3f2014-06-08 16:18:35 +00002497void X86AsmParser::EmitInstruction(MCInst &Inst, OperandVector &Operands,
2498 MCStreamer &Out) {
Evgeniy Stepanov77ad8662014-07-31 09:11:04 +00002499 Instrumentation->InstrumentAndEmitInstruction(Inst, Operands, getContext(),
2500 MII, Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002501}
2502
David Blaikie960ea3f2014-06-08 16:18:35 +00002503bool X86AsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
2504 OperandVector &Operands,
Tim Northover26bb14e2014-08-18 11:49:42 +00002505 MCStreamer &Out, uint64_t &ErrorInfo,
David Blaikie960ea3f2014-06-08 16:18:35 +00002506 bool MatchingInlineAsm) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002507 if (isParsingIntelSyntax())
2508 return MatchAndEmitIntelInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002509 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002510 return MatchAndEmitATTInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002511 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002512}
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002513
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002514void X86AsmParser::MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op,
2515 OperandVector &Operands, MCStreamer &Out,
2516 bool MatchingInlineAsm) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002517 // FIXME: This should be replaced with a real .td file alias mechanism.
Chad Rosier3b1336c2012-08-28 23:57:47 +00002518 // Also, MatchInstructionImpl should actually *do* the EmitInstruction
Chris Lattner4869d342010-11-06 19:57:21 +00002519 // call.
Reid Klecknerb1f2d2f2014-07-31 00:07:33 +00002520 const char *Repl = StringSwitch<const char *>(Op.getToken())
2521 .Case("finit", "fninit")
2522 .Case("fsave", "fnsave")
2523 .Case("fstcw", "fnstcw")
2524 .Case("fstcww", "fnstcw")
2525 .Case("fstenv", "fnstenv")
2526 .Case("fstsw", "fnstsw")
2527 .Case("fstsww", "fnstsw")
2528 .Case("fclex", "fnclex")
2529 .Default(nullptr);
2530 if (Repl) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002531 MCInst Inst;
2532 Inst.setOpcode(X86::WAIT);
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002533 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002534 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002535 EmitInstruction(Inst, Operands, Out);
Chris Lattneradc0dbe2010-09-30 16:39:29 +00002536 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattnera63292a2010-09-29 01:50:45 +00002537 }
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002538}
2539
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002540bool X86AsmParser::ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002541 bool MatchingInlineAsm) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002542 assert(ErrorInfo && "Unknown missing feature!");
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002543 ArrayRef<SMRange> EmptyRanges = None;
2544 SmallString<126> Msg;
2545 raw_svector_ostream OS(Msg);
2546 OS << "instruction requires:";
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002547 uint64_t Mask = 1;
2548 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
2549 if (ErrorInfo & Mask)
2550 OS << ' ' << getSubtargetFeatureName(ErrorInfo & Mask);
2551 Mask <<= 1;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002552 }
2553 return Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
2554}
2555
2556bool X86AsmParser::MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
2557 OperandVector &Operands,
2558 MCStreamer &Out,
2559 uint64_t &ErrorInfo,
2560 bool MatchingInlineAsm) {
2561 assert(!Operands.empty() && "Unexpect empty operand list!");
2562 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2563 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
2564 ArrayRef<SMRange> EmptyRanges = None;
2565
2566 // First, handle aliases that expand to multiple instructions.
2567 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002568
Chris Lattner628fbec2010-09-06 21:54:15 +00002569 bool WasOriginallyInvalidOperand = false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002570 MCInst Inst;
Michael J. Spencer530ce852010-10-09 11:00:50 +00002571
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002572 // First, try a direct match.
Chad Rosier2f480a82012-10-12 22:53:36 +00002573 switch (MatchInstructionImpl(Operands, Inst,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002574 ErrorInfo, MatchingInlineAsm,
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002575 isParsingIntelSyntax())) {
Craig Topper589ceee2015-01-03 08:16:34 +00002576 default: llvm_unreachable("Unexpected match result!");
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002577 case Match_Success:
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002578 if (!validateInstruction(Inst, Operands))
2579 return true;
2580
Devang Patelde47cce2012-01-18 22:42:29 +00002581 // Some instructions need post-processing to, for example, tweak which
2582 // encoding is selected. Loop on it while changes happen so the
Chad Rosier51afe632012-06-27 22:34:28 +00002583 // individual transformations can chain off each other.
Chad Rosier4453e842012-10-12 23:09:25 +00002584 if (!MatchingInlineAsm)
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002585 while (processInstruction(Inst, Operands))
2586 ;
Devang Patelde47cce2012-01-18 22:42:29 +00002587
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002588 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002589 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002590 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002591 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002592 return false;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002593 case Match_MissingFeature:
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002594 return ErrorMissingFeature(IDLoc, ErrorInfo, MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002595 case Match_InvalidOperand:
2596 WasOriginallyInvalidOperand = true;
2597 break;
2598 case Match_MnemonicFail:
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002599 break;
2600 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002601
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002602 // FIXME: Ideally, we would only attempt suffix matches for things which are
2603 // valid prefixes, and we could just infer the right unambiguous
2604 // type. However, that requires substantially more matcher support than the
2605 // following hack.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002606
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002607 // Change the operand to point to a temporary token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002608 StringRef Base = Op.getToken();
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002609 SmallString<16> Tmp;
2610 Tmp += Base;
2611 Tmp += ' ';
Yaron Keren075759a2015-03-30 15:42:36 +00002612 Op.setTokenValue(Tmp);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002613
Chris Lattnerfab94132010-11-06 18:28:02 +00002614 // If this instruction starts with an 'f', then it is a floating point stack
2615 // instruction. These come in up to three forms for 32-bit, 64-bit, and
2616 // 80-bit floating point, which use the suffixes s,l,t respectively.
2617 //
2618 // Otherwise, we assume that this may be an integer instruction, which comes
2619 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
2620 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
Chad Rosier51afe632012-06-27 22:34:28 +00002621
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002622 // Check for the various suffix matches.
Tim Northover26bb14e2014-08-18 11:49:42 +00002623 uint64_t ErrorInfoIgnore;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002624 uint64_t ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002625 unsigned Match[4];
Chad Rosier51afe632012-06-27 22:34:28 +00002626
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002627 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I) {
2628 Tmp.back() = Suffixes[I];
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002629 Match[I] = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2630 MatchingInlineAsm, isParsingIntelSyntax());
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002631 // If this returned as a missing feature failure, remember that.
2632 if (Match[I] == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002633 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002634 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002635
2636 // Restore the old token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002637 Op.setTokenValue(Base);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002638
2639 // If exactly one matched, then we treat that as a successful match (and the
2640 // instruction will already have been filled in correctly, since the failing
2641 // matches won't have modified it).
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002642 unsigned NumSuccessfulMatches =
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002643 std::count(std::begin(Match), std::end(Match), Match_Success);
Chris Lattnerb44fd242010-09-29 01:42:58 +00002644 if (NumSuccessfulMatches == 1) {
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002645 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002646 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002647 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002648 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002649 return false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002650 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002651
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002652 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002653
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002654 // If we had multiple suffix matches, then identify this as an ambiguous
2655 // match.
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002656 if (NumSuccessfulMatches > 1) {
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002657 char MatchChars[4];
2658 unsigned NumMatches = 0;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002659 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I)
2660 if (Match[I] == Match_Success)
2661 MatchChars[NumMatches++] = Suffixes[I];
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002662
Alp Tokere69170a2014-06-26 22:52:05 +00002663 SmallString<126> Msg;
2664 raw_svector_ostream OS(Msg);
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002665 OS << "ambiguous instructions require an explicit suffix (could be ";
2666 for (unsigned i = 0; i != NumMatches; ++i) {
2667 if (i != 0)
2668 OS << ", ";
2669 if (i + 1 == NumMatches)
2670 OS << "or ";
2671 OS << "'" << Base << MatchChars[i] << "'";
2672 }
2673 OS << ")";
Chad Rosier4453e842012-10-12 23:09:25 +00002674 Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002675 return true;
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002676 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002677
Chris Lattner628fbec2010-09-06 21:54:15 +00002678 // Okay, we know that none of the variants matched successfully.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002679
Chris Lattner628fbec2010-09-06 21:54:15 +00002680 // If all of the instructions reported an invalid mnemonic, then the original
2681 // mnemonic was invalid.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002682 if (std::count(std::begin(Match), std::end(Match), Match_MnemonicFail) == 4) {
Chris Lattner339cc7b2010-09-06 22:11:18 +00002683 if (!WasOriginallyInvalidOperand) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002684 ArrayRef<SMRange> Ranges =
2685 MatchingInlineAsm ? EmptyRanges : Op.getLocRange();
Benjamin Kramerd416bae2011-10-16 11:28:29 +00002686 return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
Chad Rosier4453e842012-10-12 23:09:25 +00002687 Ranges, MatchingInlineAsm);
Chris Lattner339cc7b2010-09-06 22:11:18 +00002688 }
2689
2690 // Recover location info for the operand if we know which was the problem.
Tim Northover26bb14e2014-08-18 11:49:42 +00002691 if (ErrorInfo != ~0ULL) {
Chad Rosier49963552012-10-13 00:26:04 +00002692 if (ErrorInfo >= Operands.size())
Chad Rosier3d4bc622012-08-21 19:36:59 +00002693 return Error(IDLoc, "too few operands for instruction",
Chad Rosier4453e842012-10-12 23:09:25 +00002694 EmptyRanges, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002695
David Blaikie960ea3f2014-06-08 16:18:35 +00002696 X86Operand &Operand = (X86Operand &)*Operands[ErrorInfo];
2697 if (Operand.getStartLoc().isValid()) {
2698 SMRange OperandRange = Operand.getLocRange();
2699 return Error(Operand.getStartLoc(), "invalid operand for instruction",
Chad Rosier4453e842012-10-12 23:09:25 +00002700 OperandRange, MatchingInlineAsm);
Chris Lattnera3a06812011-10-16 04:47:35 +00002701 }
Chris Lattner339cc7b2010-09-06 22:11:18 +00002702 }
2703
Chad Rosier3d4bc622012-08-21 19:36:59 +00002704 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
Chad Rosier4453e842012-10-12 23:09:25 +00002705 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002706 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002707
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002708 // If one instruction matched with a missing feature, report this as a
2709 // missing feature.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002710 if (std::count(std::begin(Match), std::end(Match),
2711 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002712 ErrorInfo = ErrorInfoMissingFeature;
2713 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002714 MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002715 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002716
Chris Lattner628fbec2010-09-06 21:54:15 +00002717 // If one instruction matched with an invalid operand, report this as an
2718 // operand failure.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002719 if (std::count(std::begin(Match), std::end(Match),
2720 Match_InvalidOperand) == 1) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002721 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
2722 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002723 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002724
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002725 // If all of these were an outright failure, report it in a useless way.
Chad Rosier3d4bc622012-08-21 19:36:59 +00002726 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
Chad Rosier4453e842012-10-12 23:09:25 +00002727 EmptyRanges, MatchingInlineAsm);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002728 return true;
2729}
2730
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002731bool X86AsmParser::MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
2732 OperandVector &Operands,
2733 MCStreamer &Out,
2734 uint64_t &ErrorInfo,
2735 bool MatchingInlineAsm) {
2736 assert(!Operands.empty() && "Unexpect empty operand list!");
2737 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2738 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
2739 StringRef Mnemonic = Op.getToken();
2740 ArrayRef<SMRange> EmptyRanges = None;
2741
2742 // First, handle aliases that expand to multiple instructions.
2743 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
2744
2745 MCInst Inst;
2746
2747 // Find one unsized memory operand, if present.
2748 X86Operand *UnsizedMemOp = nullptr;
2749 for (const auto &Op : Operands) {
2750 X86Operand *X86Op = static_cast<X86Operand *>(Op.get());
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002751 if (X86Op->isMemUnsized())
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002752 UnsizedMemOp = X86Op;
2753 }
2754
2755 // Allow some instructions to have implicitly pointer-sized operands. This is
2756 // compatible with gas.
2757 if (UnsizedMemOp) {
2758 static const char *const PtrSizedInstrs[] = {"call", "jmp", "push"};
2759 for (const char *Instr : PtrSizedInstrs) {
2760 if (Mnemonic == Instr) {
Craig Topper055845f2015-01-02 07:02:25 +00002761 UnsizedMemOp->Mem.Size = getPointerWidth();
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002762 break;
2763 }
2764 }
2765 }
2766
2767 // If an unsized memory operand is present, try to match with each memory
2768 // operand size. In Intel assembly, the size is not part of the instruction
2769 // mnemonic.
2770 SmallVector<unsigned, 8> Match;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002771 uint64_t ErrorInfoMissingFeature = 0;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002772 if (UnsizedMemOp && UnsizedMemOp->isMemUnsized()) {
Ahmed Bougachad65f7872014-12-03 02:03:26 +00002773 static const unsigned MopSizes[] = {8, 16, 32, 64, 80, 128, 256, 512};
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002774 for (unsigned Size : MopSizes) {
2775 UnsizedMemOp->Mem.Size = Size;
2776 uint64_t ErrorInfoIgnore;
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002777 unsigned LastOpcode = Inst.getOpcode();
2778 unsigned M =
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002779 MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002780 MatchingInlineAsm, isParsingIntelSyntax());
2781 if (Match.empty() || LastOpcode != Inst.getOpcode())
2782 Match.push_back(M);
2783
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002784 // If this returned as a missing feature failure, remember that.
2785 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002786 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002787 }
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002788
2789 // Restore the size of the unsized memory operand if we modified it.
2790 if (UnsizedMemOp)
2791 UnsizedMemOp->Mem.Size = 0;
2792 }
2793
2794 // If we haven't matched anything yet, this is not a basic integer or FPU
Saleem Abdulrasoolc3f8ad32015-01-16 20:16:06 +00002795 // operation. There shouldn't be any ambiguity in our mnemonic table, so try
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002796 // matching with the unsized operand.
2797 if (Match.empty()) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002798 Match.push_back(MatchInstructionImpl(Operands, Inst, ErrorInfo,
2799 MatchingInlineAsm,
2800 isParsingIntelSyntax()));
2801 // If this returned as a missing feature failure, remember that.
2802 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002803 ErrorInfoMissingFeature = ErrorInfo;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002804 }
2805
2806 // Restore the size of the unsized memory operand if we modified it.
2807 if (UnsizedMemOp)
2808 UnsizedMemOp->Mem.Size = 0;
2809
2810 // If it's a bad mnemonic, all results will be the same.
2811 if (Match.back() == Match_MnemonicFail) {
2812 ArrayRef<SMRange> Ranges =
2813 MatchingInlineAsm ? EmptyRanges : Op.getLocRange();
2814 return Error(IDLoc, "invalid instruction mnemonic '" + Mnemonic + "'",
2815 Ranges, MatchingInlineAsm);
2816 }
2817
2818 // If exactly one matched, then we treat that as a successful match (and the
2819 // instruction will already have been filled in correctly, since the failing
2820 // matches won't have modified it).
2821 unsigned NumSuccessfulMatches =
2822 std::count(std::begin(Match), std::end(Match), Match_Success);
2823 if (NumSuccessfulMatches == 1) {
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002824 if (!validateInstruction(Inst, Operands))
2825 return true;
2826
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002827 // Some instructions need post-processing to, for example, tweak which
2828 // encoding is selected. Loop on it while changes happen so the individual
2829 // transformations can chain off each other.
2830 if (!MatchingInlineAsm)
2831 while (processInstruction(Inst, Operands))
2832 ;
2833 Inst.setLoc(IDLoc);
2834 if (!MatchingInlineAsm)
2835 EmitInstruction(Inst, Operands, Out);
2836 Opcode = Inst.getOpcode();
2837 return false;
2838 } else if (NumSuccessfulMatches > 1) {
2839 assert(UnsizedMemOp &&
2840 "multiple matches only possible with unsized memory operands");
2841 ArrayRef<SMRange> Ranges =
2842 MatchingInlineAsm ? EmptyRanges : UnsizedMemOp->getLocRange();
2843 return Error(UnsizedMemOp->getStartLoc(),
2844 "ambiguous operand size for instruction '" + Mnemonic + "\'",
2845 Ranges, MatchingInlineAsm);
2846 }
2847
2848 // If one instruction matched with a missing feature, report this as a
2849 // missing feature.
2850 if (std::count(std::begin(Match), std::end(Match),
2851 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002852 ErrorInfo = ErrorInfoMissingFeature;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002853 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
2854 MatchingInlineAsm);
2855 }
2856
2857 // If one instruction matched with an invalid operand, report this as an
2858 // operand failure.
2859 if (std::count(std::begin(Match), std::end(Match),
2860 Match_InvalidOperand) == 1) {
2861 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
2862 MatchingInlineAsm);
2863 }
2864
2865 // If all of these were an outright failure, report it in a useless way.
2866 return Error(IDLoc, "unknown instruction mnemonic", EmptyRanges,
2867 MatchingInlineAsm);
2868}
2869
Nico Weber42f79db2014-07-17 20:24:55 +00002870bool X86AsmParser::OmitRegisterFromClobberLists(unsigned RegNo) {
2871 return X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo);
2872}
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002873
Devang Patel4a6e7782012-01-12 18:03:40 +00002874bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002875 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00002876 StringRef IDVal = DirectiveID.getIdentifier();
2877 if (IDVal == ".word")
2878 return ParseDirectiveWord(2, DirectiveID.getLoc());
Evan Cheng481ebb02011-07-27 00:38:12 +00002879 else if (IDVal.startswith(".code"))
2880 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
Chad Rosier6f8d8b22012-09-10 20:54:39 +00002881 else if (IDVal.startswith(".att_syntax")) {
Reid Klecknerce63b792014-08-06 23:21:13 +00002882 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2883 if (Parser.getTok().getString() == "prefix")
2884 Parser.Lex();
2885 else if (Parser.getTok().getString() == "noprefix")
2886 return Error(DirectiveID.getLoc(), "'.att_syntax noprefix' is not "
2887 "supported: registers must have a "
2888 "'%' prefix in .att_syntax");
2889 }
Chad Rosier6f8d8b22012-09-10 20:54:39 +00002890 getParser().setAssemblerDialect(0);
2891 return false;
2892 } else if (IDVal.startswith(".intel_syntax")) {
Devang Patela173ee52012-01-31 18:14:05 +00002893 getParser().setAssemblerDialect(1);
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002894 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002895 if (Parser.getTok().getString() == "noprefix")
Craig Topper6bf3ed42012-07-18 04:59:16 +00002896 Parser.Lex();
Reid Klecknerce63b792014-08-06 23:21:13 +00002897 else if (Parser.getTok().getString() == "prefix")
2898 return Error(DirectiveID.getLoc(), "'.intel_syntax prefix' is not "
2899 "supported: registers must not have "
2900 "a '%' prefix in .intel_syntax");
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002901 }
2902 return false;
2903 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002904 return true;
2905}
2906
2907/// ParseDirectiveWord
2908/// ::= .word [ expression (, expression)* ]
Devang Patel4a6e7782012-01-12 18:03:40 +00002909bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002910 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00002911 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2912 for (;;) {
2913 const MCExpr *Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002914 if (getParser().parseExpression(Value))
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002915 return false;
Chad Rosier51afe632012-06-27 22:34:28 +00002916
Eric Christopherbf7bc492013-01-09 03:52:05 +00002917 getParser().getStreamer().EmitValue(Value, Size);
Chad Rosier51afe632012-06-27 22:34:28 +00002918
Chris Lattner72c0b592010-10-30 17:38:55 +00002919 if (getLexer().is(AsmToken::EndOfStatement))
2920 break;
Chad Rosier51afe632012-06-27 22:34:28 +00002921
Chris Lattner72c0b592010-10-30 17:38:55 +00002922 // FIXME: Improve diagnostic.
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002923 if (getLexer().isNot(AsmToken::Comma)) {
2924 Error(L, "unexpected token in directive");
2925 return false;
2926 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002927 Parser.Lex();
2928 }
2929 }
Chad Rosier51afe632012-06-27 22:34:28 +00002930
Chris Lattner72c0b592010-10-30 17:38:55 +00002931 Parser.Lex();
2932 return false;
2933}
2934
Evan Cheng481ebb02011-07-27 00:38:12 +00002935/// ParseDirectiveCode
Craig Topper3c80d622014-01-06 04:55:54 +00002936/// ::= .code16 | .code32 | .code64
Devang Patel4a6e7782012-01-12 18:03:40 +00002937bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002938 MCAsmParser &Parser = getParser();
Craig Topper3c80d622014-01-06 04:55:54 +00002939 if (IDVal == ".code16") {
Evan Cheng481ebb02011-07-27 00:38:12 +00002940 Parser.Lex();
Craig Topper3c80d622014-01-06 04:55:54 +00002941 if (!is16BitMode()) {
2942 SwitchMode(X86::Mode16Bit);
2943 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
2944 }
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002945 } else if (IDVal == ".code32") {
Craig Topper3c80d622014-01-06 04:55:54 +00002946 Parser.Lex();
2947 if (!is32BitMode()) {
2948 SwitchMode(X86::Mode32Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00002949 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
2950 }
2951 } else if (IDVal == ".code64") {
2952 Parser.Lex();
2953 if (!is64BitMode()) {
Craig Topper3c80d622014-01-06 04:55:54 +00002954 SwitchMode(X86::Mode64Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00002955 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
2956 }
2957 } else {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002958 Error(L, "unknown directive " + IDVal);
2959 return false;
Evan Cheng481ebb02011-07-27 00:38:12 +00002960 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002961
Evan Cheng481ebb02011-07-27 00:38:12 +00002962 return false;
2963}
Chris Lattner72c0b592010-10-30 17:38:55 +00002964
Daniel Dunbar71475772009-07-17 20:42:00 +00002965// Force static initialization.
2966extern "C" void LLVMInitializeX86AsmParser() {
Devang Patel4a6e7782012-01-12 18:03:40 +00002967 RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
2968 RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
Daniel Dunbar71475772009-07-17 20:42:00 +00002969}
Daniel Dunbar00331992009-07-29 00:02:19 +00002970
Chris Lattner3e4582a2010-09-06 19:11:01 +00002971#define GET_REGISTER_MATCHER
2972#define GET_MATCHER_IMPLEMENTATION
Jim Grosbach6f1f41b2012-11-14 18:04:47 +00002973#define GET_SUBTARGET_FEATURE_NAME
Daniel Dunbar00331992009-07-29 00:02:19 +00002974#include "X86GenAsmMatcher.inc"