blob: e692118f47fdcdebb31dc4094bbb3f8e9827d0da [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"
Craig Topper690d8ea2013-07-24 07:33:14 +000014#include "llvm/ADT/STLExtras.h"
Chris Lattner1261b812010-09-22 04:11:10 +000015#include "llvm/ADT/SmallString.h"
16#include "llvm/ADT/SmallVector.h"
Chris Lattner1261b812010-09-22 04:11:10 +000017#include "llvm/ADT/StringSwitch.h"
18#include "llvm/ADT/Twine.h"
Chad Rosier8a244662013-04-02 20:02:33 +000019#include "llvm/MC/MCContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/MC/MCExpr.h"
21#include "llvm/MC/MCInst.h"
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000022#include "llvm/MC/MCInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/MC/MCParser/MCAsmLexer.h"
24#include "llvm/MC/MCParser/MCAsmParser.h"
25#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Benjamin Kramerb3e8a6d2016-01-27 10:01:28 +000026#include "llvm/MC/MCParser/MCTargetAsmParser.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000027#include "llvm/MC/MCRegisterInfo.h"
Michael Zuckerman02ecd432015-12-13 17:07:23 +000028#include "llvm/MC/MCSection.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000029#include "llvm/MC/MCStreamer.h"
30#include "llvm/MC/MCSubtargetInfo.h"
31#include "llvm/MC/MCSymbol.h"
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000032#include "llvm/Support/SourceMgr.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000033#include "llvm/Support/TargetRegistry.h"
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +000034#include "llvm/Support/raw_ostream.h"
Reid Kleckner7b1e1a02014-07-30 22:23:11 +000035#include <algorithm>
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000036#include <memory>
Evan Cheng4d1ca962011-07-08 01:53:10 +000037
Daniel Dunbar71475772009-07-17 20:42:00 +000038using namespace llvm;
39
40namespace {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000041
Chad Rosier5362af92013-04-16 18:15:40 +000042static const char OpPrecedence[] = {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000043 0, // IC_OR
Michael Kupersteine3de07a2015-06-14 12:59:45 +000044 1, // IC_XOR
45 2, // IC_AND
46 3, // IC_LSHIFT
47 3, // IC_RSHIFT
48 4, // IC_PLUS
49 4, // IC_MINUS
50 5, // IC_MULTIPLY
51 5, // IC_DIVIDE
52 6, // IC_RPAREN
53 7, // IC_LPAREN
Chad Rosier5362af92013-04-16 18:15:40 +000054 0, // IC_IMM
55 0 // IC_REGISTER
56};
57
Devang Patel4a6e7782012-01-12 18:03:40 +000058class X86AsmParser : public MCTargetAsmParser {
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000059 const MCInstrInfo &MII;
Chad Rosierf0e87202012-10-25 20:41:34 +000060 ParseInstructionInfo *InstInfo;
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000061 std::unique_ptr<X86AsmInstrumentation> Instrumentation;
Nirav Dave6477ce22016-09-26 19:33:36 +000062 bool Code16GCC;
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +000063
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
Nirav Dave6477ce22016-09-26 19:33:36 +000072 unsigned MatchInstruction(const OperandVector &Operands, MCInst &Inst,
73 uint64_t &ErrorInfo, bool matchingInlineAsm,
74 unsigned VariantID = 0) {
75 // In Code16GCC mode, match as 32-bit.
76 if (Code16GCC)
77 SwitchMode(X86::Mode32Bit);
78 unsigned rv = MatchInstructionImpl(Operands, Inst, ErrorInfo,
79 matchingInlineAsm, VariantID);
80 if (Code16GCC)
81 SwitchMode(X86::Mode16Bit);
82 return rv;
83 }
84
Chad Rosier5362af92013-04-16 18:15:40 +000085 enum InfixCalculatorTok {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000086 IC_OR = 0,
Michael Kupersteine3de07a2015-06-14 12:59:45 +000087 IC_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000088 IC_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +000089 IC_LSHIFT,
90 IC_RSHIFT,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000091 IC_PLUS,
Chad Rosier5362af92013-04-16 18:15:40 +000092 IC_MINUS,
93 IC_MULTIPLY,
94 IC_DIVIDE,
95 IC_RPAREN,
96 IC_LPAREN,
97 IC_IMM,
98 IC_REGISTER
99 };
100
101 class InfixCalculator {
102 typedef std::pair< InfixCalculatorTok, int64_t > ICToken;
103 SmallVector<InfixCalculatorTok, 4> InfixOperatorStack;
104 SmallVector<ICToken, 4> PostfixStack;
Michael Liao5bf95782014-12-04 05:20:33 +0000105
Chad Rosier5362af92013-04-16 18:15:40 +0000106 public:
107 int64_t popOperand() {
108 assert (!PostfixStack.empty() && "Poped an empty stack!");
109 ICToken Op = PostfixStack.pop_back_val();
110 assert ((Op.first == IC_IMM || Op.first == IC_REGISTER)
111 && "Expected and immediate or register!");
112 return Op.second;
113 }
114 void pushOperand(InfixCalculatorTok Op, int64_t Val = 0) {
115 assert ((Op == IC_IMM || Op == IC_REGISTER) &&
116 "Unexpected operand!");
117 PostfixStack.push_back(std::make_pair(Op, Val));
118 }
Michael Liao5bf95782014-12-04 05:20:33 +0000119
Jakub Staszak9c349222013-08-08 15:48:46 +0000120 void popOperator() { InfixOperatorStack.pop_back(); }
Chad Rosier5362af92013-04-16 18:15:40 +0000121 void pushOperator(InfixCalculatorTok Op) {
122 // Push the new operator if the stack is empty.
123 if (InfixOperatorStack.empty()) {
124 InfixOperatorStack.push_back(Op);
125 return;
126 }
Michael Liao5bf95782014-12-04 05:20:33 +0000127
Chad Rosier5362af92013-04-16 18:15:40 +0000128 // Push the new operator if it has a higher precedence than the operator
129 // on the top of the stack or the operator on the top of the stack is a
130 // left parentheses.
131 unsigned Idx = InfixOperatorStack.size() - 1;
132 InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
133 if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
134 InfixOperatorStack.push_back(Op);
135 return;
136 }
Michael Liao5bf95782014-12-04 05:20:33 +0000137
Chad Rosier5362af92013-04-16 18:15:40 +0000138 // The operator on the top of the stack has higher precedence than the
139 // new operator.
140 unsigned ParenCount = 0;
141 while (1) {
142 // Nothing to process.
143 if (InfixOperatorStack.empty())
144 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000145
Chad Rosier5362af92013-04-16 18:15:40 +0000146 Idx = InfixOperatorStack.size() - 1;
147 StackOp = InfixOperatorStack[Idx];
148 if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
149 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000150
Chad Rosier5362af92013-04-16 18:15:40 +0000151 // If we have an even parentheses count and we see a left parentheses,
152 // then stop processing.
153 if (!ParenCount && StackOp == IC_LPAREN)
154 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000155
Chad Rosier5362af92013-04-16 18:15:40 +0000156 if (StackOp == IC_RPAREN) {
157 ++ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000158 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000159 } else if (StackOp == IC_LPAREN) {
160 --ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000161 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000162 } else {
Jakub Staszak9c349222013-08-08 15:48:46 +0000163 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000164 PostfixStack.push_back(std::make_pair(StackOp, 0));
165 }
166 }
167 // Push the new operator.
168 InfixOperatorStack.push_back(Op);
169 }
Marina Yatsinaa0e02412015-08-10 11:33:10 +0000170
Chad Rosier5362af92013-04-16 18:15:40 +0000171 int64_t execute() {
172 // Push any remaining operators onto the postfix stack.
173 while (!InfixOperatorStack.empty()) {
174 InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val();
175 if (StackOp != IC_LPAREN && StackOp != IC_RPAREN)
176 PostfixStack.push_back(std::make_pair(StackOp, 0));
177 }
Michael Liao5bf95782014-12-04 05:20:33 +0000178
Chad Rosier5362af92013-04-16 18:15:40 +0000179 if (PostfixStack.empty())
180 return 0;
Michael Liao5bf95782014-12-04 05:20:33 +0000181
Chad Rosier5362af92013-04-16 18:15:40 +0000182 SmallVector<ICToken, 16> OperandStack;
183 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) {
184 ICToken Op = PostfixStack[i];
185 if (Op.first == IC_IMM || Op.first == IC_REGISTER) {
186 OperandStack.push_back(Op);
187 } else {
188 assert (OperandStack.size() > 1 && "Too few operands.");
189 int64_t Val;
190 ICToken Op2 = OperandStack.pop_back_val();
191 ICToken Op1 = OperandStack.pop_back_val();
192 switch (Op.first) {
193 default:
194 report_fatal_error("Unexpected operator!");
195 break;
196 case IC_PLUS:
197 Val = Op1.second + Op2.second;
198 OperandStack.push_back(std::make_pair(IC_IMM, Val));
199 break;
200 case IC_MINUS:
201 Val = Op1.second - Op2.second;
202 OperandStack.push_back(std::make_pair(IC_IMM, Val));
203 break;
204 case IC_MULTIPLY:
205 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
206 "Multiply operation with an immediate and a register!");
207 Val = Op1.second * Op2.second;
208 OperandStack.push_back(std::make_pair(IC_IMM, Val));
209 break;
210 case IC_DIVIDE:
211 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
212 "Divide operation with an immediate and a register!");
213 assert (Op2.second != 0 && "Division by zero!");
214 Val = Op1.second / Op2.second;
215 OperandStack.push_back(std::make_pair(IC_IMM, Val));
216 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000217 case IC_OR:
218 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
219 "Or operation with an immediate and a register!");
220 Val = Op1.second | Op2.second;
221 OperandStack.push_back(std::make_pair(IC_IMM, Val));
222 break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000223 case IC_XOR:
224 assert(Op1.first == IC_IMM && Op2.first == IC_IMM &&
225 "Xor operation with an immediate and a register!");
226 Val = Op1.second ^ Op2.second;
227 OperandStack.push_back(std::make_pair(IC_IMM, Val));
228 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000229 case IC_AND:
230 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
231 "And operation with an immediate and a register!");
232 Val = Op1.second & Op2.second;
233 OperandStack.push_back(std::make_pair(IC_IMM, Val));
234 break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000235 case IC_LSHIFT:
236 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
237 "Left shift operation with an immediate and a register!");
238 Val = Op1.second << Op2.second;
239 OperandStack.push_back(std::make_pair(IC_IMM, Val));
240 break;
241 case IC_RSHIFT:
242 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
243 "Right shift operation with an immediate and a register!");
244 Val = Op1.second >> Op2.second;
245 OperandStack.push_back(std::make_pair(IC_IMM, Val));
246 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000247 }
248 }
249 }
250 assert (OperandStack.size() == 1 && "Expected a single result.");
251 return OperandStack.pop_back_val().second;
252 }
253 };
254
255 enum IntelExprState {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000256 IES_OR,
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000257 IES_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000258 IES_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000259 IES_LSHIFT,
260 IES_RSHIFT,
Chad Rosier5362af92013-04-16 18:15:40 +0000261 IES_PLUS,
262 IES_MINUS,
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000263 IES_NOT,
Chad Rosier5362af92013-04-16 18:15:40 +0000264 IES_MULTIPLY,
265 IES_DIVIDE,
266 IES_LBRAC,
267 IES_RBRAC,
268 IES_LPAREN,
269 IES_RPAREN,
270 IES_REGISTER,
Chad Rosier5362af92013-04-16 18:15:40 +0000271 IES_INTEGER,
Chad Rosier5362af92013-04-16 18:15:40 +0000272 IES_IDENTIFIER,
273 IES_ERROR
274 };
275
276 class IntelExprStateMachine {
Chad Rosier31246272013-04-17 21:01:45 +0000277 IntelExprState State, PrevState;
Chad Rosier5362af92013-04-16 18:15:40 +0000278 unsigned BaseReg, IndexReg, TmpReg, Scale;
Chad Rosierbfb70992013-04-17 00:11:46 +0000279 int64_t Imm;
Chad Rosier5362af92013-04-16 18:15:40 +0000280 const MCExpr *Sym;
281 StringRef SymName;
Chad Rosierbfb70992013-04-17 00:11:46 +0000282 bool StopOnLBrac, AddImmPrefix;
Chad Rosier5362af92013-04-16 18:15:40 +0000283 InfixCalculator IC;
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000284 InlineAsmIdentifierInfo Info;
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +0000285
Chad Rosier5362af92013-04-16 18:15:40 +0000286 public:
Chad Rosierbfb70992013-04-17 00:11:46 +0000287 IntelExprStateMachine(int64_t imm, bool stoponlbrac, bool addimmprefix) :
Chad Rosier31246272013-04-17 21:01:45 +0000288 State(IES_PLUS), PrevState(IES_ERROR), BaseReg(0), IndexReg(0), TmpReg(0),
Craig Topper062a2ba2014-04-25 05:30:21 +0000289 Scale(1), Imm(imm), Sym(nullptr), StopOnLBrac(stoponlbrac),
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000290 AddImmPrefix(addimmprefix) { Info.clear(); }
Michael Liao5bf95782014-12-04 05:20:33 +0000291
Chad Rosier5362af92013-04-16 18:15:40 +0000292 unsigned getBaseReg() { return BaseReg; }
293 unsigned getIndexReg() { return IndexReg; }
294 unsigned getScale() { return Scale; }
295 const MCExpr *getSym() { return Sym; }
296 StringRef getSymName() { return SymName; }
Chad Rosierbfb70992013-04-17 00:11:46 +0000297 int64_t getImm() { return Imm + IC.execute(); }
Chad Rosieredb1dc82013-05-09 23:48:53 +0000298 bool isValidEndState() {
299 return State == IES_RBRAC || State == IES_INTEGER;
300 }
Chad Rosierbfb70992013-04-17 00:11:46 +0000301 bool getStopOnLBrac() { return StopOnLBrac; }
302 bool getAddImmPrefix() { return AddImmPrefix; }
Chad Rosier31246272013-04-17 21:01:45 +0000303 bool hadError() { return State == IES_ERROR; }
Chad Rosierbfb70992013-04-17 00:11:46 +0000304
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000305 InlineAsmIdentifierInfo &getIdentifierInfo() {
306 return Info;
307 }
308
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000309 void onOr() {
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_OR;
319 IC.pushOperator(IC_OR);
320 break;
321 }
322 PrevState = CurrState;
323 }
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000324 void onXor() {
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_XOR;
334 IC.pushOperator(IC_XOR);
335 break;
336 }
337 PrevState = CurrState;
338 }
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000339 void onAnd() {
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_AND;
349 IC.pushOperator(IC_AND);
350 break;
351 }
352 PrevState = CurrState;
353 }
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000354 void onLShift() {
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_LSHIFT;
364 IC.pushOperator(IC_LSHIFT);
365 break;
366 }
367 PrevState = CurrState;
368 }
369 void onRShift() {
370 IntelExprState CurrState = State;
371 switch (State) {
372 default:
373 State = IES_ERROR;
374 break;
375 case IES_INTEGER:
376 case IES_RPAREN:
377 case IES_REGISTER:
378 State = IES_RSHIFT;
379 IC.pushOperator(IC_RSHIFT);
380 break;
381 }
382 PrevState = CurrState;
383 }
Chad Rosier5362af92013-04-16 18:15:40 +0000384 void onPlus() {
Chad Rosier31246272013-04-17 21:01:45 +0000385 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000386 switch (State) {
387 default:
388 State = IES_ERROR;
389 break;
390 case IES_INTEGER:
391 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000392 case IES_REGISTER:
393 State = IES_PLUS;
Chad Rosier5362af92013-04-16 18:15:40 +0000394 IC.pushOperator(IC_PLUS);
Chad Rosier31246272013-04-17 21:01:45 +0000395 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
396 // If we already have a BaseReg, then assume this is the IndexReg with
397 // a scale of 1.
398 if (!BaseReg) {
399 BaseReg = TmpReg;
400 } else {
401 assert (!IndexReg && "BaseReg/IndexReg already set!");
402 IndexReg = TmpReg;
403 Scale = 1;
404 }
405 }
Chad Rosier5362af92013-04-16 18:15:40 +0000406 break;
407 }
Chad Rosier31246272013-04-17 21:01:45 +0000408 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000409 }
410 void onMinus() {
Chad Rosier31246272013-04-17 21:01:45 +0000411 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000412 switch (State) {
413 default:
414 State = IES_ERROR;
415 break;
416 case IES_PLUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000417 case IES_NOT:
Chad Rosier31246272013-04-17 21:01:45 +0000418 case IES_MULTIPLY:
419 case IES_DIVIDE:
Chad Rosier5362af92013-04-16 18:15:40 +0000420 case IES_LPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000421 case IES_RPAREN:
Chad Rosier31246272013-04-17 21:01:45 +0000422 case IES_LBRAC:
423 case IES_RBRAC:
424 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000425 case IES_REGISTER:
426 State = IES_MINUS;
Chad Rosier31246272013-04-17 21:01:45 +0000427 // Only push the minus operator if it is not a unary operator.
428 if (!(CurrState == IES_PLUS || CurrState == IES_MINUS ||
429 CurrState == IES_MULTIPLY || CurrState == IES_DIVIDE ||
430 CurrState == IES_LPAREN || CurrState == IES_LBRAC))
431 IC.pushOperator(IC_MINUS);
432 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
433 // If we already have a BaseReg, then assume this is the IndexReg with
434 // a scale of 1.
435 if (!BaseReg) {
436 BaseReg = TmpReg;
437 } else {
438 assert (!IndexReg && "BaseReg/IndexReg already set!");
439 IndexReg = TmpReg;
440 Scale = 1;
441 }
Chad Rosier5362af92013-04-16 18:15:40 +0000442 }
Chad Rosier5362af92013-04-16 18:15:40 +0000443 break;
444 }
Chad Rosier31246272013-04-17 21:01:45 +0000445 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000446 }
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000447 void onNot() {
448 IntelExprState CurrState = State;
449 switch (State) {
450 default:
451 State = IES_ERROR;
452 break;
453 case IES_PLUS:
454 case IES_NOT:
455 State = IES_NOT;
456 break;
457 }
458 PrevState = CurrState;
459 }
Chad Rosier5362af92013-04-16 18:15:40 +0000460 void onRegister(unsigned Reg) {
Chad Rosier31246272013-04-17 21:01:45 +0000461 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000462 switch (State) {
463 default:
464 State = IES_ERROR;
465 break;
466 case IES_PLUS:
467 case IES_LPAREN:
468 State = IES_REGISTER;
469 TmpReg = Reg;
470 IC.pushOperand(IC_REGISTER);
471 break;
Chad Rosier31246272013-04-17 21:01:45 +0000472 case IES_MULTIPLY:
473 // Index Register - Scale * Register
474 if (PrevState == IES_INTEGER) {
475 assert (!IndexReg && "IndexReg already set!");
476 State = IES_REGISTER;
477 IndexReg = Reg;
478 // Get the scale and replace the 'Scale * Register' with '0'.
479 Scale = IC.popOperand();
480 IC.pushOperand(IC_IMM);
481 IC.popOperator();
482 } else {
483 State = IES_ERROR;
484 }
Chad Rosier5362af92013-04-16 18:15:40 +0000485 break;
486 }
Chad Rosier31246272013-04-17 21:01:45 +0000487 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000488 }
Chad Rosier95ce8892013-04-19 18:39:50 +0000489 void onIdentifierExpr(const MCExpr *SymRef, StringRef SymRefName) {
Chad Rosierdb003992013-04-18 16:28:19 +0000490 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000491 switch (State) {
492 default:
493 State = IES_ERROR;
494 break;
495 case IES_PLUS:
496 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000497 case IES_NOT:
Chad Rosier5362af92013-04-16 18:15:40 +0000498 State = IES_INTEGER;
499 Sym = SymRef;
500 SymName = SymRefName;
501 IC.pushOperand(IC_IMM);
502 break;
503 }
504 }
Kevin Enderby9d117022014-01-23 21:52:41 +0000505 bool onInteger(int64_t TmpInt, StringRef &ErrMsg) {
Chad Rosier31246272013-04-17 21:01:45 +0000506 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000507 switch (State) {
508 default:
509 State = IES_ERROR;
510 break;
511 case IES_PLUS:
512 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000513 case IES_NOT:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000514 case IES_OR:
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000515 case IES_XOR:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000516 case IES_AND:
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000517 case IES_LSHIFT:
518 case IES_RSHIFT:
Chad Rosier5362af92013-04-16 18:15:40 +0000519 case IES_DIVIDE:
Chad Rosier31246272013-04-17 21:01:45 +0000520 case IES_MULTIPLY:
Chad Rosier5362af92013-04-16 18:15:40 +0000521 case IES_LPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000522 State = IES_INTEGER;
Chad Rosier31246272013-04-17 21:01:45 +0000523 if (PrevState == IES_REGISTER && CurrState == IES_MULTIPLY) {
524 // Index Register - Register * Scale
525 assert (!IndexReg && "IndexReg already set!");
526 IndexReg = TmpReg;
527 Scale = TmpInt;
Kevin Enderby9d117022014-01-23 21:52:41 +0000528 if(Scale != 1 && Scale != 2 && Scale != 4 && Scale != 8) {
529 ErrMsg = "scale factor in address must be 1, 2, 4 or 8";
530 return true;
531 }
Chad Rosier31246272013-04-17 21:01:45 +0000532 // Get the scale and replace the 'Register * Scale' with '0'.
533 IC.popOperator();
534 } else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000535 PrevState == IES_OR || PrevState == IES_AND ||
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000536 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
Chad Rosier31246272013-04-17 21:01:45 +0000537 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000538 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000539 PrevState == IES_NOT || PrevState == IES_XOR) &&
Chad Rosier31246272013-04-17 21:01:45 +0000540 CurrState == IES_MINUS) {
541 // Unary minus. No need to pop the minus operand because it was never
542 // pushed.
543 IC.pushOperand(IC_IMM, -TmpInt); // Push -Imm.
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000544 } else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
545 PrevState == IES_OR || PrevState == IES_AND ||
546 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
547 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
548 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000549 PrevState == IES_NOT || PrevState == IES_XOR) &&
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000550 CurrState == IES_NOT) {
551 // Unary not. No need to pop the not operand because it was never
552 // pushed.
553 IC.pushOperand(IC_IMM, ~TmpInt); // Push ~Imm.
Chad Rosier31246272013-04-17 21:01:45 +0000554 } else {
555 IC.pushOperand(IC_IMM, TmpInt);
556 }
Chad Rosier5362af92013-04-16 18:15:40 +0000557 break;
558 }
Chad Rosier31246272013-04-17 21:01:45 +0000559 PrevState = CurrState;
Kevin Enderby9d117022014-01-23 21:52:41 +0000560 return false;
Chad Rosier5362af92013-04-16 18:15:40 +0000561 }
562 void onStar() {
Chad Rosierdb003992013-04-18 16:28:19 +0000563 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000564 switch (State) {
565 default:
566 State = IES_ERROR;
567 break;
568 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000569 case IES_REGISTER:
Chad Rosier5362af92013-04-16 18:15:40 +0000570 case IES_RPAREN:
571 State = IES_MULTIPLY;
572 IC.pushOperator(IC_MULTIPLY);
573 break;
574 }
575 }
576 void onDivide() {
Chad Rosierdb003992013-04-18 16:28:19 +0000577 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000578 switch (State) {
579 default:
580 State = IES_ERROR;
581 break;
582 case IES_INTEGER:
Chad Rosier31246272013-04-17 21:01:45 +0000583 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000584 State = IES_DIVIDE;
585 IC.pushOperator(IC_DIVIDE);
586 break;
587 }
588 }
589 void onLBrac() {
Chad Rosierdb003992013-04-18 16:28:19 +0000590 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000591 switch (State) {
592 default:
593 State = IES_ERROR;
594 break;
595 case IES_RBRAC:
596 State = IES_PLUS;
597 IC.pushOperator(IC_PLUS);
598 break;
599 }
600 }
601 void onRBrac() {
Chad Rosier31246272013-04-17 21:01:45 +0000602 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000603 switch (State) {
604 default:
605 State = IES_ERROR;
606 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000607 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000608 case IES_REGISTER:
Chad Rosier31246272013-04-17 21:01:45 +0000609 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000610 State = IES_RBRAC;
Chad Rosier31246272013-04-17 21:01:45 +0000611 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
612 // If we already have a BaseReg, then assume this is the IndexReg with
613 // a scale of 1.
614 if (!BaseReg) {
615 BaseReg = TmpReg;
616 } else {
617 assert (!IndexReg && "BaseReg/IndexReg already set!");
618 IndexReg = TmpReg;
619 Scale = 1;
620 }
Chad Rosier5362af92013-04-16 18:15:40 +0000621 }
622 break;
623 }
Chad Rosier31246272013-04-17 21:01:45 +0000624 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000625 }
626 void onLParen() {
Chad Rosier31246272013-04-17 21:01:45 +0000627 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000628 switch (State) {
629 default:
630 State = IES_ERROR;
631 break;
632 case IES_PLUS:
633 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000634 case IES_NOT:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000635 case IES_OR:
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000636 case IES_XOR:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000637 case IES_AND:
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000638 case IES_LSHIFT:
639 case IES_RSHIFT:
Chad Rosier5362af92013-04-16 18:15:40 +0000640 case IES_MULTIPLY:
641 case IES_DIVIDE:
Chad Rosier5362af92013-04-16 18:15:40 +0000642 case IES_LPAREN:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000643 // FIXME: We don't handle this type of unary minus or not, yet.
Chad Rosierdb003992013-04-18 16:28:19 +0000644 if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000645 PrevState == IES_OR || PrevState == IES_AND ||
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000646 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
Chad Rosierdb003992013-04-18 16:28:19 +0000647 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000648 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000649 PrevState == IES_NOT || PrevState == IES_XOR) &&
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000650 (CurrState == IES_MINUS || CurrState == IES_NOT)) {
Chad Rosierdb003992013-04-18 16:28:19 +0000651 State = IES_ERROR;
652 break;
653 }
Chad Rosier5362af92013-04-16 18:15:40 +0000654 State = IES_LPAREN;
655 IC.pushOperator(IC_LPAREN);
656 break;
657 }
Chad Rosier31246272013-04-17 21:01:45 +0000658 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000659 }
660 void onRParen() {
Chad Rosierdb003992013-04-18 16:28:19 +0000661 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000662 switch (State) {
663 default:
664 State = IES_ERROR;
665 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000666 case IES_INTEGER:
Chad Rosier31246272013-04-17 21:01:45 +0000667 case IES_REGISTER:
Chad Rosier5362af92013-04-16 18:15:40 +0000668 case IES_RPAREN:
669 State = IES_RPAREN;
670 IC.pushOperator(IC_RPAREN);
671 break;
672 }
673 }
674 };
675
Nirav Dave2364748a2016-09-16 18:30:20 +0000676 bool Error(SMLoc L, const Twine &Msg, SMRange Range = None,
Chad Rosier4453e842012-10-12 23:09:25 +0000677 bool MatchingInlineAsm = false) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000678 MCAsmParser &Parser = getParser();
Nirav Dave2364748a2016-09-16 18:30:20 +0000679 if (MatchingInlineAsm) {
680 if (!getLexer().isAtStartOfStatement())
681 Parser.eatToEndOfStatement();
682 return false;
683 }
684 return Parser.Error(L, Msg, Range);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000685 }
686
David Blaikie960ea3f2014-06-08 16:18:35 +0000687 std::nullptr_t ErrorOperand(SMLoc Loc, StringRef Msg) {
Devang Patel41b9dde2012-01-17 18:00:18 +0000688 Error(Loc, Msg);
Craig Topper062a2ba2014-04-25 05:30:21 +0000689 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +0000690 }
691
David Blaikie960ea3f2014-06-08 16:18:35 +0000692 std::unique_ptr<X86Operand> DefaultMemSIOperand(SMLoc Loc);
693 std::unique_ptr<X86Operand> DefaultMemDIOperand(SMLoc Loc);
Marina Yatsinab9f4f622016-01-19 15:37:56 +0000694 bool IsSIReg(unsigned Reg);
695 unsigned GetSIDIForRegClass(unsigned RegClassID, unsigned Reg, bool IsSIReg);
696 void
697 AddDefaultSrcDestOperands(OperandVector &Operands,
698 std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
699 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst);
700 bool VerifyAndAdjustOperands(OperandVector &OrigOperands,
701 OperandVector &FinalOperands);
David Blaikie960ea3f2014-06-08 16:18:35 +0000702 std::unique_ptr<X86Operand> ParseOperand();
703 std::unique_ptr<X86Operand> ParseATTOperand();
704 std::unique_ptr<X86Operand> ParseIntelOperand();
705 std::unique_ptr<X86Operand> ParseIntelOffsetOfOperator();
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000706 bool ParseIntelDotOperator(const MCExpr *Disp, const MCExpr *&NewDisp);
David Blaikie960ea3f2014-06-08 16:18:35 +0000707 std::unique_ptr<X86Operand> ParseIntelOperator(unsigned OpKind);
708 std::unique_ptr<X86Operand>
709 ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start, unsigned Size);
Elena Demikhovsky18fd4962015-03-02 15:00:34 +0000710 std::unique_ptr<X86Operand> ParseRoundingModeOp(SMLoc Start, SMLoc End);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000711 bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End);
Nirav Dave8601ac12016-08-02 17:56:03 +0000712 std::unique_ptr<X86Operand>
713 ParseIntelBracExpression(unsigned SegReg, SMLoc Start, int64_t ImmDisp,
714 bool isSymbol, unsigned Size);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000715 bool ParseIntelIdentifier(const MCExpr *&Val, StringRef &Identifier,
716 InlineAsmIdentifierInfo &Info,
717 bool IsUnevaluatedOperand, SMLoc &End);
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000718
David Blaikie960ea3f2014-06-08 16:18:35 +0000719 std::unique_ptr<X86Operand> ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000720
David Blaikie960ea3f2014-06-08 16:18:35 +0000721 std::unique_ptr<X86Operand>
722 CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp, unsigned BaseReg,
723 unsigned IndexReg, unsigned Scale, SMLoc Start,
724 SMLoc End, unsigned Size, StringRef Identifier,
Coby Tayree49b37332016-11-22 09:30:29 +0000725 InlineAsmIdentifierInfo &Info,
726 bool AllowBetterSizeMatch = false);
Chad Rosier7ca135b2013-03-19 21:11:56 +0000727
Michael Zuckerman02ecd432015-12-13 17:07:23 +0000728 bool parseDirectiveEven(SMLoc L);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000729 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Evan Cheng481ebb02011-07-27 00:38:12 +0000730 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000731
David Blaikie960ea3f2014-06-08 16:18:35 +0000732 bool processInstruction(MCInst &Inst, const OperandVector &Ops);
Devang Patelde47cce2012-01-18 22:42:29 +0000733
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000734 /// Wrapper around MCStreamer::EmitInstruction(). Possibly adds
735 /// instrumentation around Inst.
David Blaikie960ea3f2014-06-08 16:18:35 +0000736 void EmitInstruction(MCInst &Inst, OperandVector &Operands, MCStreamer &Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000737
Chad Rosier49963552012-10-13 00:26:04 +0000738 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
David Blaikie960ea3f2014-06-08 16:18:35 +0000739 OperandVector &Operands, MCStreamer &Out,
Tim Northover26bb14e2014-08-18 11:49:42 +0000740 uint64_t &ErrorInfo,
Craig Topper39012cc2014-03-09 18:03:14 +0000741 bool MatchingInlineAsm) override;
Chad Rosier9cb988f2012-08-09 22:04:55 +0000742
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000743 void MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op, OperandVector &Operands,
744 MCStreamer &Out, bool MatchingInlineAsm);
745
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000746 bool ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000747 bool MatchingInlineAsm);
748
749 bool MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
750 OperandVector &Operands, MCStreamer &Out,
751 uint64_t &ErrorInfo,
752 bool MatchingInlineAsm);
753
754 bool MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
755 OperandVector &Operands, MCStreamer &Out,
756 uint64_t &ErrorInfo,
757 bool MatchingInlineAsm);
758
Craig Topperfd38cbe2014-08-30 16:48:34 +0000759 bool OmitRegisterFromClobberLists(unsigned RegNo) override;
Nico Weber42f79db2014-07-17 20:24:55 +0000760
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000761 /// Parses AVX512 specific operand primitives: masked registers ({%k<NUM>}, {z})
762 /// and memory broadcasting ({1to<NUM>}) primitives, updating Operands vector if required.
Michael Zuckerman1bee6342016-10-18 13:52:39 +0000763 /// return false if no parsing errors occurred, true otherwise.
David Blaikie960ea3f2014-06-08 16:18:35 +0000764 bool HandleAVX512Operand(OperandVector &Operands,
765 const MCParsedAsmOperand &Op);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000766
Michael Zuckerman1bee6342016-10-18 13:52:39 +0000767 bool ParseZ(std::unique_ptr<X86Operand> &Z, const SMLoc &StartLoc);
768
Coby Tayree49b37332016-11-22 09:30:29 +0000769 /// MS-compatibility:
770 /// Obtain an appropriate size qualifier, when facing its absence,
771 /// upon AVX512 vector/broadcast memory operand
772 unsigned AdjustAVX512Mem(unsigned Size, X86Operand* UnsizedMemOpNext);
773
Evan Chengc5e6d2f2011-07-11 03:57:24 +0000774 bool is64BitMode() const {
Evan Cheng4d1ca962011-07-08 01:53:10 +0000775 // FIXME: Can tablegen auto-generate this?
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000776 return getSTI().getFeatureBits()[X86::Mode64Bit];
Evan Cheng4d1ca962011-07-08 01:53:10 +0000777 }
Craig Topper3c80d622014-01-06 04:55:54 +0000778 bool is32BitMode() const {
779 // FIXME: Can tablegen auto-generate this?
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000780 return getSTI().getFeatureBits()[X86::Mode32Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000781 }
782 bool is16BitMode() const {
783 // FIXME: Can tablegen auto-generate this?
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000784 return getSTI().getFeatureBits()[X86::Mode16Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000785 }
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000786 void SwitchMode(unsigned mode) {
Akira Hatanakab11ef082015-11-14 06:35:56 +0000787 MCSubtargetInfo &STI = copySTI();
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000788 FeatureBitset AllModes({X86::Mode64Bit, X86::Mode32Bit, X86::Mode16Bit});
789 FeatureBitset OldMode = STI.getFeatureBits() & AllModes;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000790 unsigned FB = ComputeAvailableFeatures(
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000791 STI.ToggleFeature(OldMode.flip(mode)));
Evan Cheng481ebb02011-07-27 00:38:12 +0000792 setAvailableFeatures(FB);
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +0000793
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000794 assert(FeatureBitset({mode}) == (STI.getFeatureBits() & AllModes));
Evan Cheng481ebb02011-07-27 00:38:12 +0000795 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000796
Reid Kleckner5b37c182014-08-01 20:21:24 +0000797 unsigned getPointerWidth() {
798 if (is16BitMode()) return 16;
799 if (is32BitMode()) return 32;
800 if (is64BitMode()) return 64;
801 llvm_unreachable("invalid mode");
802 }
803
Chad Rosierc2f055d2013-04-18 16:13:18 +0000804 bool isParsingIntelSyntax() {
805 return getParser().getAssemblerDialect();
806 }
807
Daniel Dunbareefe8612010-07-19 05:44:09 +0000808 /// @name Auto-generated Matcher Functions
809 /// {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000810
Chris Lattner3e4582a2010-09-06 19:11:01 +0000811#define GET_ASSEMBLER_HEADER
812#include "X86GenAsmMatcher.inc"
Michael J. Spencer530ce852010-10-09 11:00:50 +0000813
Daniel Dunbar00331992009-07-29 00:02:19 +0000814 /// }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000815
816public:
Akira Hatanakab11ef082015-11-14 06:35:56 +0000817 X86AsmParser(const MCSubtargetInfo &sti, MCAsmParser &Parser,
Rafael Espindola961d4692014-11-11 05:18:41 +0000818 const MCInstrInfo &mii, const MCTargetOptions &Options)
Nirav Dave6477ce22016-09-26 19:33:36 +0000819 : MCTargetAsmParser(Options, sti), MII(mii), InstInfo(nullptr),
820 Code16GCC(false) {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000821
Daniel Dunbareefe8612010-07-19 05:44:09 +0000822 // Initialize the set of available features.
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000823 setAvailableFeatures(ComputeAvailableFeatures(getSTI().getFeatureBits()));
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000824 Instrumentation.reset(
825 CreateX86AsmInstrumentation(Options, Parser.getContext(), STI));
Daniel Dunbareefe8612010-07-19 05:44:09 +0000826 }
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000827
Craig Topper39012cc2014-03-09 18:03:14 +0000828 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000829
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000830 void SetFrameRegister(unsigned RegNo) override;
831
David Blaikie960ea3f2014-06-08 16:18:35 +0000832 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
833 SMLoc NameLoc, OperandVector &Operands) override;
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000834
Craig Topper39012cc2014-03-09 18:03:14 +0000835 bool ParseDirective(AsmToken DirectiveID) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000836};
Chris Lattner4eb9df02009-07-29 06:33:53 +0000837} // end anonymous namespace
838
Sean Callanan86c11812010-01-23 00:40:33 +0000839/// @name Auto-generated Match Functions
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000840/// {
Sean Callanan86c11812010-01-23 00:40:33 +0000841
Chris Lattner60db0a62010-02-09 00:34:28 +0000842static unsigned MatchRegisterName(StringRef Name);
Sean Callanan86c11812010-01-23 00:40:33 +0000843
844/// }
Chris Lattner4eb9df02009-07-29 06:33:53 +0000845
Kevin Enderbybc570f22014-01-23 22:34:42 +0000846static bool CheckBaseRegAndIndexReg(unsigned BaseReg, unsigned IndexReg,
847 StringRef &ErrMsg) {
848 // If we have both a base register and an index register make sure they are
849 // both 64-bit or 32-bit registers.
850 // To support VSIB, IndexReg can be 128-bit or 256-bit registers.
Douglas Katzman0411e862016-10-05 15:23:35 +0000851
852 if ((BaseReg == X86::RIP && IndexReg != 0) || (IndexReg == X86::RIP)) {
853 ErrMsg = "invalid base+index expression";
854 return true;
855 }
Kevin Enderbybc570f22014-01-23 22:34:42 +0000856 if (BaseReg != 0 && IndexReg != 0) {
857 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
858 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
859 X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
860 IndexReg != X86::RIZ) {
861 ErrMsg = "base register is 64-bit, but index register is not";
862 return true;
863 }
864 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
865 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
866 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
867 IndexReg != X86::EIZ){
868 ErrMsg = "base register is 32-bit, but index register is not";
869 return true;
870 }
871 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg)) {
872 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg) ||
873 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) {
874 ErrMsg = "base register is 16-bit, but index register is not";
875 return true;
876 }
877 if (((BaseReg == X86::BX || BaseReg == X86::BP) &&
878 IndexReg != X86::SI && IndexReg != X86::DI) ||
879 ((BaseReg == X86::SI || BaseReg == X86::DI) &&
880 IndexReg != X86::BX && IndexReg != X86::BP)) {
881 ErrMsg = "invalid 16-bit base/index register combination";
882 return true;
883 }
884 }
885 }
886 return false;
887}
888
Devang Patel4a6e7782012-01-12 18:03:40 +0000889bool X86AsmParser::ParseRegister(unsigned &RegNo,
890 SMLoc &StartLoc, SMLoc &EndLoc) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000891 MCAsmParser &Parser = getParser();
Chris Lattnercc2ad082010-01-15 18:27:19 +0000892 RegNo = 0;
Benjamin Kramere3d658b2012-09-07 14:51:35 +0000893 const AsmToken &PercentTok = Parser.getTok();
894 StartLoc = PercentTok.getLoc();
895
896 // If we encounter a %, ignore it. This code handles registers with and
897 // without the prefix, unprefixed registers can occur in cfi directives.
898 if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
Devang Patel41b9dde2012-01-17 18:00:18 +0000899 Parser.Lex(); // Eat percent token.
Kevin Enderby7d912182009-09-03 17:15:07 +0000900
Sean Callanan936b0d32010-01-19 21:44:56 +0000901 const AsmToken &Tok = Parser.getTok();
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000902 EndLoc = Tok.getEndLoc();
903
Devang Patelce6a2ca2012-01-20 22:32:05 +0000904 if (Tok.isNot(AsmToken::Identifier)) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000905 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000906 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000907 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +0000908 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000909
Kevin Enderby7d912182009-09-03 17:15:07 +0000910 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000911
Chris Lattner1261b812010-09-22 04:11:10 +0000912 // If the match failed, try the register name as lowercase.
913 if (RegNo == 0)
Benjamin Kramer20baffb2011-11-06 20:37:06 +0000914 RegNo = MatchRegisterName(Tok.getString().lower());
Michael J. Spencer530ce852010-10-09 11:00:50 +0000915
Michael Kupersteincdb076b2015-07-30 10:10:25 +0000916 // The "flags" register cannot be referenced directly.
917 // Treat it as an identifier instead.
918 if (isParsingInlineAsm() && isParsingIntelSyntax() && RegNo == X86::EFLAGS)
919 RegNo = 0;
920
Evan Chengeda1d4f2011-07-27 23:22:03 +0000921 if (!is64BitMode()) {
Eric Christopherc0a5aae2013-12-20 02:04:49 +0000922 // FIXME: This should be done using Requires<Not64BitMode> and
Evan Chengeda1d4f2011-07-27 23:22:03 +0000923 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
924 // checked.
925 // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
926 // REX prefix.
927 if (RegNo == X86::RIZ ||
928 X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
929 X86II::isX86_64NonExtLowByteReg(RegNo) ||
Craig Topper6acca802016-08-27 17:13:37 +0000930 X86II::isX86_64ExtendedReg(RegNo))
Benjamin Kramer1930b002011-10-16 12:10:27 +0000931 return Error(StartLoc, "register %"
932 + Tok.getString() + " is only available in 64-bit mode",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000933 SMRange(StartLoc, EndLoc));
Craig Topper29c22732016-02-26 05:29:32 +0000934 } else if (!getSTI().getFeatureBits()[X86::FeatureAVX512]) {
935 if (X86II::is32ExtendedReg(RegNo))
936 return Error(StartLoc, "register %"
Craig Topperd50b5f82016-02-26 06:50:24 +0000937 + Tok.getString() + " is only available with AVX512",
Craig Topper29c22732016-02-26 05:29:32 +0000938 SMRange(StartLoc, EndLoc));
Evan Chengeda1d4f2011-07-27 23:22:03 +0000939 }
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +0000940
Chris Lattner1261b812010-09-22 04:11:10 +0000941 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
942 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000943 RegNo = X86::ST0;
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000944 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000945
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000946 // Check to see if we have '(4)' after %st.
947 if (getLexer().isNot(AsmToken::LParen))
948 return false;
949 // Lex the paren.
950 getParser().Lex();
951
952 const AsmToken &IntTok = Parser.getTok();
953 if (IntTok.isNot(AsmToken::Integer))
954 return Error(IntTok.getLoc(), "expected stack index");
955 switch (IntTok.getIntVal()) {
956 case 0: RegNo = X86::ST0; break;
957 case 1: RegNo = X86::ST1; break;
958 case 2: RegNo = X86::ST2; break;
959 case 3: RegNo = X86::ST3; break;
960 case 4: RegNo = X86::ST4; break;
961 case 5: RegNo = X86::ST5; break;
962 case 6: RegNo = X86::ST6; break;
963 case 7: RegNo = X86::ST7; break;
964 default: return Error(IntTok.getLoc(), "invalid stack index");
965 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000966
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000967 if (getParser().Lex().isNot(AsmToken::RParen))
968 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000969
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000970 EndLoc = Parser.getTok().getEndLoc();
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000971 Parser.Lex(); // Eat ')'
972 return false;
973 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000974
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000975 EndLoc = Parser.getTok().getEndLoc();
976
Chris Lattner80486622010-06-24 07:29:18 +0000977 // If this is "db[0-7]", match it as an alias
978 // for dr[0-7].
979 if (RegNo == 0 && Tok.getString().size() == 3 &&
980 Tok.getString().startswith("db")) {
981 switch (Tok.getString()[2]) {
982 case '0': RegNo = X86::DR0; break;
983 case '1': RegNo = X86::DR1; break;
984 case '2': RegNo = X86::DR2; break;
985 case '3': RegNo = X86::DR3; break;
986 case '4': RegNo = X86::DR4; break;
987 case '5': RegNo = X86::DR5; break;
988 case '6': RegNo = X86::DR6; break;
989 case '7': RegNo = X86::DR7; break;
990 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000991
Chris Lattner80486622010-06-24 07:29:18 +0000992 if (RegNo != 0) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000993 EndLoc = Parser.getTok().getEndLoc();
Chris Lattner80486622010-06-24 07:29:18 +0000994 Parser.Lex(); // Eat it.
995 return false;
996 }
997 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000998
Devang Patelce6a2ca2012-01-20 22:32:05 +0000999 if (RegNo == 0) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00001000 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +00001001 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +00001002 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +00001003 }
Daniel Dunbar00331992009-07-29 00:02:19 +00001004
Sean Callanana83fd7d2010-01-19 20:27:46 +00001005 Parser.Lex(); // Eat identifier token.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001006 return false;
Daniel Dunbar71475772009-07-17 20:42:00 +00001007}
1008
Yuri Gorshenin3939dec2014-09-10 09:45:49 +00001009void X86AsmParser::SetFrameRegister(unsigned RegNo) {
Yuri Gorshenine8c81fd2014-10-07 11:03:09 +00001010 Instrumentation->SetInitialFrameRegister(RegNo);
Yuri Gorshenin3939dec2014-09-10 09:45:49 +00001011}
1012
David Blaikie960ea3f2014-06-08 16:18:35 +00001013std::unique_ptr<X86Operand> X86AsmParser::DefaultMemSIOperand(SMLoc Loc) {
Nirav Dave6477ce22016-09-26 19:33:36 +00001014 bool Parse32 = is32BitMode() || Code16GCC;
1015 unsigned Basereg = is64BitMode() ? X86::RSI : (Parse32 ? X86::ESI : X86::SI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001016 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001017 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
Nirav Dave6477ce22016-09-26 19:33:36 +00001018 /*BaseReg=*/Basereg, /*IndexReg=*/0, /*Scale=*/1,
Craig Topper055845f2015-01-02 07:02:25 +00001019 Loc, Loc, 0);
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00001020}
1021
David Blaikie960ea3f2014-06-08 16:18:35 +00001022std::unique_ptr<X86Operand> X86AsmParser::DefaultMemDIOperand(SMLoc Loc) {
Nirav Dave6477ce22016-09-26 19:33:36 +00001023 bool Parse32 = is32BitMode() || Code16GCC;
1024 unsigned Basereg = is64BitMode() ? X86::RDI : (Parse32 ? X86::EDI : X86::DI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001025 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001026 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
Nirav Dave6477ce22016-09-26 19:33:36 +00001027 /*BaseReg=*/Basereg, /*IndexReg=*/0, /*Scale=*/1,
Craig Topper055845f2015-01-02 07:02:25 +00001028 Loc, Loc, 0);
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001029}
1030
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001031bool X86AsmParser::IsSIReg(unsigned Reg) {
1032 switch (Reg) {
Craig Topper4d187632016-02-26 05:29:39 +00001033 default: llvm_unreachable("Only (R|E)SI and (R|E)DI are expected!");
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001034 case X86::RSI:
1035 case X86::ESI:
1036 case X86::SI:
1037 return true;
1038 case X86::RDI:
1039 case X86::EDI:
1040 case X86::DI:
1041 return false;
1042 }
1043}
1044
1045unsigned X86AsmParser::GetSIDIForRegClass(unsigned RegClassID, unsigned Reg,
1046 bool IsSIReg) {
1047 switch (RegClassID) {
Craig Topper4d187632016-02-26 05:29:39 +00001048 default: llvm_unreachable("Unexpected register class");
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001049 case X86::GR64RegClassID:
1050 return IsSIReg ? X86::RSI : X86::RDI;
1051 case X86::GR32RegClassID:
1052 return IsSIReg ? X86::ESI : X86::EDI;
1053 case X86::GR16RegClassID:
1054 return IsSIReg ? X86::SI : X86::DI;
1055 }
1056}
1057
Michael Kupersteinffcc7662015-07-23 10:23:48 +00001058void X86AsmParser::AddDefaultSrcDestOperands(
1059 OperandVector& Operands, std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
1060 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst) {
1061 if (isParsingIntelSyntax()) {
1062 Operands.push_back(std::move(Dst));
1063 Operands.push_back(std::move(Src));
1064 }
1065 else {
1066 Operands.push_back(std::move(Src));
1067 Operands.push_back(std::move(Dst));
1068 }
1069}
1070
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001071bool X86AsmParser::VerifyAndAdjustOperands(OperandVector &OrigOperands,
1072 OperandVector &FinalOperands) {
1073
1074 if (OrigOperands.size() > 1) {
Craig Topperd55f4bc2016-02-16 07:45:07 +00001075 // Check if sizes match, OrigOperands also contains the instruction name
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001076 assert(OrigOperands.size() == FinalOperands.size() + 1 &&
Craig Topperd55f4bc2016-02-16 07:45:07 +00001077 "Operand size mismatch");
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001078
Marina Yatsinaff262fa2016-01-21 11:37:06 +00001079 SmallVector<std::pair<SMLoc, std::string>, 2> Warnings;
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001080 // Verify types match
1081 int RegClassID = -1;
1082 for (unsigned int i = 0; i < FinalOperands.size(); ++i) {
1083 X86Operand &OrigOp = static_cast<X86Operand &>(*OrigOperands[i + 1]);
1084 X86Operand &FinalOp = static_cast<X86Operand &>(*FinalOperands[i]);
1085
1086 if (FinalOp.isReg() &&
1087 (!OrigOp.isReg() || FinalOp.getReg() != OrigOp.getReg()))
1088 // Return false and let a normal complaint about bogus operands happen
1089 return false;
1090
1091 if (FinalOp.isMem()) {
1092
1093 if (!OrigOp.isMem())
1094 // Return false and let a normal complaint about bogus operands happen
1095 return false;
1096
1097 unsigned OrigReg = OrigOp.Mem.BaseReg;
1098 unsigned FinalReg = FinalOp.Mem.BaseReg;
1099
1100 // If we've already encounterd a register class, make sure all register
1101 // bases are of the same register class
1102 if (RegClassID != -1 &&
1103 !X86MCRegisterClasses[RegClassID].contains(OrigReg)) {
1104 return Error(OrigOp.getStartLoc(),
1105 "mismatching source and destination index registers");
1106 }
1107
1108 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(OrigReg))
1109 RegClassID = X86::GR64RegClassID;
1110 else if (X86MCRegisterClasses[X86::GR32RegClassID].contains(OrigReg))
1111 RegClassID = X86::GR32RegClassID;
1112 else if (X86MCRegisterClasses[X86::GR16RegClassID].contains(OrigReg))
1113 RegClassID = X86::GR16RegClassID;
Marina Yatsina701938d2016-01-20 14:03:47 +00001114 else
Craig Topper5a62f7e2016-02-16 07:28:03 +00001115 // Unexpected register class type
Marina Yatsina701938d2016-01-20 14:03:47 +00001116 // Return false and let a normal complaint about bogus operands happen
1117 return false;
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001118
1119 bool IsSI = IsSIReg(FinalReg);
1120 FinalReg = GetSIDIForRegClass(RegClassID, FinalReg, IsSI);
1121
1122 if (FinalReg != OrigReg) {
1123 std::string RegName = IsSI ? "ES:(R|E)SI" : "ES:(R|E)DI";
Marina Yatsinaff262fa2016-01-21 11:37:06 +00001124 Warnings.push_back(std::make_pair(
1125 OrigOp.getStartLoc(),
1126 "memory operand is only for determining the size, " + RegName +
1127 " will be used for the location"));
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001128 }
1129
1130 FinalOp.Mem.Size = OrigOp.Mem.Size;
1131 FinalOp.Mem.SegReg = OrigOp.Mem.SegReg;
1132 FinalOp.Mem.BaseReg = FinalReg;
1133 }
1134 }
1135
Marina Yatsinaff262fa2016-01-21 11:37:06 +00001136 // Produce warnings only if all the operands passed the adjustment - prevent
1137 // legal cases like "movsd (%rax), %xmm0" mistakenly produce warnings
Craig Topper16d7eb22016-02-16 07:45:04 +00001138 for (auto &WarningMsg : Warnings) {
1139 Warning(WarningMsg.first, WarningMsg.second);
Marina Yatsinaff262fa2016-01-21 11:37:06 +00001140 }
1141
1142 // Remove old operands
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001143 for (unsigned int i = 0; i < FinalOperands.size(); ++i)
1144 OrigOperands.pop_back();
1145 }
1146 // OrigOperands.append(FinalOperands.begin(), FinalOperands.end());
1147 for (unsigned int i = 0; i < FinalOperands.size(); ++i)
1148 OrigOperands.push_back(std::move(FinalOperands[i]));
1149
1150 return false;
1151}
1152
David Blaikie960ea3f2014-06-08 16:18:35 +00001153std::unique_ptr<X86Operand> X86AsmParser::ParseOperand() {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00001154 if (isParsingIntelSyntax())
Devang Patel46831de2012-01-12 01:36:43 +00001155 return ParseIntelOperand();
1156 return ParseATTOperand();
1157}
1158
Devang Patel41b9dde2012-01-17 18:00:18 +00001159/// getIntelMemOperandSize - Return intel memory operand size.
1160static unsigned getIntelMemOperandSize(StringRef OpStr) {
Chad Rosierb6b8e962012-09-11 21:10:25 +00001161 unsigned Size = StringSwitch<unsigned>(OpStr)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001162 .Cases("BYTE", "byte", 8)
1163 .Cases("WORD", "word", 16)
1164 .Cases("DWORD", "dword", 32)
Marina Yatsina497d44a2015-12-07 13:09:20 +00001165 .Cases("FWORD", "fword", 48)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001166 .Cases("QWORD", "qword", 64)
Michael Zuckerman9beca2e2015-08-24 10:26:54 +00001167 .Cases("MMWORD","mmword", 64)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001168 .Cases("XWORD", "xword", 80)
Michael Kuperstein69e40a42015-07-19 11:03:08 +00001169 .Cases("TBYTE", "tbyte", 80)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001170 .Cases("XMMWORD", "xmmword", 128)
1171 .Cases("YMMWORD", "ymmword", 256)
Craig Topper9ac290a2014-01-17 07:37:39 +00001172 .Cases("ZMMWORD", "zmmword", 512)
Craig Topper2d4b3c92014-01-17 07:44:10 +00001173 .Cases("OPAQUE", "opaque", -1U) // needs to be non-zero, but doesn't matter
Chad Rosierb6b8e962012-09-11 21:10:25 +00001174 .Default(0);
1175 return Size;
Devang Patel46831de2012-01-12 01:36:43 +00001176}
1177
David Blaikie960ea3f2014-06-08 16:18:35 +00001178std::unique_ptr<X86Operand> X86AsmParser::CreateMemForInlineAsm(
1179 unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg,
1180 unsigned Scale, SMLoc Start, SMLoc End, unsigned Size, StringRef Identifier,
Coby Tayree49b37332016-11-22 09:30:29 +00001181 InlineAsmIdentifierInfo &Info, bool AllowBetterSizeMatch) {
Reid Kleckner5b37c182014-08-01 20:21:24 +00001182 // If we found a decl other than a VarDecl, then assume it is a FuncDecl or
1183 // some other label reference.
1184 if (isa<MCSymbolRefExpr>(Disp) && Info.OpDecl && !Info.IsVarDecl) {
1185 // Insert an explicit size if the user didn't have one.
1186 if (!Size) {
1187 Size = getPointerWidth();
Craig Topper7d5b2312015-10-10 05:25:02 +00001188 InstInfo->AsmRewrites->emplace_back(AOK_SizeDirective, Start,
1189 /*Len=*/0, Size);
Reid Kleckner5b37c182014-08-01 20:21:24 +00001190 }
1191
1192 // Create an absolute memory reference in order to match against
1193 // instructions taking a PC relative operand.
Craig Topper055845f2015-01-02 07:02:25 +00001194 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size,
1195 Identifier, Info.OpDecl);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001196 }
1197
1198 // We either have a direct symbol reference, or an offset from a symbol. The
1199 // parser always puts the symbol on the LHS, so look there for size
1200 // calculation purposes.
1201 const MCBinaryExpr *BinOp = dyn_cast<MCBinaryExpr>(Disp);
1202 bool IsSymRef =
1203 isa<MCSymbolRefExpr>(BinOp ? BinOp->getLHS() : Disp);
1204 if (IsSymRef) {
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001205 if (!Size) {
1206 Size = Info.Type * 8; // Size is in terms of bits in this context.
1207 if (Size)
Craig Topper7d5b2312015-10-10 05:25:02 +00001208 InstInfo->AsmRewrites->emplace_back(AOK_SizeDirective, Start,
1209 /*Len=*/0, Size);
Coby Tayree49b37332016-11-22 09:30:29 +00001210 if (AllowBetterSizeMatch)
1211 // Handle cases where size qualifier is absent, upon an indirect symbol
1212 // reference - e.g. "vaddps zmm1, zmm2, [var]"
1213 // set Size to zero to allow matching mechansim to try and find a better
1214 // size qualifier than our initial guess, based on available variants of
1215 // the given instruction
1216 Size = 0;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001217 }
Chad Rosier7ca135b2013-03-19 21:11:56 +00001218 }
1219
Chad Rosier7ca135b2013-03-19 21:11:56 +00001220 // When parsing inline assembly we set the base register to a non-zero value
Chad Rosier175d0ae2013-04-12 18:21:18 +00001221 // if we don't know the actual value at this time. This is necessary to
Chad Rosier7ca135b2013-03-19 21:11:56 +00001222 // get the matching correct in some cases.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001223 BaseReg = BaseReg ? BaseReg : 1;
Craig Topper055845f2015-01-02 07:02:25 +00001224 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1225 IndexReg, Scale, Start, End, Size, Identifier,
1226 Info.OpDecl);
Chad Rosier7ca135b2013-03-19 21:11:56 +00001227}
1228
Chad Rosierd383db52013-04-12 20:20:54 +00001229static void
Craig Topper7143d802015-10-10 05:25:06 +00001230RewriteIntelBracExpression(SmallVectorImpl<AsmRewrite> &AsmRewrites,
Chad Rosierd383db52013-04-12 20:20:54 +00001231 StringRef SymName, int64_t ImmDisp,
1232 int64_t FinalImmDisp, SMLoc &BracLoc,
1233 SMLoc &StartInBrac, SMLoc &End) {
1234 // Remove the '[' and ']' from the IR string.
Craig Topper7143d802015-10-10 05:25:06 +00001235 AsmRewrites.emplace_back(AOK_Skip, BracLoc, 1);
1236 AsmRewrites.emplace_back(AOK_Skip, End, 1);
Chad Rosierd383db52013-04-12 20:20:54 +00001237
1238 // If ImmDisp is non-zero, then we parsed a displacement before the
1239 // bracketed expression (i.e., ImmDisp [ BaseReg + Scale*IndexReg + Disp])
1240 // If ImmDisp doesn't match the displacement computed by the state machine
1241 // then we have an additional displacement in the bracketed expression.
1242 if (ImmDisp != FinalImmDisp) {
1243 if (ImmDisp) {
1244 // We have an immediate displacement before the bracketed expression.
1245 // Adjust this to match the final immediate displacement.
1246 bool Found = false;
Craig Topper7143d802015-10-10 05:25:06 +00001247 for (AsmRewrite &AR : AsmRewrites) {
1248 if (AR.Loc.getPointer() > BracLoc.getPointer())
Chad Rosierd383db52013-04-12 20:20:54 +00001249 continue;
Craig Topper7143d802015-10-10 05:25:06 +00001250 if (AR.Kind == AOK_ImmPrefix || AR.Kind == AOK_Imm) {
Chad Rosierbfb70992013-04-17 00:11:46 +00001251 assert (!Found && "ImmDisp already rewritten.");
Craig Topper7143d802015-10-10 05:25:06 +00001252 AR.Kind = AOK_Imm;
1253 AR.Len = BracLoc.getPointer() - AR.Loc.getPointer();
1254 AR.Val = FinalImmDisp;
Chad Rosierd383db52013-04-12 20:20:54 +00001255 Found = true;
1256 break;
1257 }
1258 }
1259 assert (Found && "Unable to rewrite ImmDisp.");
Duncan Sands0480b9b2013-05-13 07:50:47 +00001260 (void)Found;
Chad Rosierd383db52013-04-12 20:20:54 +00001261 } else {
1262 // We have a symbolic and an immediate displacement, but no displacement
Chad Rosierbfb70992013-04-17 00:11:46 +00001263 // before the bracketed expression. Put the immediate displacement
Chad Rosierd383db52013-04-12 20:20:54 +00001264 // before the bracketed expression.
Craig Topper7143d802015-10-10 05:25:06 +00001265 AsmRewrites.emplace_back(AOK_Imm, BracLoc, 0, FinalImmDisp);
Chad Rosierd383db52013-04-12 20:20:54 +00001266 }
1267 }
1268 // Remove all the ImmPrefix rewrites within the brackets.
Craig Topper7143d802015-10-10 05:25:06 +00001269 for (AsmRewrite &AR : AsmRewrites) {
1270 if (AR.Loc.getPointer() < StartInBrac.getPointer())
Chad Rosierd383db52013-04-12 20:20:54 +00001271 continue;
Craig Topper7143d802015-10-10 05:25:06 +00001272 if (AR.Kind == AOK_ImmPrefix)
1273 AR.Kind = AOK_Delete;
Chad Rosierd383db52013-04-12 20:20:54 +00001274 }
1275 const char *SymLocPtr = SymName.data();
Michael Liao5bf95782014-12-04 05:20:33 +00001276 // Skip everything before the symbol.
Chad Rosierd383db52013-04-12 20:20:54 +00001277 if (unsigned Len = SymLocPtr - StartInBrac.getPointer()) {
1278 assert(Len > 0 && "Expected a non-negative length.");
Craig Topper7d5b2312015-10-10 05:25:02 +00001279 AsmRewrites.emplace_back(AOK_Skip, StartInBrac, Len);
Chad Rosierd383db52013-04-12 20:20:54 +00001280 }
1281 // Skip everything after the symbol.
1282 if (unsigned Len = End.getPointer() - (SymLocPtr + SymName.size())) {
1283 SMLoc Loc = SMLoc::getFromPointer(SymLocPtr + SymName.size());
1284 assert(Len > 0 && "Expected a non-negative length.");
Craig Topper7d5b2312015-10-10 05:25:02 +00001285 AsmRewrites.emplace_back(AOK_Skip, Loc, Len);
Chad Rosierd383db52013-04-12 20:20:54 +00001286 }
1287}
1288
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001289bool X86AsmParser::ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001290 MCAsmParser &Parser = getParser();
Chad Rosier6844ea02012-10-24 22:13:37 +00001291 const AsmToken &Tok = Parser.getTok();
Chad Rosier51afe632012-06-27 22:34:28 +00001292
Marina Yatsina8dfd5cb2015-12-24 12:09:51 +00001293 AsmToken::TokenKind PrevTK = AsmToken::Error;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001294 bool Done = false;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001295 while (!Done) {
1296 bool UpdateLocLex = true;
1297
1298 // The period in the dot operator (e.g., [ebx].foo.bar) is parsed as an
1299 // identifier. Don't try an parse it as a register.
Nirav Dave8601ac12016-08-02 17:56:03 +00001300 if (PrevTK != AsmToken::Error && Tok.getString().startswith("."))
Chad Rosier5c118fd2013-01-14 22:31:35 +00001301 break;
Michael Liao5bf95782014-12-04 05:20:33 +00001302
Chad Rosierbfb70992013-04-17 00:11:46 +00001303 // If we're parsing an immediate expression, we don't expect a '['.
1304 if (SM.getStopOnLBrac() && getLexer().getKind() == AsmToken::LBrac)
1305 break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001306
David Majnemer6a5b8122014-06-19 01:25:43 +00001307 AsmToken::TokenKind TK = getLexer().getKind();
1308 switch (TK) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001309 default: {
1310 if (SM.isValidEndState()) {
1311 Done = true;
1312 break;
1313 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001314 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001315 }
Chad Rosierbfb70992013-04-17 00:11:46 +00001316 case AsmToken::EndOfStatement: {
1317 Done = true;
1318 break;
1319 }
David Majnemer6a5b8122014-06-19 01:25:43 +00001320 case AsmToken::String:
Chad Rosier5c118fd2013-01-14 22:31:35 +00001321 case AsmToken::Identifier: {
Chad Rosier175d0ae2013-04-12 18:21:18 +00001322 // This could be a register or a symbolic displacement.
1323 unsigned TmpReg;
Chad Rosier95ce8892013-04-19 18:39:50 +00001324 const MCExpr *Val;
Chad Rosier152749c2013-04-12 18:54:20 +00001325 SMLoc IdentLoc = Tok.getLoc();
1326 StringRef Identifier = Tok.getString();
David Majnemer6a5b8122014-06-19 01:25:43 +00001327 if (TK != AsmToken::String && !ParseRegister(TmpReg, IdentLoc, End)) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001328 SM.onRegister(TmpReg);
1329 UpdateLocLex = false;
1330 break;
Chad Rosier95ce8892013-04-19 18:39:50 +00001331 } else {
1332 if (!isParsingInlineAsm()) {
1333 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001334 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier95ce8892013-04-19 18:39:50 +00001335 } else {
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001336 // This is a dot operator, not an adjacent identifier.
Marina Yatsina8dfd5cb2015-12-24 12:09:51 +00001337 if (Identifier.find('.') != StringRef::npos &&
1338 PrevTK == AsmToken::RBrac) {
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001339 return false;
1340 } else {
1341 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
1342 if (ParseIntelIdentifier(Val, Identifier, Info,
1343 /*Unevaluated=*/false, End))
1344 return true;
1345 }
Chad Rosier95ce8892013-04-19 18:39:50 +00001346 }
1347 SM.onIdentifierExpr(Val, Identifier);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001348 UpdateLocLex = false;
1349 break;
1350 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001351 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001352 }
Kevin Enderby36eba252013-12-19 23:16:14 +00001353 case AsmToken::Integer: {
Kevin Enderby9d117022014-01-23 21:52:41 +00001354 StringRef ErrMsg;
Chad Rosierbfb70992013-04-17 00:11:46 +00001355 if (isParsingInlineAsm() && SM.getAddImmPrefix())
Craig Topper7d5b2312015-10-10 05:25:02 +00001356 InstInfo->AsmRewrites->emplace_back(AOK_ImmPrefix, Tok.getLoc());
Kevin Enderby36eba252013-12-19 23:16:14 +00001357 // Look for 'b' or 'f' following an Integer as a directional label
1358 SMLoc Loc = getTok().getLoc();
1359 int64_t IntVal = getTok().getIntVal();
1360 End = consumeToken();
1361 UpdateLocLex = false;
1362 if (getLexer().getKind() == AsmToken::Identifier) {
1363 StringRef IDVal = getTok().getString();
1364 if (IDVal == "f" || IDVal == "b") {
1365 MCSymbol *Sym =
Jim Grosbach6f482002015-05-18 18:43:14 +00001366 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b");
Kevin Enderby36eba252013-12-19 23:16:14 +00001367 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Michael Liao5bf95782014-12-04 05:20:33 +00001368 const MCExpr *Val =
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00001369 MCSymbolRefExpr::create(Sym, Variant, getContext());
Kevin Enderby36eba252013-12-19 23:16:14 +00001370 if (IDVal == "b" && Sym->isUndefined())
1371 return Error(Loc, "invalid reference to undefined symbol");
1372 StringRef Identifier = Sym->getName();
1373 SM.onIdentifierExpr(Val, Identifier);
1374 End = consumeToken();
1375 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001376 if (SM.onInteger(IntVal, ErrMsg))
1377 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001378 }
1379 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001380 if (SM.onInteger(IntVal, ErrMsg))
1381 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001382 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001383 break;
Kevin Enderby36eba252013-12-19 23:16:14 +00001384 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001385 case AsmToken::Plus: SM.onPlus(); break;
1386 case AsmToken::Minus: SM.onMinus(); break;
Ehsan Akhgari4103da62014-07-04 19:13:05 +00001387 case AsmToken::Tilde: SM.onNot(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001388 case AsmToken::Star: SM.onStar(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001389 case AsmToken::Slash: SM.onDivide(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001390 case AsmToken::Pipe: SM.onOr(); break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +00001391 case AsmToken::Caret: SM.onXor(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001392 case AsmToken::Amp: SM.onAnd(); break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +00001393 case AsmToken::LessLess:
1394 SM.onLShift(); break;
1395 case AsmToken::GreaterGreater:
1396 SM.onRShift(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001397 case AsmToken::LBrac: SM.onLBrac(); break;
1398 case AsmToken::RBrac: SM.onRBrac(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001399 case AsmToken::LParen: SM.onLParen(); break;
1400 case AsmToken::RParen: SM.onRParen(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001401 }
Chad Rosier31246272013-04-17 21:01:45 +00001402 if (SM.hadError())
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001403 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier31246272013-04-17 21:01:45 +00001404
Alp Tokera5b88a52013-12-02 16:06:06 +00001405 if (!Done && UpdateLocLex)
1406 End = consumeToken();
Marina Yatsina8dfd5cb2015-12-24 12:09:51 +00001407
1408 PrevTK = TK;
Devang Patel41b9dde2012-01-17 18:00:18 +00001409 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001410 return false;
Chad Rosier5362af92013-04-16 18:15:40 +00001411}
1412
David Blaikie960ea3f2014-06-08 16:18:35 +00001413std::unique_ptr<X86Operand>
1414X86AsmParser::ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
Nirav Dave8601ac12016-08-02 17:56:03 +00001415 int64_t ImmDisp, bool isSymbol,
1416 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001417 MCAsmParser &Parser = getParser();
Chad Rosier5362af92013-04-16 18:15:40 +00001418 const AsmToken &Tok = Parser.getTok();
1419 SMLoc BracLoc = Tok.getLoc(), End = Tok.getEndLoc();
1420 if (getLexer().isNot(AsmToken::LBrac))
1421 return ErrorOperand(BracLoc, "Expected '[' token!");
1422 Parser.Lex(); // Eat '['
1423
Nirav Davea6c75952016-07-14 17:37:05 +00001424 SMLoc StartInBrac = Parser.getTok().getLoc();
Chad Rosier5362af92013-04-16 18:15:40 +00001425 // Parse [ Symbol + ImmDisp ] and [ BaseReg + Scale*IndexReg + ImmDisp ]. We
1426 // may have already parsed an immediate displacement before the bracketed
1427 // expression.
Chad Rosierbfb70992013-04-17 00:11:46 +00001428 IntelExprStateMachine SM(ImmDisp, /*StopOnLBrac=*/false, /*AddImmPrefix=*/true);
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001429 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001430 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +00001431
Craig Topper062a2ba2014-04-25 05:30:21 +00001432 const MCExpr *Disp = nullptr;
Chad Rosier175d0ae2013-04-12 18:21:18 +00001433 if (const MCExpr *Sym = SM.getSym()) {
Chad Rosierd383db52013-04-12 20:20:54 +00001434 // A symbolic displacement.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001435 Disp = Sym;
Chad Rosierd383db52013-04-12 20:20:54 +00001436 if (isParsingInlineAsm())
Craig Topper7143d802015-10-10 05:25:06 +00001437 RewriteIntelBracExpression(*InstInfo->AsmRewrites, SM.getSymName(),
Chad Rosier5362af92013-04-16 18:15:40 +00001438 ImmDisp, SM.getImm(), BracLoc, StartInBrac,
Chad Rosierd383db52013-04-12 20:20:54 +00001439 End);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001440 }
1441
1442 if (SM.getImm() || !Disp) {
Jim Grosbach13760bd2015-05-30 01:25:56 +00001443 const MCExpr *Imm = MCConstantExpr::create(SM.getImm(), getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001444 if (Disp)
Jim Grosbach13760bd2015-05-30 01:25:56 +00001445 Disp = MCBinaryExpr::createAdd(Disp, Imm, getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001446 else
1447 Disp = Imm; // An immediate displacement only.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001448 }
Devang Pateld0930ff2012-01-20 21:21:01 +00001449
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001450 // Parse struct field access. Intel requires a dot, but MSVC doesn't. MSVC
1451 // will in fact do global lookup the field name inside all global typedefs,
1452 // but we don't emulate that.
Nirav Davea6c75952016-07-14 17:37:05 +00001453 if ((Parser.getTok().getKind() == AsmToken::Identifier ||
1454 Parser.getTok().getKind() == AsmToken::Dot ||
1455 Parser.getTok().getKind() == AsmToken::Real) &&
1456 Parser.getTok().getString().find('.') != StringRef::npos) {
Chad Rosier911c1f32012-10-25 17:37:43 +00001457 const MCExpr *NewDisp;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001458 if (ParseIntelDotOperator(Disp, NewDisp))
Craig Topper062a2ba2014-04-25 05:30:21 +00001459 return nullptr;
Michael Liao5bf95782014-12-04 05:20:33 +00001460
Chad Rosier70f47592013-04-10 20:07:47 +00001461 End = Tok.getEndLoc();
Chad Rosier911c1f32012-10-25 17:37:43 +00001462 Parser.Lex(); // Eat the field.
1463 Disp = NewDisp;
1464 }
Chad Rosier5dcb4662012-10-24 22:21:50 +00001465
Nirav Dave8601ac12016-08-02 17:56:03 +00001466 if (isSymbol) {
1467 if (SM.getSym()) {
1468 Error(Start, "cannot use more than one symbol in memory operand");
1469 return nullptr;
1470 }
1471 if (SM.getBaseReg()) {
1472 Error(Start, "cannot use base register with variable reference");
1473 return nullptr;
1474 }
1475 if (SM.getIndexReg()) {
1476 Error(Start, "cannot use index register with variable reference");
1477 return nullptr;
1478 }
1479 }
1480
Chad Rosier5c118fd2013-01-14 22:31:35 +00001481 int BaseReg = SM.getBaseReg();
1482 int IndexReg = SM.getIndexReg();
Chad Rosier175d0ae2013-04-12 18:21:18 +00001483 int Scale = SM.getScale();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001484 if (!isParsingInlineAsm()) {
1485 // handle [-42]
1486 if (!BaseReg && !IndexReg) {
1487 if (!SegReg)
Craig Topper055845f2015-01-02 07:02:25 +00001488 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size);
1489 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1490 Start, End, Size);
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001491 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00001492 StringRef ErrMsg;
1493 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
1494 Error(StartInBrac, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00001495 return nullptr;
Kevin Enderbybc570f22014-01-23 22:34:42 +00001496 }
Craig Topper055845f2015-01-02 07:02:25 +00001497 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1498 IndexReg, Scale, Start, End, Size);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001499 }
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001500
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001501 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001502 return CreateMemForInlineAsm(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
Coby Tayree49b37332016-11-22 09:30:29 +00001503 End, Size, SM.getSymName(), Info,
1504 isParsingInlineAsm());
Devang Patel41b9dde2012-01-17 18:00:18 +00001505}
1506
Chad Rosier8a244662013-04-02 20:02:33 +00001507// Inline assembly may use variable names with namespace alias qualifiers.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001508bool X86AsmParser::ParseIntelIdentifier(const MCExpr *&Val,
1509 StringRef &Identifier,
1510 InlineAsmIdentifierInfo &Info,
1511 bool IsUnevaluatedOperand, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001512 MCAsmParser &Parser = getParser();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001513 assert(isParsingInlineAsm() && "Expected to be parsing inline assembly.");
Craig Topper062a2ba2014-04-25 05:30:21 +00001514 Val = nullptr;
Chad Rosier8a244662013-04-02 20:02:33 +00001515
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001516 StringRef LineBuf(Identifier.data());
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001517 void *Result =
1518 SemaCallback->LookupInlineAsmIdentifier(LineBuf, Info, IsUnevaluatedOperand);
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001519
Chad Rosier8a244662013-04-02 20:02:33 +00001520 const AsmToken &Tok = Parser.getTok();
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001521 SMLoc Loc = Tok.getLoc();
John McCallf73981b2013-05-03 00:15:41 +00001522
1523 // Advance the token stream until the end of the current token is
1524 // after the end of what the frontend claimed.
1525 const char *EndPtr = Tok.getLoc().getPointer() + LineBuf.size();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001526 do {
John McCallf73981b2013-05-03 00:15:41 +00001527 End = Tok.getEndLoc();
1528 getLexer().Lex();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001529 } while (End.getPointer() < EndPtr);
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001530 Identifier = LineBuf;
1531
Reid Klecknerc2b92542015-08-26 21:57:25 +00001532 // The frontend should end parsing on an assembler token boundary, unless it
1533 // failed parsing.
1534 assert((End.getPointer() == EndPtr || !Result) &&
1535 "frontend claimed part of a token?");
1536
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001537 // If the identifier lookup was unsuccessful, assume that we are dealing with
1538 // a label.
1539 if (!Result) {
Ehsan Akhgaribb6bb072014-09-22 20:40:36 +00001540 StringRef InternalName =
1541 SemaCallback->LookupInlineAsmLabel(Identifier, getSourceManager(),
1542 Loc, false);
1543 assert(InternalName.size() && "We should have an internal name here.");
1544 // Push a rewrite for replacing the identifier name with the internal name.
Craig Topper7d5b2312015-10-10 05:25:02 +00001545 InstInfo->AsmRewrites->emplace_back(AOK_Label, Loc, Identifier.size(),
1546 InternalName);
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001547 }
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001548
1549 // Create the symbol reference.
Jim Grosbach6f482002015-05-18 18:43:14 +00001550 MCSymbol *Sym = getContext().getOrCreateSymbol(Identifier);
Chad Rosier8a244662013-04-02 20:02:33 +00001551 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach13760bd2015-05-30 01:25:56 +00001552 Val = MCSymbolRefExpr::create(Sym, Variant, getParser().getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001553 return false;
Chad Rosier8a244662013-04-02 20:02:33 +00001554}
1555
David Majnemeraa34d792013-08-27 21:56:17 +00001556/// \brief Parse intel style segment override.
David Blaikie960ea3f2014-06-08 16:18:35 +00001557std::unique_ptr<X86Operand>
1558X86AsmParser::ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start,
1559 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001560 MCAsmParser &Parser = getParser();
David Majnemeraa34d792013-08-27 21:56:17 +00001561 assert(SegReg != 0 && "Tried to parse a segment override without a segment!");
1562 const AsmToken &Tok = Parser.getTok(); // Eat colon.
1563 if (Tok.isNot(AsmToken::Colon))
1564 return ErrorOperand(Tok.getLoc(), "Expected ':' token!");
1565 Parser.Lex(); // Eat ':'
Devang Patel41b9dde2012-01-17 18:00:18 +00001566
David Majnemeraa34d792013-08-27 21:56:17 +00001567 int64_t ImmDisp = 0;
Chad Rosier1530ba52013-03-27 21:49:56 +00001568 if (getLexer().is(AsmToken::Integer)) {
David Majnemeraa34d792013-08-27 21:56:17 +00001569 ImmDisp = Tok.getIntVal();
1570 AsmToken ImmDispToken = Parser.Lex(); // Eat the integer.
1571
Chad Rosier1530ba52013-03-27 21:49:56 +00001572 if (isParsingInlineAsm())
Craig Topper7d5b2312015-10-10 05:25:02 +00001573 InstInfo->AsmRewrites->emplace_back(AOK_ImmPrefix, ImmDispToken.getLoc());
David Majnemeraa34d792013-08-27 21:56:17 +00001574
1575 if (getLexer().isNot(AsmToken::LBrac)) {
1576 // An immediate following a 'segment register', 'colon' token sequence can
1577 // be followed by a bracketed expression. If it isn't we know we have our
1578 // final segment override.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001579 const MCExpr *Disp = MCConstantExpr::create(ImmDisp, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001580 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp,
1581 /*BaseReg=*/0, /*IndexReg=*/0, /*Scale=*/1,
1582 Start, ImmDispToken.getEndLoc(), Size);
David Majnemeraa34d792013-08-27 21:56:17 +00001583 }
Chad Rosier1530ba52013-03-27 21:49:56 +00001584 }
1585
Chad Rosier91c82662012-10-24 17:22:29 +00001586 if (getLexer().is(AsmToken::LBrac))
Nirav Dave8601ac12016-08-02 17:56:03 +00001587 return ParseIntelBracExpression(SegReg, Start, ImmDisp, false, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001588
David Majnemeraa34d792013-08-27 21:56:17 +00001589 const MCExpr *Val;
1590 SMLoc End;
1591 if (!isParsingInlineAsm()) {
1592 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001593 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
David Majnemeraa34d792013-08-27 21:56:17 +00001594
Craig Topper055845f2015-01-02 07:02:25 +00001595 return X86Operand::CreateMem(getPointerWidth(), Val, Start, End, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001596 }
Devang Patel41b9dde2012-01-17 18:00:18 +00001597
David Majnemeraa34d792013-08-27 21:56:17 +00001598 InlineAsmIdentifierInfo Info;
1599 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001600 if (ParseIntelIdentifier(Val, Identifier, Info,
1601 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001602 return nullptr;
David Majnemeraa34d792013-08-27 21:56:17 +00001603 return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0,/*IndexReg=*/0,
1604 /*Scale=*/1, Start, End, Size, Identifier, Info);
1605}
1606
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001607//ParseRoundingModeOp - Parse AVX-512 rounding mode operand
1608std::unique_ptr<X86Operand>
1609X86AsmParser::ParseRoundingModeOp(SMLoc Start, SMLoc End) {
1610 MCAsmParser &Parser = getParser();
1611 const AsmToken &Tok = Parser.getTok();
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001612 // Eat "{" and mark the current place.
1613 const SMLoc consumedToken = consumeToken();
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001614 if (Tok.getIdentifier().startswith("r")){
1615 int rndMode = StringSwitch<int>(Tok.getIdentifier())
1616 .Case("rn", X86::STATIC_ROUNDING::TO_NEAREST_INT)
1617 .Case("rd", X86::STATIC_ROUNDING::TO_NEG_INF)
1618 .Case("ru", X86::STATIC_ROUNDING::TO_POS_INF)
1619 .Case("rz", X86::STATIC_ROUNDING::TO_ZERO)
1620 .Default(-1);
1621 if (-1 == rndMode)
1622 return ErrorOperand(Tok.getLoc(), "Invalid rounding mode.");
1623 Parser.Lex(); // Eat "r*" of r*-sae
1624 if (!getLexer().is(AsmToken::Minus))
1625 return ErrorOperand(Tok.getLoc(), "Expected - at this point");
1626 Parser.Lex(); // Eat "-"
1627 Parser.Lex(); // Eat the sae
1628 if (!getLexer().is(AsmToken::RCurly))
1629 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1630 Parser.Lex(); // Eat "}"
1631 const MCExpr *RndModeOp =
Jim Grosbach13760bd2015-05-30 01:25:56 +00001632 MCConstantExpr::create(rndMode, Parser.getContext());
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001633 return X86Operand::CreateImm(RndModeOp, Start, End);
1634 }
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001635 if(Tok.getIdentifier().equals("sae")){
1636 Parser.Lex(); // Eat the sae
1637 if (!getLexer().is(AsmToken::RCurly))
1638 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1639 Parser.Lex(); // Eat "}"
1640 return X86Operand::CreateToken("{sae}", consumedToken);
1641 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001642 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
1643}
Chad Rosier91c82662012-10-24 17:22:29 +00001644
Chad Rosier5dcb4662012-10-24 22:21:50 +00001645/// Parse the '.' operator.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001646bool X86AsmParser::ParseIntelDotOperator(const MCExpr *Disp,
Chad Rosiercc541e82013-04-19 15:57:00 +00001647 const MCExpr *&NewDisp) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001648 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001649 const AsmToken &Tok = Parser.getTok();
Chad Rosier6241c1a2013-04-17 21:14:38 +00001650 int64_t OrigDispVal, DotDispVal;
Chad Rosier911c1f32012-10-25 17:37:43 +00001651
1652 // FIXME: Handle non-constant expressions.
Chad Rosiercc541e82013-04-19 15:57:00 +00001653 if (const MCConstantExpr *OrigDisp = dyn_cast<MCConstantExpr>(Disp))
Chad Rosier911c1f32012-10-25 17:37:43 +00001654 OrigDispVal = OrigDisp->getValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001655 else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001656 return Error(Tok.getLoc(), "Non-constant offsets are not supported!");
Chad Rosier5dcb4662012-10-24 22:21:50 +00001657
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001658 // Drop the optional '.'.
1659 StringRef DotDispStr = Tok.getString();
1660 if (DotDispStr.startswith("."))
1661 DotDispStr = DotDispStr.drop_front(1);
Chad Rosier5dcb4662012-10-24 22:21:50 +00001662
Chad Rosier5dcb4662012-10-24 22:21:50 +00001663 // .Imm gets lexed as a real.
1664 if (Tok.is(AsmToken::Real)) {
1665 APInt DotDisp;
1666 DotDispStr.getAsInteger(10, DotDisp);
Chad Rosier911c1f32012-10-25 17:37:43 +00001667 DotDispVal = DotDisp.getZExtValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001668 } else if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
Chad Rosier240b7b92012-10-25 21:51:10 +00001669 unsigned DotDisp;
1670 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.');
1671 if (SemaCallback->LookupInlineAsmField(BaseMember.first, BaseMember.second,
Chad Rosiercc541e82013-04-19 15:57:00 +00001672 DotDisp))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001673 return Error(Tok.getLoc(), "Unable to lookup field reference!");
Chad Rosier240b7b92012-10-25 21:51:10 +00001674 DotDispVal = DotDisp;
Chad Rosiercc541e82013-04-19 15:57:00 +00001675 } else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001676 return Error(Tok.getLoc(), "Unexpected token type!");
Chad Rosier911c1f32012-10-25 17:37:43 +00001677
Chad Rosier240b7b92012-10-25 21:51:10 +00001678 if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
1679 SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data());
1680 unsigned Len = DotDispStr.size();
1681 unsigned Val = OrigDispVal + DotDispVal;
Craig Topper7d5b2312015-10-10 05:25:02 +00001682 InstInfo->AsmRewrites->emplace_back(AOK_DotOperator, Loc, Len, Val);
Chad Rosier911c1f32012-10-25 17:37:43 +00001683 }
1684
Jim Grosbach13760bd2015-05-30 01:25:56 +00001685 NewDisp = MCConstantExpr::create(OrigDispVal + DotDispVal, getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001686 return false;
Chad Rosier5dcb4662012-10-24 22:21:50 +00001687}
1688
Chad Rosier91c82662012-10-24 17:22:29 +00001689/// Parse the 'offset' operator. This operator is used to specify the
1690/// location rather then the content of a variable.
David Blaikie960ea3f2014-06-08 16:18:35 +00001691std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOffsetOfOperator() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001692 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001693 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001694 SMLoc OffsetOfLoc = Tok.getLoc();
Chad Rosier91c82662012-10-24 17:22:29 +00001695 Parser.Lex(); // Eat offset.
Chad Rosier91c82662012-10-24 17:22:29 +00001696
Chad Rosier91c82662012-10-24 17:22:29 +00001697 const MCExpr *Val;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001698 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001699 SMLoc Start = Tok.getLoc(), End;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001700 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001701 if (ParseIntelIdentifier(Val, Identifier, Info,
1702 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001703 return nullptr;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001704
Chad Rosiere2f03772012-10-26 16:09:20 +00001705 // Don't emit the offset operator.
Craig Topper7d5b2312015-10-10 05:25:02 +00001706 InstInfo->AsmRewrites->emplace_back(AOK_Skip, OffsetOfLoc, 7);
Chad Rosiere2f03772012-10-26 16:09:20 +00001707
Chad Rosier91c82662012-10-24 17:22:29 +00001708 // The offset operator will have an 'r' constraint, thus we need to create
1709 // register operand to ensure proper matching. Just pick a GPR based on
1710 // the size of a pointer.
Nirav Dave6477ce22016-09-26 19:33:36 +00001711 bool Parse32 = is32BitMode() || Code16GCC;
1712 unsigned RegNo = is64BitMode() ? X86::RBX : (Parse32 ? X86::EBX : X86::BX);
1713
Chad Rosiera4bc9432013-01-10 22:10:27 +00001714 return X86Operand::CreateReg(RegNo, Start, End, /*GetAddress=*/true,
Peter Collingbourne0da86302016-10-10 22:49:37 +00001715 OffsetOfLoc, Identifier, Info.OpDecl);
Devang Patel41b9dde2012-01-17 18:00:18 +00001716}
1717
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001718enum IntelOperatorKind {
1719 IOK_LENGTH,
1720 IOK_SIZE,
1721 IOK_TYPE
1722};
1723
1724/// Parse the 'LENGTH', 'TYPE' and 'SIZE' operators. The LENGTH operator
1725/// returns the number of elements in an array. It returns the value 1 for
1726/// non-array variables. The SIZE operator returns the size of a C or C++
1727/// variable. A variable's size is the product of its LENGTH and TYPE. The
1728/// TYPE operator returns the size of a C or C++ type or variable. If the
1729/// variable is an array, TYPE returns the size of a single element.
David Blaikie960ea3f2014-06-08 16:18:35 +00001730std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperator(unsigned OpKind) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001731 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001732 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001733 SMLoc TypeLoc = Tok.getLoc();
1734 Parser.Lex(); // Eat operator.
Chad Rosier11c42f22012-10-26 18:04:20 +00001735
Craig Topper062a2ba2014-04-25 05:30:21 +00001736 const MCExpr *Val = nullptr;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001737 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001738 SMLoc Start = Tok.getLoc(), End;
Chad Rosierb67f8052013-04-11 23:57:04 +00001739 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001740 if (ParseIntelIdentifier(Val, Identifier, Info,
1741 /*Unevaluated=*/true, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001742 return nullptr;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001743
1744 if (!Info.OpDecl)
1745 return ErrorOperand(Start, "unable to lookup expression");
Chad Rosier11c42f22012-10-26 18:04:20 +00001746
Chad Rosierf6675c32013-04-22 17:01:46 +00001747 unsigned CVal = 0;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001748 switch(OpKind) {
1749 default: llvm_unreachable("Unexpected operand kind!");
1750 case IOK_LENGTH: CVal = Info.Length; break;
1751 case IOK_SIZE: CVal = Info.Size; break;
1752 case IOK_TYPE: CVal = Info.Type; break;
1753 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001754
1755 // Rewrite the type operator and the C or C++ type or variable in terms of an
1756 // immediate. E.g. TYPE foo -> $$4
1757 unsigned Len = End.getPointer() - TypeLoc.getPointer();
Craig Topper7d5b2312015-10-10 05:25:02 +00001758 InstInfo->AsmRewrites->emplace_back(AOK_Imm, TypeLoc, Len, CVal);
Chad Rosier11c42f22012-10-26 18:04:20 +00001759
Jim Grosbach13760bd2015-05-30 01:25:56 +00001760 const MCExpr *Imm = MCConstantExpr::create(CVal, getContext());
Chad Rosierf3c04f62013-03-19 21:58:18 +00001761 return X86Operand::CreateImm(Imm, Start, End);
Chad Rosier11c42f22012-10-26 18:04:20 +00001762}
1763
David Blaikie960ea3f2014-06-08 16:18:35 +00001764std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001765 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001766 const AsmToken &Tok = Parser.getTok();
David Majnemeraa34d792013-08-27 21:56:17 +00001767 SMLoc Start, End;
Chad Rosier91c82662012-10-24 17:22:29 +00001768
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001769 // Offset, length, type and size operators.
1770 if (isParsingInlineAsm()) {
Chad Rosier99e54642013-04-19 17:32:29 +00001771 StringRef AsmTokStr = Tok.getString();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001772 if (AsmTokStr == "offset" || AsmTokStr == "OFFSET")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001773 return ParseIntelOffsetOfOperator();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001774 if (AsmTokStr == "length" || AsmTokStr == "LENGTH")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001775 return ParseIntelOperator(IOK_LENGTH);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001776 if (AsmTokStr == "size" || AsmTokStr == "SIZE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001777 return ParseIntelOperator(IOK_SIZE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001778 if (AsmTokStr == "type" || AsmTokStr == "TYPE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001779 return ParseIntelOperator(IOK_TYPE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001780 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001781
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001782 bool PtrInOperand = false;
David Majnemeraa34d792013-08-27 21:56:17 +00001783 unsigned Size = getIntelMemOperandSize(Tok.getString());
1784 if (Size) {
1785 Parser.Lex(); // Eat operand size (e.g., byte, word).
1786 if (Tok.getString() != "PTR" && Tok.getString() != "ptr")
Reid Kleckner71ff3f22014-08-01 00:59:22 +00001787 return ErrorOperand(Tok.getLoc(), "Expected 'PTR' or 'ptr' token!");
David Majnemeraa34d792013-08-27 21:56:17 +00001788 Parser.Lex(); // Eat ptr.
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001789 PtrInOperand = true;
David Majnemeraa34d792013-08-27 21:56:17 +00001790 }
Nirav Dave8601ac12016-08-02 17:56:03 +00001791
David Majnemeraa34d792013-08-27 21:56:17 +00001792 Start = Tok.getLoc();
1793
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001794 // rounding mode token
Akira Hatanakabd9fc282015-11-14 05:20:05 +00001795 if (getSTI().getFeatureBits()[X86::FeatureAVX512] &&
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001796 getLexer().is(AsmToken::LCurly))
1797 return ParseRoundingModeOp(Start, End);
1798
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001799 // Register.
Devang Patelce6a2ca2012-01-20 22:32:05 +00001800 unsigned RegNo = 0;
Nirav Dave8601ac12016-08-02 17:56:03 +00001801 if (getLexer().is(AsmToken::Identifier) &&
1802 !ParseRegister(RegNo, Start, End)) {
Chad Rosier0397edd2012-10-04 23:59:38 +00001803 // If this is a segment register followed by a ':', then this is the start
David Majnemeraa34d792013-08-27 21:56:17 +00001804 // of a segment override, otherwise this is a normal register reference.
Douglas Katzman0411e862016-10-05 15:23:35 +00001805 // In case it is a normal register and there is ptr in the operand this
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001806 // is an error
Douglas Katzman0411e862016-10-05 15:23:35 +00001807 if (RegNo == X86::RIP)
1808 return ErrorOperand(Start, "rip can only be used as a base register");
1809 if (getLexer().isNot(AsmToken::Colon)) {
1810 if (PtrInOperand) {
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001811 return ErrorOperand(Start, "expected memory operand after "
1812 "'ptr', found register operand instead");
1813 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00001814 return X86Operand::CreateReg(RegNo, Start, End);
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001815 }
David Majnemeraa34d792013-08-27 21:56:17 +00001816 return ParseIntelSegmentOverride(/*SegReg=*/RegNo, Start, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001817 }
1818
Nirav Dave8601ac12016-08-02 17:56:03 +00001819 // Immediates and Memory
1820
1821 // Parse [ BaseReg + Scale*IndexReg + Disp ].
1822 if (getLexer().is(AsmToken::LBrac))
1823 return ParseIntelBracExpression(/*SegReg=*/0, Start, /*ImmDisp=*/0, false,
1824 Size);
1825
1826 AsmToken StartTok = Tok;
1827 IntelExprStateMachine SM(/*Imm=*/0, /*StopOnLBrac=*/true,
1828 /*AddImmPrefix=*/false);
1829 if (ParseIntelExpression(SM, End))
1830 return nullptr;
1831
1832 bool isSymbol = SM.getSym() && SM.getSym()->getKind() != MCExpr::Constant;
1833 int64_t Imm = SM.getImm();
1834 if (SM.getSym() && SM.getSym()->getKind() == MCExpr::Constant)
1835 SM.getSym()->evaluateAsAbsolute(Imm);
1836
1837 if (StartTok.isNot(AsmToken::Identifier) &&
1838 StartTok.isNot(AsmToken::String) && isParsingInlineAsm()) {
1839 unsigned Len = Tok.getLoc().getPointer() - Start.getPointer();
1840 if (StartTok.getString().size() == Len)
1841 // Just add a prefix if this wasn't a complex immediate expression.
1842 InstInfo->AsmRewrites->emplace_back(AOK_ImmPrefix, Start);
1843 else
1844 // Otherwise, rewrite the complex expression as a single immediate.
1845 InstInfo->AsmRewrites->emplace_back(AOK_Imm, Start, Len, Imm);
1846 }
1847
1848 if (getLexer().isNot(AsmToken::LBrac)) {
1849 // If a directional label (ie. 1f or 2b) was parsed above from
1850 // ParseIntelExpression() then SM.getSym() was set to a pointer to
1851 // to the MCExpr with the directional local symbol and this is a
1852 // memory operand not an immediate operand.
1853 if (isSymbol) {
1854 if (isParsingInlineAsm())
1855 return CreateMemForInlineAsm(/*SegReg=*/0, SM.getSym(), /*BaseReg=*/0,
1856 /*IndexReg=*/0,
1857 /*Scale=*/1, Start, End, Size,
1858 SM.getSymName(), SM.getIdentifierInfo());
1859 return X86Operand::CreateMem(getPointerWidth(), SM.getSym(), Start, End,
1860 Size);
1861 }
1862
1863 const MCExpr *ImmExpr = MCConstantExpr::create(Imm, getContext());
1864 return X86Operand::CreateImm(ImmExpr, Start, End);
1865 }
1866
1867 // Only positive immediates are valid.
1868 if (Imm < 0)
1869 return ErrorOperand(Start, "expected a positive immediate displacement "
1870 "before bracketed expr.");
1871
1872 return ParseIntelBracExpression(/*SegReg=*/0, Start, Imm, isSymbol, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001873}
1874
David Blaikie960ea3f2014-06-08 16:18:35 +00001875std::unique_ptr<X86Operand> X86AsmParser::ParseATTOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001876 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001877 switch (getLexer().getKind()) {
1878 default:
Chris Lattnerb9270732010-04-17 18:56:34 +00001879 // Parse a memory operand with no segment register.
1880 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattnercc2ad082010-01-15 18:27:19 +00001881 case AsmToken::Percent: {
Chris Lattnerb9270732010-04-17 18:56:34 +00001882 // Read the register.
Chris Lattnercc2ad082010-01-15 18:27:19 +00001883 unsigned RegNo;
Chris Lattner0c2538f2010-01-15 18:51:29 +00001884 SMLoc Start, End;
Craig Topper062a2ba2014-04-25 05:30:21 +00001885 if (ParseRegister(RegNo, Start, End)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001886 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001887 Error(Start, "%eiz and %riz can only be used as index registers",
1888 SMRange(Start, End));
Craig Topper062a2ba2014-04-25 05:30:21 +00001889 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001890 }
Douglas Katzman0411e862016-10-05 15:23:35 +00001891 if (RegNo == X86::RIP) {
1892 Error(Start, "%rip can only be used as a base register",
1893 SMRange(Start, End));
1894 return nullptr;
1895 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001896
Chris Lattnerb9270732010-04-17 18:56:34 +00001897 // If this is a segment register followed by a ':', then this is the start
1898 // of a memory reference, otherwise this is a normal register reference.
1899 if (getLexer().isNot(AsmToken::Colon))
1900 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001901
Reid Kleckner0c5da972014-07-31 23:03:22 +00001902 if (!X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo))
1903 return ErrorOperand(Start, "invalid segment register");
1904
Chris Lattnerb9270732010-04-17 18:56:34 +00001905 getParser().Lex(); // Eat the colon.
1906 return ParseMemOperand(RegNo, Start);
Chris Lattnercc2ad082010-01-15 18:27:19 +00001907 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001908 case AsmToken::Dollar: {
1909 // $42 -> immediate.
Sean Callanan936b0d32010-01-19 21:44:56 +00001910 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callanana83fd7d2010-01-19 20:27:46 +00001911 Parser.Lex();
Daniel Dunbar73da11e2009-08-31 08:08:38 +00001912 const MCExpr *Val;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001913 if (getParser().parseExpression(Val, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001914 return nullptr;
Chris Lattner528d00b2010-01-15 19:28:38 +00001915 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001916 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001917 case AsmToken::LCurly:{
1918 SMLoc Start = Parser.getTok().getLoc(), End;
Akira Hatanakabd9fc282015-11-14 05:20:05 +00001919 if (getSTI().getFeatureBits()[X86::FeatureAVX512])
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001920 return ParseRoundingModeOp(Start, End);
Nirav Dave8601ac12016-08-02 17:56:03 +00001921 return ErrorOperand(Start, "Unexpected '{' in expression");
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001922 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001923 }
Daniel Dunbar2b11c7d2009-07-20 20:01:54 +00001924}
1925
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001926// true on failure, false otherwise
1927// If no {z} mark was found - Parser doesn't advance
1928bool X86AsmParser::ParseZ(std::unique_ptr<X86Operand> &Z,
1929 const SMLoc &StartLoc) {
1930 MCAsmParser &Parser = getParser();
1931 // Assuming we are just pass the '{' mark, quering the next token
Coby Tayree179ff0e2016-11-20 09:31:11 +00001932 // Searched for {z}, but none was found. Return false, as no parsing error was
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001933 // encountered
1934 if (!(getLexer().is(AsmToken::Identifier) &&
1935 (getLexer().getTok().getIdentifier() == "z")))
1936 return false;
1937 Parser.Lex(); // Eat z
1938 // Query and eat the '}' mark
1939 if (!getLexer().is(AsmToken::RCurly))
1940 return Error(getLexer().getLoc(), "Expected } at this point");
1941 Parser.Lex(); // Eat '}'
1942 // Assign Z with the {z} mark opernad
Benjamin Kramerfc54e352016-11-24 15:17:39 +00001943 Z = X86Operand::CreateToken("{z}", StartLoc);
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001944 return false;
1945}
1946
1947// true on failure, false otherwise
David Blaikie960ea3f2014-06-08 16:18:35 +00001948bool X86AsmParser::HandleAVX512Operand(OperandVector &Operands,
1949 const MCParsedAsmOperand &Op) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001950 MCAsmParser &Parser = getParser();
Akira Hatanakabd9fc282015-11-14 05:20:05 +00001951 if(getSTI().getFeatureBits()[X86::FeatureAVX512]) {
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001952 if (getLexer().is(AsmToken::LCurly)) {
1953 // Eat "{" and mark the current place.
1954 const SMLoc consumedToken = consumeToken();
1955 // Distinguish {1to<NUM>} from {%k<NUM>}.
1956 if(getLexer().is(AsmToken::Integer)) {
1957 // Parse memory broadcasting ({1to<NUM>}).
1958 if (getLexer().getTok().getIntVal() != 1)
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001959 return TokError("Expected 1to<NUM> at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001960 Parser.Lex(); // Eat "1" of 1to8
1961 if (!getLexer().is(AsmToken::Identifier) ||
1962 !getLexer().getTok().getIdentifier().startswith("to"))
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001963 return TokError("Expected 1to<NUM> at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001964 // Recognize only reasonable suffixes.
1965 const char *BroadcastPrimitive =
1966 StringSwitch<const char*>(getLexer().getTok().getIdentifier())
Robert Khasanovbfa01312014-07-21 14:54:21 +00001967 .Case("to2", "{1to2}")
1968 .Case("to4", "{1to4}")
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001969 .Case("to8", "{1to8}")
1970 .Case("to16", "{1to16}")
Craig Topper062a2ba2014-04-25 05:30:21 +00001971 .Default(nullptr);
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001972 if (!BroadcastPrimitive)
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001973 return TokError("Invalid memory broadcast primitive.");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001974 Parser.Lex(); // Eat "toN" of 1toN
1975 if (!getLexer().is(AsmToken::RCurly))
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001976 return TokError("Expected } at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001977 Parser.Lex(); // Eat "}"
1978 Operands.push_back(X86Operand::CreateToken(BroadcastPrimitive,
1979 consumedToken));
1980 // No AVX512 specific primitives can pass
1981 // after memory broadcasting, so return.
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001982 return false;
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001983 } else {
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001984 // Parse either {k}{z}, {z}{k}, {k} or {z}
1985 // last one have no meaning, but GCC accepts it
1986 // Currently, we're just pass a '{' mark
1987 std::unique_ptr<X86Operand> Z;
1988 if (ParseZ(Z, consumedToken))
1989 return true;
1990 // Reaching here means that parsing of the allegadly '{z}' mark yielded
1991 // no errors.
1992 // Query for the need of further parsing for a {%k<NUM>} mark
1993 if (!Z || getLexer().is(AsmToken::LCurly)) {
1994 const SMLoc StartLoc = Z ? consumeToken() : consumedToken;
1995 // Parse an op-mask register mark ({%k<NUM>}), which is now to be
1996 // expected
1997 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001998 if (!getLexer().is(AsmToken::RCurly))
Michael Zuckerman1bee6342016-10-18 13:52:39 +00001999 return Error(getLexer().getLoc(), "Expected } at this point");
2000 Operands.push_back(X86Operand::CreateToken("{", StartLoc));
2001 Operands.push_back(std::move(Op));
2002 Operands.push_back(X86Operand::CreateToken("}", consumeToken()));
2003 } else
2004 return Error(getLexer().getLoc(),
2005 "Expected an op-mask register at this point");
2006 // {%k<NUM>} mark is found, inquire for {z}
2007 if (getLexer().is(AsmToken::LCurly) && !Z) {
2008 // Have we've found a parsing error, or found no (expected) {z} mark
2009 // - report an error
2010 if (ParseZ(Z, consumeToken()) || !Z)
2011 return true;
2012
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002013 }
Michael Zuckerman1bee6342016-10-18 13:52:39 +00002014 // '{z}' on its own is meaningless, hence should be ignored.
2015 // on the contrary - have it been accompanied by a K register,
2016 // allow it.
2017 if (Z)
2018 Operands.push_back(std::move(Z));
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002019 }
2020 }
2021 }
2022 }
Michael Zuckerman1bee6342016-10-18 13:52:39 +00002023 return false;
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002024}
2025
Chris Lattnerb9270732010-04-17 18:56:34 +00002026/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
2027/// has already been parsed if present.
David Blaikie960ea3f2014-06-08 16:18:35 +00002028std::unique_ptr<X86Operand> X86AsmParser::ParseMemOperand(unsigned SegReg,
2029 SMLoc MemStart) {
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002030
Rafael Espindola961d4692014-11-11 05:18:41 +00002031 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002032 // We have to disambiguate a parenthesized expression "(4+5)" from the start
2033 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner807a3bc2010-01-24 01:07:33 +00002034 // only way to do this without lookahead is to eat the '(' and see what is
2035 // after it.
Jim Grosbach13760bd2015-05-30 01:25:56 +00002036 const MCExpr *Disp = MCConstantExpr::create(0, getParser().getContext());
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002037 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattnere17df0b2010-01-15 19:39:23 +00002038 SMLoc ExprEnd;
Craig Topper062a2ba2014-04-25 05:30:21 +00002039 if (getParser().parseExpression(Disp, ExprEnd)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002040
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002041 // After parsing the base expression we could either have a parenthesized
2042 // memory address or not. If not, return now. If so, eat the (.
2043 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00002044 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002045 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00002046 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, ExprEnd);
2047 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
2048 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002049 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002050
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002051 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00002052 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002053 } else {
2054 // Okay, we have a '('. We don't know if this is an expression or not, but
2055 // so we have to eat the ( to see beyond it.
Sean Callanan936b0d32010-01-19 21:44:56 +00002056 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00002057 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002058
Kevin Enderby7d912182009-09-03 17:15:07 +00002059 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002060 // Nothing to do here, fall into the code below with the '(' part of the
2061 // memory operand consumed.
2062 } else {
Chris Lattner528d00b2010-01-15 19:28:38 +00002063 SMLoc ExprEnd;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002064
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002065 // It must be an parenthesized expression, parse it now.
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002066 if (getParser().parseParenExpression(Disp, ExprEnd))
Craig Topper062a2ba2014-04-25 05:30:21 +00002067 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002068
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002069 // After parsing the base expression we could either have a parenthesized
2070 // memory address or not. If not, return now. If so, eat the (.
2071 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00002072 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002073 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00002074 return X86Operand::CreateMem(getPointerWidth(), Disp, LParenLoc,
2075 ExprEnd);
2076 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
2077 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002078 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002079
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002080 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00002081 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002082 }
2083 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002084
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002085 // If we reached here, then we just ate the ( of the memory operand. Process
2086 // the rest of the memory operand.
Daniel Dunbar3ebf8482009-07-31 20:53:16 +00002087 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
David Woodhouse6dbda442014-01-08 12:58:28 +00002088 SMLoc IndexLoc, BaseLoc;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002089
Chris Lattner0c2538f2010-01-15 18:51:29 +00002090 if (getLexer().is(AsmToken::Percent)) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00002091 SMLoc StartLoc, EndLoc;
David Woodhouse6dbda442014-01-08 12:58:28 +00002092 BaseLoc = Parser.getTok().getLoc();
Craig Topper062a2ba2014-04-25 05:30:21 +00002093 if (ParseRegister(BaseReg, StartLoc, EndLoc)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00002094 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00002095 Error(StartLoc, "eiz and riz can only be used as index registers",
2096 SMRange(StartLoc, EndLoc));
Craig Topper062a2ba2014-04-25 05:30:21 +00002097 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00002098 }
Chris Lattner0c2538f2010-01-15 18:51:29 +00002099 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002100
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002101 if (getLexer().is(AsmToken::Comma)) {
Sean Callanana83fd7d2010-01-19 20:27:46 +00002102 Parser.Lex(); // Eat the comma.
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00002103 IndexLoc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002104
2105 // Following the comma we should have either an index register, or a scale
2106 // value. We don't support the later form, but we want to parse it
2107 // correctly.
2108 //
2109 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00002110 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7d912182009-09-03 17:15:07 +00002111 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner0c2538f2010-01-15 18:51:29 +00002112 SMLoc L;
Douglas Katzman0411e862016-10-05 15:23:35 +00002113 if (ParseRegister(IndexReg, L, L))
2114 return nullptr;
2115 if (BaseReg == X86::RIP) {
2116 Error(IndexLoc, "%rip as base register can not have an index register");
2117 return nullptr;
2118 }
2119 if (IndexReg == X86::RIP) {
2120 Error(IndexLoc, "%rip is not allowed as an index register");
2121 return nullptr;
2122 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002123
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002124 if (getLexer().isNot(AsmToken::RParen)) {
2125 // Parse the scale amount:
2126 // ::= ',' [scale-expression]
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002127 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002128 Error(Parser.getTok().getLoc(),
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002129 "expected comma in scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00002130 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002131 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00002132 Parser.Lex(); // Eat the comma.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002133
2134 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002135 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002136
2137 int64_t ScaleVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002138 if (getParser().parseAbsoluteExpression(ScaleVal)){
Kevin Enderbydeed5aa2012-03-09 22:24:10 +00002139 Error(Loc, "expected scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00002140 return nullptr;
Craig Topper6bf3ed42012-07-18 04:59:16 +00002141 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002142
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002143 // Validate the scale amount.
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00002144 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
David Woodhouse6dbda442014-01-08 12:58:28 +00002145 ScaleVal != 1) {
2146 Error(Loc, "scale factor in 16-bit address must be 1");
Craig Topper062a2ba2014-04-25 05:30:21 +00002147 return nullptr;
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00002148 }
2149 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 &&
2150 ScaleVal != 8) {
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002151 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
Craig Topper062a2ba2014-04-25 05:30:21 +00002152 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002153 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002154 Scale = (unsigned)ScaleVal;
2155 }
2156 }
2157 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002158 // A scale amount without an index is ignored.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002159 // index.
Sean Callanan936b0d32010-01-19 21:44:56 +00002160 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002161
2162 int64_t Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002163 if (getParser().parseAbsoluteExpression(Value))
Craig Topper062a2ba2014-04-25 05:30:21 +00002164 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002165
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002166 if (Value != 1)
2167 Warning(Loc, "scale factor without index register is ignored");
2168 Scale = 1;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002169 }
2170 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002171
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002172 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002173 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002174 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Craig Topper062a2ba2014-04-25 05:30:21 +00002175 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002176 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002177 SMLoc MemEnd = Parser.getTok().getEndLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00002178 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002179
David Woodhouse6dbda442014-01-08 12:58:28 +00002180 // Check for use of invalid 16-bit registers. Only BX/BP/SI/DI are allowed,
2181 // and then only in non-64-bit modes. Except for DX, which is a special case
2182 // because an unofficial form of in/out instructions uses it.
2183 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
2184 (is64BitMode() || (BaseReg != X86::BX && BaseReg != X86::BP &&
2185 BaseReg != X86::SI && BaseReg != X86::DI)) &&
2186 BaseReg != X86::DX) {
2187 Error(BaseLoc, "invalid 16-bit base register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002188 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002189 }
2190 if (BaseReg == 0 &&
2191 X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg)) {
2192 Error(IndexLoc, "16-bit memory operand may not include only index register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002193 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002194 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00002195
2196 StringRef ErrMsg;
2197 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
2198 Error(BaseLoc, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00002199 return nullptr;
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00002200 }
2201
Reid Klecknerb7e2f602014-07-31 23:26:35 +00002202 if (SegReg || BaseReg || IndexReg)
Craig Topper055845f2015-01-02 07:02:25 +00002203 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
2204 IndexReg, Scale, MemStart, MemEnd);
2205 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, MemEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002206}
2207
David Blaikie960ea3f2014-06-08 16:18:35 +00002208bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
2209 SMLoc NameLoc, OperandVector &Operands) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002210 MCAsmParser &Parser = getParser();
Chad Rosierf0e87202012-10-25 20:41:34 +00002211 InstInfo = &Info;
Chris Lattner2cb092d2010-10-30 19:23:13 +00002212 StringRef PatchedName = Name;
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002213
Michael Zuckerman174d2e72016-10-14 08:09:40 +00002214 if (Name == "jmp" && isParsingIntelSyntax() && isParsingInlineAsm()) {
2215 StringRef NextTok = Parser.getTok().getString();
2216 if (NextTok == "short") {
2217 SMLoc NameEndLoc =
2218 NameLoc.getFromPointer(NameLoc.getPointer() + Name.size());
2219 // Eat the short keyword
2220 Parser.Lex();
2221 // MS ignores the short keyword, it determines the jmp type based
2222 // on the distance of the label
2223 InstInfo->AsmRewrites->emplace_back(AOK_Skip, NameEndLoc,
2224 NextTok.size() + 1);
2225 }
2226 }
2227
Chris Lattner7e8a99b2010-11-28 20:23:50 +00002228 // FIXME: Hack to recognize setneb as setne.
2229 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
2230 PatchedName != "setb" && PatchedName != "setnb")
2231 PatchedName = PatchedName.substr(0, Name.size()-1);
Chad Rosier51afe632012-06-27 22:34:28 +00002232
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002233 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
Bruno Cardoso Lopes3183dd52010-06-23 21:10:57 +00002234 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002235 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
2236 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Craig Toppera0a603e2012-03-29 07:11:23 +00002237 bool IsVCMP = PatchedName[0] == 'v';
Craig Topper78c424d2015-02-15 07:13:48 +00002238 unsigned CCIdx = IsVCMP ? 4 : 3;
2239 unsigned ComparisonCode = StringSwitch<unsigned>(
2240 PatchedName.slice(CCIdx, PatchedName.size() - 2))
Craig Toppera0a603e2012-03-29 07:11:23 +00002241 .Case("eq", 0x00)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002242 .Case("eq_oq", 0x00)
Craig Toppera0a603e2012-03-29 07:11:23 +00002243 .Case("lt", 0x01)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002244 .Case("lt_os", 0x01)
Craig Toppera0a603e2012-03-29 07:11:23 +00002245 .Case("le", 0x02)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002246 .Case("le_os", 0x02)
Craig Toppera0a603e2012-03-29 07:11:23 +00002247 .Case("unord", 0x03)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002248 .Case("unord_q", 0x03)
Craig Toppera0a603e2012-03-29 07:11:23 +00002249 .Case("neq", 0x04)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002250 .Case("neq_uq", 0x04)
Craig Toppera0a603e2012-03-29 07:11:23 +00002251 .Case("nlt", 0x05)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002252 .Case("nlt_us", 0x05)
Craig Toppera0a603e2012-03-29 07:11:23 +00002253 .Case("nle", 0x06)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002254 .Case("nle_us", 0x06)
Craig Toppera0a603e2012-03-29 07:11:23 +00002255 .Case("ord", 0x07)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002256 .Case("ord_q", 0x07)
Craig Toppera0a603e2012-03-29 07:11:23 +00002257 /* AVX only from here */
2258 .Case("eq_uq", 0x08)
2259 .Case("nge", 0x09)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002260 .Case("nge_us", 0x09)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002261 .Case("ngt", 0x0A)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002262 .Case("ngt_us", 0x0A)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002263 .Case("false", 0x0B)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002264 .Case("false_oq", 0x0B)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002265 .Case("neq_oq", 0x0C)
2266 .Case("ge", 0x0D)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002267 .Case("ge_os", 0x0D)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002268 .Case("gt", 0x0E)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002269 .Case("gt_os", 0x0E)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002270 .Case("true", 0x0F)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002271 .Case("true_uq", 0x0F)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002272 .Case("eq_os", 0x10)
2273 .Case("lt_oq", 0x11)
2274 .Case("le_oq", 0x12)
2275 .Case("unord_s", 0x13)
2276 .Case("neq_us", 0x14)
2277 .Case("nlt_uq", 0x15)
2278 .Case("nle_uq", 0x16)
2279 .Case("ord_s", 0x17)
2280 .Case("eq_us", 0x18)
2281 .Case("nge_uq", 0x19)
2282 .Case("ngt_uq", 0x1A)
2283 .Case("false_os", 0x1B)
2284 .Case("neq_os", 0x1C)
2285 .Case("ge_oq", 0x1D)
2286 .Case("gt_oq", 0x1E)
2287 .Case("true_us", 0x1F)
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002288 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002289 if (ComparisonCode != ~0U && (IsVCMP || ComparisonCode < 8)) {
Craig Topper43860832015-02-14 21:54:03 +00002290
Craig Topper78c424d2015-02-15 07:13:48 +00002291 Operands.push_back(X86Operand::CreateToken(PatchedName.slice(0, CCIdx),
Craig Topper43860832015-02-14 21:54:03 +00002292 NameLoc));
2293
Jim Grosbach13760bd2015-05-30 01:25:56 +00002294 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper43860832015-02-14 21:54:03 +00002295 getParser().getContext());
2296 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2297
2298 PatchedName = PatchedName.substr(PatchedName.size() - 2);
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002299 }
2300 }
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +00002301
Craig Topper78c424d2015-02-15 07:13:48 +00002302 // FIXME: Hack to recognize vpcmp<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2303 if (PatchedName.startswith("vpcmp") &&
2304 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2305 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
2306 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2307 unsigned ComparisonCode = StringSwitch<unsigned>(
2308 PatchedName.slice(5, PatchedName.size() - CCIdx))
2309 .Case("eq", 0x0) // Only allowed on unsigned. Checked below.
2310 .Case("lt", 0x1)
2311 .Case("le", 0x2)
2312 //.Case("false", 0x3) // Not a documented alias.
2313 .Case("neq", 0x4)
2314 .Case("nlt", 0x5)
2315 .Case("nle", 0x6)
2316 //.Case("true", 0x7) // Not a documented alias.
2317 .Default(~0U);
2318 if (ComparisonCode != ~0U && (ComparisonCode != 0 || CCIdx == 2)) {
2319 Operands.push_back(X86Operand::CreateToken("vpcmp", NameLoc));
2320
Jim Grosbach13760bd2015-05-30 01:25:56 +00002321 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper78c424d2015-02-15 07:13:48 +00002322 getParser().getContext());
2323 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2324
2325 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
2326 }
2327 }
2328
Craig Topper916708f2015-02-13 07:42:25 +00002329 // FIXME: Hack to recognize vpcom<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2330 if (PatchedName.startswith("vpcom") &&
2331 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2332 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
Craig Topper78c424d2015-02-15 07:13:48 +00002333 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2334 unsigned ComparisonCode = StringSwitch<unsigned>(
2335 PatchedName.slice(5, PatchedName.size() - CCIdx))
Craig Topper916708f2015-02-13 07:42:25 +00002336 .Case("lt", 0x0)
2337 .Case("le", 0x1)
2338 .Case("gt", 0x2)
2339 .Case("ge", 0x3)
2340 .Case("eq", 0x4)
2341 .Case("neq", 0x5)
2342 .Case("false", 0x6)
2343 .Case("true", 0x7)
2344 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002345 if (ComparisonCode != ~0U) {
Craig Topper916708f2015-02-13 07:42:25 +00002346 Operands.push_back(X86Operand::CreateToken("vpcom", NameLoc));
2347
Jim Grosbach13760bd2015-05-30 01:25:56 +00002348 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper916708f2015-02-13 07:42:25 +00002349 getParser().getContext());
2350 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2351
Craig Topper78c424d2015-02-15 07:13:48 +00002352 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
Craig Topper916708f2015-02-13 07:42:25 +00002353 }
2354 }
2355
Daniel Dunbar3e0c9792010-02-10 21:19:28 +00002356 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002357
Chris Lattner086a83a2010-09-08 05:17:37 +00002358 // Determine whether this is an instruction prefix.
2359 bool isPrefix =
Chris Lattner2cb092d2010-10-30 19:23:13 +00002360 Name == "lock" || Name == "rep" ||
2361 Name == "repe" || Name == "repz" ||
Rafael Espindolaf6c05b12010-11-23 11:23:24 +00002362 Name == "repne" || Name == "repnz" ||
Rafael Espindolaeab08002010-11-27 20:29:45 +00002363 Name == "rex64" || Name == "data16";
Michael J. Spencer530ce852010-10-09 11:00:50 +00002364
Marina Yatsina5f5de9f2016-03-07 18:11:16 +00002365 bool CurlyAsEndOfStatement = false;
Chris Lattner086a83a2010-09-08 05:17:37 +00002366 // This does the actual operand parsing. Don't parse any more if we have a
2367 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
2368 // just want to parse the "lock" as the first instruction and the "incl" as
2369 // the next one.
2370 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar71527c12009-08-11 05:00:25 +00002371
2372 // Parse '*' modifier.
Alp Tokera5b88a52013-12-02 16:06:06 +00002373 if (getLexer().is(AsmToken::Star))
2374 Operands.push_back(X86Operand::CreateToken("*", consumeToken()));
Daniel Dunbar71527c12009-08-11 05:00:25 +00002375
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002376 // Read the operands.
2377 while(1) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002378 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
2379 Operands.push_back(std::move(Op));
Michael Zuckerman1bee6342016-10-18 13:52:39 +00002380 if (HandleAVX512Operand(Operands, *Operands.back()))
Elena Demikhovsky89529742013-09-12 08:55:00 +00002381 return true;
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002382 } else {
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002383 return true;
Elena Demikhovsky89529742013-09-12 08:55:00 +00002384 }
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002385 // check for comma and eat it
2386 if (getLexer().is(AsmToken::Comma))
2387 Parser.Lex();
2388 else
2389 break;
2390 }
Elena Demikhovsky89529742013-09-12 08:55:00 +00002391
Marina Yatsina5f5de9f2016-03-07 18:11:16 +00002392 // In MS inline asm curly braces mark the begining/end of a block, therefore
2393 // they should be interepreted as end of statement
2394 CurlyAsEndOfStatement =
2395 isParsingIntelSyntax() && isParsingInlineAsm() &&
2396 (getLexer().is(AsmToken::LCurly) || getLexer().is(AsmToken::RCurly));
2397 if (getLexer().isNot(AsmToken::EndOfStatement) && !CurlyAsEndOfStatement)
Nirav Dave2364748a2016-09-16 18:30:20 +00002398 return TokError("unexpected token in argument list");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002399 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002400
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002401 // Consume the EndOfStatement or the prefix separator Slash
Elena Demikhovsky9f09b3e2014-02-20 07:00:10 +00002402 if (getLexer().is(AsmToken::EndOfStatement) ||
2403 (isPrefix && getLexer().is(AsmToken::Slash)))
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002404 Parser.Lex();
Marina Yatsina5f5de9f2016-03-07 18:11:16 +00002405 else if (CurlyAsEndOfStatement)
2406 // Add an actual EndOfStatement before the curly brace
2407 Info.AsmRewrites->emplace_back(AOK_EndOfStatement,
2408 getLexer().getTok().getLoc(), 0);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002409
Michael Zuckermanfd3fe9e2015-11-12 16:58:51 +00002410 // This is for gas compatibility and cannot be done in td.
2411 // Adding "p" for some floating point with no argument.
2412 // For example: fsub --> fsubp
2413 bool IsFp =
2414 Name == "fsub" || Name == "fdiv" || Name == "fsubr" || Name == "fdivr";
2415 if (IsFp && Operands.size() == 1) {
2416 const char *Repl = StringSwitch<const char *>(Name)
2417 .Case("fsub", "fsubp")
2418 .Case("fdiv", "fdivp")
2419 .Case("fsubr", "fsubrp")
2420 .Case("fdivr", "fdivrp");
2421 static_cast<X86Operand &>(*Operands[0]).setTokenValue(Repl);
2422 }
2423
Nirav Davef45fd2b2016-08-08 18:01:04 +00002424 // Moving a 32 or 16 bit value into a segment register has the same
2425 // behavior. Modify such instructions to always take shorter form.
2426 if ((Name == "mov" || Name == "movw" || Name == "movl") &&
2427 (Operands.size() == 3)) {
2428 X86Operand &Op1 = (X86Operand &)*Operands[1];
2429 X86Operand &Op2 = (X86Operand &)*Operands[2];
2430 SMLoc Loc = Op1.getEndLoc();
2431 if (Op1.isReg() && Op2.isReg() &&
2432 X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(
2433 Op2.getReg()) &&
2434 (X86MCRegisterClasses[X86::GR16RegClassID].contains(Op1.getReg()) ||
2435 X86MCRegisterClasses[X86::GR32RegClassID].contains(Op1.getReg()))) {
2436 // Change instruction name to match new instruction.
2437 if (Name != "mov" && Name[3] == (is16BitMode() ? 'l' : 'w')) {
2438 Name = is16BitMode() ? "movw" : "movl";
2439 Operands[0] = X86Operand::CreateToken(Name, NameLoc);
2440 }
2441 // Select the correct equivalent 16-/32-bit source register.
2442 unsigned Reg =
2443 getX86SubSuperRegisterOrZero(Op1.getReg(), is16BitMode() ? 16 : 32);
2444 Operands[1] = X86Operand::CreateReg(Reg, Loc, Loc);
2445 }
2446 }
2447
Nirav Dave8e103802016-06-29 19:54:27 +00002448 // This is a terrible hack to handle "out[s]?[bwl]? %al, (%dx)" ->
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002449 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
2450 // documented form in various unofficial manuals, so a lot of code uses it.
Nirav Dave8e103802016-06-29 19:54:27 +00002451 if ((Name == "outb" || Name == "outsb" || Name == "outw" || Name == "outsw" ||
2452 Name == "outl" || Name == "outsl" || Name == "out" || Name == "outs") &&
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002453 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002454 X86Operand &Op = (X86Operand &)*Operands.back();
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002455 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2456 isa<MCConstantExpr>(Op.Mem.Disp) &&
2457 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2458 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2459 SMLoc Loc = Op.getEndLoc();
2460 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002461 }
2462 }
Nirav Dave8e103802016-06-29 19:54:27 +00002463 // Same hack for "in[s]?[bwl]? (%dx), %al" -> "inb %dx, %al".
2464 if ((Name == "inb" || Name == "insb" || Name == "inw" || Name == "insw" ||
2465 Name == "inl" || Name == "insl" || Name == "in" || Name == "ins") &&
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002466 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002467 X86Operand &Op = (X86Operand &)*Operands[1];
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002468 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2469 isa<MCConstantExpr>(Op.Mem.Disp) &&
2470 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2471 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2472 SMLoc Loc = Op.getEndLoc();
David Blaikie960ea3f2014-06-08 16:18:35 +00002473 Operands[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002474 }
2475 }
David Woodhouse4ce66062014-01-22 15:08:55 +00002476
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002477 SmallVector<std::unique_ptr<MCParsedAsmOperand>, 2> TmpOperands;
2478 bool HadVerifyError = false;
2479
David Woodhouse4ce66062014-01-22 15:08:55 +00002480 // Append default arguments to "ins[bwld]"
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002481 if (Name.startswith("ins") &&
2482 (Operands.size() == 1 || Operands.size() == 3) &&
2483 (Name == "insb" || Name == "insw" || Name == "insl" || Name == "insd" ||
2484 Name == "ins")) {
2485
2486 AddDefaultSrcDestOperands(TmpOperands,
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002487 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc),
2488 DefaultMemDIOperand(NameLoc));
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002489 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002490 }
2491
David Woodhousec472b812014-01-22 15:08:49 +00002492 // Append default arguments to "outs[bwld]"
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002493 if (Name.startswith("outs") &&
2494 (Operands.size() == 1 || Operands.size() == 3) &&
David Woodhousec472b812014-01-22 15:08:49 +00002495 (Name == "outsb" || Name == "outsw" || Name == "outsl" ||
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002496 Name == "outsd" || Name == "outs")) {
2497 AddDefaultSrcDestOperands(TmpOperands, DefaultMemSIOperand(NameLoc),
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002498 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc));
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002499 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002500 }
2501
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002502 // Transform "lods[bwlq]" into "lods[bwlq] ($SIREG)" for appropriate
2503 // values of $SIREG according to the mode. It would be nice if this
2504 // could be achieved with InstAlias in the tables.
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002505 if (Name.startswith("lods") &&
2506 (Operands.size() == 1 || Operands.size() == 2) &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002507 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002508 Name == "lodsl" || Name == "lodsd" || Name == "lodsq")) {
2509 TmpOperands.push_back(DefaultMemSIOperand(NameLoc));
2510 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
2511 }
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002512
David Woodhouseb33c2ef2014-01-22 15:08:21 +00002513 // Transform "stos[bwlq]" into "stos[bwlq] ($DIREG)" for appropriate
2514 // values of $DIREG according to the mode. It would be nice if this
2515 // could be achieved with InstAlias in the tables.
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002516 if (Name.startswith("stos") &&
2517 (Operands.size() == 1 || Operands.size() == 2) &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002518 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002519 Name == "stosl" || Name == "stosd" || Name == "stosq")) {
2520 TmpOperands.push_back(DefaultMemDIOperand(NameLoc));
2521 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
2522 }
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002523
David Woodhouse20fe4802014-01-22 15:08:27 +00002524 // Transform "scas[bwlq]" into "scas[bwlq] ($DIREG)" for appropriate
2525 // values of $DIREG according to the mode. It would be nice if this
2526 // could be achieved with InstAlias in the tables.
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002527 if (Name.startswith("scas") &&
2528 (Operands.size() == 1 || Operands.size() == 2) &&
David Woodhouse20fe4802014-01-22 15:08:27 +00002529 (Name == "scas" || Name == "scasb" || Name == "scasw" ||
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002530 Name == "scasl" || Name == "scasd" || Name == "scasq")) {
2531 TmpOperands.push_back(DefaultMemDIOperand(NameLoc));
2532 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
2533 }
David Woodhouse20fe4802014-01-22 15:08:27 +00002534
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002535 // Add default SI and DI operands to "cmps[bwlq]".
2536 if (Name.startswith("cmps") &&
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002537 (Operands.size() == 1 || Operands.size() == 3) &&
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002538 (Name == "cmps" || Name == "cmpsb" || Name == "cmpsw" ||
2539 Name == "cmpsl" || Name == "cmpsd" || Name == "cmpsq")) {
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002540 AddDefaultSrcDestOperands(TmpOperands, DefaultMemDIOperand(NameLoc),
2541 DefaultMemSIOperand(NameLoc));
2542 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002543 }
2544
David Woodhouse6f417de2014-01-22 15:08:42 +00002545 // Add default SI and DI operands to "movs[bwlq]".
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002546 if (((Name.startswith("movs") &&
2547 (Name == "movs" || Name == "movsb" || Name == "movsw" ||
2548 Name == "movsl" || Name == "movsd" || Name == "movsq")) ||
2549 (Name.startswith("smov") &&
2550 (Name == "smov" || Name == "smovb" || Name == "smovw" ||
2551 Name == "smovl" || Name == "smovd" || Name == "smovq"))) &&
2552 (Operands.size() == 1 || Operands.size() == 3)) {
Coby Tayree94ddbb42016-11-21 15:50:56 +00002553 if (Name == "movsd" && Operands.size() == 1 && !isParsingIntelSyntax())
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002554 Operands.back() = X86Operand::CreateToken("movsl", NameLoc);
2555 AddDefaultSrcDestOperands(TmpOperands, DefaultMemSIOperand(NameLoc),
2556 DefaultMemDIOperand(NameLoc));
2557 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
2558 }
2559
2560 // Check if we encountered an error for one the string insturctions
2561 if (HadVerifyError) {
2562 return HadVerifyError;
David Woodhouse6f417de2014-01-22 15:08:42 +00002563 }
2564
Chris Lattner4bd21712010-09-15 04:33:27 +00002565 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattner30561ab2010-09-11 16:32:12 +00002566 // "shift <op>".
Daniel Dunbar18fc3442010-03-13 00:47:29 +00002567 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner64f91b92010-11-06 21:23:40 +00002568 Name.startswith("shl") || Name.startswith("sal") ||
2569 Name.startswith("rcl") || Name.startswith("rcr") ||
2570 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002571 Operands.size() == 3) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002572 if (isParsingIntelSyntax()) {
Devang Patela410ed32012-01-24 21:43:36 +00002573 // Intel syntax
David Blaikie960ea3f2014-06-08 16:18:35 +00002574 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[2]);
2575 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2576 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002577 Operands.pop_back();
Devang Patela410ed32012-01-24 21:43:36 +00002578 } else {
David Blaikie960ea3f2014-06-08 16:18:35 +00002579 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
2580 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2581 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002582 Operands.erase(Operands.begin() + 1);
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002583 }
Daniel Dunbarfbd12cc2010-03-20 22:36:38 +00002584 }
Chad Rosier51afe632012-06-27 22:34:28 +00002585
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002586 // Transforms "int $3" into "int3" as a size optimization. We can't write an
2587 // instalias with an immediate operand yet.
2588 if (Name == "int" && Operands.size() == 2) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002589 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
Duncan P. N. Exon Smithd5313222015-07-23 19:27:07 +00002590 if (Op1.isImm())
2591 if (auto *CE = dyn_cast<MCConstantExpr>(Op1.getImm()))
2592 if (CE->getValue() == 3) {
2593 Operands.erase(Operands.begin() + 1);
2594 static_cast<X86Operand &>(*Operands[0]).setTokenValue("int3");
2595 }
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002596 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002597
Marina Yatsinad9658d12016-01-19 16:35:38 +00002598 // Transforms "xlat mem8" into "xlatb"
2599 if ((Name == "xlat" || Name == "xlatb") && Operands.size() == 2) {
2600 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
2601 if (Op1.isMem8()) {
2602 Warning(Op1.getStartLoc(), "memory operand is only for determining the "
2603 "size, (R|E)BX will be used for the location");
2604 Operands.pop_back();
2605 static_cast<X86Operand &>(*Operands[0]).setTokenValue("xlatb");
2606 }
2607 }
2608
Chris Lattnerf29c0b62010-01-14 22:21:20 +00002609 return false;
Daniel Dunbar3c2a8932009-07-20 18:55:04 +00002610}
2611
David Blaikie960ea3f2014-06-08 16:18:35 +00002612bool X86AsmParser::processInstruction(MCInst &Inst, const OperandVector &Ops) {
Aaron Ballmana81264b2016-05-23 15:52:59 +00002613 return false;
Devang Patelde47cce2012-01-18 22:42:29 +00002614}
2615
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002616static const char *getSubtargetFeatureName(uint64_t Val);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002617
David Blaikie960ea3f2014-06-08 16:18:35 +00002618void X86AsmParser::EmitInstruction(MCInst &Inst, OperandVector &Operands,
2619 MCStreamer &Out) {
Evgeniy Stepanov77ad8662014-07-31 09:11:04 +00002620 Instrumentation->InstrumentAndEmitInstruction(Inst, Operands, getContext(),
2621 MII, Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002622}
2623
David Blaikie960ea3f2014-06-08 16:18:35 +00002624bool X86AsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
2625 OperandVector &Operands,
Tim Northover26bb14e2014-08-18 11:49:42 +00002626 MCStreamer &Out, uint64_t &ErrorInfo,
David Blaikie960ea3f2014-06-08 16:18:35 +00002627 bool MatchingInlineAsm) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002628 if (isParsingIntelSyntax())
2629 return MatchAndEmitIntelInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002630 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002631 return MatchAndEmitATTInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002632 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002633}
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002634
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002635void X86AsmParser::MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op,
2636 OperandVector &Operands, MCStreamer &Out,
2637 bool MatchingInlineAsm) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002638 // FIXME: This should be replaced with a real .td file alias mechanism.
Chad Rosier3b1336c2012-08-28 23:57:47 +00002639 // Also, MatchInstructionImpl should actually *do* the EmitInstruction
Chris Lattner4869d342010-11-06 19:57:21 +00002640 // call.
Reid Klecknerb1f2d2f2014-07-31 00:07:33 +00002641 const char *Repl = StringSwitch<const char *>(Op.getToken())
2642 .Case("finit", "fninit")
2643 .Case("fsave", "fnsave")
2644 .Case("fstcw", "fnstcw")
2645 .Case("fstcww", "fnstcw")
2646 .Case("fstenv", "fnstenv")
2647 .Case("fstsw", "fnstsw")
2648 .Case("fstsww", "fnstsw")
2649 .Case("fclex", "fnclex")
2650 .Default(nullptr);
2651 if (Repl) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002652 MCInst Inst;
2653 Inst.setOpcode(X86::WAIT);
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002654 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002655 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002656 EmitInstruction(Inst, Operands, Out);
Chris Lattneradc0dbe2010-09-30 16:39:29 +00002657 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattnera63292a2010-09-29 01:50:45 +00002658 }
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002659}
2660
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002661bool X86AsmParser::ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002662 bool MatchingInlineAsm) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002663 assert(ErrorInfo && "Unknown missing feature!");
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002664 SmallString<126> Msg;
2665 raw_svector_ostream OS(Msg);
2666 OS << "instruction requires:";
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002667 uint64_t Mask = 1;
2668 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
2669 if (ErrorInfo & Mask)
2670 OS << ' ' << getSubtargetFeatureName(ErrorInfo & Mask);
2671 Mask <<= 1;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002672 }
Nirav Dave2364748a2016-09-16 18:30:20 +00002673 return Error(IDLoc, OS.str(), SMRange(), MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002674}
2675
2676bool X86AsmParser::MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
2677 OperandVector &Operands,
2678 MCStreamer &Out,
2679 uint64_t &ErrorInfo,
2680 bool MatchingInlineAsm) {
2681 assert(!Operands.empty() && "Unexpect empty operand list!");
2682 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2683 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
Nirav Dave2364748a2016-09-16 18:30:20 +00002684 SMRange EmptyRange = None;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002685
2686 // First, handle aliases that expand to multiple instructions.
2687 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002688
Chris Lattner628fbec2010-09-06 21:54:15 +00002689 bool WasOriginallyInvalidOperand = false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002690 MCInst Inst;
Michael J. Spencer530ce852010-10-09 11:00:50 +00002691
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002692 // First, try a direct match.
Nirav Dave6477ce22016-09-26 19:33:36 +00002693 switch (MatchInstruction(Operands, Inst, ErrorInfo, MatchingInlineAsm,
2694 isParsingIntelSyntax())) {
Craig Topper589ceee2015-01-03 08:16:34 +00002695 default: llvm_unreachable("Unexpected match result!");
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002696 case Match_Success:
Devang Patelde47cce2012-01-18 22:42:29 +00002697 // Some instructions need post-processing to, for example, tweak which
2698 // encoding is selected. Loop on it while changes happen so the
Chad Rosier51afe632012-06-27 22:34:28 +00002699 // individual transformations can chain off each other.
Chad Rosier4453e842012-10-12 23:09:25 +00002700 if (!MatchingInlineAsm)
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002701 while (processInstruction(Inst, Operands))
2702 ;
Devang Patelde47cce2012-01-18 22:42:29 +00002703
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002704 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002705 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002706 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002707 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002708 return false;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002709 case Match_MissingFeature:
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002710 return ErrorMissingFeature(IDLoc, ErrorInfo, MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002711 case Match_InvalidOperand:
2712 WasOriginallyInvalidOperand = true;
2713 break;
2714 case Match_MnemonicFail:
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002715 break;
2716 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002717
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002718 // FIXME: Ideally, we would only attempt suffix matches for things which are
2719 // valid prefixes, and we could just infer the right unambiguous
2720 // type. However, that requires substantially more matcher support than the
2721 // following hack.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002722
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002723 // Change the operand to point to a temporary token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002724 StringRef Base = Op.getToken();
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002725 SmallString<16> Tmp;
2726 Tmp += Base;
2727 Tmp += ' ';
Yaron Keren075759a2015-03-30 15:42:36 +00002728 Op.setTokenValue(Tmp);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002729
Chris Lattnerfab94132010-11-06 18:28:02 +00002730 // If this instruction starts with an 'f', then it is a floating point stack
2731 // instruction. These come in up to three forms for 32-bit, 64-bit, and
2732 // 80-bit floating point, which use the suffixes s,l,t respectively.
2733 //
2734 // Otherwise, we assume that this may be an integer instruction, which comes
2735 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
2736 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
Chad Rosier51afe632012-06-27 22:34:28 +00002737
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002738 // Check for the various suffix matches.
Tim Northover26bb14e2014-08-18 11:49:42 +00002739 uint64_t ErrorInfoIgnore;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002740 uint64_t ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002741 unsigned Match[4];
Chad Rosier51afe632012-06-27 22:34:28 +00002742
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002743 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I) {
2744 Tmp.back() = Suffixes[I];
Nirav Dave6477ce22016-09-26 19:33:36 +00002745 Match[I] = MatchInstruction(Operands, Inst, ErrorInfoIgnore,
2746 MatchingInlineAsm, isParsingIntelSyntax());
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002747 // If this returned as a missing feature failure, remember that.
2748 if (Match[I] == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002749 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002750 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002751
2752 // Restore the old token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002753 Op.setTokenValue(Base);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002754
2755 // If exactly one matched, then we treat that as a successful match (and the
2756 // instruction will already have been filled in correctly, since the failing
2757 // matches won't have modified it).
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002758 unsigned NumSuccessfulMatches =
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002759 std::count(std::begin(Match), std::end(Match), Match_Success);
Chris Lattnerb44fd242010-09-29 01:42:58 +00002760 if (NumSuccessfulMatches == 1) {
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002761 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002762 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002763 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002764 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002765 return false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002766 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002767
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002768 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002769
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002770 // If we had multiple suffix matches, then identify this as an ambiguous
2771 // match.
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002772 if (NumSuccessfulMatches > 1) {
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002773 char MatchChars[4];
2774 unsigned NumMatches = 0;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002775 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I)
2776 if (Match[I] == Match_Success)
2777 MatchChars[NumMatches++] = Suffixes[I];
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002778
Alp Tokere69170a2014-06-26 22:52:05 +00002779 SmallString<126> Msg;
2780 raw_svector_ostream OS(Msg);
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002781 OS << "ambiguous instructions require an explicit suffix (could be ";
2782 for (unsigned i = 0; i != NumMatches; ++i) {
2783 if (i != 0)
2784 OS << ", ";
2785 if (i + 1 == NumMatches)
2786 OS << "or ";
2787 OS << "'" << Base << MatchChars[i] << "'";
2788 }
2789 OS << ")";
Nirav Dave2364748a2016-09-16 18:30:20 +00002790 Error(IDLoc, OS.str(), EmptyRange, MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002791 return true;
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002792 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002793
Chris Lattner628fbec2010-09-06 21:54:15 +00002794 // Okay, we know that none of the variants matched successfully.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002795
Chris Lattner628fbec2010-09-06 21:54:15 +00002796 // If all of the instructions reported an invalid mnemonic, then the original
2797 // mnemonic was invalid.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002798 if (std::count(std::begin(Match), std::end(Match), Match_MnemonicFail) == 4) {
Chris Lattner339cc7b2010-09-06 22:11:18 +00002799 if (!WasOriginallyInvalidOperand) {
Benjamin Kramerd416bae2011-10-16 11:28:29 +00002800 return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
Nirav Dave2364748a2016-09-16 18:30:20 +00002801 Op.getLocRange(), MatchingInlineAsm);
Chris Lattner339cc7b2010-09-06 22:11:18 +00002802 }
2803
2804 // Recover location info for the operand if we know which was the problem.
Tim Northover26bb14e2014-08-18 11:49:42 +00002805 if (ErrorInfo != ~0ULL) {
Chad Rosier49963552012-10-13 00:26:04 +00002806 if (ErrorInfo >= Operands.size())
Nirav Dave2364748a2016-09-16 18:30:20 +00002807 return Error(IDLoc, "too few operands for instruction", EmptyRange,
2808 MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002809
David Blaikie960ea3f2014-06-08 16:18:35 +00002810 X86Operand &Operand = (X86Operand &)*Operands[ErrorInfo];
2811 if (Operand.getStartLoc().isValid()) {
2812 SMRange OperandRange = Operand.getLocRange();
2813 return Error(Operand.getStartLoc(), "invalid operand for instruction",
Chad Rosier4453e842012-10-12 23:09:25 +00002814 OperandRange, MatchingInlineAsm);
Chris Lattnera3a06812011-10-16 04:47:35 +00002815 }
Chris Lattner339cc7b2010-09-06 22:11:18 +00002816 }
2817
Nirav Dave2364748a2016-09-16 18:30:20 +00002818 return Error(IDLoc, "invalid operand for instruction", EmptyRange,
Chad Rosier4453e842012-10-12 23:09:25 +00002819 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002820 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002821
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002822 // If one instruction matched with a missing feature, report this as a
2823 // missing feature.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002824 if (std::count(std::begin(Match), std::end(Match),
2825 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002826 ErrorInfo = ErrorInfoMissingFeature;
2827 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002828 MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002829 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002830
Chris Lattner628fbec2010-09-06 21:54:15 +00002831 // If one instruction matched with an invalid operand, report this as an
2832 // operand failure.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002833 if (std::count(std::begin(Match), std::end(Match),
2834 Match_InvalidOperand) == 1) {
Nirav Dave2364748a2016-09-16 18:30:20 +00002835 return Error(IDLoc, "invalid operand for instruction", EmptyRange,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002836 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002837 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002838
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002839 // If all of these were an outright failure, report it in a useless way.
Chad Rosier3d4bc622012-08-21 19:36:59 +00002840 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
Nirav Dave2364748a2016-09-16 18:30:20 +00002841 EmptyRange, MatchingInlineAsm);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002842 return true;
2843}
2844
Coby Tayree49b37332016-11-22 09:30:29 +00002845unsigned X86AsmParser::AdjustAVX512Mem(unsigned Size,
2846 X86Operand* UnsizedMemOpNext) {
2847 // Check for the existence of an AVX512 platform
2848 if (!getSTI().getFeatureBits()[X86::FeatureAVX512])
2849 return 0;
2850 // Allow adjusting upon a (x|y|z)mm
2851 if (Size == 512 || Size == 256 || Size == 128)
2852 return Size;
2853 // This is an allegadly broadcasting mem op adjustment,
2854 // allow some more inquiring to validate it
2855 if (Size == 64 || Size == 32)
2856 return UnsizedMemOpNext && UnsizedMemOpNext->isToken() &&
2857 UnsizedMemOpNext->getToken().substr(0, 4).equals("{1to") ? Size : 0;
2858 // Do not allow any other type of adjustments
2859 return 0;
2860}
2861
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002862bool X86AsmParser::MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
2863 OperandVector &Operands,
2864 MCStreamer &Out,
2865 uint64_t &ErrorInfo,
2866 bool MatchingInlineAsm) {
2867 assert(!Operands.empty() && "Unexpect empty operand list!");
2868 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2869 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
2870 StringRef Mnemonic = Op.getToken();
Nirav Dave2364748a2016-09-16 18:30:20 +00002871 SMRange EmptyRange = None;
Nirav Daveee554e62016-10-06 15:28:08 +00002872 StringRef Base = Op.getToken();
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002873
2874 // First, handle aliases that expand to multiple instructions.
2875 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
2876
2877 MCInst Inst;
2878
2879 // Find one unsized memory operand, if present.
2880 X86Operand *UnsizedMemOp = nullptr;
Coby Tayree49b37332016-11-22 09:30:29 +00002881 // If unsized memory operand was found - obtain following operand.
2882 // For use in AdjustAVX512Mem
2883 X86Operand *UnsizedMemOpNext = nullptr;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002884 for (const auto &Op : Operands) {
2885 X86Operand *X86Op = static_cast<X86Operand *>(Op.get());
Coby Tayree49b37332016-11-22 09:30:29 +00002886 if (UnsizedMemOp) {
2887 UnsizedMemOpNext = X86Op;
2888 // Have we found an unqualified memory operand,
2889 // break. IA allows only one memory operand.
2890 break;
2891 }
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002892 if (X86Op->isMemUnsized())
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002893 UnsizedMemOp = X86Op;
2894 }
2895
2896 // Allow some instructions to have implicitly pointer-sized operands. This is
2897 // compatible with gas.
2898 if (UnsizedMemOp) {
2899 static const char *const PtrSizedInstrs[] = {"call", "jmp", "push"};
2900 for (const char *Instr : PtrSizedInstrs) {
2901 if (Mnemonic == Instr) {
Craig Topper055845f2015-01-02 07:02:25 +00002902 UnsizedMemOp->Mem.Size = getPointerWidth();
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002903 break;
2904 }
2905 }
2906 }
2907
Nirav Daveee554e62016-10-06 15:28:08 +00002908 SmallVector<unsigned, 8> Match;
2909 uint64_t ErrorInfoMissingFeature = 0;
2910
2911 // If unsized push has immediate operand we should default the default pointer
2912 // size for the size.
2913 if (Mnemonic == "push" && Operands.size() == 2) {
2914 auto *X86Op = static_cast<X86Operand *>(Operands[1].get());
2915 if (X86Op->isImm()) {
2916 // If it's not a constant fall through and let remainder take care of it.
2917 const auto *CE = dyn_cast<MCConstantExpr>(X86Op->getImm());
2918 unsigned Size = getPointerWidth();
2919 if (CE &&
2920 (isIntN(Size, CE->getValue()) || isUIntN(Size, CE->getValue()))) {
2921 SmallString<16> Tmp;
2922 Tmp += Base;
2923 Tmp += (is64BitMode())
2924 ? "q"
2925 : (is32BitMode()) ? "l" : (is16BitMode()) ? "w" : " ";
2926 Op.setTokenValue(Tmp);
2927 // Do match in ATT mode to allow explicit suffix usage.
2928 Match.push_back(MatchInstruction(Operands, Inst, ErrorInfo,
2929 MatchingInlineAsm,
2930 false /*isParsingIntelSyntax()*/));
2931 Op.setTokenValue(Base);
2932 }
2933 }
2934 }
2935
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002936 // If an unsized memory operand is present, try to match with each memory
2937 // operand size. In Intel assembly, the size is not part of the instruction
2938 // mnemonic.
Coby Tayree49b37332016-11-22 09:30:29 +00002939 unsigned MatchedSize = 0;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002940 if (UnsizedMemOp && UnsizedMemOp->isMemUnsized()) {
Ahmed Bougachad65f7872014-12-03 02:03:26 +00002941 static const unsigned MopSizes[] = {8, 16, 32, 64, 80, 128, 256, 512};
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002942 for (unsigned Size : MopSizes) {
2943 UnsizedMemOp->Mem.Size = Size;
2944 uint64_t ErrorInfoIgnore;
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002945 unsigned LastOpcode = Inst.getOpcode();
Nirav Dave6477ce22016-09-26 19:33:36 +00002946 unsigned M = MatchInstruction(Operands, Inst, ErrorInfoIgnore,
2947 MatchingInlineAsm, isParsingIntelSyntax());
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002948 if (Match.empty() || LastOpcode != Inst.getOpcode())
2949 Match.push_back(M);
2950
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002951 // If this returned as a missing feature failure, remember that.
2952 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002953 ErrorInfoMissingFeature = ErrorInfoIgnore;
Coby Tayree49b37332016-11-22 09:30:29 +00002954 if (M == Match_Success)
2955 // MS-compatability:
2956 // Adjust AVX512 vector/broadcast memory operand,
2957 // when facing the absence of a size qualifier.
2958 // Match GCC behavior on respective cases.
2959 MatchedSize = AdjustAVX512Mem(Size, UnsizedMemOpNext);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002960 }
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002961
2962 // Restore the size of the unsized memory operand if we modified it.
2963 if (UnsizedMemOp)
2964 UnsizedMemOp->Mem.Size = 0;
2965 }
2966
2967 // If we haven't matched anything yet, this is not a basic integer or FPU
Saleem Abdulrasoolc3f8ad32015-01-16 20:16:06 +00002968 // operation. There shouldn't be any ambiguity in our mnemonic table, so try
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002969 // matching with the unsized operand.
2970 if (Match.empty()) {
Nirav Dave6477ce22016-09-26 19:33:36 +00002971 Match.push_back(MatchInstruction(
2972 Operands, Inst, ErrorInfo, MatchingInlineAsm, isParsingIntelSyntax()));
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002973 // If this returned as a missing feature failure, remember that.
2974 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002975 ErrorInfoMissingFeature = ErrorInfo;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002976 }
2977
2978 // Restore the size of the unsized memory operand if we modified it.
2979 if (UnsizedMemOp)
2980 UnsizedMemOp->Mem.Size = 0;
2981
2982 // If it's a bad mnemonic, all results will be the same.
2983 if (Match.back() == Match_MnemonicFail) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002984 return Error(IDLoc, "invalid instruction mnemonic '" + Mnemonic + "'",
Nirav Dave2364748a2016-09-16 18:30:20 +00002985 Op.getLocRange(), MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002986 }
2987
2988 // If exactly one matched, then we treat that as a successful match (and the
2989 // instruction will already have been filled in correctly, since the failing
2990 // matches won't have modified it).
2991 unsigned NumSuccessfulMatches =
2992 std::count(std::begin(Match), std::end(Match), Match_Success);
2993 if (NumSuccessfulMatches == 1) {
Coby Tayree49b37332016-11-22 09:30:29 +00002994 if (MatchedSize && isParsingInlineAsm() && isParsingIntelSyntax())
2995 // MS compatibility -
2996 // Fix the rewrite according to the matched memory size
2997 // MS inline assembly only
2998 for (AsmRewrite &AR : *InstInfo->AsmRewrites)
2999 if ((AR.Loc.getPointer() == UnsizedMemOp->StartLoc.getPointer()) &&
3000 (AR.Kind == AOK_SizeDirective))
3001 AR.Val = MatchedSize;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00003002 // Some instructions need post-processing to, for example, tweak which
3003 // encoding is selected. Loop on it while changes happen so the individual
3004 // transformations can chain off each other.
3005 if (!MatchingInlineAsm)
3006 while (processInstruction(Inst, Operands))
3007 ;
3008 Inst.setLoc(IDLoc);
3009 if (!MatchingInlineAsm)
3010 EmitInstruction(Inst, Operands, Out);
3011 Opcode = Inst.getOpcode();
3012 return false;
3013 } else if (NumSuccessfulMatches > 1) {
3014 assert(UnsizedMemOp &&
3015 "multiple matches only possible with unsized memory operands");
Reid Klecknerf6fb7802014-08-26 20:32:34 +00003016 return Error(UnsizedMemOp->getStartLoc(),
3017 "ambiguous operand size for instruction '" + Mnemonic + "\'",
Nirav Dave2364748a2016-09-16 18:30:20 +00003018 UnsizedMemOp->getLocRange(), MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00003019 }
3020
3021 // If one instruction matched with a missing feature, report this as a
3022 // missing feature.
3023 if (std::count(std::begin(Match), std::end(Match),
3024 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00003025 ErrorInfo = ErrorInfoMissingFeature;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00003026 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
3027 MatchingInlineAsm);
3028 }
3029
3030 // If one instruction matched with an invalid operand, report this as an
3031 // operand failure.
3032 if (std::count(std::begin(Match), std::end(Match),
3033 Match_InvalidOperand) == 1) {
Nirav Dave2364748a2016-09-16 18:30:20 +00003034 return Error(IDLoc, "invalid operand for instruction", EmptyRange,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00003035 MatchingInlineAsm);
3036 }
3037
3038 // If all of these were an outright failure, report it in a useless way.
Nirav Dave2364748a2016-09-16 18:30:20 +00003039 return Error(IDLoc, "unknown instruction mnemonic", EmptyRange,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00003040 MatchingInlineAsm);
3041}
3042
Nico Weber42f79db2014-07-17 20:24:55 +00003043bool X86AsmParser::OmitRegisterFromClobberLists(unsigned RegNo) {
3044 return X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo);
3045}
Daniel Dunbar9b816a12010-05-04 16:12:42 +00003046
Devang Patel4a6e7782012-01-12 18:03:40 +00003047bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
Rafael Espindola961d4692014-11-11 05:18:41 +00003048 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00003049 StringRef IDVal = DirectiveID.getIdentifier();
3050 if (IDVal == ".word")
3051 return ParseDirectiveWord(2, DirectiveID.getLoc());
Evan Cheng481ebb02011-07-27 00:38:12 +00003052 else if (IDVal.startswith(".code"))
3053 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
Chad Rosier6f8d8b22012-09-10 20:54:39 +00003054 else if (IDVal.startswith(".att_syntax")) {
Reid Klecknerce63b792014-08-06 23:21:13 +00003055 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3056 if (Parser.getTok().getString() == "prefix")
3057 Parser.Lex();
3058 else if (Parser.getTok().getString() == "noprefix")
3059 return Error(DirectiveID.getLoc(), "'.att_syntax noprefix' is not "
3060 "supported: registers must have a "
3061 "'%' prefix in .att_syntax");
3062 }
Chad Rosier6f8d8b22012-09-10 20:54:39 +00003063 getParser().setAssemblerDialect(0);
3064 return false;
3065 } else if (IDVal.startswith(".intel_syntax")) {
Devang Patela173ee52012-01-31 18:14:05 +00003066 getParser().setAssemblerDialect(1);
Devang Patel9a9bb5c2012-01-30 20:02:42 +00003067 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00003068 if (Parser.getTok().getString() == "noprefix")
Craig Topper6bf3ed42012-07-18 04:59:16 +00003069 Parser.Lex();
Reid Klecknerce63b792014-08-06 23:21:13 +00003070 else if (Parser.getTok().getString() == "prefix")
3071 return Error(DirectiveID.getLoc(), "'.intel_syntax prefix' is not "
3072 "supported: registers must not have "
3073 "a '%' prefix in .intel_syntax");
Devang Patel9a9bb5c2012-01-30 20:02:42 +00003074 }
3075 return false;
Michael Zuckerman02ecd432015-12-13 17:07:23 +00003076 } else if (IDVal == ".even")
3077 return parseDirectiveEven(DirectiveID.getLoc());
Chris Lattner72c0b592010-10-30 17:38:55 +00003078 return true;
3079}
3080
Michael Zuckerman02ecd432015-12-13 17:07:23 +00003081/// parseDirectiveEven
3082/// ::= .even
3083bool X86AsmParser::parseDirectiveEven(SMLoc L) {
Michael Zuckerman02ecd432015-12-13 17:07:23 +00003084 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3085 TokError("unexpected token in directive");
3086 return false;
3087 }
Eric Christopher445c9522016-10-14 05:47:37 +00003088 const MCSection *Section = getStreamer().getCurrentSectionOnly();
Michael Zuckerman02ecd432015-12-13 17:07:23 +00003089 if (!Section) {
3090 getStreamer().InitSections(false);
Eric Christopher445c9522016-10-14 05:47:37 +00003091 Section = getStreamer().getCurrentSectionOnly();
Michael Zuckerman02ecd432015-12-13 17:07:23 +00003092 }
3093 if (Section->UseCodeAlign())
3094 getStreamer().EmitCodeAlignment(2, 0);
3095 else
3096 getStreamer().EmitValueToAlignment(2, 0, 1, 0);
3097 return false;
3098}
Chris Lattner72c0b592010-10-30 17:38:55 +00003099/// ParseDirectiveWord
3100/// ::= .word [ expression (, expression)* ]
Devang Patel4a6e7782012-01-12 18:03:40 +00003101bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00003102 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00003103 if (getLexer().isNot(AsmToken::EndOfStatement)) {
3104 for (;;) {
3105 const MCExpr *Value;
David Majnemera375b262015-10-26 02:45:50 +00003106 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00003107 if (getParser().parseExpression(Value))
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00003108 return false;
Chad Rosier51afe632012-06-27 22:34:28 +00003109
David Majnemera375b262015-10-26 02:45:50 +00003110 if (const auto *MCE = dyn_cast<MCConstantExpr>(Value)) {
3111 assert(Size <= 8 && "Invalid size");
3112 uint64_t IntValue = MCE->getValue();
3113 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
3114 return Error(ExprLoc, "literal value out of range for directive");
3115 getStreamer().EmitIntValue(IntValue, Size);
3116 } else {
3117 getStreamer().EmitValue(Value, Size, ExprLoc);
3118 }
Chad Rosier51afe632012-06-27 22:34:28 +00003119
Chris Lattner72c0b592010-10-30 17:38:55 +00003120 if (getLexer().is(AsmToken::EndOfStatement))
3121 break;
Chad Rosier51afe632012-06-27 22:34:28 +00003122
Chris Lattner72c0b592010-10-30 17:38:55 +00003123 // FIXME: Improve diagnostic.
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00003124 if (getLexer().isNot(AsmToken::Comma)) {
3125 Error(L, "unexpected token in directive");
3126 return false;
3127 }
Chris Lattner72c0b592010-10-30 17:38:55 +00003128 Parser.Lex();
3129 }
3130 }
Chad Rosier51afe632012-06-27 22:34:28 +00003131
Chris Lattner72c0b592010-10-30 17:38:55 +00003132 Parser.Lex();
3133 return false;
3134}
3135
Evan Cheng481ebb02011-07-27 00:38:12 +00003136/// ParseDirectiveCode
Craig Topper3c80d622014-01-06 04:55:54 +00003137/// ::= .code16 | .code32 | .code64
Devang Patel4a6e7782012-01-12 18:03:40 +00003138bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00003139 MCAsmParser &Parser = getParser();
Nirav Dave6477ce22016-09-26 19:33:36 +00003140 Code16GCC = false;
Craig Topper3c80d622014-01-06 04:55:54 +00003141 if (IDVal == ".code16") {
Evan Cheng481ebb02011-07-27 00:38:12 +00003142 Parser.Lex();
Craig Topper3c80d622014-01-06 04:55:54 +00003143 if (!is16BitMode()) {
3144 SwitchMode(X86::Mode16Bit);
3145 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
3146 }
Nirav Dave6477ce22016-09-26 19:33:36 +00003147 } else if (IDVal == ".code16gcc") {
3148 // .code16gcc parses as if in 32-bit mode, but emits code in 16-bit mode.
3149 Parser.Lex();
3150 Code16GCC = true;
3151 if (!is16BitMode()) {
3152 SwitchMode(X86::Mode16Bit);
3153 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
3154 }
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00003155 } else if (IDVal == ".code32") {
Craig Topper3c80d622014-01-06 04:55:54 +00003156 Parser.Lex();
3157 if (!is32BitMode()) {
3158 SwitchMode(X86::Mode32Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00003159 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
3160 }
3161 } else if (IDVal == ".code64") {
3162 Parser.Lex();
3163 if (!is64BitMode()) {
Craig Topper3c80d622014-01-06 04:55:54 +00003164 SwitchMode(X86::Mode64Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00003165 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
3166 }
3167 } else {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00003168 Error(L, "unknown directive " + IDVal);
3169 return false;
Evan Cheng481ebb02011-07-27 00:38:12 +00003170 }
Chris Lattner72c0b592010-10-30 17:38:55 +00003171
Evan Cheng481ebb02011-07-27 00:38:12 +00003172 return false;
3173}
Chris Lattner72c0b592010-10-30 17:38:55 +00003174
Daniel Dunbar71475772009-07-17 20:42:00 +00003175// Force static initialization.
3176extern "C" void LLVMInitializeX86AsmParser() {
Mehdi Aminif42454b2016-10-09 23:00:34 +00003177 RegisterMCAsmParser<X86AsmParser> X(getTheX86_32Target());
3178 RegisterMCAsmParser<X86AsmParser> Y(getTheX86_64Target());
Daniel Dunbar71475772009-07-17 20:42:00 +00003179}
Daniel Dunbar00331992009-07-29 00:02:19 +00003180
Chris Lattner3e4582a2010-09-06 19:11:01 +00003181#define GET_REGISTER_MATCHER
3182#define GET_MATCHER_IMPLEMENTATION
Jim Grosbach6f1f41b2012-11-14 18:04:47 +00003183#define GET_SUBTARGET_FEATURE_NAME
Daniel Dunbar00331992009-07-29 00:02:19 +00003184#include "X86GenAsmMatcher.inc"