blob: d3a22649bc6fc4b5d14bc1ee90b5ee48fc547c36 [file] [log] [blame]
Daniel Dunbar71475772009-07-17 20:42:00 +00001//===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Evan Cheng11424442011-07-26 00:24:13 +000010#include "MCTargetDesc/X86BaseInfo.h"
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000011#include "X86AsmInstrumentation.h"
Evgeniy Stepanove3804d42014-02-28 12:28:07 +000012#include "X86AsmParserCommon.h"
13#include "X86Operand.h"
Elena Demikhovsky18fd4962015-03-02 15:00:34 +000014#include "X86ISelLowering.h"
Chad Rosier6844ea02012-10-24 22:13:37 +000015#include "llvm/ADT/APFloat.h"
Craig Topper690d8ea2013-07-24 07:33:14 +000016#include "llvm/ADT/STLExtras.h"
Chris Lattner1261b812010-09-22 04:11:10 +000017#include "llvm/ADT/SmallString.h"
18#include "llvm/ADT/SmallVector.h"
Chris Lattner1261b812010-09-22 04:11:10 +000019#include "llvm/ADT/StringSwitch.h"
20#include "llvm/ADT/Twine.h"
Chad Rosier8a244662013-04-02 20:02:33 +000021#include "llvm/MC/MCContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCInst.h"
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000024#include "llvm/MC/MCInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/MC/MCParser/MCAsmLexer.h"
26#include "llvm/MC/MCParser/MCAsmParser.h"
27#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
28#include "llvm/MC/MCRegisterInfo.h"
29#include "llvm/MC/MCStreamer.h"
30#include "llvm/MC/MCSubtargetInfo.h"
31#include "llvm/MC/MCSymbol.h"
32#include "llvm/MC/MCTargetAsmParser.h"
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000033#include "llvm/Support/SourceMgr.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000034#include "llvm/Support/TargetRegistry.h"
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +000035#include "llvm/Support/raw_ostream.h"
Reid Kleckner7b1e1a02014-07-30 22:23:11 +000036#include <algorithm>
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000037#include <memory>
Evan Cheng4d1ca962011-07-08 01:53:10 +000038
Daniel Dunbar71475772009-07-17 20:42:00 +000039using namespace llvm;
40
41namespace {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000042
Chad Rosier5362af92013-04-16 18:15:40 +000043static const char OpPrecedence[] = {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000044 0, // IC_OR
Michael Kupersteine3de07a2015-06-14 12:59:45 +000045 1, // IC_XOR
46 2, // IC_AND
47 3, // IC_LSHIFT
48 3, // IC_RSHIFT
49 4, // IC_PLUS
50 4, // IC_MINUS
51 5, // IC_MULTIPLY
52 5, // IC_DIVIDE
53 6, // IC_RPAREN
54 7, // IC_LPAREN
Chad Rosier5362af92013-04-16 18:15:40 +000055 0, // IC_IMM
56 0 // IC_REGISTER
57};
58
Devang Patel4a6e7782012-01-12 18:03:40 +000059class X86AsmParser : public MCTargetAsmParser {
Evan Cheng91111d22011-07-09 05:47:46 +000060 MCSubtargetInfo &STI;
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000061 const MCInstrInfo &MII;
Chad Rosierf0e87202012-10-25 20:41:34 +000062 ParseInstructionInfo *InstInfo;
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000063 std::unique_ptr<X86AsmInstrumentation> Instrumentation;
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +000064
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000065private:
Alp Tokera5b88a52013-12-02 16:06:06 +000066 SMLoc consumeToken() {
Rafael Espindola961d4692014-11-11 05:18:41 +000067 MCAsmParser &Parser = getParser();
Alp Tokera5b88a52013-12-02 16:06:06 +000068 SMLoc Result = Parser.getTok().getLoc();
69 Parser.Lex();
70 return Result;
71 }
72
Chad Rosier5362af92013-04-16 18:15:40 +000073 enum InfixCalculatorTok {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000074 IC_OR = 0,
Michael Kupersteine3de07a2015-06-14 12:59:45 +000075 IC_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000076 IC_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +000077 IC_LSHIFT,
78 IC_RSHIFT,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000079 IC_PLUS,
Chad Rosier5362af92013-04-16 18:15:40 +000080 IC_MINUS,
81 IC_MULTIPLY,
82 IC_DIVIDE,
83 IC_RPAREN,
84 IC_LPAREN,
85 IC_IMM,
86 IC_REGISTER
87 };
88
89 class InfixCalculator {
90 typedef std::pair< InfixCalculatorTok, int64_t > ICToken;
91 SmallVector<InfixCalculatorTok, 4> InfixOperatorStack;
92 SmallVector<ICToken, 4> PostfixStack;
Michael Liao5bf95782014-12-04 05:20:33 +000093
Chad Rosier5362af92013-04-16 18:15:40 +000094 public:
95 int64_t popOperand() {
96 assert (!PostfixStack.empty() && "Poped an empty stack!");
97 ICToken Op = PostfixStack.pop_back_val();
98 assert ((Op.first == IC_IMM || Op.first == IC_REGISTER)
99 && "Expected and immediate or register!");
100 return Op.second;
101 }
102 void pushOperand(InfixCalculatorTok Op, int64_t Val = 0) {
103 assert ((Op == IC_IMM || Op == IC_REGISTER) &&
104 "Unexpected operand!");
105 PostfixStack.push_back(std::make_pair(Op, Val));
106 }
Michael Liao5bf95782014-12-04 05:20:33 +0000107
Jakub Staszak9c349222013-08-08 15:48:46 +0000108 void popOperator() { InfixOperatorStack.pop_back(); }
Chad Rosier5362af92013-04-16 18:15:40 +0000109 void pushOperator(InfixCalculatorTok Op) {
110 // Push the new operator if the stack is empty.
111 if (InfixOperatorStack.empty()) {
112 InfixOperatorStack.push_back(Op);
113 return;
114 }
Michael Liao5bf95782014-12-04 05:20:33 +0000115
Chad Rosier5362af92013-04-16 18:15:40 +0000116 // Push the new operator if it has a higher precedence than the operator
117 // on the top of the stack or the operator on the top of the stack is a
118 // left parentheses.
119 unsigned Idx = InfixOperatorStack.size() - 1;
120 InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
121 if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
122 InfixOperatorStack.push_back(Op);
123 return;
124 }
Michael Liao5bf95782014-12-04 05:20:33 +0000125
Chad Rosier5362af92013-04-16 18:15:40 +0000126 // The operator on the top of the stack has higher precedence than the
127 // new operator.
128 unsigned ParenCount = 0;
129 while (1) {
130 // Nothing to process.
131 if (InfixOperatorStack.empty())
132 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000133
Chad Rosier5362af92013-04-16 18:15:40 +0000134 Idx = InfixOperatorStack.size() - 1;
135 StackOp = InfixOperatorStack[Idx];
136 if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
137 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000138
Chad Rosier5362af92013-04-16 18:15:40 +0000139 // If we have an even parentheses count and we see a left parentheses,
140 // then stop processing.
141 if (!ParenCount && StackOp == IC_LPAREN)
142 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000143
Chad Rosier5362af92013-04-16 18:15:40 +0000144 if (StackOp == IC_RPAREN) {
145 ++ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000146 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000147 } else if (StackOp == IC_LPAREN) {
148 --ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000149 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000150 } else {
Jakub Staszak9c349222013-08-08 15:48:46 +0000151 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000152 PostfixStack.push_back(std::make_pair(StackOp, 0));
153 }
154 }
155 // Push the new operator.
156 InfixOperatorStack.push_back(Op);
157 }
Marina Yatsinaa0e02412015-08-10 11:33:10 +0000158
Chad Rosier5362af92013-04-16 18:15:40 +0000159 int64_t execute() {
160 // Push any remaining operators onto the postfix stack.
161 while (!InfixOperatorStack.empty()) {
162 InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val();
163 if (StackOp != IC_LPAREN && StackOp != IC_RPAREN)
164 PostfixStack.push_back(std::make_pair(StackOp, 0));
165 }
Michael Liao5bf95782014-12-04 05:20:33 +0000166
Chad Rosier5362af92013-04-16 18:15:40 +0000167 if (PostfixStack.empty())
168 return 0;
Michael Liao5bf95782014-12-04 05:20:33 +0000169
Chad Rosier5362af92013-04-16 18:15:40 +0000170 SmallVector<ICToken, 16> OperandStack;
171 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) {
172 ICToken Op = PostfixStack[i];
173 if (Op.first == IC_IMM || Op.first == IC_REGISTER) {
174 OperandStack.push_back(Op);
175 } else {
176 assert (OperandStack.size() > 1 && "Too few operands.");
177 int64_t Val;
178 ICToken Op2 = OperandStack.pop_back_val();
179 ICToken Op1 = OperandStack.pop_back_val();
180 switch (Op.first) {
181 default:
182 report_fatal_error("Unexpected operator!");
183 break;
184 case IC_PLUS:
185 Val = Op1.second + Op2.second;
186 OperandStack.push_back(std::make_pair(IC_IMM, Val));
187 break;
188 case IC_MINUS:
189 Val = Op1.second - Op2.second;
190 OperandStack.push_back(std::make_pair(IC_IMM, Val));
191 break;
192 case IC_MULTIPLY:
193 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
194 "Multiply operation with an immediate and a register!");
195 Val = Op1.second * Op2.second;
196 OperandStack.push_back(std::make_pair(IC_IMM, Val));
197 break;
198 case IC_DIVIDE:
199 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
200 "Divide operation with an immediate and a register!");
201 assert (Op2.second != 0 && "Division by zero!");
202 Val = Op1.second / Op2.second;
203 OperandStack.push_back(std::make_pair(IC_IMM, Val));
204 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000205 case IC_OR:
206 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
207 "Or operation with an immediate and a register!");
208 Val = Op1.second | Op2.second;
209 OperandStack.push_back(std::make_pair(IC_IMM, Val));
210 break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000211 case IC_XOR:
212 assert(Op1.first == IC_IMM && Op2.first == IC_IMM &&
213 "Xor operation with an immediate and a register!");
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_AND:
218 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
219 "And 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;
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000223 case IC_LSHIFT:
224 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
225 "Left shift 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;
229 case IC_RSHIFT:
230 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
231 "Right shift 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;
Chad Rosier5362af92013-04-16 18:15:40 +0000235 }
236 }
237 }
238 assert (OperandStack.size() == 1 && "Expected a single result.");
239 return OperandStack.pop_back_val().second;
240 }
241 };
242
243 enum IntelExprState {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000244 IES_OR,
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000245 IES_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000246 IES_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000247 IES_LSHIFT,
248 IES_RSHIFT,
Chad Rosier5362af92013-04-16 18:15:40 +0000249 IES_PLUS,
250 IES_MINUS,
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000251 IES_NOT,
Chad Rosier5362af92013-04-16 18:15:40 +0000252 IES_MULTIPLY,
253 IES_DIVIDE,
254 IES_LBRAC,
255 IES_RBRAC,
256 IES_LPAREN,
257 IES_RPAREN,
258 IES_REGISTER,
Chad Rosier5362af92013-04-16 18:15:40 +0000259 IES_INTEGER,
Chad Rosier5362af92013-04-16 18:15:40 +0000260 IES_IDENTIFIER,
261 IES_ERROR
262 };
263
264 class IntelExprStateMachine {
Chad Rosier31246272013-04-17 21:01:45 +0000265 IntelExprState State, PrevState;
Chad Rosier5362af92013-04-16 18:15:40 +0000266 unsigned BaseReg, IndexReg, TmpReg, Scale;
Chad Rosierbfb70992013-04-17 00:11:46 +0000267 int64_t Imm;
Chad Rosier5362af92013-04-16 18:15:40 +0000268 const MCExpr *Sym;
269 StringRef SymName;
Chad Rosierbfb70992013-04-17 00:11:46 +0000270 bool StopOnLBrac, AddImmPrefix;
Chad Rosier5362af92013-04-16 18:15:40 +0000271 InfixCalculator IC;
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000272 InlineAsmIdentifierInfo Info;
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +0000273
Chad Rosier5362af92013-04-16 18:15:40 +0000274 public:
Chad Rosierbfb70992013-04-17 00:11:46 +0000275 IntelExprStateMachine(int64_t imm, bool stoponlbrac, bool addimmprefix) :
Chad Rosier31246272013-04-17 21:01:45 +0000276 State(IES_PLUS), PrevState(IES_ERROR), BaseReg(0), IndexReg(0), TmpReg(0),
Craig Topper062a2ba2014-04-25 05:30:21 +0000277 Scale(1), Imm(imm), Sym(nullptr), StopOnLBrac(stoponlbrac),
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000278 AddImmPrefix(addimmprefix) { Info.clear(); }
Michael Liao5bf95782014-12-04 05:20:33 +0000279
Chad Rosier5362af92013-04-16 18:15:40 +0000280 unsigned getBaseReg() { return BaseReg; }
281 unsigned getIndexReg() { return IndexReg; }
282 unsigned getScale() { return Scale; }
283 const MCExpr *getSym() { return Sym; }
284 StringRef getSymName() { return SymName; }
Chad Rosierbfb70992013-04-17 00:11:46 +0000285 int64_t getImm() { return Imm + IC.execute(); }
Chad Rosieredb1dc82013-05-09 23:48:53 +0000286 bool isValidEndState() {
287 return State == IES_RBRAC || State == IES_INTEGER;
288 }
Chad Rosierbfb70992013-04-17 00:11:46 +0000289 bool getStopOnLBrac() { return StopOnLBrac; }
290 bool getAddImmPrefix() { return AddImmPrefix; }
Chad Rosier31246272013-04-17 21:01:45 +0000291 bool hadError() { return State == IES_ERROR; }
Chad Rosierbfb70992013-04-17 00:11:46 +0000292
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000293 InlineAsmIdentifierInfo &getIdentifierInfo() {
294 return Info;
295 }
296
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000297 void onOr() {
298 IntelExprState CurrState = State;
299 switch (State) {
300 default:
301 State = IES_ERROR;
302 break;
303 case IES_INTEGER:
304 case IES_RPAREN:
305 case IES_REGISTER:
306 State = IES_OR;
307 IC.pushOperator(IC_OR);
308 break;
309 }
310 PrevState = CurrState;
311 }
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000312 void onXor() {
313 IntelExprState CurrState = State;
314 switch (State) {
315 default:
316 State = IES_ERROR;
317 break;
318 case IES_INTEGER:
319 case IES_RPAREN:
320 case IES_REGISTER:
321 State = IES_XOR;
322 IC.pushOperator(IC_XOR);
323 break;
324 }
325 PrevState = CurrState;
326 }
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000327 void onAnd() {
328 IntelExprState CurrState = State;
329 switch (State) {
330 default:
331 State = IES_ERROR;
332 break;
333 case IES_INTEGER:
334 case IES_RPAREN:
335 case IES_REGISTER:
336 State = IES_AND;
337 IC.pushOperator(IC_AND);
338 break;
339 }
340 PrevState = CurrState;
341 }
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000342 void onLShift() {
343 IntelExprState CurrState = State;
344 switch (State) {
345 default:
346 State = IES_ERROR;
347 break;
348 case IES_INTEGER:
349 case IES_RPAREN:
350 case IES_REGISTER:
351 State = IES_LSHIFT;
352 IC.pushOperator(IC_LSHIFT);
353 break;
354 }
355 PrevState = CurrState;
356 }
357 void onRShift() {
358 IntelExprState CurrState = State;
359 switch (State) {
360 default:
361 State = IES_ERROR;
362 break;
363 case IES_INTEGER:
364 case IES_RPAREN:
365 case IES_REGISTER:
366 State = IES_RSHIFT;
367 IC.pushOperator(IC_RSHIFT);
368 break;
369 }
370 PrevState = CurrState;
371 }
Chad Rosier5362af92013-04-16 18:15:40 +0000372 void onPlus() {
Chad Rosier31246272013-04-17 21:01:45 +0000373 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000374 switch (State) {
375 default:
376 State = IES_ERROR;
377 break;
378 case IES_INTEGER:
379 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000380 case IES_REGISTER:
381 State = IES_PLUS;
Chad Rosier5362af92013-04-16 18:15:40 +0000382 IC.pushOperator(IC_PLUS);
Chad Rosier31246272013-04-17 21:01:45 +0000383 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
384 // If we already have a BaseReg, then assume this is the IndexReg with
385 // a scale of 1.
386 if (!BaseReg) {
387 BaseReg = TmpReg;
388 } else {
389 assert (!IndexReg && "BaseReg/IndexReg already set!");
390 IndexReg = TmpReg;
391 Scale = 1;
392 }
393 }
Chad Rosier5362af92013-04-16 18:15:40 +0000394 break;
395 }
Chad Rosier31246272013-04-17 21:01:45 +0000396 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000397 }
398 void onMinus() {
Chad Rosier31246272013-04-17 21:01:45 +0000399 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000400 switch (State) {
401 default:
402 State = IES_ERROR;
403 break;
404 case IES_PLUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000405 case IES_NOT:
Chad Rosier31246272013-04-17 21:01:45 +0000406 case IES_MULTIPLY:
407 case IES_DIVIDE:
Chad Rosier5362af92013-04-16 18:15:40 +0000408 case IES_LPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000409 case IES_RPAREN:
Chad Rosier31246272013-04-17 21:01:45 +0000410 case IES_LBRAC:
411 case IES_RBRAC:
412 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000413 case IES_REGISTER:
414 State = IES_MINUS;
Chad Rosier31246272013-04-17 21:01:45 +0000415 // Only push the minus operator if it is not a unary operator.
416 if (!(CurrState == IES_PLUS || CurrState == IES_MINUS ||
417 CurrState == IES_MULTIPLY || CurrState == IES_DIVIDE ||
418 CurrState == IES_LPAREN || CurrState == IES_LBRAC))
419 IC.pushOperator(IC_MINUS);
420 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
421 // If we already have a BaseReg, then assume this is the IndexReg with
422 // a scale of 1.
423 if (!BaseReg) {
424 BaseReg = TmpReg;
425 } else {
426 assert (!IndexReg && "BaseReg/IndexReg already set!");
427 IndexReg = TmpReg;
428 Scale = 1;
429 }
Chad Rosier5362af92013-04-16 18:15:40 +0000430 }
Chad Rosier5362af92013-04-16 18:15:40 +0000431 break;
432 }
Chad Rosier31246272013-04-17 21:01:45 +0000433 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000434 }
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000435 void onNot() {
436 IntelExprState CurrState = State;
437 switch (State) {
438 default:
439 State = IES_ERROR;
440 break;
441 case IES_PLUS:
442 case IES_NOT:
443 State = IES_NOT;
444 break;
445 }
446 PrevState = CurrState;
447 }
Chad Rosier5362af92013-04-16 18:15:40 +0000448 void onRegister(unsigned Reg) {
Chad Rosier31246272013-04-17 21:01:45 +0000449 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000450 switch (State) {
451 default:
452 State = IES_ERROR;
453 break;
454 case IES_PLUS:
455 case IES_LPAREN:
456 State = IES_REGISTER;
457 TmpReg = Reg;
458 IC.pushOperand(IC_REGISTER);
459 break;
Chad Rosier31246272013-04-17 21:01:45 +0000460 case IES_MULTIPLY:
461 // Index Register - Scale * Register
462 if (PrevState == IES_INTEGER) {
463 assert (!IndexReg && "IndexReg already set!");
464 State = IES_REGISTER;
465 IndexReg = Reg;
466 // Get the scale and replace the 'Scale * Register' with '0'.
467 Scale = IC.popOperand();
468 IC.pushOperand(IC_IMM);
469 IC.popOperator();
470 } else {
471 State = IES_ERROR;
472 }
Chad Rosier5362af92013-04-16 18:15:40 +0000473 break;
474 }
Chad Rosier31246272013-04-17 21:01:45 +0000475 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000476 }
Chad Rosier95ce8892013-04-19 18:39:50 +0000477 void onIdentifierExpr(const MCExpr *SymRef, StringRef SymRefName) {
Chad Rosierdb003992013-04-18 16:28:19 +0000478 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000479 switch (State) {
480 default:
481 State = IES_ERROR;
482 break;
483 case IES_PLUS:
484 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000485 case IES_NOT:
Chad Rosier5362af92013-04-16 18:15:40 +0000486 State = IES_INTEGER;
487 Sym = SymRef;
488 SymName = SymRefName;
489 IC.pushOperand(IC_IMM);
490 break;
491 }
492 }
Kevin Enderby9d117022014-01-23 21:52:41 +0000493 bool onInteger(int64_t TmpInt, StringRef &ErrMsg) {
Chad Rosier31246272013-04-17 21:01:45 +0000494 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000495 switch (State) {
496 default:
497 State = IES_ERROR;
498 break;
499 case IES_PLUS:
500 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000501 case IES_NOT:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000502 case IES_OR:
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000503 case IES_XOR:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000504 case IES_AND:
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000505 case IES_LSHIFT:
506 case IES_RSHIFT:
Chad Rosier5362af92013-04-16 18:15:40 +0000507 case IES_DIVIDE:
Chad Rosier31246272013-04-17 21:01:45 +0000508 case IES_MULTIPLY:
Chad Rosier5362af92013-04-16 18:15:40 +0000509 case IES_LPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000510 State = IES_INTEGER;
Chad Rosier31246272013-04-17 21:01:45 +0000511 if (PrevState == IES_REGISTER && CurrState == IES_MULTIPLY) {
512 // Index Register - Register * Scale
513 assert (!IndexReg && "IndexReg already set!");
514 IndexReg = TmpReg;
515 Scale = TmpInt;
Kevin Enderby9d117022014-01-23 21:52:41 +0000516 if(Scale != 1 && Scale != 2 && Scale != 4 && Scale != 8) {
517 ErrMsg = "scale factor in address must be 1, 2, 4 or 8";
518 return true;
519 }
Chad Rosier31246272013-04-17 21:01:45 +0000520 // Get the scale and replace the 'Register * Scale' with '0'.
521 IC.popOperator();
522 } else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000523 PrevState == IES_OR || PrevState == IES_AND ||
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000524 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
Chad Rosier31246272013-04-17 21:01:45 +0000525 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000526 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000527 PrevState == IES_NOT || PrevState == IES_XOR) &&
Chad Rosier31246272013-04-17 21:01:45 +0000528 CurrState == IES_MINUS) {
529 // Unary minus. No need to pop the minus operand because it was never
530 // pushed.
531 IC.pushOperand(IC_IMM, -TmpInt); // Push -Imm.
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000532 } else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
533 PrevState == IES_OR || PrevState == IES_AND ||
534 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
535 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
536 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000537 PrevState == IES_NOT || PrevState == IES_XOR) &&
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000538 CurrState == IES_NOT) {
539 // Unary not. No need to pop the not operand because it was never
540 // pushed.
541 IC.pushOperand(IC_IMM, ~TmpInt); // Push ~Imm.
Chad Rosier31246272013-04-17 21:01:45 +0000542 } else {
543 IC.pushOperand(IC_IMM, TmpInt);
544 }
Chad Rosier5362af92013-04-16 18:15:40 +0000545 break;
546 }
Chad Rosier31246272013-04-17 21:01:45 +0000547 PrevState = CurrState;
Kevin Enderby9d117022014-01-23 21:52:41 +0000548 return false;
Chad Rosier5362af92013-04-16 18:15:40 +0000549 }
550 void onStar() {
Chad Rosierdb003992013-04-18 16:28:19 +0000551 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000552 switch (State) {
553 default:
554 State = IES_ERROR;
555 break;
556 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000557 case IES_REGISTER:
Chad Rosier5362af92013-04-16 18:15:40 +0000558 case IES_RPAREN:
559 State = IES_MULTIPLY;
560 IC.pushOperator(IC_MULTIPLY);
561 break;
562 }
563 }
564 void onDivide() {
Chad Rosierdb003992013-04-18 16:28:19 +0000565 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000566 switch (State) {
567 default:
568 State = IES_ERROR;
569 break;
570 case IES_INTEGER:
Chad Rosier31246272013-04-17 21:01:45 +0000571 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000572 State = IES_DIVIDE;
573 IC.pushOperator(IC_DIVIDE);
574 break;
575 }
576 }
577 void onLBrac() {
Chad Rosierdb003992013-04-18 16:28:19 +0000578 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000579 switch (State) {
580 default:
581 State = IES_ERROR;
582 break;
583 case IES_RBRAC:
584 State = IES_PLUS;
585 IC.pushOperator(IC_PLUS);
586 break;
587 }
588 }
589 void onRBrac() {
Chad Rosier31246272013-04-17 21:01:45 +0000590 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000591 switch (State) {
592 default:
593 State = IES_ERROR;
594 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000595 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000596 case IES_REGISTER:
Chad Rosier31246272013-04-17 21:01:45 +0000597 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000598 State = IES_RBRAC;
Chad Rosier31246272013-04-17 21:01:45 +0000599 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
600 // If we already have a BaseReg, then assume this is the IndexReg with
601 // a scale of 1.
602 if (!BaseReg) {
603 BaseReg = TmpReg;
604 } else {
605 assert (!IndexReg && "BaseReg/IndexReg already set!");
606 IndexReg = TmpReg;
607 Scale = 1;
608 }
Chad Rosier5362af92013-04-16 18:15:40 +0000609 }
610 break;
611 }
Chad Rosier31246272013-04-17 21:01:45 +0000612 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000613 }
614 void onLParen() {
Chad Rosier31246272013-04-17 21:01:45 +0000615 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000616 switch (State) {
617 default:
618 State = IES_ERROR;
619 break;
620 case IES_PLUS:
621 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000622 case IES_NOT:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000623 case IES_OR:
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000624 case IES_XOR:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000625 case IES_AND:
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000626 case IES_LSHIFT:
627 case IES_RSHIFT:
Chad Rosier5362af92013-04-16 18:15:40 +0000628 case IES_MULTIPLY:
629 case IES_DIVIDE:
Chad Rosier5362af92013-04-16 18:15:40 +0000630 case IES_LPAREN:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000631 // FIXME: We don't handle this type of unary minus or not, yet.
Chad Rosierdb003992013-04-18 16:28:19 +0000632 if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000633 PrevState == IES_OR || PrevState == IES_AND ||
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000634 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
Chad Rosierdb003992013-04-18 16:28:19 +0000635 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000636 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000637 PrevState == IES_NOT || PrevState == IES_XOR) &&
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000638 (CurrState == IES_MINUS || CurrState == IES_NOT)) {
Chad Rosierdb003992013-04-18 16:28:19 +0000639 State = IES_ERROR;
640 break;
641 }
Chad Rosier5362af92013-04-16 18:15:40 +0000642 State = IES_LPAREN;
643 IC.pushOperator(IC_LPAREN);
644 break;
645 }
Chad Rosier31246272013-04-17 21:01:45 +0000646 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000647 }
648 void onRParen() {
Chad Rosierdb003992013-04-18 16:28:19 +0000649 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000650 switch (State) {
651 default:
652 State = IES_ERROR;
653 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000654 case IES_INTEGER:
Chad Rosier31246272013-04-17 21:01:45 +0000655 case IES_REGISTER:
Chad Rosier5362af92013-04-16 18:15:40 +0000656 case IES_RPAREN:
657 State = IES_RPAREN;
658 IC.pushOperator(IC_RPAREN);
659 break;
660 }
661 }
662 };
663
Chris Lattnera3a06812011-10-16 04:47:35 +0000664 bool Error(SMLoc L, const Twine &Msg,
Dmitri Gribenko3238fb72013-05-05 00:40:33 +0000665 ArrayRef<SMRange> Ranges = None,
Chad Rosier4453e842012-10-12 23:09:25 +0000666 bool MatchingInlineAsm = false) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000667 MCAsmParser &Parser = getParser();
Chad Rosier4453e842012-10-12 23:09:25 +0000668 if (MatchingInlineAsm) return true;
Chris Lattnera3a06812011-10-16 04:47:35 +0000669 return Parser.Error(L, Msg, Ranges);
670 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000671
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000672 bool ErrorAndEatStatement(SMLoc L, const Twine &Msg,
673 ArrayRef<SMRange> Ranges = None,
674 bool MatchingInlineAsm = false) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000675 MCAsmParser &Parser = getParser();
676 Parser.eatToEndOfStatement();
677 return Error(L, Msg, Ranges, MatchingInlineAsm);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000678 }
679
David Blaikie960ea3f2014-06-08 16:18:35 +0000680 std::nullptr_t ErrorOperand(SMLoc Loc, StringRef Msg) {
Devang Patel41b9dde2012-01-17 18:00:18 +0000681 Error(Loc, Msg);
Craig Topper062a2ba2014-04-25 05:30:21 +0000682 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +0000683 }
684
David Blaikie960ea3f2014-06-08 16:18:35 +0000685 std::unique_ptr<X86Operand> DefaultMemSIOperand(SMLoc Loc);
686 std::unique_ptr<X86Operand> DefaultMemDIOperand(SMLoc Loc);
Michael Kupersteinffcc7662015-07-23 10:23:48 +0000687 void AddDefaultSrcDestOperands(
688 OperandVector& Operands, std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
689 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst);
David Blaikie960ea3f2014-06-08 16:18:35 +0000690 std::unique_ptr<X86Operand> ParseOperand();
691 std::unique_ptr<X86Operand> ParseATTOperand();
692 std::unique_ptr<X86Operand> ParseIntelOperand();
693 std::unique_ptr<X86Operand> ParseIntelOffsetOfOperator();
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000694 bool ParseIntelDotOperator(const MCExpr *Disp, const MCExpr *&NewDisp);
David Blaikie960ea3f2014-06-08 16:18:35 +0000695 std::unique_ptr<X86Operand> ParseIntelOperator(unsigned OpKind);
696 std::unique_ptr<X86Operand>
697 ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start, unsigned Size);
698 std::unique_ptr<X86Operand>
699 ParseIntelMemOperand(int64_t ImmDisp, SMLoc StartLoc, unsigned Size);
Elena Demikhovsky18fd4962015-03-02 15:00:34 +0000700 std::unique_ptr<X86Operand> ParseRoundingModeOp(SMLoc Start, SMLoc End);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000701 bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End);
David Blaikie960ea3f2014-06-08 16:18:35 +0000702 std::unique_ptr<X86Operand> ParseIntelBracExpression(unsigned SegReg,
703 SMLoc Start,
704 int64_t ImmDisp,
705 unsigned Size);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000706 bool ParseIntelIdentifier(const MCExpr *&Val, StringRef &Identifier,
707 InlineAsmIdentifierInfo &Info,
708 bool IsUnevaluatedOperand, SMLoc &End);
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000709
David Blaikie960ea3f2014-06-08 16:18:35 +0000710 std::unique_ptr<X86Operand> ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000711
David Blaikie960ea3f2014-06-08 16:18:35 +0000712 std::unique_ptr<X86Operand>
713 CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp, unsigned BaseReg,
714 unsigned IndexReg, unsigned Scale, SMLoc Start,
715 SMLoc End, unsigned Size, StringRef Identifier,
716 InlineAsmIdentifierInfo &Info);
Chad Rosier7ca135b2013-03-19 21:11:56 +0000717
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000718 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Evan Cheng481ebb02011-07-27 00:38:12 +0000719 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000720
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +0000721 bool validateInstruction(MCInst &Inst, const OperandVector &Ops);
David Blaikie960ea3f2014-06-08 16:18:35 +0000722 bool processInstruction(MCInst &Inst, const OperandVector &Ops);
Devang Patelde47cce2012-01-18 22:42:29 +0000723
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000724 /// Wrapper around MCStreamer::EmitInstruction(). Possibly adds
725 /// instrumentation around Inst.
David Blaikie960ea3f2014-06-08 16:18:35 +0000726 void EmitInstruction(MCInst &Inst, OperandVector &Operands, MCStreamer &Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000727
Chad Rosier49963552012-10-13 00:26:04 +0000728 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
David Blaikie960ea3f2014-06-08 16:18:35 +0000729 OperandVector &Operands, MCStreamer &Out,
Tim Northover26bb14e2014-08-18 11:49:42 +0000730 uint64_t &ErrorInfo,
Craig Topper39012cc2014-03-09 18:03:14 +0000731 bool MatchingInlineAsm) override;
Chad Rosier9cb988f2012-08-09 22:04:55 +0000732
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000733 void MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op, OperandVector &Operands,
734 MCStreamer &Out, bool MatchingInlineAsm);
735
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000736 bool ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000737 bool MatchingInlineAsm);
738
739 bool MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
740 OperandVector &Operands, MCStreamer &Out,
741 uint64_t &ErrorInfo,
742 bool MatchingInlineAsm);
743
744 bool MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
745 OperandVector &Operands, MCStreamer &Out,
746 uint64_t &ErrorInfo,
747 bool MatchingInlineAsm);
748
Craig Topperfd38cbe2014-08-30 16:48:34 +0000749 bool OmitRegisterFromClobberLists(unsigned RegNo) override;
Nico Weber42f79db2014-07-17 20:24:55 +0000750
David Woodhouse9bbf7ca2014-01-22 15:08:36 +0000751 /// doSrcDstMatch - Returns true if operands are matching in their
752 /// word size (%si and %di, %esi and %edi, etc.). Order depends on
753 /// the parsing mode (Intel vs. AT&T).
754 bool doSrcDstMatch(X86Operand &Op1, X86Operand &Op2);
755
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000756 /// Parses AVX512 specific operand primitives: masked registers ({%k<NUM>}, {z})
757 /// and memory broadcasting ({1to<NUM>}) primitives, updating Operands vector if required.
758 /// \return \c true if no parsing errors occurred, \c false otherwise.
David Blaikie960ea3f2014-06-08 16:18:35 +0000759 bool HandleAVX512Operand(OperandVector &Operands,
760 const MCParsedAsmOperand &Op);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000761
Evan Chengc5e6d2f2011-07-11 03:57:24 +0000762 bool is64BitMode() const {
Evan Cheng4d1ca962011-07-08 01:53:10 +0000763 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000764 return STI.getFeatureBits()[X86::Mode64Bit];
Evan Cheng4d1ca962011-07-08 01:53:10 +0000765 }
Craig Topper3c80d622014-01-06 04:55:54 +0000766 bool is32BitMode() const {
767 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000768 return STI.getFeatureBits()[X86::Mode32Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000769 }
770 bool is16BitMode() const {
771 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000772 return STI.getFeatureBits()[X86::Mode16Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000773 }
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000774 void SwitchMode(unsigned mode) {
775 FeatureBitset AllModes({X86::Mode64Bit, X86::Mode32Bit, X86::Mode16Bit});
776 FeatureBitset OldMode = STI.getFeatureBits() & AllModes;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000777 unsigned FB = ComputeAvailableFeatures(
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000778 STI.ToggleFeature(OldMode.flip(mode)));
Evan Cheng481ebb02011-07-27 00:38:12 +0000779 setAvailableFeatures(FB);
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +0000780
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000781 assert(FeatureBitset({mode}) == (STI.getFeatureBits() & AllModes));
Evan Cheng481ebb02011-07-27 00:38:12 +0000782 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000783
Reid Kleckner5b37c182014-08-01 20:21:24 +0000784 unsigned getPointerWidth() {
785 if (is16BitMode()) return 16;
786 if (is32BitMode()) return 32;
787 if (is64BitMode()) return 64;
788 llvm_unreachable("invalid mode");
789 }
790
Chad Rosierc2f055d2013-04-18 16:13:18 +0000791 bool isParsingIntelSyntax() {
792 return getParser().getAssemblerDialect();
793 }
794
Daniel Dunbareefe8612010-07-19 05:44:09 +0000795 /// @name Auto-generated Matcher Functions
796 /// {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000797
Chris Lattner3e4582a2010-09-06 19:11:01 +0000798#define GET_ASSEMBLER_HEADER
799#include "X86GenAsmMatcher.inc"
Michael J. Spencer530ce852010-10-09 11:00:50 +0000800
Daniel Dunbar00331992009-07-29 00:02:19 +0000801 /// }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000802
803public:
Rafael Espindola961d4692014-11-11 05:18:41 +0000804 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &Parser,
805 const MCInstrInfo &mii, const MCTargetOptions &Options)
Colin LeMahieufe2c8b82015-07-27 21:56:53 +0000806 : MCTargetAsmParser(Options), STI(sti), MII(mii), InstInfo(nullptr) {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000807
Daniel Dunbareefe8612010-07-19 05:44:09 +0000808 // Initialize the set of available features.
Evan Cheng91111d22011-07-09 05:47:46 +0000809 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000810 Instrumentation.reset(
811 CreateX86AsmInstrumentation(Options, Parser.getContext(), STI));
Daniel Dunbareefe8612010-07-19 05:44:09 +0000812 }
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000813
Craig Topper39012cc2014-03-09 18:03:14 +0000814 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000815
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000816 void SetFrameRegister(unsigned RegNo) override;
817
David Blaikie960ea3f2014-06-08 16:18:35 +0000818 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
819 SMLoc NameLoc, OperandVector &Operands) override;
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000820
Craig Topper39012cc2014-03-09 18:03:14 +0000821 bool ParseDirective(AsmToken DirectiveID) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000822};
Chris Lattner4eb9df02009-07-29 06:33:53 +0000823} // end anonymous namespace
824
Sean Callanan86c11812010-01-23 00:40:33 +0000825/// @name Auto-generated Match Functions
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000826/// {
Sean Callanan86c11812010-01-23 00:40:33 +0000827
Chris Lattner60db0a62010-02-09 00:34:28 +0000828static unsigned MatchRegisterName(StringRef Name);
Sean Callanan86c11812010-01-23 00:40:33 +0000829
830/// }
Chris Lattner4eb9df02009-07-29 06:33:53 +0000831
Kevin Enderbybc570f22014-01-23 22:34:42 +0000832static bool CheckBaseRegAndIndexReg(unsigned BaseReg, unsigned IndexReg,
833 StringRef &ErrMsg) {
834 // If we have both a base register and an index register make sure they are
835 // both 64-bit or 32-bit registers.
836 // To support VSIB, IndexReg can be 128-bit or 256-bit registers.
837 if (BaseReg != 0 && IndexReg != 0) {
838 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
839 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
840 X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
841 IndexReg != X86::RIZ) {
842 ErrMsg = "base register is 64-bit, but index register is not";
843 return true;
844 }
845 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
846 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
847 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
848 IndexReg != X86::EIZ){
849 ErrMsg = "base register is 32-bit, but index register is not";
850 return true;
851 }
852 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg)) {
853 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg) ||
854 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) {
855 ErrMsg = "base register is 16-bit, but index register is not";
856 return true;
857 }
858 if (((BaseReg == X86::BX || BaseReg == X86::BP) &&
859 IndexReg != X86::SI && IndexReg != X86::DI) ||
860 ((BaseReg == X86::SI || BaseReg == X86::DI) &&
861 IndexReg != X86::BX && IndexReg != X86::BP)) {
862 ErrMsg = "invalid 16-bit base/index register combination";
863 return true;
864 }
865 }
866 }
867 return false;
868}
869
David Woodhouse9bbf7ca2014-01-22 15:08:36 +0000870bool X86AsmParser::doSrcDstMatch(X86Operand &Op1, X86Operand &Op2)
871{
872 // Return true and let a normal complaint about bogus operands happen.
873 if (!Op1.isMem() || !Op2.isMem())
874 return true;
875
876 // Actually these might be the other way round if Intel syntax is
877 // being used. It doesn't matter.
878 unsigned diReg = Op1.Mem.BaseReg;
879 unsigned siReg = Op2.Mem.BaseReg;
880
881 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(siReg))
882 return X86MCRegisterClasses[X86::GR16RegClassID].contains(diReg);
883 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(siReg))
884 return X86MCRegisterClasses[X86::GR32RegClassID].contains(diReg);
885 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(siReg))
886 return X86MCRegisterClasses[X86::GR64RegClassID].contains(diReg);
887 // Again, return true and let another error happen.
888 return true;
889}
890
Devang Patel4a6e7782012-01-12 18:03:40 +0000891bool X86AsmParser::ParseRegister(unsigned &RegNo,
892 SMLoc &StartLoc, SMLoc &EndLoc) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000893 MCAsmParser &Parser = getParser();
Chris Lattnercc2ad082010-01-15 18:27:19 +0000894 RegNo = 0;
Benjamin Kramere3d658b2012-09-07 14:51:35 +0000895 const AsmToken &PercentTok = Parser.getTok();
896 StartLoc = PercentTok.getLoc();
897
898 // If we encounter a %, ignore it. This code handles registers with and
899 // without the prefix, unprefixed registers can occur in cfi directives.
900 if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
Devang Patel41b9dde2012-01-17 18:00:18 +0000901 Parser.Lex(); // Eat percent token.
Kevin Enderby7d912182009-09-03 17:15:07 +0000902
Sean Callanan936b0d32010-01-19 21:44:56 +0000903 const AsmToken &Tok = Parser.getTok();
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000904 EndLoc = Tok.getEndLoc();
905
Devang Patelce6a2ca2012-01-20 22:32:05 +0000906 if (Tok.isNot(AsmToken::Identifier)) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000907 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000908 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000909 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +0000910 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000911
Kevin Enderby7d912182009-09-03 17:15:07 +0000912 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000913
Chris Lattner1261b812010-09-22 04:11:10 +0000914 // If the match failed, try the register name as lowercase.
915 if (RegNo == 0)
Benjamin Kramer20baffb2011-11-06 20:37:06 +0000916 RegNo = MatchRegisterName(Tok.getString().lower());
Michael J. Spencer530ce852010-10-09 11:00:50 +0000917
Michael Kupersteincdb076b2015-07-30 10:10:25 +0000918 // The "flags" register cannot be referenced directly.
919 // Treat it as an identifier instead.
920 if (isParsingInlineAsm() && isParsingIntelSyntax() && RegNo == X86::EFLAGS)
921 RegNo = 0;
922
Evan Chengeda1d4f2011-07-27 23:22:03 +0000923 if (!is64BitMode()) {
Eric Christopherc0a5aae2013-12-20 02:04:49 +0000924 // FIXME: This should be done using Requires<Not64BitMode> and
Evan Chengeda1d4f2011-07-27 23:22:03 +0000925 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
926 // checked.
927 // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
928 // REX prefix.
929 if (RegNo == X86::RIZ ||
930 X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
931 X86II::isX86_64NonExtLowByteReg(RegNo) ||
932 X86II::isX86_64ExtendedReg(RegNo))
Benjamin Kramer1930b002011-10-16 12:10:27 +0000933 return Error(StartLoc, "register %"
934 + Tok.getString() + " is only available in 64-bit mode",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000935 SMRange(StartLoc, EndLoc));
Evan Chengeda1d4f2011-07-27 23:22:03 +0000936 }
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +0000937
Chris Lattner1261b812010-09-22 04:11:10 +0000938 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
939 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000940 RegNo = X86::ST0;
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000941 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000942
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000943 // Check to see if we have '(4)' after %st.
944 if (getLexer().isNot(AsmToken::LParen))
945 return false;
946 // Lex the paren.
947 getParser().Lex();
948
949 const AsmToken &IntTok = Parser.getTok();
950 if (IntTok.isNot(AsmToken::Integer))
951 return Error(IntTok.getLoc(), "expected stack index");
952 switch (IntTok.getIntVal()) {
953 case 0: RegNo = X86::ST0; break;
954 case 1: RegNo = X86::ST1; break;
955 case 2: RegNo = X86::ST2; break;
956 case 3: RegNo = X86::ST3; break;
957 case 4: RegNo = X86::ST4; break;
958 case 5: RegNo = X86::ST5; break;
959 case 6: RegNo = X86::ST6; break;
960 case 7: RegNo = X86::ST7; break;
961 default: return Error(IntTok.getLoc(), "invalid stack index");
962 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000963
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000964 if (getParser().Lex().isNot(AsmToken::RParen))
965 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000966
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000967 EndLoc = Parser.getTok().getEndLoc();
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000968 Parser.Lex(); // Eat ')'
969 return false;
970 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000971
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000972 EndLoc = Parser.getTok().getEndLoc();
973
Chris Lattner80486622010-06-24 07:29:18 +0000974 // If this is "db[0-7]", match it as an alias
975 // for dr[0-7].
976 if (RegNo == 0 && Tok.getString().size() == 3 &&
977 Tok.getString().startswith("db")) {
978 switch (Tok.getString()[2]) {
979 case '0': RegNo = X86::DR0; break;
980 case '1': RegNo = X86::DR1; break;
981 case '2': RegNo = X86::DR2; break;
982 case '3': RegNo = X86::DR3; break;
983 case '4': RegNo = X86::DR4; break;
984 case '5': RegNo = X86::DR5; break;
985 case '6': RegNo = X86::DR6; break;
986 case '7': RegNo = X86::DR7; break;
987 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000988
Chris Lattner80486622010-06-24 07:29:18 +0000989 if (RegNo != 0) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000990 EndLoc = Parser.getTok().getEndLoc();
Chris Lattner80486622010-06-24 07:29:18 +0000991 Parser.Lex(); // Eat it.
992 return false;
993 }
994 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000995
Devang Patelce6a2ca2012-01-20 22:32:05 +0000996 if (RegNo == 0) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000997 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000998 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000999 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +00001000 }
Daniel Dunbar00331992009-07-29 00:02:19 +00001001
Sean Callanana83fd7d2010-01-19 20:27:46 +00001002 Parser.Lex(); // Eat identifier token.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001003 return false;
Daniel Dunbar71475772009-07-17 20:42:00 +00001004}
1005
Yuri Gorshenin3939dec2014-09-10 09:45:49 +00001006void X86AsmParser::SetFrameRegister(unsigned RegNo) {
Yuri Gorshenine8c81fd2014-10-07 11:03:09 +00001007 Instrumentation->SetInitialFrameRegister(RegNo);
Yuri Gorshenin3939dec2014-09-10 09:45:49 +00001008}
1009
David Blaikie960ea3f2014-06-08 16:18:35 +00001010std::unique_ptr<X86Operand> X86AsmParser::DefaultMemSIOperand(SMLoc Loc) {
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00001011 unsigned basereg =
1012 is64BitMode() ? X86::RSI : (is32BitMode() ? X86::ESI : X86::SI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001013 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001014 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1015 /*BaseReg=*/basereg, /*IndexReg=*/0, /*Scale=*/1,
1016 Loc, Loc, 0);
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00001017}
1018
David Blaikie960ea3f2014-06-08 16:18:35 +00001019std::unique_ptr<X86Operand> X86AsmParser::DefaultMemDIOperand(SMLoc Loc) {
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001020 unsigned basereg =
1021 is64BitMode() ? X86::RDI : (is32BitMode() ? X86::EDI : X86::DI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001022 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001023 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1024 /*BaseReg=*/basereg, /*IndexReg=*/0, /*Scale=*/1,
1025 Loc, Loc, 0);
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001026}
1027
Michael Kupersteinffcc7662015-07-23 10:23:48 +00001028void X86AsmParser::AddDefaultSrcDestOperands(
1029 OperandVector& Operands, std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
1030 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst) {
1031 if (isParsingIntelSyntax()) {
1032 Operands.push_back(std::move(Dst));
1033 Operands.push_back(std::move(Src));
1034 }
1035 else {
1036 Operands.push_back(std::move(Src));
1037 Operands.push_back(std::move(Dst));
1038 }
1039}
1040
David Blaikie960ea3f2014-06-08 16:18:35 +00001041std::unique_ptr<X86Operand> X86AsmParser::ParseOperand() {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00001042 if (isParsingIntelSyntax())
Devang Patel46831de2012-01-12 01:36:43 +00001043 return ParseIntelOperand();
1044 return ParseATTOperand();
1045}
1046
Devang Patel41b9dde2012-01-17 18:00:18 +00001047/// getIntelMemOperandSize - Return intel memory operand size.
1048static unsigned getIntelMemOperandSize(StringRef OpStr) {
Chad Rosierb6b8e962012-09-11 21:10:25 +00001049 unsigned Size = StringSwitch<unsigned>(OpStr)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001050 .Cases("BYTE", "byte", 8)
1051 .Cases("WORD", "word", 16)
1052 .Cases("DWORD", "dword", 32)
1053 .Cases("QWORD", "qword", 64)
Michael Zuckerman9beca2e2015-08-24 10:26:54 +00001054 .Cases("MMWORD","mmword", 64)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001055 .Cases("XWORD", "xword", 80)
Michael Kuperstein69e40a42015-07-19 11:03:08 +00001056 .Cases("TBYTE", "tbyte", 80)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001057 .Cases("XMMWORD", "xmmword", 128)
1058 .Cases("YMMWORD", "ymmword", 256)
Craig Topper9ac290a2014-01-17 07:37:39 +00001059 .Cases("ZMMWORD", "zmmword", 512)
Craig Topper2d4b3c92014-01-17 07:44:10 +00001060 .Cases("OPAQUE", "opaque", -1U) // needs to be non-zero, but doesn't matter
Chad Rosierb6b8e962012-09-11 21:10:25 +00001061 .Default(0);
1062 return Size;
Devang Patel46831de2012-01-12 01:36:43 +00001063}
1064
David Blaikie960ea3f2014-06-08 16:18:35 +00001065std::unique_ptr<X86Operand> X86AsmParser::CreateMemForInlineAsm(
1066 unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg,
1067 unsigned Scale, SMLoc Start, SMLoc End, unsigned Size, StringRef Identifier,
1068 InlineAsmIdentifierInfo &Info) {
Reid Kleckner5b37c182014-08-01 20:21:24 +00001069 // If we found a decl other than a VarDecl, then assume it is a FuncDecl or
1070 // some other label reference.
1071 if (isa<MCSymbolRefExpr>(Disp) && Info.OpDecl && !Info.IsVarDecl) {
1072 // Insert an explicit size if the user didn't have one.
1073 if (!Size) {
1074 Size = getPointerWidth();
1075 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_SizeDirective, Start,
1076 /*Len=*/0, Size));
1077 }
1078
1079 // Create an absolute memory reference in order to match against
1080 // instructions taking a PC relative operand.
Craig Topper055845f2015-01-02 07:02:25 +00001081 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size,
1082 Identifier, Info.OpDecl);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001083 }
1084
1085 // We either have a direct symbol reference, or an offset from a symbol. The
1086 // parser always puts the symbol on the LHS, so look there for size
1087 // calculation purposes.
1088 const MCBinaryExpr *BinOp = dyn_cast<MCBinaryExpr>(Disp);
1089 bool IsSymRef =
1090 isa<MCSymbolRefExpr>(BinOp ? BinOp->getLHS() : Disp);
1091 if (IsSymRef) {
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001092 if (!Size) {
1093 Size = Info.Type * 8; // Size is in terms of bits in this context.
1094 if (Size)
1095 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_SizeDirective, Start,
1096 /*Len=*/0, Size));
1097 }
Chad Rosier7ca135b2013-03-19 21:11:56 +00001098 }
1099
Chad Rosier7ca135b2013-03-19 21:11:56 +00001100 // When parsing inline assembly we set the base register to a non-zero value
Chad Rosier175d0ae2013-04-12 18:21:18 +00001101 // if we don't know the actual value at this time. This is necessary to
Chad Rosier7ca135b2013-03-19 21:11:56 +00001102 // get the matching correct in some cases.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001103 BaseReg = BaseReg ? BaseReg : 1;
Craig Topper055845f2015-01-02 07:02:25 +00001104 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1105 IndexReg, Scale, Start, End, Size, Identifier,
1106 Info.OpDecl);
Chad Rosier7ca135b2013-03-19 21:11:56 +00001107}
1108
Chad Rosierd383db52013-04-12 20:20:54 +00001109static void
1110RewriteIntelBracExpression(SmallVectorImpl<AsmRewrite> *AsmRewrites,
1111 StringRef SymName, int64_t ImmDisp,
1112 int64_t FinalImmDisp, SMLoc &BracLoc,
1113 SMLoc &StartInBrac, SMLoc &End) {
1114 // Remove the '[' and ']' from the IR string.
1115 AsmRewrites->push_back(AsmRewrite(AOK_Skip, BracLoc, 1));
1116 AsmRewrites->push_back(AsmRewrite(AOK_Skip, End, 1));
1117
1118 // If ImmDisp is non-zero, then we parsed a displacement before the
1119 // bracketed expression (i.e., ImmDisp [ BaseReg + Scale*IndexReg + Disp])
1120 // If ImmDisp doesn't match the displacement computed by the state machine
1121 // then we have an additional displacement in the bracketed expression.
1122 if (ImmDisp != FinalImmDisp) {
1123 if (ImmDisp) {
1124 // We have an immediate displacement before the bracketed expression.
1125 // Adjust this to match the final immediate displacement.
1126 bool Found = false;
1127 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
1128 E = AsmRewrites->end(); I != E; ++I) {
1129 if ((*I).Loc.getPointer() > BracLoc.getPointer())
1130 continue;
Chad Rosierbfb70992013-04-17 00:11:46 +00001131 if ((*I).Kind == AOK_ImmPrefix || (*I).Kind == AOK_Imm) {
1132 assert (!Found && "ImmDisp already rewritten.");
Chad Rosierd383db52013-04-12 20:20:54 +00001133 (*I).Kind = AOK_Imm;
1134 (*I).Len = BracLoc.getPointer() - (*I).Loc.getPointer();
1135 (*I).Val = FinalImmDisp;
1136 Found = true;
1137 break;
1138 }
1139 }
1140 assert (Found && "Unable to rewrite ImmDisp.");
Duncan Sands0480b9b2013-05-13 07:50:47 +00001141 (void)Found;
Chad Rosierd383db52013-04-12 20:20:54 +00001142 } else {
1143 // We have a symbolic and an immediate displacement, but no displacement
Chad Rosierbfb70992013-04-17 00:11:46 +00001144 // before the bracketed expression. Put the immediate displacement
Chad Rosierd383db52013-04-12 20:20:54 +00001145 // before the bracketed expression.
Chad Rosierbfb70992013-04-17 00:11:46 +00001146 AsmRewrites->push_back(AsmRewrite(AOK_Imm, BracLoc, 0, FinalImmDisp));
Chad Rosierd383db52013-04-12 20:20:54 +00001147 }
1148 }
1149 // Remove all the ImmPrefix rewrites within the brackets.
1150 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
1151 E = AsmRewrites->end(); I != E; ++I) {
1152 if ((*I).Loc.getPointer() < StartInBrac.getPointer())
1153 continue;
1154 if ((*I).Kind == AOK_ImmPrefix)
1155 (*I).Kind = AOK_Delete;
1156 }
1157 const char *SymLocPtr = SymName.data();
Michael Liao5bf95782014-12-04 05:20:33 +00001158 // Skip everything before the symbol.
Chad Rosierd383db52013-04-12 20:20:54 +00001159 if (unsigned Len = SymLocPtr - StartInBrac.getPointer()) {
1160 assert(Len > 0 && "Expected a non-negative length.");
1161 AsmRewrites->push_back(AsmRewrite(AOK_Skip, StartInBrac, Len));
1162 }
1163 // Skip everything after the symbol.
1164 if (unsigned Len = End.getPointer() - (SymLocPtr + SymName.size())) {
1165 SMLoc Loc = SMLoc::getFromPointer(SymLocPtr + SymName.size());
1166 assert(Len > 0 && "Expected a non-negative length.");
1167 AsmRewrites->push_back(AsmRewrite(AOK_Skip, Loc, Len));
1168 }
1169}
1170
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001171bool X86AsmParser::ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001172 MCAsmParser &Parser = getParser();
Chad Rosier6844ea02012-10-24 22:13:37 +00001173 const AsmToken &Tok = Parser.getTok();
Chad Rosier51afe632012-06-27 22:34:28 +00001174
Chad Rosier5c118fd2013-01-14 22:31:35 +00001175 bool Done = false;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001176 while (!Done) {
1177 bool UpdateLocLex = true;
1178
1179 // The period in the dot operator (e.g., [ebx].foo.bar) is parsed as an
1180 // identifier. Don't try an parse it as a register.
1181 if (Tok.getString().startswith("."))
1182 break;
Michael Liao5bf95782014-12-04 05:20:33 +00001183
Chad Rosierbfb70992013-04-17 00:11:46 +00001184 // If we're parsing an immediate expression, we don't expect a '['.
1185 if (SM.getStopOnLBrac() && getLexer().getKind() == AsmToken::LBrac)
1186 break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001187
David Majnemer6a5b8122014-06-19 01:25:43 +00001188 AsmToken::TokenKind TK = getLexer().getKind();
1189 switch (TK) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001190 default: {
1191 if (SM.isValidEndState()) {
1192 Done = true;
1193 break;
1194 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001195 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001196 }
Chad Rosierbfb70992013-04-17 00:11:46 +00001197 case AsmToken::EndOfStatement: {
1198 Done = true;
1199 break;
1200 }
David Majnemer6a5b8122014-06-19 01:25:43 +00001201 case AsmToken::String:
Chad Rosier5c118fd2013-01-14 22:31:35 +00001202 case AsmToken::Identifier: {
Chad Rosier175d0ae2013-04-12 18:21:18 +00001203 // This could be a register or a symbolic displacement.
1204 unsigned TmpReg;
Chad Rosier95ce8892013-04-19 18:39:50 +00001205 const MCExpr *Val;
Chad Rosier152749c2013-04-12 18:54:20 +00001206 SMLoc IdentLoc = Tok.getLoc();
1207 StringRef Identifier = Tok.getString();
David Majnemer6a5b8122014-06-19 01:25:43 +00001208 if (TK != AsmToken::String && !ParseRegister(TmpReg, IdentLoc, End)) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001209 SM.onRegister(TmpReg);
1210 UpdateLocLex = false;
1211 break;
Chad Rosier95ce8892013-04-19 18:39:50 +00001212 } else {
1213 if (!isParsingInlineAsm()) {
1214 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001215 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier95ce8892013-04-19 18:39:50 +00001216 } else {
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001217 // This is a dot operator, not an adjacent identifier.
1218 if (Identifier.find('.') != StringRef::npos) {
1219 return false;
1220 } else {
1221 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
1222 if (ParseIntelIdentifier(Val, Identifier, Info,
1223 /*Unevaluated=*/false, End))
1224 return true;
1225 }
Chad Rosier95ce8892013-04-19 18:39:50 +00001226 }
1227 SM.onIdentifierExpr(Val, Identifier);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001228 UpdateLocLex = false;
1229 break;
1230 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001231 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001232 }
Kevin Enderby36eba252013-12-19 23:16:14 +00001233 case AsmToken::Integer: {
Kevin Enderby9d117022014-01-23 21:52:41 +00001234 StringRef ErrMsg;
Chad Rosierbfb70992013-04-17 00:11:46 +00001235 if (isParsingInlineAsm() && SM.getAddImmPrefix())
Chad Rosier4a7005e2013-04-05 16:28:55 +00001236 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix,
1237 Tok.getLoc()));
Kevin Enderby36eba252013-12-19 23:16:14 +00001238 // Look for 'b' or 'f' following an Integer as a directional label
1239 SMLoc Loc = getTok().getLoc();
1240 int64_t IntVal = getTok().getIntVal();
1241 End = consumeToken();
1242 UpdateLocLex = false;
1243 if (getLexer().getKind() == AsmToken::Identifier) {
1244 StringRef IDVal = getTok().getString();
1245 if (IDVal == "f" || IDVal == "b") {
1246 MCSymbol *Sym =
Jim Grosbach6f482002015-05-18 18:43:14 +00001247 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b");
Kevin Enderby36eba252013-12-19 23:16:14 +00001248 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Michael Liao5bf95782014-12-04 05:20:33 +00001249 const MCExpr *Val =
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00001250 MCSymbolRefExpr::create(Sym, Variant, getContext());
Kevin Enderby36eba252013-12-19 23:16:14 +00001251 if (IDVal == "b" && Sym->isUndefined())
1252 return Error(Loc, "invalid reference to undefined symbol");
1253 StringRef Identifier = Sym->getName();
1254 SM.onIdentifierExpr(Val, Identifier);
1255 End = consumeToken();
1256 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001257 if (SM.onInteger(IntVal, ErrMsg))
1258 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001259 }
1260 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001261 if (SM.onInteger(IntVal, ErrMsg))
1262 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001263 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001264 break;
Kevin Enderby36eba252013-12-19 23:16:14 +00001265 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001266 case AsmToken::Plus: SM.onPlus(); break;
1267 case AsmToken::Minus: SM.onMinus(); break;
Ehsan Akhgari4103da62014-07-04 19:13:05 +00001268 case AsmToken::Tilde: SM.onNot(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001269 case AsmToken::Star: SM.onStar(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001270 case AsmToken::Slash: SM.onDivide(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001271 case AsmToken::Pipe: SM.onOr(); break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +00001272 case AsmToken::Caret: SM.onXor(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001273 case AsmToken::Amp: SM.onAnd(); break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +00001274 case AsmToken::LessLess:
1275 SM.onLShift(); break;
1276 case AsmToken::GreaterGreater:
1277 SM.onRShift(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001278 case AsmToken::LBrac: SM.onLBrac(); break;
1279 case AsmToken::RBrac: SM.onRBrac(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001280 case AsmToken::LParen: SM.onLParen(); break;
1281 case AsmToken::RParen: SM.onRParen(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001282 }
Chad Rosier31246272013-04-17 21:01:45 +00001283 if (SM.hadError())
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001284 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier31246272013-04-17 21:01:45 +00001285
Alp Tokera5b88a52013-12-02 16:06:06 +00001286 if (!Done && UpdateLocLex)
1287 End = consumeToken();
Devang Patel41b9dde2012-01-17 18:00:18 +00001288 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001289 return false;
Chad Rosier5362af92013-04-16 18:15:40 +00001290}
1291
David Blaikie960ea3f2014-06-08 16:18:35 +00001292std::unique_ptr<X86Operand>
1293X86AsmParser::ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
1294 int64_t ImmDisp, unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001295 MCAsmParser &Parser = getParser();
Chad Rosier5362af92013-04-16 18:15:40 +00001296 const AsmToken &Tok = Parser.getTok();
1297 SMLoc BracLoc = Tok.getLoc(), End = Tok.getEndLoc();
1298 if (getLexer().isNot(AsmToken::LBrac))
1299 return ErrorOperand(BracLoc, "Expected '[' token!");
1300 Parser.Lex(); // Eat '['
1301
1302 SMLoc StartInBrac = Tok.getLoc();
1303 // Parse [ Symbol + ImmDisp ] and [ BaseReg + Scale*IndexReg + ImmDisp ]. We
1304 // may have already parsed an immediate displacement before the bracketed
1305 // expression.
Chad Rosierbfb70992013-04-17 00:11:46 +00001306 IntelExprStateMachine SM(ImmDisp, /*StopOnLBrac=*/false, /*AddImmPrefix=*/true);
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001307 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001308 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +00001309
Craig Topper062a2ba2014-04-25 05:30:21 +00001310 const MCExpr *Disp = nullptr;
Chad Rosier175d0ae2013-04-12 18:21:18 +00001311 if (const MCExpr *Sym = SM.getSym()) {
Chad Rosierd383db52013-04-12 20:20:54 +00001312 // A symbolic displacement.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001313 Disp = Sym;
Chad Rosierd383db52013-04-12 20:20:54 +00001314 if (isParsingInlineAsm())
1315 RewriteIntelBracExpression(InstInfo->AsmRewrites, SM.getSymName(),
Chad Rosier5362af92013-04-16 18:15:40 +00001316 ImmDisp, SM.getImm(), BracLoc, StartInBrac,
Chad Rosierd383db52013-04-12 20:20:54 +00001317 End);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001318 }
1319
1320 if (SM.getImm() || !Disp) {
Jim Grosbach13760bd2015-05-30 01:25:56 +00001321 const MCExpr *Imm = MCConstantExpr::create(SM.getImm(), getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001322 if (Disp)
Jim Grosbach13760bd2015-05-30 01:25:56 +00001323 Disp = MCBinaryExpr::createAdd(Disp, Imm, getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001324 else
1325 Disp = Imm; // An immediate displacement only.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001326 }
Devang Pateld0930ff2012-01-20 21:21:01 +00001327
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001328 // Parse struct field access. Intel requires a dot, but MSVC doesn't. MSVC
1329 // will in fact do global lookup the field name inside all global typedefs,
1330 // but we don't emulate that.
1331 if (Tok.getString().find('.') != StringRef::npos) {
Chad Rosier911c1f32012-10-25 17:37:43 +00001332 const MCExpr *NewDisp;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001333 if (ParseIntelDotOperator(Disp, NewDisp))
Craig Topper062a2ba2014-04-25 05:30:21 +00001334 return nullptr;
Michael Liao5bf95782014-12-04 05:20:33 +00001335
Chad Rosier70f47592013-04-10 20:07:47 +00001336 End = Tok.getEndLoc();
Chad Rosier911c1f32012-10-25 17:37:43 +00001337 Parser.Lex(); // Eat the field.
1338 Disp = NewDisp;
1339 }
Chad Rosier5dcb4662012-10-24 22:21:50 +00001340
Chad Rosier5c118fd2013-01-14 22:31:35 +00001341 int BaseReg = SM.getBaseReg();
1342 int IndexReg = SM.getIndexReg();
Chad Rosier175d0ae2013-04-12 18:21:18 +00001343 int Scale = SM.getScale();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001344 if (!isParsingInlineAsm()) {
1345 // handle [-42]
1346 if (!BaseReg && !IndexReg) {
1347 if (!SegReg)
Craig Topper055845f2015-01-02 07:02:25 +00001348 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size);
1349 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1350 Start, End, Size);
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001351 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00001352 StringRef ErrMsg;
1353 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
1354 Error(StartInBrac, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00001355 return nullptr;
Kevin Enderbybc570f22014-01-23 22:34:42 +00001356 }
Craig Topper055845f2015-01-02 07:02:25 +00001357 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1358 IndexReg, Scale, Start, End, Size);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001359 }
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001360
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001361 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001362 return CreateMemForInlineAsm(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001363 End, Size, SM.getSymName(), Info);
Devang Patel41b9dde2012-01-17 18:00:18 +00001364}
1365
Chad Rosier8a244662013-04-02 20:02:33 +00001366// Inline assembly may use variable names with namespace alias qualifiers.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001367bool X86AsmParser::ParseIntelIdentifier(const MCExpr *&Val,
1368 StringRef &Identifier,
1369 InlineAsmIdentifierInfo &Info,
1370 bool IsUnevaluatedOperand, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001371 MCAsmParser &Parser = getParser();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001372 assert(isParsingInlineAsm() && "Expected to be parsing inline assembly.");
Craig Topper062a2ba2014-04-25 05:30:21 +00001373 Val = nullptr;
Chad Rosier8a244662013-04-02 20:02:33 +00001374
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001375 StringRef LineBuf(Identifier.data());
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001376 void *Result =
1377 SemaCallback->LookupInlineAsmIdentifier(LineBuf, Info, IsUnevaluatedOperand);
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001378
Chad Rosier8a244662013-04-02 20:02:33 +00001379 const AsmToken &Tok = Parser.getTok();
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001380 SMLoc Loc = Tok.getLoc();
John McCallf73981b2013-05-03 00:15:41 +00001381
1382 // Advance the token stream until the end of the current token is
1383 // after the end of what the frontend claimed.
1384 const char *EndPtr = Tok.getLoc().getPointer() + LineBuf.size();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001385 do {
John McCallf73981b2013-05-03 00:15:41 +00001386 End = Tok.getEndLoc();
1387 getLexer().Lex();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001388 } while (End.getPointer() < EndPtr);
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001389 Identifier = LineBuf;
1390
Reid Klecknerc2b92542015-08-26 21:57:25 +00001391 // The frontend should end parsing on an assembler token boundary, unless it
1392 // failed parsing.
1393 assert((End.getPointer() == EndPtr || !Result) &&
1394 "frontend claimed part of a token?");
1395
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001396 // If the identifier lookup was unsuccessful, assume that we are dealing with
1397 // a label.
1398 if (!Result) {
Ehsan Akhgaribb6bb072014-09-22 20:40:36 +00001399 StringRef InternalName =
1400 SemaCallback->LookupInlineAsmLabel(Identifier, getSourceManager(),
1401 Loc, false);
1402 assert(InternalName.size() && "We should have an internal name here.");
1403 // Push a rewrite for replacing the identifier name with the internal name.
1404 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Label, Loc,
1405 Identifier.size(),
1406 InternalName));
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001407 }
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001408
1409 // Create the symbol reference.
Jim Grosbach6f482002015-05-18 18:43:14 +00001410 MCSymbol *Sym = getContext().getOrCreateSymbol(Identifier);
Chad Rosier8a244662013-04-02 20:02:33 +00001411 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach13760bd2015-05-30 01:25:56 +00001412 Val = MCSymbolRefExpr::create(Sym, Variant, getParser().getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001413 return false;
Chad Rosier8a244662013-04-02 20:02:33 +00001414}
1415
David Majnemeraa34d792013-08-27 21:56:17 +00001416/// \brief Parse intel style segment override.
David Blaikie960ea3f2014-06-08 16:18:35 +00001417std::unique_ptr<X86Operand>
1418X86AsmParser::ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start,
1419 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001420 MCAsmParser &Parser = getParser();
David Majnemeraa34d792013-08-27 21:56:17 +00001421 assert(SegReg != 0 && "Tried to parse a segment override without a segment!");
1422 const AsmToken &Tok = Parser.getTok(); // Eat colon.
1423 if (Tok.isNot(AsmToken::Colon))
1424 return ErrorOperand(Tok.getLoc(), "Expected ':' token!");
1425 Parser.Lex(); // Eat ':'
Devang Patel41b9dde2012-01-17 18:00:18 +00001426
David Majnemeraa34d792013-08-27 21:56:17 +00001427 int64_t ImmDisp = 0;
Chad Rosier1530ba52013-03-27 21:49:56 +00001428 if (getLexer().is(AsmToken::Integer)) {
David Majnemeraa34d792013-08-27 21:56:17 +00001429 ImmDisp = Tok.getIntVal();
1430 AsmToken ImmDispToken = Parser.Lex(); // Eat the integer.
1431
Chad Rosier1530ba52013-03-27 21:49:56 +00001432 if (isParsingInlineAsm())
David Majnemeraa34d792013-08-27 21:56:17 +00001433 InstInfo->AsmRewrites->push_back(
1434 AsmRewrite(AOK_ImmPrefix, ImmDispToken.getLoc()));
1435
1436 if (getLexer().isNot(AsmToken::LBrac)) {
1437 // An immediate following a 'segment register', 'colon' token sequence can
1438 // be followed by a bracketed expression. If it isn't we know we have our
1439 // final segment override.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001440 const MCExpr *Disp = MCConstantExpr::create(ImmDisp, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001441 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp,
1442 /*BaseReg=*/0, /*IndexReg=*/0, /*Scale=*/1,
1443 Start, ImmDispToken.getEndLoc(), Size);
David Majnemeraa34d792013-08-27 21:56:17 +00001444 }
Chad Rosier1530ba52013-03-27 21:49:56 +00001445 }
1446
Chad Rosier91c82662012-10-24 17:22:29 +00001447 if (getLexer().is(AsmToken::LBrac))
Chad Rosierfce4fab2013-04-08 17:43:47 +00001448 return ParseIntelBracExpression(SegReg, Start, ImmDisp, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001449
David Majnemeraa34d792013-08-27 21:56:17 +00001450 const MCExpr *Val;
1451 SMLoc End;
1452 if (!isParsingInlineAsm()) {
1453 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001454 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
David Majnemeraa34d792013-08-27 21:56:17 +00001455
Craig Topper055845f2015-01-02 07:02:25 +00001456 return X86Operand::CreateMem(getPointerWidth(), Val, Start, End, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001457 }
Devang Patel41b9dde2012-01-17 18:00:18 +00001458
David Majnemeraa34d792013-08-27 21:56:17 +00001459 InlineAsmIdentifierInfo Info;
1460 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001461 if (ParseIntelIdentifier(Val, Identifier, Info,
1462 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001463 return nullptr;
David Majnemeraa34d792013-08-27 21:56:17 +00001464 return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0,/*IndexReg=*/0,
1465 /*Scale=*/1, Start, End, Size, Identifier, Info);
1466}
1467
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001468//ParseRoundingModeOp - Parse AVX-512 rounding mode operand
1469std::unique_ptr<X86Operand>
1470X86AsmParser::ParseRoundingModeOp(SMLoc Start, SMLoc End) {
1471 MCAsmParser &Parser = getParser();
1472 const AsmToken &Tok = Parser.getTok();
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001473 // Eat "{" and mark the current place.
1474 const SMLoc consumedToken = consumeToken();
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001475 if (Tok.getIdentifier().startswith("r")){
1476 int rndMode = StringSwitch<int>(Tok.getIdentifier())
1477 .Case("rn", X86::STATIC_ROUNDING::TO_NEAREST_INT)
1478 .Case("rd", X86::STATIC_ROUNDING::TO_NEG_INF)
1479 .Case("ru", X86::STATIC_ROUNDING::TO_POS_INF)
1480 .Case("rz", X86::STATIC_ROUNDING::TO_ZERO)
1481 .Default(-1);
1482 if (-1 == rndMode)
1483 return ErrorOperand(Tok.getLoc(), "Invalid rounding mode.");
1484 Parser.Lex(); // Eat "r*" of r*-sae
1485 if (!getLexer().is(AsmToken::Minus))
1486 return ErrorOperand(Tok.getLoc(), "Expected - at this point");
1487 Parser.Lex(); // Eat "-"
1488 Parser.Lex(); // Eat the sae
1489 if (!getLexer().is(AsmToken::RCurly))
1490 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1491 Parser.Lex(); // Eat "}"
1492 const MCExpr *RndModeOp =
Jim Grosbach13760bd2015-05-30 01:25:56 +00001493 MCConstantExpr::create(rndMode, Parser.getContext());
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001494 return X86Operand::CreateImm(RndModeOp, Start, End);
1495 }
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001496 if(Tok.getIdentifier().equals("sae")){
1497 Parser.Lex(); // Eat the sae
1498 if (!getLexer().is(AsmToken::RCurly))
1499 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1500 Parser.Lex(); // Eat "}"
1501 return X86Operand::CreateToken("{sae}", consumedToken);
1502 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001503 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
1504}
David Majnemeraa34d792013-08-27 21:56:17 +00001505/// ParseIntelMemOperand - Parse intel style memory operand.
David Blaikie960ea3f2014-06-08 16:18:35 +00001506std::unique_ptr<X86Operand> X86AsmParser::ParseIntelMemOperand(int64_t ImmDisp,
1507 SMLoc Start,
1508 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001509 MCAsmParser &Parser = getParser();
David Majnemeraa34d792013-08-27 21:56:17 +00001510 const AsmToken &Tok = Parser.getTok();
1511 SMLoc End;
1512
1513 // Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
1514 if (getLexer().is(AsmToken::LBrac))
1515 return ParseIntelBracExpression(/*SegReg=*/0, Start, ImmDisp, Size);
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001516 assert(ImmDisp == 0);
David Majnemeraa34d792013-08-27 21:56:17 +00001517
Chad Rosier95ce8892013-04-19 18:39:50 +00001518 const MCExpr *Val;
1519 if (!isParsingInlineAsm()) {
1520 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001521 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
Chad Rosier95ce8892013-04-19 18:39:50 +00001522
Craig Topper055845f2015-01-02 07:02:25 +00001523 return X86Operand::CreateMem(getPointerWidth(), Val, Start, End, Size);
Chad Rosier95ce8892013-04-19 18:39:50 +00001524 }
1525
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001526 InlineAsmIdentifierInfo Info;
Chad Rosierce031892013-04-11 23:24:15 +00001527 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001528 if (ParseIntelIdentifier(Val, Identifier, Info,
1529 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001530 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001531
1532 if (!getLexer().is(AsmToken::LBrac))
1533 return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0, /*IndexReg=*/0,
1534 /*Scale=*/1, Start, End, Size, Identifier, Info);
1535
1536 Parser.Lex(); // Eat '['
1537
1538 // Parse Identifier [ ImmDisp ]
1539 IntelExprStateMachine SM(/*ImmDisp=*/0, /*StopOnLBrac=*/true,
1540 /*AddImmPrefix=*/false);
1541 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001542 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001543
1544 if (SM.getSym()) {
1545 Error(Start, "cannot use more than one symbol in memory operand");
Craig Topper062a2ba2014-04-25 05:30:21 +00001546 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001547 }
1548 if (SM.getBaseReg()) {
1549 Error(Start, "cannot use base register with variable reference");
Craig Topper062a2ba2014-04-25 05:30:21 +00001550 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001551 }
1552 if (SM.getIndexReg()) {
1553 Error(Start, "cannot use index register with variable reference");
Craig Topper062a2ba2014-04-25 05:30:21 +00001554 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001555 }
1556
Jim Grosbach13760bd2015-05-30 01:25:56 +00001557 const MCExpr *Disp = MCConstantExpr::create(SM.getImm(), getContext());
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001558 // BaseReg is non-zero to avoid assertions. In the context of inline asm,
1559 // we're pointing to a local variable in memory, so the base register is
1560 // really the frame or stack pointer.
Craig Topper055845f2015-01-02 07:02:25 +00001561 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1562 /*BaseReg=*/1, /*IndexReg=*/0, /*Scale=*/1,
1563 Start, End, Size, Identifier, Info.OpDecl);
Chad Rosier91c82662012-10-24 17:22:29 +00001564}
1565
Chad Rosier5dcb4662012-10-24 22:21:50 +00001566/// Parse the '.' operator.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001567bool X86AsmParser::ParseIntelDotOperator(const MCExpr *Disp,
Chad Rosiercc541e82013-04-19 15:57:00 +00001568 const MCExpr *&NewDisp) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001569 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001570 const AsmToken &Tok = Parser.getTok();
Chad Rosier6241c1a2013-04-17 21:14:38 +00001571 int64_t OrigDispVal, DotDispVal;
Chad Rosier911c1f32012-10-25 17:37:43 +00001572
1573 // FIXME: Handle non-constant expressions.
Chad Rosiercc541e82013-04-19 15:57:00 +00001574 if (const MCConstantExpr *OrigDisp = dyn_cast<MCConstantExpr>(Disp))
Chad Rosier911c1f32012-10-25 17:37:43 +00001575 OrigDispVal = OrigDisp->getValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001576 else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001577 return Error(Tok.getLoc(), "Non-constant offsets are not supported!");
Chad Rosier5dcb4662012-10-24 22:21:50 +00001578
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001579 // Drop the optional '.'.
1580 StringRef DotDispStr = Tok.getString();
1581 if (DotDispStr.startswith("."))
1582 DotDispStr = DotDispStr.drop_front(1);
Chad Rosier5dcb4662012-10-24 22:21:50 +00001583
Chad Rosier5dcb4662012-10-24 22:21:50 +00001584 // .Imm gets lexed as a real.
1585 if (Tok.is(AsmToken::Real)) {
1586 APInt DotDisp;
1587 DotDispStr.getAsInteger(10, DotDisp);
Chad Rosier911c1f32012-10-25 17:37:43 +00001588 DotDispVal = DotDisp.getZExtValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001589 } else if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
Chad Rosier240b7b92012-10-25 21:51:10 +00001590 unsigned DotDisp;
1591 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.');
1592 if (SemaCallback->LookupInlineAsmField(BaseMember.first, BaseMember.second,
Chad Rosiercc541e82013-04-19 15:57:00 +00001593 DotDisp))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001594 return Error(Tok.getLoc(), "Unable to lookup field reference!");
Chad Rosier240b7b92012-10-25 21:51:10 +00001595 DotDispVal = DotDisp;
Chad Rosiercc541e82013-04-19 15:57:00 +00001596 } else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001597 return Error(Tok.getLoc(), "Unexpected token type!");
Chad Rosier911c1f32012-10-25 17:37:43 +00001598
Chad Rosier240b7b92012-10-25 21:51:10 +00001599 if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
1600 SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data());
1601 unsigned Len = DotDispStr.size();
1602 unsigned Val = OrigDispVal + DotDispVal;
1603 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_DotOperator, Loc, Len,
1604 Val));
Chad Rosier911c1f32012-10-25 17:37:43 +00001605 }
1606
Jim Grosbach13760bd2015-05-30 01:25:56 +00001607 NewDisp = MCConstantExpr::create(OrigDispVal + DotDispVal, getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001608 return false;
Chad Rosier5dcb4662012-10-24 22:21:50 +00001609}
1610
Chad Rosier91c82662012-10-24 17:22:29 +00001611/// Parse the 'offset' operator. This operator is used to specify the
1612/// location rather then the content of a variable.
David Blaikie960ea3f2014-06-08 16:18:35 +00001613std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOffsetOfOperator() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001614 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001615 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001616 SMLoc OffsetOfLoc = Tok.getLoc();
Chad Rosier91c82662012-10-24 17:22:29 +00001617 Parser.Lex(); // Eat offset.
Chad Rosier91c82662012-10-24 17:22:29 +00001618
Chad Rosier91c82662012-10-24 17:22:29 +00001619 const MCExpr *Val;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001620 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001621 SMLoc Start = Tok.getLoc(), End;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001622 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001623 if (ParseIntelIdentifier(Val, Identifier, Info,
1624 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001625 return nullptr;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001626
Chad Rosiere2f03772012-10-26 16:09:20 +00001627 // Don't emit the offset operator.
1628 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Skip, OffsetOfLoc, 7));
1629
Chad Rosier91c82662012-10-24 17:22:29 +00001630 // The offset operator will have an 'r' constraint, thus we need to create
1631 // register operand to ensure proper matching. Just pick a GPR based on
1632 // the size of a pointer.
Craig Topper3c80d622014-01-06 04:55:54 +00001633 unsigned RegNo =
1634 is64BitMode() ? X86::RBX : (is32BitMode() ? X86::EBX : X86::BX);
Chad Rosiera4bc9432013-01-10 22:10:27 +00001635 return X86Operand::CreateReg(RegNo, Start, End, /*GetAddress=*/true,
Chad Rosier732b8372013-04-22 22:04:25 +00001636 OffsetOfLoc, Identifier, Info.OpDecl);
Devang Patel41b9dde2012-01-17 18:00:18 +00001637}
1638
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001639enum IntelOperatorKind {
1640 IOK_LENGTH,
1641 IOK_SIZE,
1642 IOK_TYPE
1643};
1644
1645/// Parse the 'LENGTH', 'TYPE' and 'SIZE' operators. The LENGTH operator
1646/// returns the number of elements in an array. It returns the value 1 for
1647/// non-array variables. The SIZE operator returns the size of a C or C++
1648/// variable. A variable's size is the product of its LENGTH and TYPE. The
1649/// TYPE operator returns the size of a C or C++ type or variable. If the
1650/// variable is an array, TYPE returns the size of a single element.
David Blaikie960ea3f2014-06-08 16:18:35 +00001651std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperator(unsigned OpKind) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001652 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001653 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001654 SMLoc TypeLoc = Tok.getLoc();
1655 Parser.Lex(); // Eat operator.
Chad Rosier11c42f22012-10-26 18:04:20 +00001656
Craig Topper062a2ba2014-04-25 05:30:21 +00001657 const MCExpr *Val = nullptr;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001658 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001659 SMLoc Start = Tok.getLoc(), End;
Chad Rosierb67f8052013-04-11 23:57:04 +00001660 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001661 if (ParseIntelIdentifier(Val, Identifier, Info,
1662 /*Unevaluated=*/true, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001663 return nullptr;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001664
1665 if (!Info.OpDecl)
1666 return ErrorOperand(Start, "unable to lookup expression");
Chad Rosier11c42f22012-10-26 18:04:20 +00001667
Chad Rosierf6675c32013-04-22 17:01:46 +00001668 unsigned CVal = 0;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001669 switch(OpKind) {
1670 default: llvm_unreachable("Unexpected operand kind!");
1671 case IOK_LENGTH: CVal = Info.Length; break;
1672 case IOK_SIZE: CVal = Info.Size; break;
1673 case IOK_TYPE: CVal = Info.Type; break;
1674 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001675
1676 // Rewrite the type operator and the C or C++ type or variable in terms of an
1677 // immediate. E.g. TYPE foo -> $$4
1678 unsigned Len = End.getPointer() - TypeLoc.getPointer();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001679 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, TypeLoc, Len, CVal));
Chad Rosier11c42f22012-10-26 18:04:20 +00001680
Jim Grosbach13760bd2015-05-30 01:25:56 +00001681 const MCExpr *Imm = MCConstantExpr::create(CVal, getContext());
Chad Rosierf3c04f62013-03-19 21:58:18 +00001682 return X86Operand::CreateImm(Imm, Start, End);
Chad Rosier11c42f22012-10-26 18:04:20 +00001683}
1684
David Blaikie960ea3f2014-06-08 16:18:35 +00001685std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001686 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001687 const AsmToken &Tok = Parser.getTok();
David Majnemeraa34d792013-08-27 21:56:17 +00001688 SMLoc Start, End;
Chad Rosier91c82662012-10-24 17:22:29 +00001689
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001690 // Offset, length, type and size operators.
1691 if (isParsingInlineAsm()) {
Chad Rosier99e54642013-04-19 17:32:29 +00001692 StringRef AsmTokStr = Tok.getString();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001693 if (AsmTokStr == "offset" || AsmTokStr == "OFFSET")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001694 return ParseIntelOffsetOfOperator();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001695 if (AsmTokStr == "length" || AsmTokStr == "LENGTH")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001696 return ParseIntelOperator(IOK_LENGTH);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001697 if (AsmTokStr == "size" || AsmTokStr == "SIZE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001698 return ParseIntelOperator(IOK_SIZE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001699 if (AsmTokStr == "type" || AsmTokStr == "TYPE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001700 return ParseIntelOperator(IOK_TYPE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001701 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001702
David Majnemeraa34d792013-08-27 21:56:17 +00001703 unsigned Size = getIntelMemOperandSize(Tok.getString());
1704 if (Size) {
1705 Parser.Lex(); // Eat operand size (e.g., byte, word).
1706 if (Tok.getString() != "PTR" && Tok.getString() != "ptr")
Reid Kleckner71ff3f22014-08-01 00:59:22 +00001707 return ErrorOperand(Tok.getLoc(), "Expected 'PTR' or 'ptr' token!");
David Majnemeraa34d792013-08-27 21:56:17 +00001708 Parser.Lex(); // Eat ptr.
1709 }
1710 Start = Tok.getLoc();
1711
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001712 // Immediate.
Chad Rosierbfb70992013-04-17 00:11:46 +00001713 if (getLexer().is(AsmToken::Integer) || getLexer().is(AsmToken::Minus) ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +00001714 getLexer().is(AsmToken::Tilde) || getLexer().is(AsmToken::LParen)) {
Chad Rosierbfb70992013-04-17 00:11:46 +00001715 AsmToken StartTok = Tok;
1716 IntelExprStateMachine SM(/*Imm=*/0, /*StopOnLBrac=*/true,
1717 /*AddImmPrefix=*/false);
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001718 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001719 return nullptr;
Chad Rosierbfb70992013-04-17 00:11:46 +00001720
1721 int64_t Imm = SM.getImm();
1722 if (isParsingInlineAsm()) {
1723 unsigned Len = Tok.getLoc().getPointer() - Start.getPointer();
1724 if (StartTok.getString().size() == Len)
1725 // Just add a prefix if this wasn't a complex immediate expression.
Chad Rosierf3c04f62013-03-19 21:58:18 +00001726 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix, Start));
Chad Rosierbfb70992013-04-17 00:11:46 +00001727 else
1728 // Otherwise, rewrite the complex expression as a single immediate.
1729 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, Start, Len, Imm));
Devang Patel41b9dde2012-01-17 18:00:18 +00001730 }
Chad Rosierbfb70992013-04-17 00:11:46 +00001731
1732 if (getLexer().isNot(AsmToken::LBrac)) {
Kevin Enderby36eba252013-12-19 23:16:14 +00001733 // If a directional label (ie. 1f or 2b) was parsed above from
1734 // ParseIntelExpression() then SM.getSym() was set to a pointer to
1735 // to the MCExpr with the directional local symbol and this is a
1736 // memory operand not an immediate operand.
1737 if (SM.getSym())
Craig Topper055845f2015-01-02 07:02:25 +00001738 return X86Operand::CreateMem(getPointerWidth(), SM.getSym(), Start, End,
1739 Size);
Kevin Enderby36eba252013-12-19 23:16:14 +00001740
Jim Grosbach13760bd2015-05-30 01:25:56 +00001741 const MCExpr *ImmExpr = MCConstantExpr::create(Imm, getContext());
Chad Rosierbfb70992013-04-17 00:11:46 +00001742 return X86Operand::CreateImm(ImmExpr, Start, End);
1743 }
1744
1745 // Only positive immediates are valid.
1746 if (Imm < 0)
1747 return ErrorOperand(Start, "expected a positive immediate displacement "
1748 "before bracketed expr.");
1749
1750 // Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
David Majnemeraa34d792013-08-27 21:56:17 +00001751 return ParseIntelMemOperand(Imm, Start, Size);
Devang Patel41b9dde2012-01-17 18:00:18 +00001752 }
1753
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001754 // rounding mode token
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001755 if (STI.getFeatureBits()[X86::FeatureAVX512] &&
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001756 getLexer().is(AsmToken::LCurly))
1757 return ParseRoundingModeOp(Start, End);
1758
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001759 // Register.
Devang Patelce6a2ca2012-01-20 22:32:05 +00001760 unsigned RegNo = 0;
1761 if (!ParseRegister(RegNo, Start, End)) {
Chad Rosier0397edd2012-10-04 23:59:38 +00001762 // If this is a segment register followed by a ':', then this is the start
David Majnemeraa34d792013-08-27 21:56:17 +00001763 // of a segment override, otherwise this is a normal register reference.
Chad Rosier0397edd2012-10-04 23:59:38 +00001764 if (getLexer().isNot(AsmToken::Colon))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00001765 return X86Operand::CreateReg(RegNo, Start, End);
Chad Rosier0397edd2012-10-04 23:59:38 +00001766
David Majnemeraa34d792013-08-27 21:56:17 +00001767 return ParseIntelSegmentOverride(/*SegReg=*/RegNo, Start, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001768 }
1769
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001770 // Memory operand.
David Majnemeraa34d792013-08-27 21:56:17 +00001771 return ParseIntelMemOperand(/*Disp=*/0, Start, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001772}
1773
David Blaikie960ea3f2014-06-08 16:18:35 +00001774std::unique_ptr<X86Operand> X86AsmParser::ParseATTOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001775 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001776 switch (getLexer().getKind()) {
1777 default:
Chris Lattnerb9270732010-04-17 18:56:34 +00001778 // Parse a memory operand with no segment register.
1779 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattnercc2ad082010-01-15 18:27:19 +00001780 case AsmToken::Percent: {
Chris Lattnerb9270732010-04-17 18:56:34 +00001781 // Read the register.
Chris Lattnercc2ad082010-01-15 18:27:19 +00001782 unsigned RegNo;
Chris Lattner0c2538f2010-01-15 18:51:29 +00001783 SMLoc Start, End;
Craig Topper062a2ba2014-04-25 05:30:21 +00001784 if (ParseRegister(RegNo, Start, End)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001785 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001786 Error(Start, "%eiz and %riz can only be used as index registers",
1787 SMRange(Start, End));
Craig Topper062a2ba2014-04-25 05:30:21 +00001788 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001789 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001790
Chris Lattnerb9270732010-04-17 18:56:34 +00001791 // If this is a segment register followed by a ':', then this is the start
1792 // of a memory reference, otherwise this is a normal register reference.
1793 if (getLexer().isNot(AsmToken::Colon))
1794 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001795
Reid Kleckner0c5da972014-07-31 23:03:22 +00001796 if (!X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo))
1797 return ErrorOperand(Start, "invalid segment register");
1798
Chris Lattnerb9270732010-04-17 18:56:34 +00001799 getParser().Lex(); // Eat the colon.
1800 return ParseMemOperand(RegNo, Start);
Chris Lattnercc2ad082010-01-15 18:27:19 +00001801 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001802 case AsmToken::Dollar: {
1803 // $42 -> immediate.
Sean Callanan936b0d32010-01-19 21:44:56 +00001804 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callanana83fd7d2010-01-19 20:27:46 +00001805 Parser.Lex();
Daniel Dunbar73da11e2009-08-31 08:08:38 +00001806 const MCExpr *Val;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001807 if (getParser().parseExpression(Val, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001808 return nullptr;
Chris Lattner528d00b2010-01-15 19:28:38 +00001809 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001810 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001811 case AsmToken::LCurly:{
1812 SMLoc Start = Parser.getTok().getLoc(), End;
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001813 if (STI.getFeatureBits()[X86::FeatureAVX512])
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001814 return ParseRoundingModeOp(Start, End);
1815 return ErrorOperand(Start, "unknown token in expression");
1816 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001817 }
Daniel Dunbar2b11c7d2009-07-20 20:01:54 +00001818}
1819
David Blaikie960ea3f2014-06-08 16:18:35 +00001820bool X86AsmParser::HandleAVX512Operand(OperandVector &Operands,
1821 const MCParsedAsmOperand &Op) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001822 MCAsmParser &Parser = getParser();
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001823 if(STI.getFeatureBits()[X86::FeatureAVX512]) {
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001824 if (getLexer().is(AsmToken::LCurly)) {
1825 // Eat "{" and mark the current place.
1826 const SMLoc consumedToken = consumeToken();
1827 // Distinguish {1to<NUM>} from {%k<NUM>}.
1828 if(getLexer().is(AsmToken::Integer)) {
1829 // Parse memory broadcasting ({1to<NUM>}).
1830 if (getLexer().getTok().getIntVal() != 1)
1831 return !ErrorAndEatStatement(getLexer().getLoc(),
1832 "Expected 1to<NUM> at this point");
1833 Parser.Lex(); // Eat "1" of 1to8
1834 if (!getLexer().is(AsmToken::Identifier) ||
1835 !getLexer().getTok().getIdentifier().startswith("to"))
1836 return !ErrorAndEatStatement(getLexer().getLoc(),
1837 "Expected 1to<NUM> at this point");
1838 // Recognize only reasonable suffixes.
1839 const char *BroadcastPrimitive =
1840 StringSwitch<const char*>(getLexer().getTok().getIdentifier())
Robert Khasanovbfa01312014-07-21 14:54:21 +00001841 .Case("to2", "{1to2}")
1842 .Case("to4", "{1to4}")
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001843 .Case("to8", "{1to8}")
1844 .Case("to16", "{1to16}")
Craig Topper062a2ba2014-04-25 05:30:21 +00001845 .Default(nullptr);
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001846 if (!BroadcastPrimitive)
1847 return !ErrorAndEatStatement(getLexer().getLoc(),
1848 "Invalid memory broadcast primitive.");
1849 Parser.Lex(); // Eat "toN" of 1toN
1850 if (!getLexer().is(AsmToken::RCurly))
1851 return !ErrorAndEatStatement(getLexer().getLoc(),
1852 "Expected } at this point");
1853 Parser.Lex(); // Eat "}"
1854 Operands.push_back(X86Operand::CreateToken(BroadcastPrimitive,
1855 consumedToken));
1856 // No AVX512 specific primitives can pass
1857 // after memory broadcasting, so return.
1858 return true;
1859 } else {
1860 // Parse mask register {%k1}
1861 Operands.push_back(X86Operand::CreateToken("{", consumedToken));
David Blaikie960ea3f2014-06-08 16:18:35 +00001862 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
1863 Operands.push_back(std::move(Op));
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001864 if (!getLexer().is(AsmToken::RCurly))
1865 return !ErrorAndEatStatement(getLexer().getLoc(),
1866 "Expected } at this point");
1867 Operands.push_back(X86Operand::CreateToken("}", consumeToken()));
1868
1869 // Parse "zeroing non-masked" semantic {z}
1870 if (getLexer().is(AsmToken::LCurly)) {
1871 Operands.push_back(X86Operand::CreateToken("{z}", consumeToken()));
1872 if (!getLexer().is(AsmToken::Identifier) ||
1873 getLexer().getTok().getIdentifier() != "z")
1874 return !ErrorAndEatStatement(getLexer().getLoc(),
1875 "Expected z at this point");
1876 Parser.Lex(); // Eat the z
1877 if (!getLexer().is(AsmToken::RCurly))
1878 return !ErrorAndEatStatement(getLexer().getLoc(),
1879 "Expected } at this point");
1880 Parser.Lex(); // Eat the }
1881 }
1882 }
1883 }
1884 }
1885 }
1886 return true;
1887}
1888
Chris Lattnerb9270732010-04-17 18:56:34 +00001889/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
1890/// has already been parsed if present.
David Blaikie960ea3f2014-06-08 16:18:35 +00001891std::unique_ptr<X86Operand> X86AsmParser::ParseMemOperand(unsigned SegReg,
1892 SMLoc MemStart) {
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001893
Rafael Espindola961d4692014-11-11 05:18:41 +00001894 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001895 // We have to disambiguate a parenthesized expression "(4+5)" from the start
1896 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner807a3bc2010-01-24 01:07:33 +00001897 // only way to do this without lookahead is to eat the '(' and see what is
1898 // after it.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001899 const MCExpr *Disp = MCConstantExpr::create(0, getParser().getContext());
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001900 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattnere17df0b2010-01-15 19:39:23 +00001901 SMLoc ExprEnd;
Craig Topper062a2ba2014-04-25 05:30:21 +00001902 if (getParser().parseExpression(Disp, ExprEnd)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001903
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001904 // After parsing the base expression we could either have a parenthesized
1905 // memory address or not. If not, return now. If so, eat the (.
1906 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00001907 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001908 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00001909 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, ExprEnd);
1910 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1911 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001912 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001913
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001914 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00001915 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001916 } else {
1917 // Okay, we have a '('. We don't know if this is an expression or not, but
1918 // so we have to eat the ( to see beyond it.
Sean Callanan936b0d32010-01-19 21:44:56 +00001919 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00001920 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001921
Kevin Enderby7d912182009-09-03 17:15:07 +00001922 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001923 // Nothing to do here, fall into the code below with the '(' part of the
1924 // memory operand consumed.
1925 } else {
Chris Lattner528d00b2010-01-15 19:28:38 +00001926 SMLoc ExprEnd;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001927
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001928 // It must be an parenthesized expression, parse it now.
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001929 if (getParser().parseParenExpression(Disp, ExprEnd))
Craig Topper062a2ba2014-04-25 05:30:21 +00001930 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001931
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001932 // After parsing the base expression we could either have a parenthesized
1933 // memory address or not. If not, return now. If so, eat the (.
1934 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00001935 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001936 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00001937 return X86Operand::CreateMem(getPointerWidth(), Disp, LParenLoc,
1938 ExprEnd);
1939 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1940 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001941 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001942
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001943 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00001944 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001945 }
1946 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001947
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001948 // If we reached here, then we just ate the ( of the memory operand. Process
1949 // the rest of the memory operand.
Daniel Dunbar3ebf8482009-07-31 20:53:16 +00001950 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
David Woodhouse6dbda442014-01-08 12:58:28 +00001951 SMLoc IndexLoc, BaseLoc;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001952
Chris Lattner0c2538f2010-01-15 18:51:29 +00001953 if (getLexer().is(AsmToken::Percent)) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001954 SMLoc StartLoc, EndLoc;
David Woodhouse6dbda442014-01-08 12:58:28 +00001955 BaseLoc = Parser.getTok().getLoc();
Craig Topper062a2ba2014-04-25 05:30:21 +00001956 if (ParseRegister(BaseReg, StartLoc, EndLoc)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001957 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001958 Error(StartLoc, "eiz and riz can only be used as index registers",
1959 SMRange(StartLoc, EndLoc));
Craig Topper062a2ba2014-04-25 05:30:21 +00001960 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001961 }
Chris Lattner0c2538f2010-01-15 18:51:29 +00001962 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001963
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001964 if (getLexer().is(AsmToken::Comma)) {
Sean Callanana83fd7d2010-01-19 20:27:46 +00001965 Parser.Lex(); // Eat the comma.
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00001966 IndexLoc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001967
1968 // Following the comma we should have either an index register, or a scale
1969 // value. We don't support the later form, but we want to parse it
1970 // correctly.
1971 //
1972 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001973 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7d912182009-09-03 17:15:07 +00001974 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner0c2538f2010-01-15 18:51:29 +00001975 SMLoc L;
Craig Topper062a2ba2014-04-25 05:30:21 +00001976 if (ParseRegister(IndexReg, L, L)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001977
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001978 if (getLexer().isNot(AsmToken::RParen)) {
1979 // Parse the scale amount:
1980 // ::= ',' [scale-expression]
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001981 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00001982 Error(Parser.getTok().getLoc(),
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001983 "expected comma in scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00001984 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001985 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00001986 Parser.Lex(); // Eat the comma.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001987
1988 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00001989 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001990
1991 int64_t ScaleVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001992 if (getParser().parseAbsoluteExpression(ScaleVal)){
Kevin Enderbydeed5aa2012-03-09 22:24:10 +00001993 Error(Loc, "expected scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00001994 return nullptr;
Craig Topper6bf3ed42012-07-18 04:59:16 +00001995 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001996
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001997 // Validate the scale amount.
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00001998 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
David Woodhouse6dbda442014-01-08 12:58:28 +00001999 ScaleVal != 1) {
2000 Error(Loc, "scale factor in 16-bit address must be 1");
Craig Topper062a2ba2014-04-25 05:30:21 +00002001 return nullptr;
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00002002 }
2003 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 &&
2004 ScaleVal != 8) {
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002005 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
Craig Topper062a2ba2014-04-25 05:30:21 +00002006 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002007 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002008 Scale = (unsigned)ScaleVal;
2009 }
2010 }
2011 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002012 // A scale amount without an index is ignored.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002013 // index.
Sean Callanan936b0d32010-01-19 21:44:56 +00002014 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002015
2016 int64_t Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002017 if (getParser().parseAbsoluteExpression(Value))
Craig Topper062a2ba2014-04-25 05:30:21 +00002018 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002019
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002020 if (Value != 1)
2021 Warning(Loc, "scale factor without index register is ignored");
2022 Scale = 1;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002023 }
2024 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002025
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002026 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002027 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002028 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Craig Topper062a2ba2014-04-25 05:30:21 +00002029 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002030 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002031 SMLoc MemEnd = Parser.getTok().getEndLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00002032 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002033
David Woodhouse6dbda442014-01-08 12:58:28 +00002034 // Check for use of invalid 16-bit registers. Only BX/BP/SI/DI are allowed,
2035 // and then only in non-64-bit modes. Except for DX, which is a special case
2036 // because an unofficial form of in/out instructions uses it.
2037 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
2038 (is64BitMode() || (BaseReg != X86::BX && BaseReg != X86::BP &&
2039 BaseReg != X86::SI && BaseReg != X86::DI)) &&
2040 BaseReg != X86::DX) {
2041 Error(BaseLoc, "invalid 16-bit base register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002042 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002043 }
2044 if (BaseReg == 0 &&
2045 X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg)) {
2046 Error(IndexLoc, "16-bit memory operand may not include only index register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002047 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002048 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00002049
2050 StringRef ErrMsg;
2051 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
2052 Error(BaseLoc, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00002053 return nullptr;
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00002054 }
2055
Reid Klecknerb7e2f602014-07-31 23:26:35 +00002056 if (SegReg || BaseReg || IndexReg)
Craig Topper055845f2015-01-02 07:02:25 +00002057 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
2058 IndexReg, Scale, MemStart, MemEnd);
2059 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, MemEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002060}
2061
David Blaikie960ea3f2014-06-08 16:18:35 +00002062bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
2063 SMLoc NameLoc, OperandVector &Operands) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002064 MCAsmParser &Parser = getParser();
Chad Rosierf0e87202012-10-25 20:41:34 +00002065 InstInfo = &Info;
Chris Lattner2cb092d2010-10-30 19:23:13 +00002066 StringRef PatchedName = Name;
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002067
Chris Lattner7e8a99b2010-11-28 20:23:50 +00002068 // FIXME: Hack to recognize setneb as setne.
2069 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
2070 PatchedName != "setb" && PatchedName != "setnb")
2071 PatchedName = PatchedName.substr(0, Name.size()-1);
Chad Rosier51afe632012-06-27 22:34:28 +00002072
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002073 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
Bruno Cardoso Lopes3183dd52010-06-23 21:10:57 +00002074 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002075 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
2076 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Craig Toppera0a603e2012-03-29 07:11:23 +00002077 bool IsVCMP = PatchedName[0] == 'v';
Craig Topper78c424d2015-02-15 07:13:48 +00002078 unsigned CCIdx = IsVCMP ? 4 : 3;
2079 unsigned ComparisonCode = StringSwitch<unsigned>(
2080 PatchedName.slice(CCIdx, PatchedName.size() - 2))
Craig Toppera0a603e2012-03-29 07:11:23 +00002081 .Case("eq", 0x00)
2082 .Case("lt", 0x01)
2083 .Case("le", 0x02)
2084 .Case("unord", 0x03)
2085 .Case("neq", 0x04)
2086 .Case("nlt", 0x05)
2087 .Case("nle", 0x06)
2088 .Case("ord", 0x07)
2089 /* AVX only from here */
2090 .Case("eq_uq", 0x08)
2091 .Case("nge", 0x09)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002092 .Case("ngt", 0x0A)
2093 .Case("false", 0x0B)
2094 .Case("neq_oq", 0x0C)
2095 .Case("ge", 0x0D)
2096 .Case("gt", 0x0E)
2097 .Case("true", 0x0F)
2098 .Case("eq_os", 0x10)
2099 .Case("lt_oq", 0x11)
2100 .Case("le_oq", 0x12)
2101 .Case("unord_s", 0x13)
2102 .Case("neq_us", 0x14)
2103 .Case("nlt_uq", 0x15)
2104 .Case("nle_uq", 0x16)
2105 .Case("ord_s", 0x17)
2106 .Case("eq_us", 0x18)
2107 .Case("nge_uq", 0x19)
2108 .Case("ngt_uq", 0x1A)
2109 .Case("false_os", 0x1B)
2110 .Case("neq_os", 0x1C)
2111 .Case("ge_oq", 0x1D)
2112 .Case("gt_oq", 0x1E)
2113 .Case("true_us", 0x1F)
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002114 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002115 if (ComparisonCode != ~0U && (IsVCMP || ComparisonCode < 8)) {
Craig Topper43860832015-02-14 21:54:03 +00002116
Craig Topper78c424d2015-02-15 07:13:48 +00002117 Operands.push_back(X86Operand::CreateToken(PatchedName.slice(0, CCIdx),
Craig Topper43860832015-02-14 21:54:03 +00002118 NameLoc));
2119
Jim Grosbach13760bd2015-05-30 01:25:56 +00002120 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper43860832015-02-14 21:54:03 +00002121 getParser().getContext());
2122 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2123
2124 PatchedName = PatchedName.substr(PatchedName.size() - 2);
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002125 }
2126 }
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +00002127
Craig Topper78c424d2015-02-15 07:13:48 +00002128 // FIXME: Hack to recognize vpcmp<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2129 if (PatchedName.startswith("vpcmp") &&
2130 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2131 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
2132 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2133 unsigned ComparisonCode = StringSwitch<unsigned>(
2134 PatchedName.slice(5, PatchedName.size() - CCIdx))
2135 .Case("eq", 0x0) // Only allowed on unsigned. Checked below.
2136 .Case("lt", 0x1)
2137 .Case("le", 0x2)
2138 //.Case("false", 0x3) // Not a documented alias.
2139 .Case("neq", 0x4)
2140 .Case("nlt", 0x5)
2141 .Case("nle", 0x6)
2142 //.Case("true", 0x7) // Not a documented alias.
2143 .Default(~0U);
2144 if (ComparisonCode != ~0U && (ComparisonCode != 0 || CCIdx == 2)) {
2145 Operands.push_back(X86Operand::CreateToken("vpcmp", NameLoc));
2146
Jim Grosbach13760bd2015-05-30 01:25:56 +00002147 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper78c424d2015-02-15 07:13:48 +00002148 getParser().getContext());
2149 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2150
2151 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
2152 }
2153 }
2154
Craig Topper916708f2015-02-13 07:42:25 +00002155 // FIXME: Hack to recognize vpcom<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2156 if (PatchedName.startswith("vpcom") &&
2157 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2158 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
Craig Topper78c424d2015-02-15 07:13:48 +00002159 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2160 unsigned ComparisonCode = StringSwitch<unsigned>(
2161 PatchedName.slice(5, PatchedName.size() - CCIdx))
Craig Topper916708f2015-02-13 07:42:25 +00002162 .Case("lt", 0x0)
2163 .Case("le", 0x1)
2164 .Case("gt", 0x2)
2165 .Case("ge", 0x3)
2166 .Case("eq", 0x4)
2167 .Case("neq", 0x5)
2168 .Case("false", 0x6)
2169 .Case("true", 0x7)
2170 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002171 if (ComparisonCode != ~0U) {
Craig Topper916708f2015-02-13 07:42:25 +00002172 Operands.push_back(X86Operand::CreateToken("vpcom", NameLoc));
2173
Jim Grosbach13760bd2015-05-30 01:25:56 +00002174 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper916708f2015-02-13 07:42:25 +00002175 getParser().getContext());
2176 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2177
Craig Topper78c424d2015-02-15 07:13:48 +00002178 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
Craig Topper916708f2015-02-13 07:42:25 +00002179 }
2180 }
2181
Daniel Dunbar3e0c9792010-02-10 21:19:28 +00002182 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002183
Chris Lattner086a83a2010-09-08 05:17:37 +00002184 // Determine whether this is an instruction prefix.
2185 bool isPrefix =
Chris Lattner2cb092d2010-10-30 19:23:13 +00002186 Name == "lock" || Name == "rep" ||
2187 Name == "repe" || Name == "repz" ||
Rafael Espindolaf6c05b12010-11-23 11:23:24 +00002188 Name == "repne" || Name == "repnz" ||
Rafael Espindolaeab08002010-11-27 20:29:45 +00002189 Name == "rex64" || Name == "data16";
Michael J. Spencer530ce852010-10-09 11:00:50 +00002190
Chris Lattner086a83a2010-09-08 05:17:37 +00002191 // This does the actual operand parsing. Don't parse any more if we have a
2192 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
2193 // just want to parse the "lock" as the first instruction and the "incl" as
2194 // the next one.
2195 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar71527c12009-08-11 05:00:25 +00002196
2197 // Parse '*' modifier.
Alp Tokera5b88a52013-12-02 16:06:06 +00002198 if (getLexer().is(AsmToken::Star))
2199 Operands.push_back(X86Operand::CreateToken("*", consumeToken()));
Daniel Dunbar71527c12009-08-11 05:00:25 +00002200
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002201 // Read the operands.
2202 while(1) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002203 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
2204 Operands.push_back(std::move(Op));
2205 if (!HandleAVX512Operand(Operands, *Operands.back()))
Elena Demikhovsky89529742013-09-12 08:55:00 +00002206 return true;
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002207 } else {
2208 Parser.eatToEndOfStatement();
2209 return true;
Elena Demikhovsky89529742013-09-12 08:55:00 +00002210 }
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002211 // check for comma and eat it
2212 if (getLexer().is(AsmToken::Comma))
2213 Parser.Lex();
2214 else
2215 break;
2216 }
Elena Demikhovsky89529742013-09-12 08:55:00 +00002217
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002218 if (getLexer().isNot(AsmToken::EndOfStatement))
Elena Demikhovsky9f09b3e2014-02-20 07:00:10 +00002219 return ErrorAndEatStatement(getLexer().getLoc(),
2220 "unexpected token in argument list");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002221 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002222
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002223 // Consume the EndOfStatement or the prefix separator Slash
Elena Demikhovsky9f09b3e2014-02-20 07:00:10 +00002224 if (getLexer().is(AsmToken::EndOfStatement) ||
2225 (isPrefix && getLexer().is(AsmToken::Slash)))
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002226 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002227
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002228 // This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
2229 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
2230 // documented form in various unofficial manuals, so a lot of code uses it.
2231 if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
2232 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002233 X86Operand &Op = (X86Operand &)*Operands.back();
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002234 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2235 isa<MCConstantExpr>(Op.Mem.Disp) &&
2236 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2237 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2238 SMLoc Loc = Op.getEndLoc();
2239 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002240 }
2241 }
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002242 // Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
2243 if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
2244 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002245 X86Operand &Op = (X86Operand &)*Operands[1];
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002246 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2247 isa<MCConstantExpr>(Op.Mem.Disp) &&
2248 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2249 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2250 SMLoc Loc = Op.getEndLoc();
David Blaikie960ea3f2014-06-08 16:18:35 +00002251 Operands[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002252 }
2253 }
David Woodhouse4ce66062014-01-22 15:08:55 +00002254
2255 // Append default arguments to "ins[bwld]"
2256 if (Name.startswith("ins") && Operands.size() == 1 &&
NAKAMURA Takumi70ad98a2015-09-22 11:13:55 +00002257 (Name == "insb" || Name == "insw" || Name == "insl" || Name == "insd")) {
2258 AddDefaultSrcDestOperands(Operands,
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002259 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc),
2260 DefaultMemDIOperand(NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002261 }
2262
David Woodhousec472b812014-01-22 15:08:49 +00002263 // Append default arguments to "outs[bwld]"
2264 if (Name.startswith("outs") && Operands.size() == 1 &&
2265 (Name == "outsb" || Name == "outsw" || Name == "outsl" ||
2266 Name == "outsd" )) {
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002267 AddDefaultSrcDestOperands(Operands,
2268 DefaultMemSIOperand(NameLoc),
2269 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002270 }
2271
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002272 // Transform "lods[bwlq]" into "lods[bwlq] ($SIREG)" for appropriate
2273 // values of $SIREG according to the mode. It would be nice if this
2274 // could be achieved with InstAlias in the tables.
2275 if (Name.startswith("lods") && Operands.size() == 1 &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002276 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002277 Name == "lodsl" || Name == "lodsd" || Name == "lodsq"))
2278 Operands.push_back(DefaultMemSIOperand(NameLoc));
2279
David Woodhouseb33c2ef2014-01-22 15:08:21 +00002280 // Transform "stos[bwlq]" into "stos[bwlq] ($DIREG)" for appropriate
2281 // values of $DIREG according to the mode. It would be nice if this
2282 // could be achieved with InstAlias in the tables.
2283 if (Name.startswith("stos") && Operands.size() == 1 &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002284 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
David Woodhouseb33c2ef2014-01-22 15:08:21 +00002285 Name == "stosl" || Name == "stosd" || Name == "stosq"))
2286 Operands.push_back(DefaultMemDIOperand(NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002287
David Woodhouse20fe4802014-01-22 15:08:27 +00002288 // Transform "scas[bwlq]" into "scas[bwlq] ($DIREG)" for appropriate
2289 // values of $DIREG according to the mode. It would be nice if this
2290 // could be achieved with InstAlias in the tables.
2291 if (Name.startswith("scas") && Operands.size() == 1 &&
2292 (Name == "scas" || Name == "scasb" || Name == "scasw" ||
2293 Name == "scasl" || Name == "scasd" || Name == "scasq"))
2294 Operands.push_back(DefaultMemDIOperand(NameLoc));
2295
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002296 // Add default SI and DI operands to "cmps[bwlq]".
2297 if (Name.startswith("cmps") &&
2298 (Name == "cmps" || Name == "cmpsb" || Name == "cmpsw" ||
2299 Name == "cmpsl" || Name == "cmpsd" || Name == "cmpsq")) {
2300 if (Operands.size() == 1) {
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002301 AddDefaultSrcDestOperands(Operands,
2302 DefaultMemDIOperand(NameLoc),
2303 DefaultMemSIOperand(NameLoc));
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002304 } else if (Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002305 X86Operand &Op = (X86Operand &)*Operands[1];
2306 X86Operand &Op2 = (X86Operand &)*Operands[2];
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002307 if (!doSrcDstMatch(Op, Op2))
2308 return Error(Op.getStartLoc(),
2309 "mismatching source and destination index registers");
2310 }
2311 }
2312
David Woodhouse6f417de2014-01-22 15:08:42 +00002313 // Add default SI and DI operands to "movs[bwlq]".
2314 if ((Name.startswith("movs") &&
2315 (Name == "movs" || Name == "movsb" || Name == "movsw" ||
2316 Name == "movsl" || Name == "movsd" || Name == "movsq")) ||
2317 (Name.startswith("smov") &&
2318 (Name == "smov" || Name == "smovb" || Name == "smovw" ||
2319 Name == "smovl" || Name == "smovd" || Name == "smovq"))) {
2320 if (Operands.size() == 1) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002321 if (Name == "movsd")
David Woodhouse6f417de2014-01-22 15:08:42 +00002322 Operands.back() = X86Operand::CreateToken("movsl", NameLoc);
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002323 AddDefaultSrcDestOperands(Operands,
2324 DefaultMemSIOperand(NameLoc),
2325 DefaultMemDIOperand(NameLoc));
David Woodhouse6f417de2014-01-22 15:08:42 +00002326 } else if (Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002327 X86Operand &Op = (X86Operand &)*Operands[1];
2328 X86Operand &Op2 = (X86Operand &)*Operands[2];
David Woodhouse6f417de2014-01-22 15:08:42 +00002329 if (!doSrcDstMatch(Op, Op2))
2330 return Error(Op.getStartLoc(),
2331 "mismatching source and destination index registers");
2332 }
2333 }
2334
Chris Lattner4bd21712010-09-15 04:33:27 +00002335 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattner30561ab2010-09-11 16:32:12 +00002336 // "shift <op>".
Daniel Dunbar18fc3442010-03-13 00:47:29 +00002337 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner64f91b92010-11-06 21:23:40 +00002338 Name.startswith("shl") || Name.startswith("sal") ||
2339 Name.startswith("rcl") || Name.startswith("rcr") ||
2340 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002341 Operands.size() == 3) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002342 if (isParsingIntelSyntax()) {
Devang Patela410ed32012-01-24 21:43:36 +00002343 // Intel syntax
David Blaikie960ea3f2014-06-08 16:18:35 +00002344 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[2]);
2345 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2346 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002347 Operands.pop_back();
Devang Patela410ed32012-01-24 21:43:36 +00002348 } else {
David Blaikie960ea3f2014-06-08 16:18:35 +00002349 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
2350 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2351 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002352 Operands.erase(Operands.begin() + 1);
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002353 }
Daniel Dunbarfbd12cc2010-03-20 22:36:38 +00002354 }
Chad Rosier51afe632012-06-27 22:34:28 +00002355
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002356 // Transforms "int $3" into "int3" as a size optimization. We can't write an
2357 // instalias with an immediate operand yet.
2358 if (Name == "int" && Operands.size() == 2) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002359 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
Duncan P. N. Exon Smithd5313222015-07-23 19:27:07 +00002360 if (Op1.isImm())
2361 if (auto *CE = dyn_cast<MCConstantExpr>(Op1.getImm()))
2362 if (CE->getValue() == 3) {
2363 Operands.erase(Operands.begin() + 1);
2364 static_cast<X86Operand &>(*Operands[0]).setTokenValue("int3");
2365 }
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002366 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002367
Chris Lattnerf29c0b62010-01-14 22:21:20 +00002368 return false;
Daniel Dunbar3c2a8932009-07-20 18:55:04 +00002369}
2370
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002371static bool convertToSExti8(MCInst &Inst, unsigned Opcode, unsigned Reg,
2372 bool isCmp) {
2373 MCInst TmpInst;
2374 TmpInst.setOpcode(Opcode);
2375 if (!isCmp)
Jim Grosbache9119e42015-05-13 18:37:00 +00002376 TmpInst.addOperand(MCOperand::createReg(Reg));
2377 TmpInst.addOperand(MCOperand::createReg(Reg));
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002378 TmpInst.addOperand(Inst.getOperand(0));
2379 Inst = TmpInst;
2380 return true;
2381}
2382
2383static bool convert16i16to16ri8(MCInst &Inst, unsigned Opcode,
2384 bool isCmp = false) {
2385 if (!Inst.getOperand(0).isImm() ||
2386 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
2387 return false;
2388
2389 return convertToSExti8(Inst, Opcode, X86::AX, isCmp);
2390}
2391
2392static bool convert32i32to32ri8(MCInst &Inst, unsigned Opcode,
2393 bool isCmp = false) {
2394 if (!Inst.getOperand(0).isImm() ||
2395 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
2396 return false;
2397
2398 return convertToSExti8(Inst, Opcode, X86::EAX, isCmp);
2399}
2400
2401static bool convert64i32to64ri8(MCInst &Inst, unsigned Opcode,
2402 bool isCmp = false) {
2403 if (!Inst.getOperand(0).isImm() ||
2404 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
2405 return false;
2406
2407 return convertToSExti8(Inst, Opcode, X86::RAX, isCmp);
2408}
2409
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002410bool X86AsmParser::validateInstruction(MCInst &Inst, const OperandVector &Ops) {
2411 switch (Inst.getOpcode()) {
2412 default: return true;
2413 case X86::INT:
David Majnemer7efc6132015-01-14 06:14:36 +00002414 X86Operand &Op = static_cast<X86Operand &>(*Ops[1]);
2415 assert(Op.isImm() && "expected immediate");
2416 int64_t Res;
Jim Grosbach13760bd2015-05-30 01:25:56 +00002417 if (!Op.getImm()->evaluateAsAbsolute(Res) || Res > 255) {
David Majnemer7efc6132015-01-14 06:14:36 +00002418 Error(Op.getStartLoc(), "interrupt vector must be in range [0-255]");
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002419 return false;
2420 }
2421 return true;
2422 }
2423 llvm_unreachable("handle the instruction appropriately");
2424}
2425
David Blaikie960ea3f2014-06-08 16:18:35 +00002426bool X86AsmParser::processInstruction(MCInst &Inst, const OperandVector &Ops) {
Devang Patelde47cce2012-01-18 22:42:29 +00002427 switch (Inst.getOpcode()) {
2428 default: return false;
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002429 case X86::AND16i16: return convert16i16to16ri8(Inst, X86::AND16ri8);
2430 case X86::AND32i32: return convert32i32to32ri8(Inst, X86::AND32ri8);
2431 case X86::AND64i32: return convert64i32to64ri8(Inst, X86::AND64ri8);
2432 case X86::XOR16i16: return convert16i16to16ri8(Inst, X86::XOR16ri8);
2433 case X86::XOR32i32: return convert32i32to32ri8(Inst, X86::XOR32ri8);
2434 case X86::XOR64i32: return convert64i32to64ri8(Inst, X86::XOR64ri8);
2435 case X86::OR16i16: return convert16i16to16ri8(Inst, X86::OR16ri8);
2436 case X86::OR32i32: return convert32i32to32ri8(Inst, X86::OR32ri8);
2437 case X86::OR64i32: return convert64i32to64ri8(Inst, X86::OR64ri8);
2438 case X86::CMP16i16: return convert16i16to16ri8(Inst, X86::CMP16ri8, true);
2439 case X86::CMP32i32: return convert32i32to32ri8(Inst, X86::CMP32ri8, true);
2440 case X86::CMP64i32: return convert64i32to64ri8(Inst, X86::CMP64ri8, true);
2441 case X86::ADD16i16: return convert16i16to16ri8(Inst, X86::ADD16ri8);
2442 case X86::ADD32i32: return convert32i32to32ri8(Inst, X86::ADD32ri8);
2443 case X86::ADD64i32: return convert64i32to64ri8(Inst, X86::ADD64ri8);
2444 case X86::SUB16i16: return convert16i16to16ri8(Inst, X86::SUB16ri8);
2445 case X86::SUB32i32: return convert32i32to32ri8(Inst, X86::SUB32ri8);
2446 case X86::SUB64i32: return convert64i32to64ri8(Inst, X86::SUB64ri8);
Craig Topper0498b882013-03-18 03:34:55 +00002447 case X86::ADC16i16: return convert16i16to16ri8(Inst, X86::ADC16ri8);
2448 case X86::ADC32i32: return convert32i32to32ri8(Inst, X86::ADC32ri8);
2449 case X86::ADC64i32: return convert64i32to64ri8(Inst, X86::ADC64ri8);
2450 case X86::SBB16i16: return convert16i16to16ri8(Inst, X86::SBB16ri8);
2451 case X86::SBB32i32: return convert32i32to32ri8(Inst, X86::SBB32ri8);
2452 case X86::SBB64i32: return convert64i32to64ri8(Inst, X86::SBB64ri8);
Craig Toppera0e07352013-10-07 05:42:48 +00002453 case X86::VMOVAPDrr:
2454 case X86::VMOVAPDYrr:
2455 case X86::VMOVAPSrr:
2456 case X86::VMOVAPSYrr:
2457 case X86::VMOVDQArr:
2458 case X86::VMOVDQAYrr:
2459 case X86::VMOVDQUrr:
2460 case X86::VMOVDQUYrr:
2461 case X86::VMOVUPDrr:
2462 case X86::VMOVUPDYrr:
2463 case X86::VMOVUPSrr:
2464 case X86::VMOVUPSYrr: {
2465 if (X86II::isX86_64ExtendedReg(Inst.getOperand(0).getReg()) ||
2466 !X86II::isX86_64ExtendedReg(Inst.getOperand(1).getReg()))
2467 return false;
2468
2469 unsigned NewOpc;
2470 switch (Inst.getOpcode()) {
2471 default: llvm_unreachable("Invalid opcode");
2472 case X86::VMOVAPDrr: NewOpc = X86::VMOVAPDrr_REV; break;
2473 case X86::VMOVAPDYrr: NewOpc = X86::VMOVAPDYrr_REV; break;
2474 case X86::VMOVAPSrr: NewOpc = X86::VMOVAPSrr_REV; break;
2475 case X86::VMOVAPSYrr: NewOpc = X86::VMOVAPSYrr_REV; break;
2476 case X86::VMOVDQArr: NewOpc = X86::VMOVDQArr_REV; break;
2477 case X86::VMOVDQAYrr: NewOpc = X86::VMOVDQAYrr_REV; break;
2478 case X86::VMOVDQUrr: NewOpc = X86::VMOVDQUrr_REV; break;
2479 case X86::VMOVDQUYrr: NewOpc = X86::VMOVDQUYrr_REV; break;
2480 case X86::VMOVUPDrr: NewOpc = X86::VMOVUPDrr_REV; break;
2481 case X86::VMOVUPDYrr: NewOpc = X86::VMOVUPDYrr_REV; break;
2482 case X86::VMOVUPSrr: NewOpc = X86::VMOVUPSrr_REV; break;
2483 case X86::VMOVUPSYrr: NewOpc = X86::VMOVUPSYrr_REV; break;
2484 }
2485 Inst.setOpcode(NewOpc);
2486 return true;
2487 }
2488 case X86::VMOVSDrr:
2489 case X86::VMOVSSrr: {
2490 if (X86II::isX86_64ExtendedReg(Inst.getOperand(0).getReg()) ||
2491 !X86II::isX86_64ExtendedReg(Inst.getOperand(2).getReg()))
2492 return false;
2493 unsigned NewOpc;
2494 switch (Inst.getOpcode()) {
2495 default: llvm_unreachable("Invalid opcode");
2496 case X86::VMOVSDrr: NewOpc = X86::VMOVSDrr_REV; break;
2497 case X86::VMOVSSrr: NewOpc = X86::VMOVSSrr_REV; break;
2498 }
2499 Inst.setOpcode(NewOpc);
2500 return true;
2501 }
Devang Patelde47cce2012-01-18 22:42:29 +00002502 }
Devang Patelde47cce2012-01-18 22:42:29 +00002503}
2504
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002505static const char *getSubtargetFeatureName(uint64_t Val);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002506
David Blaikie960ea3f2014-06-08 16:18:35 +00002507void X86AsmParser::EmitInstruction(MCInst &Inst, OperandVector &Operands,
2508 MCStreamer &Out) {
Evgeniy Stepanov77ad8662014-07-31 09:11:04 +00002509 Instrumentation->InstrumentAndEmitInstruction(Inst, Operands, getContext(),
2510 MII, Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002511}
2512
David Blaikie960ea3f2014-06-08 16:18:35 +00002513bool X86AsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
2514 OperandVector &Operands,
Tim Northover26bb14e2014-08-18 11:49:42 +00002515 MCStreamer &Out, uint64_t &ErrorInfo,
David Blaikie960ea3f2014-06-08 16:18:35 +00002516 bool MatchingInlineAsm) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002517 if (isParsingIntelSyntax())
2518 return MatchAndEmitIntelInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002519 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002520 return MatchAndEmitATTInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002521 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002522}
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002523
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002524void X86AsmParser::MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op,
2525 OperandVector &Operands, MCStreamer &Out,
2526 bool MatchingInlineAsm) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002527 // FIXME: This should be replaced with a real .td file alias mechanism.
Chad Rosier3b1336c2012-08-28 23:57:47 +00002528 // Also, MatchInstructionImpl should actually *do* the EmitInstruction
Chris Lattner4869d342010-11-06 19:57:21 +00002529 // call.
Reid Klecknerb1f2d2f2014-07-31 00:07:33 +00002530 const char *Repl = StringSwitch<const char *>(Op.getToken())
2531 .Case("finit", "fninit")
2532 .Case("fsave", "fnsave")
2533 .Case("fstcw", "fnstcw")
2534 .Case("fstcww", "fnstcw")
2535 .Case("fstenv", "fnstenv")
2536 .Case("fstsw", "fnstsw")
2537 .Case("fstsww", "fnstsw")
2538 .Case("fclex", "fnclex")
2539 .Default(nullptr);
2540 if (Repl) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002541 MCInst Inst;
2542 Inst.setOpcode(X86::WAIT);
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002543 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002544 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002545 EmitInstruction(Inst, Operands, Out);
Chris Lattneradc0dbe2010-09-30 16:39:29 +00002546 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattnera63292a2010-09-29 01:50:45 +00002547 }
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002548}
2549
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002550bool X86AsmParser::ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002551 bool MatchingInlineAsm) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002552 assert(ErrorInfo && "Unknown missing feature!");
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002553 ArrayRef<SMRange> EmptyRanges = None;
2554 SmallString<126> Msg;
2555 raw_svector_ostream OS(Msg);
2556 OS << "instruction requires:";
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002557 uint64_t Mask = 1;
2558 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
2559 if (ErrorInfo & Mask)
2560 OS << ' ' << getSubtargetFeatureName(ErrorInfo & Mask);
2561 Mask <<= 1;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002562 }
2563 return Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
2564}
2565
2566bool X86AsmParser::MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
2567 OperandVector &Operands,
2568 MCStreamer &Out,
2569 uint64_t &ErrorInfo,
2570 bool MatchingInlineAsm) {
2571 assert(!Operands.empty() && "Unexpect empty operand list!");
2572 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2573 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
2574 ArrayRef<SMRange> EmptyRanges = None;
2575
2576 // First, handle aliases that expand to multiple instructions.
2577 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002578
Chris Lattner628fbec2010-09-06 21:54:15 +00002579 bool WasOriginallyInvalidOperand = false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002580 MCInst Inst;
Michael J. Spencer530ce852010-10-09 11:00:50 +00002581
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002582 // First, try a direct match.
Chad Rosier2f480a82012-10-12 22:53:36 +00002583 switch (MatchInstructionImpl(Operands, Inst,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002584 ErrorInfo, MatchingInlineAsm,
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002585 isParsingIntelSyntax())) {
Craig Topper589ceee2015-01-03 08:16:34 +00002586 default: llvm_unreachable("Unexpected match result!");
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002587 case Match_Success:
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002588 if (!validateInstruction(Inst, Operands))
2589 return true;
2590
Devang Patelde47cce2012-01-18 22:42:29 +00002591 // Some instructions need post-processing to, for example, tweak which
2592 // encoding is selected. Loop on it while changes happen so the
Chad Rosier51afe632012-06-27 22:34:28 +00002593 // individual transformations can chain off each other.
Chad Rosier4453e842012-10-12 23:09:25 +00002594 if (!MatchingInlineAsm)
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002595 while (processInstruction(Inst, Operands))
2596 ;
Devang Patelde47cce2012-01-18 22:42:29 +00002597
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002598 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002599 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002600 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002601 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002602 return false;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002603 case Match_MissingFeature:
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002604 return ErrorMissingFeature(IDLoc, ErrorInfo, MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002605 case Match_InvalidOperand:
2606 WasOriginallyInvalidOperand = true;
2607 break;
2608 case Match_MnemonicFail:
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002609 break;
2610 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002611
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002612 // FIXME: Ideally, we would only attempt suffix matches for things which are
2613 // valid prefixes, and we could just infer the right unambiguous
2614 // type. However, that requires substantially more matcher support than the
2615 // following hack.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002616
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002617 // Change the operand to point to a temporary token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002618 StringRef Base = Op.getToken();
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002619 SmallString<16> Tmp;
2620 Tmp += Base;
2621 Tmp += ' ';
Yaron Keren075759a2015-03-30 15:42:36 +00002622 Op.setTokenValue(Tmp);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002623
Chris Lattnerfab94132010-11-06 18:28:02 +00002624 // If this instruction starts with an 'f', then it is a floating point stack
2625 // instruction. These come in up to three forms for 32-bit, 64-bit, and
2626 // 80-bit floating point, which use the suffixes s,l,t respectively.
2627 //
2628 // Otherwise, we assume that this may be an integer instruction, which comes
2629 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
2630 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
Chad Rosier51afe632012-06-27 22:34:28 +00002631
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002632 // Check for the various suffix matches.
Tim Northover26bb14e2014-08-18 11:49:42 +00002633 uint64_t ErrorInfoIgnore;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002634 uint64_t ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002635 unsigned Match[4];
Chad Rosier51afe632012-06-27 22:34:28 +00002636
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002637 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I) {
2638 Tmp.back() = Suffixes[I];
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002639 Match[I] = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2640 MatchingInlineAsm, isParsingIntelSyntax());
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002641 // If this returned as a missing feature failure, remember that.
2642 if (Match[I] == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002643 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002644 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002645
2646 // Restore the old token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002647 Op.setTokenValue(Base);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002648
2649 // If exactly one matched, then we treat that as a successful match (and the
2650 // instruction will already have been filled in correctly, since the failing
2651 // matches won't have modified it).
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002652 unsigned NumSuccessfulMatches =
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002653 std::count(std::begin(Match), std::end(Match), Match_Success);
Chris Lattnerb44fd242010-09-29 01:42:58 +00002654 if (NumSuccessfulMatches == 1) {
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002655 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002656 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002657 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002658 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002659 return false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002660 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002661
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002662 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002663
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002664 // If we had multiple suffix matches, then identify this as an ambiguous
2665 // match.
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002666 if (NumSuccessfulMatches > 1) {
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002667 char MatchChars[4];
2668 unsigned NumMatches = 0;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002669 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I)
2670 if (Match[I] == Match_Success)
2671 MatchChars[NumMatches++] = Suffixes[I];
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002672
Alp Tokere69170a2014-06-26 22:52:05 +00002673 SmallString<126> Msg;
2674 raw_svector_ostream OS(Msg);
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002675 OS << "ambiguous instructions require an explicit suffix (could be ";
2676 for (unsigned i = 0; i != NumMatches; ++i) {
2677 if (i != 0)
2678 OS << ", ";
2679 if (i + 1 == NumMatches)
2680 OS << "or ";
2681 OS << "'" << Base << MatchChars[i] << "'";
2682 }
2683 OS << ")";
Chad Rosier4453e842012-10-12 23:09:25 +00002684 Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002685 return true;
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002686 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002687
Chris Lattner628fbec2010-09-06 21:54:15 +00002688 // Okay, we know that none of the variants matched successfully.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002689
Chris Lattner628fbec2010-09-06 21:54:15 +00002690 // If all of the instructions reported an invalid mnemonic, then the original
2691 // mnemonic was invalid.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002692 if (std::count(std::begin(Match), std::end(Match), Match_MnemonicFail) == 4) {
Chris Lattner339cc7b2010-09-06 22:11:18 +00002693 if (!WasOriginallyInvalidOperand) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002694 ArrayRef<SMRange> Ranges =
2695 MatchingInlineAsm ? EmptyRanges : Op.getLocRange();
Benjamin Kramerd416bae2011-10-16 11:28:29 +00002696 return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
Chad Rosier4453e842012-10-12 23:09:25 +00002697 Ranges, MatchingInlineAsm);
Chris Lattner339cc7b2010-09-06 22:11:18 +00002698 }
2699
2700 // Recover location info for the operand if we know which was the problem.
Tim Northover26bb14e2014-08-18 11:49:42 +00002701 if (ErrorInfo != ~0ULL) {
Chad Rosier49963552012-10-13 00:26:04 +00002702 if (ErrorInfo >= Operands.size())
Chad Rosier3d4bc622012-08-21 19:36:59 +00002703 return Error(IDLoc, "too few operands for instruction",
Chad Rosier4453e842012-10-12 23:09:25 +00002704 EmptyRanges, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002705
David Blaikie960ea3f2014-06-08 16:18:35 +00002706 X86Operand &Operand = (X86Operand &)*Operands[ErrorInfo];
2707 if (Operand.getStartLoc().isValid()) {
2708 SMRange OperandRange = Operand.getLocRange();
2709 return Error(Operand.getStartLoc(), "invalid operand for instruction",
Chad Rosier4453e842012-10-12 23:09:25 +00002710 OperandRange, MatchingInlineAsm);
Chris Lattnera3a06812011-10-16 04:47:35 +00002711 }
Chris Lattner339cc7b2010-09-06 22:11:18 +00002712 }
2713
Chad Rosier3d4bc622012-08-21 19:36:59 +00002714 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
Chad Rosier4453e842012-10-12 23:09:25 +00002715 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002716 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002717
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002718 // If one instruction matched with a missing feature, report this as a
2719 // missing feature.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002720 if (std::count(std::begin(Match), std::end(Match),
2721 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002722 ErrorInfo = ErrorInfoMissingFeature;
2723 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002724 MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002725 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002726
Chris Lattner628fbec2010-09-06 21:54:15 +00002727 // If one instruction matched with an invalid operand, report this as an
2728 // operand failure.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002729 if (std::count(std::begin(Match), std::end(Match),
2730 Match_InvalidOperand) == 1) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002731 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
2732 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002733 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002734
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002735 // If all of these were an outright failure, report it in a useless way.
Chad Rosier3d4bc622012-08-21 19:36:59 +00002736 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
Chad Rosier4453e842012-10-12 23:09:25 +00002737 EmptyRanges, MatchingInlineAsm);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002738 return true;
2739}
2740
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002741bool X86AsmParser::MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
2742 OperandVector &Operands,
2743 MCStreamer &Out,
2744 uint64_t &ErrorInfo,
2745 bool MatchingInlineAsm) {
2746 assert(!Operands.empty() && "Unexpect empty operand list!");
2747 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2748 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
2749 StringRef Mnemonic = Op.getToken();
2750 ArrayRef<SMRange> EmptyRanges = None;
2751
2752 // First, handle aliases that expand to multiple instructions.
2753 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
2754
2755 MCInst Inst;
2756
2757 // Find one unsized memory operand, if present.
2758 X86Operand *UnsizedMemOp = nullptr;
2759 for (const auto &Op : Operands) {
2760 X86Operand *X86Op = static_cast<X86Operand *>(Op.get());
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002761 if (X86Op->isMemUnsized())
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002762 UnsizedMemOp = X86Op;
2763 }
2764
2765 // Allow some instructions to have implicitly pointer-sized operands. This is
2766 // compatible with gas.
2767 if (UnsizedMemOp) {
2768 static const char *const PtrSizedInstrs[] = {"call", "jmp", "push"};
2769 for (const char *Instr : PtrSizedInstrs) {
2770 if (Mnemonic == Instr) {
Craig Topper055845f2015-01-02 07:02:25 +00002771 UnsizedMemOp->Mem.Size = getPointerWidth();
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002772 break;
2773 }
2774 }
2775 }
2776
2777 // If an unsized memory operand is present, try to match with each memory
2778 // operand size. In Intel assembly, the size is not part of the instruction
2779 // mnemonic.
2780 SmallVector<unsigned, 8> Match;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002781 uint64_t ErrorInfoMissingFeature = 0;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002782 if (UnsizedMemOp && UnsizedMemOp->isMemUnsized()) {
Ahmed Bougachad65f7872014-12-03 02:03:26 +00002783 static const unsigned MopSizes[] = {8, 16, 32, 64, 80, 128, 256, 512};
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002784 for (unsigned Size : MopSizes) {
2785 UnsizedMemOp->Mem.Size = Size;
2786 uint64_t ErrorInfoIgnore;
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002787 unsigned LastOpcode = Inst.getOpcode();
2788 unsigned M =
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002789 MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002790 MatchingInlineAsm, isParsingIntelSyntax());
2791 if (Match.empty() || LastOpcode != Inst.getOpcode())
2792 Match.push_back(M);
2793
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002794 // If this returned as a missing feature failure, remember that.
2795 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002796 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002797 }
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002798
2799 // Restore the size of the unsized memory operand if we modified it.
2800 if (UnsizedMemOp)
2801 UnsizedMemOp->Mem.Size = 0;
2802 }
2803
2804 // If we haven't matched anything yet, this is not a basic integer or FPU
Saleem Abdulrasoolc3f8ad32015-01-16 20:16:06 +00002805 // operation. There shouldn't be any ambiguity in our mnemonic table, so try
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002806 // matching with the unsized operand.
2807 if (Match.empty()) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002808 Match.push_back(MatchInstructionImpl(Operands, Inst, ErrorInfo,
2809 MatchingInlineAsm,
2810 isParsingIntelSyntax()));
2811 // If this returned as a missing feature failure, remember that.
2812 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002813 ErrorInfoMissingFeature = ErrorInfo;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002814 }
2815
2816 // Restore the size of the unsized memory operand if we modified it.
2817 if (UnsizedMemOp)
2818 UnsizedMemOp->Mem.Size = 0;
2819
2820 // If it's a bad mnemonic, all results will be the same.
2821 if (Match.back() == Match_MnemonicFail) {
2822 ArrayRef<SMRange> Ranges =
2823 MatchingInlineAsm ? EmptyRanges : Op.getLocRange();
2824 return Error(IDLoc, "invalid instruction mnemonic '" + Mnemonic + "'",
2825 Ranges, MatchingInlineAsm);
2826 }
2827
2828 // If exactly one matched, then we treat that as a successful match (and the
2829 // instruction will already have been filled in correctly, since the failing
2830 // matches won't have modified it).
2831 unsigned NumSuccessfulMatches =
2832 std::count(std::begin(Match), std::end(Match), Match_Success);
2833 if (NumSuccessfulMatches == 1) {
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002834 if (!validateInstruction(Inst, Operands))
2835 return true;
2836
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002837 // Some instructions need post-processing to, for example, tweak which
2838 // encoding is selected. Loop on it while changes happen so the individual
2839 // transformations can chain off each other.
2840 if (!MatchingInlineAsm)
2841 while (processInstruction(Inst, Operands))
2842 ;
2843 Inst.setLoc(IDLoc);
2844 if (!MatchingInlineAsm)
2845 EmitInstruction(Inst, Operands, Out);
2846 Opcode = Inst.getOpcode();
2847 return false;
2848 } else if (NumSuccessfulMatches > 1) {
2849 assert(UnsizedMemOp &&
2850 "multiple matches only possible with unsized memory operands");
2851 ArrayRef<SMRange> Ranges =
2852 MatchingInlineAsm ? EmptyRanges : UnsizedMemOp->getLocRange();
2853 return Error(UnsizedMemOp->getStartLoc(),
2854 "ambiguous operand size for instruction '" + Mnemonic + "\'",
2855 Ranges, MatchingInlineAsm);
2856 }
2857
2858 // If one instruction matched with a missing feature, report this as a
2859 // missing feature.
2860 if (std::count(std::begin(Match), std::end(Match),
2861 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002862 ErrorInfo = ErrorInfoMissingFeature;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002863 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
2864 MatchingInlineAsm);
2865 }
2866
2867 // If one instruction matched with an invalid operand, report this as an
2868 // operand failure.
2869 if (std::count(std::begin(Match), std::end(Match),
2870 Match_InvalidOperand) == 1) {
2871 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
2872 MatchingInlineAsm);
2873 }
2874
2875 // If all of these were an outright failure, report it in a useless way.
2876 return Error(IDLoc, "unknown instruction mnemonic", EmptyRanges,
2877 MatchingInlineAsm);
2878}
2879
Nico Weber42f79db2014-07-17 20:24:55 +00002880bool X86AsmParser::OmitRegisterFromClobberLists(unsigned RegNo) {
2881 return X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo);
2882}
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002883
Devang Patel4a6e7782012-01-12 18:03:40 +00002884bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002885 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00002886 StringRef IDVal = DirectiveID.getIdentifier();
2887 if (IDVal == ".word")
2888 return ParseDirectiveWord(2, DirectiveID.getLoc());
Evan Cheng481ebb02011-07-27 00:38:12 +00002889 else if (IDVal.startswith(".code"))
2890 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
Chad Rosier6f8d8b22012-09-10 20:54:39 +00002891 else if (IDVal.startswith(".att_syntax")) {
Reid Klecknerce63b792014-08-06 23:21:13 +00002892 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2893 if (Parser.getTok().getString() == "prefix")
2894 Parser.Lex();
2895 else if (Parser.getTok().getString() == "noprefix")
2896 return Error(DirectiveID.getLoc(), "'.att_syntax noprefix' is not "
2897 "supported: registers must have a "
2898 "'%' prefix in .att_syntax");
2899 }
Chad Rosier6f8d8b22012-09-10 20:54:39 +00002900 getParser().setAssemblerDialect(0);
2901 return false;
2902 } else if (IDVal.startswith(".intel_syntax")) {
Devang Patela173ee52012-01-31 18:14:05 +00002903 getParser().setAssemblerDialect(1);
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002904 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002905 if (Parser.getTok().getString() == "noprefix")
Craig Topper6bf3ed42012-07-18 04:59:16 +00002906 Parser.Lex();
Reid Klecknerce63b792014-08-06 23:21:13 +00002907 else if (Parser.getTok().getString() == "prefix")
2908 return Error(DirectiveID.getLoc(), "'.intel_syntax prefix' is not "
2909 "supported: registers must not have "
2910 "a '%' prefix in .intel_syntax");
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002911 }
2912 return false;
2913 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002914 return true;
2915}
2916
2917/// ParseDirectiveWord
2918/// ::= .word [ expression (, expression)* ]
Devang Patel4a6e7782012-01-12 18:03:40 +00002919bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002920 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00002921 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2922 for (;;) {
2923 const MCExpr *Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002924 if (getParser().parseExpression(Value))
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002925 return false;
Chad Rosier51afe632012-06-27 22:34:28 +00002926
Eric Christopherbf7bc492013-01-09 03:52:05 +00002927 getParser().getStreamer().EmitValue(Value, Size);
Chad Rosier51afe632012-06-27 22:34:28 +00002928
Chris Lattner72c0b592010-10-30 17:38:55 +00002929 if (getLexer().is(AsmToken::EndOfStatement))
2930 break;
Chad Rosier51afe632012-06-27 22:34:28 +00002931
Chris Lattner72c0b592010-10-30 17:38:55 +00002932 // FIXME: Improve diagnostic.
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002933 if (getLexer().isNot(AsmToken::Comma)) {
2934 Error(L, "unexpected token in directive");
2935 return false;
2936 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002937 Parser.Lex();
2938 }
2939 }
Chad Rosier51afe632012-06-27 22:34:28 +00002940
Chris Lattner72c0b592010-10-30 17:38:55 +00002941 Parser.Lex();
2942 return false;
2943}
2944
Evan Cheng481ebb02011-07-27 00:38:12 +00002945/// ParseDirectiveCode
Craig Topper3c80d622014-01-06 04:55:54 +00002946/// ::= .code16 | .code32 | .code64
Devang Patel4a6e7782012-01-12 18:03:40 +00002947bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002948 MCAsmParser &Parser = getParser();
Craig Topper3c80d622014-01-06 04:55:54 +00002949 if (IDVal == ".code16") {
Evan Cheng481ebb02011-07-27 00:38:12 +00002950 Parser.Lex();
Craig Topper3c80d622014-01-06 04:55:54 +00002951 if (!is16BitMode()) {
2952 SwitchMode(X86::Mode16Bit);
2953 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
2954 }
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002955 } else if (IDVal == ".code32") {
Craig Topper3c80d622014-01-06 04:55:54 +00002956 Parser.Lex();
2957 if (!is32BitMode()) {
2958 SwitchMode(X86::Mode32Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00002959 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
2960 }
2961 } else if (IDVal == ".code64") {
2962 Parser.Lex();
2963 if (!is64BitMode()) {
Craig Topper3c80d622014-01-06 04:55:54 +00002964 SwitchMode(X86::Mode64Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00002965 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
2966 }
2967 } else {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002968 Error(L, "unknown directive " + IDVal);
2969 return false;
Evan Cheng481ebb02011-07-27 00:38:12 +00002970 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002971
Evan Cheng481ebb02011-07-27 00:38:12 +00002972 return false;
2973}
Chris Lattner72c0b592010-10-30 17:38:55 +00002974
Daniel Dunbar71475772009-07-17 20:42:00 +00002975// Force static initialization.
2976extern "C" void LLVMInitializeX86AsmParser() {
Devang Patel4a6e7782012-01-12 18:03:40 +00002977 RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
2978 RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
Daniel Dunbar71475772009-07-17 20:42:00 +00002979}
Daniel Dunbar00331992009-07-29 00:02:19 +00002980
Chris Lattner3e4582a2010-09-06 19:11:01 +00002981#define GET_REGISTER_MATCHER
2982#define GET_MATCHER_IMPLEMENTATION
Jim Grosbach6f1f41b2012-11-14 18:04:47 +00002983#define GET_SUBTARGET_FEATURE_NAME
Daniel Dunbar00331992009-07-29 00:02:19 +00002984#include "X86GenAsmMatcher.inc"