blob: 2735e4290bb2d04b9d0044ab750d454efa6b097e [file] [log] [blame]
Daniel Dunbar71475772009-07-17 20:42:00 +00001//===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Evan Cheng11424442011-07-26 00:24:13 +000010#include "MCTargetDesc/X86BaseInfo.h"
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000011#include "X86AsmInstrumentation.h"
Evgeniy Stepanove3804d42014-02-28 12:28:07 +000012#include "X86AsmParserCommon.h"
13#include "X86Operand.h"
Elena Demikhovsky18fd4962015-03-02 15:00:34 +000014#include "X86ISelLowering.h"
Chad Rosier6844ea02012-10-24 22:13:37 +000015#include "llvm/ADT/APFloat.h"
Craig Topper690d8ea2013-07-24 07:33:14 +000016#include "llvm/ADT/STLExtras.h"
Chris Lattner1261b812010-09-22 04:11:10 +000017#include "llvm/ADT/SmallString.h"
18#include "llvm/ADT/SmallVector.h"
Chris Lattner1261b812010-09-22 04:11:10 +000019#include "llvm/ADT/StringSwitch.h"
20#include "llvm/ADT/Twine.h"
Chad Rosier8a244662013-04-02 20:02:33 +000021#include "llvm/MC/MCContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCInst.h"
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000024#include "llvm/MC/MCInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/MC/MCParser/MCAsmLexer.h"
26#include "llvm/MC/MCParser/MCAsmParser.h"
27#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
28#include "llvm/MC/MCRegisterInfo.h"
29#include "llvm/MC/MCStreamer.h"
30#include "llvm/MC/MCSubtargetInfo.h"
31#include "llvm/MC/MCSymbol.h"
32#include "llvm/MC/MCTargetAsmParser.h"
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000033#include "llvm/Support/SourceMgr.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000034#include "llvm/Support/TargetRegistry.h"
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +000035#include "llvm/Support/raw_ostream.h"
Reid Kleckner7b1e1a02014-07-30 22:23:11 +000036#include <algorithm>
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000037#include <memory>
Evan Cheng4d1ca962011-07-08 01:53:10 +000038
Daniel Dunbar71475772009-07-17 20:42:00 +000039using namespace llvm;
40
41namespace {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000042
Chad Rosier5362af92013-04-16 18:15:40 +000043static const char OpPrecedence[] = {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000044 0, // IC_OR
Michael Kupersteine3de07a2015-06-14 12:59:45 +000045 1, // IC_XOR
46 2, // IC_AND
47 3, // IC_LSHIFT
48 3, // IC_RSHIFT
49 4, // IC_PLUS
50 4, // IC_MINUS
51 5, // IC_MULTIPLY
52 5, // IC_DIVIDE
53 6, // IC_RPAREN
54 7, // IC_LPAREN
Chad Rosier5362af92013-04-16 18:15:40 +000055 0, // IC_IMM
56 0 // IC_REGISTER
57};
58
Devang Patel4a6e7782012-01-12 18:03:40 +000059class X86AsmParser : public MCTargetAsmParser {
Evan Cheng91111d22011-07-09 05:47:46 +000060 MCSubtargetInfo &STI;
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000061 const MCInstrInfo &MII;
Chad Rosierf0e87202012-10-25 20:41:34 +000062 ParseInstructionInfo *InstInfo;
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000063 std::unique_ptr<X86AsmInstrumentation> Instrumentation;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000064private:
Alp Tokera5b88a52013-12-02 16:06:06 +000065 SMLoc consumeToken() {
Rafael Espindola961d4692014-11-11 05:18:41 +000066 MCAsmParser &Parser = getParser();
Alp Tokera5b88a52013-12-02 16:06:06 +000067 SMLoc Result = Parser.getTok().getLoc();
68 Parser.Lex();
69 return Result;
70 }
71
Chad Rosier5362af92013-04-16 18:15:40 +000072 enum InfixCalculatorTok {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000073 IC_OR = 0,
Michael Kupersteine3de07a2015-06-14 12:59:45 +000074 IC_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000075 IC_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +000076 IC_LSHIFT,
77 IC_RSHIFT,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000078 IC_PLUS,
Chad Rosier5362af92013-04-16 18:15:40 +000079 IC_MINUS,
80 IC_MULTIPLY,
81 IC_DIVIDE,
82 IC_RPAREN,
83 IC_LPAREN,
84 IC_IMM,
85 IC_REGISTER
86 };
87
88 class InfixCalculator {
89 typedef std::pair< InfixCalculatorTok, int64_t > ICToken;
90 SmallVector<InfixCalculatorTok, 4> InfixOperatorStack;
91 SmallVector<ICToken, 4> PostfixStack;
Michael Liao5bf95782014-12-04 05:20:33 +000092
Chad Rosier5362af92013-04-16 18:15:40 +000093 public:
94 int64_t popOperand() {
95 assert (!PostfixStack.empty() && "Poped an empty stack!");
96 ICToken Op = PostfixStack.pop_back_val();
97 assert ((Op.first == IC_IMM || Op.first == IC_REGISTER)
98 && "Expected and immediate or register!");
99 return Op.second;
100 }
101 void pushOperand(InfixCalculatorTok Op, int64_t Val = 0) {
102 assert ((Op == IC_IMM || Op == IC_REGISTER) &&
103 "Unexpected operand!");
104 PostfixStack.push_back(std::make_pair(Op, Val));
105 }
Michael Liao5bf95782014-12-04 05:20:33 +0000106
Jakub Staszak9c349222013-08-08 15:48:46 +0000107 void popOperator() { InfixOperatorStack.pop_back(); }
Chad Rosier5362af92013-04-16 18:15:40 +0000108 void pushOperator(InfixCalculatorTok Op) {
109 // Push the new operator if the stack is empty.
110 if (InfixOperatorStack.empty()) {
111 InfixOperatorStack.push_back(Op);
112 return;
113 }
Michael Liao5bf95782014-12-04 05:20:33 +0000114
Chad Rosier5362af92013-04-16 18:15:40 +0000115 // Push the new operator if it has a higher precedence than the operator
116 // on the top of the stack or the operator on the top of the stack is a
117 // left parentheses.
118 unsigned Idx = InfixOperatorStack.size() - 1;
119 InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
120 if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
121 InfixOperatorStack.push_back(Op);
122 return;
123 }
Michael Liao5bf95782014-12-04 05:20:33 +0000124
Chad Rosier5362af92013-04-16 18:15:40 +0000125 // The operator on the top of the stack has higher precedence than the
126 // new operator.
127 unsigned ParenCount = 0;
128 while (1) {
129 // Nothing to process.
130 if (InfixOperatorStack.empty())
131 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000132
Chad Rosier5362af92013-04-16 18:15:40 +0000133 Idx = InfixOperatorStack.size() - 1;
134 StackOp = InfixOperatorStack[Idx];
135 if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
136 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000137
Chad Rosier5362af92013-04-16 18:15:40 +0000138 // If we have an even parentheses count and we see a left parentheses,
139 // then stop processing.
140 if (!ParenCount && StackOp == IC_LPAREN)
141 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000142
Chad Rosier5362af92013-04-16 18:15:40 +0000143 if (StackOp == IC_RPAREN) {
144 ++ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000145 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000146 } else if (StackOp == IC_LPAREN) {
147 --ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000148 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000149 } else {
Jakub Staszak9c349222013-08-08 15:48:46 +0000150 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000151 PostfixStack.push_back(std::make_pair(StackOp, 0));
152 }
153 }
154 // Push the new operator.
155 InfixOperatorStack.push_back(Op);
156 }
Marina Yatsinaa0e02412015-08-10 11:33:10 +0000157
Chad Rosier5362af92013-04-16 18:15:40 +0000158 int64_t execute() {
159 // Push any remaining operators onto the postfix stack.
160 while (!InfixOperatorStack.empty()) {
161 InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val();
162 if (StackOp != IC_LPAREN && StackOp != IC_RPAREN)
163 PostfixStack.push_back(std::make_pair(StackOp, 0));
164 }
Michael Liao5bf95782014-12-04 05:20:33 +0000165
Chad Rosier5362af92013-04-16 18:15:40 +0000166 if (PostfixStack.empty())
167 return 0;
Michael Liao5bf95782014-12-04 05:20:33 +0000168
Chad Rosier5362af92013-04-16 18:15:40 +0000169 SmallVector<ICToken, 16> OperandStack;
170 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) {
171 ICToken Op = PostfixStack[i];
172 if (Op.first == IC_IMM || Op.first == IC_REGISTER) {
173 OperandStack.push_back(Op);
174 } else {
175 assert (OperandStack.size() > 1 && "Too few operands.");
176 int64_t Val;
177 ICToken Op2 = OperandStack.pop_back_val();
178 ICToken Op1 = OperandStack.pop_back_val();
179 switch (Op.first) {
180 default:
181 report_fatal_error("Unexpected operator!");
182 break;
183 case IC_PLUS:
184 Val = Op1.second + Op2.second;
185 OperandStack.push_back(std::make_pair(IC_IMM, Val));
186 break;
187 case IC_MINUS:
188 Val = Op1.second - Op2.second;
189 OperandStack.push_back(std::make_pair(IC_IMM, Val));
190 break;
191 case IC_MULTIPLY:
192 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
193 "Multiply operation with an immediate and a register!");
194 Val = Op1.second * Op2.second;
195 OperandStack.push_back(std::make_pair(IC_IMM, Val));
196 break;
197 case IC_DIVIDE:
198 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
199 "Divide operation with an immediate and a register!");
200 assert (Op2.second != 0 && "Division by zero!");
201 Val = Op1.second / Op2.second;
202 OperandStack.push_back(std::make_pair(IC_IMM, Val));
203 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000204 case IC_OR:
205 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
206 "Or operation with an immediate and a register!");
207 Val = Op1.second | Op2.second;
208 OperandStack.push_back(std::make_pair(IC_IMM, Val));
209 break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000210 case IC_XOR:
211 assert(Op1.first == IC_IMM && Op2.first == IC_IMM &&
212 "Xor operation with an immediate and a register!");
213 Val = Op1.second ^ Op2.second;
214 OperandStack.push_back(std::make_pair(IC_IMM, Val));
215 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000216 case IC_AND:
217 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
218 "And operation with an immediate and a register!");
219 Val = Op1.second & Op2.second;
220 OperandStack.push_back(std::make_pair(IC_IMM, Val));
221 break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000222 case IC_LSHIFT:
223 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
224 "Left shift operation with an immediate and a register!");
225 Val = Op1.second << Op2.second;
226 OperandStack.push_back(std::make_pair(IC_IMM, Val));
227 break;
228 case IC_RSHIFT:
229 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
230 "Right shift operation with an immediate and a register!");
231 Val = Op1.second >> Op2.second;
232 OperandStack.push_back(std::make_pair(IC_IMM, Val));
233 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000234 }
235 }
236 }
237 assert (OperandStack.size() == 1 && "Expected a single result.");
238 return OperandStack.pop_back_val().second;
239 }
240 };
241
242 enum IntelExprState {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000243 IES_OR,
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000244 IES_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000245 IES_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000246 IES_LSHIFT,
247 IES_RSHIFT,
Chad Rosier5362af92013-04-16 18:15:40 +0000248 IES_PLUS,
249 IES_MINUS,
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000250 IES_NOT,
Chad Rosier5362af92013-04-16 18:15:40 +0000251 IES_MULTIPLY,
252 IES_DIVIDE,
253 IES_LBRAC,
254 IES_RBRAC,
255 IES_LPAREN,
256 IES_RPAREN,
257 IES_REGISTER,
Chad Rosier5362af92013-04-16 18:15:40 +0000258 IES_INTEGER,
Chad Rosier5362af92013-04-16 18:15:40 +0000259 IES_IDENTIFIER,
260 IES_ERROR
261 };
262
263 class IntelExprStateMachine {
Chad Rosier31246272013-04-17 21:01:45 +0000264 IntelExprState State, PrevState;
Chad Rosier5362af92013-04-16 18:15:40 +0000265 unsigned BaseReg, IndexReg, TmpReg, Scale;
Chad Rosierbfb70992013-04-17 00:11:46 +0000266 int64_t Imm;
Chad Rosier5362af92013-04-16 18:15:40 +0000267 const MCExpr *Sym;
268 StringRef SymName;
Chad Rosierbfb70992013-04-17 00:11:46 +0000269 bool StopOnLBrac, AddImmPrefix;
Chad Rosier5362af92013-04-16 18:15:40 +0000270 InfixCalculator IC;
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000271 InlineAsmIdentifierInfo Info;
Chad Rosier5362af92013-04-16 18:15:40 +0000272 public:
Chad Rosierbfb70992013-04-17 00:11:46 +0000273 IntelExprStateMachine(int64_t imm, bool stoponlbrac, bool addimmprefix) :
Chad Rosier31246272013-04-17 21:01:45 +0000274 State(IES_PLUS), PrevState(IES_ERROR), BaseReg(0), IndexReg(0), TmpReg(0),
Craig Topper062a2ba2014-04-25 05:30:21 +0000275 Scale(1), Imm(imm), Sym(nullptr), StopOnLBrac(stoponlbrac),
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000276 AddImmPrefix(addimmprefix) { Info.clear(); }
Michael Liao5bf95782014-12-04 05:20:33 +0000277
Chad Rosier5362af92013-04-16 18:15:40 +0000278 unsigned getBaseReg() { return BaseReg; }
279 unsigned getIndexReg() { return IndexReg; }
280 unsigned getScale() { return Scale; }
281 const MCExpr *getSym() { return Sym; }
282 StringRef getSymName() { return SymName; }
Chad Rosierbfb70992013-04-17 00:11:46 +0000283 int64_t getImm() { return Imm + IC.execute(); }
Chad Rosieredb1dc82013-05-09 23:48:53 +0000284 bool isValidEndState() {
285 return State == IES_RBRAC || State == IES_INTEGER;
286 }
Chad Rosierbfb70992013-04-17 00:11:46 +0000287 bool getStopOnLBrac() { return StopOnLBrac; }
288 bool getAddImmPrefix() { return AddImmPrefix; }
Chad Rosier31246272013-04-17 21:01:45 +0000289 bool hadError() { return State == IES_ERROR; }
Chad Rosierbfb70992013-04-17 00:11:46 +0000290
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000291 InlineAsmIdentifierInfo &getIdentifierInfo() {
292 return Info;
293 }
294
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000295 void onOr() {
296 IntelExprState CurrState = State;
297 switch (State) {
298 default:
299 State = IES_ERROR;
300 break;
301 case IES_INTEGER:
302 case IES_RPAREN:
303 case IES_REGISTER:
304 State = IES_OR;
305 IC.pushOperator(IC_OR);
306 break;
307 }
308 PrevState = CurrState;
309 }
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000310 void onXor() {
311 IntelExprState CurrState = State;
312 switch (State) {
313 default:
314 State = IES_ERROR;
315 break;
316 case IES_INTEGER:
317 case IES_RPAREN:
318 case IES_REGISTER:
319 State = IES_XOR;
320 IC.pushOperator(IC_XOR);
321 break;
322 }
323 PrevState = CurrState;
324 }
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000325 void onAnd() {
326 IntelExprState CurrState = State;
327 switch (State) {
328 default:
329 State = IES_ERROR;
330 break;
331 case IES_INTEGER:
332 case IES_RPAREN:
333 case IES_REGISTER:
334 State = IES_AND;
335 IC.pushOperator(IC_AND);
336 break;
337 }
338 PrevState = CurrState;
339 }
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000340 void onLShift() {
341 IntelExprState CurrState = State;
342 switch (State) {
343 default:
344 State = IES_ERROR;
345 break;
346 case IES_INTEGER:
347 case IES_RPAREN:
348 case IES_REGISTER:
349 State = IES_LSHIFT;
350 IC.pushOperator(IC_LSHIFT);
351 break;
352 }
353 PrevState = CurrState;
354 }
355 void onRShift() {
356 IntelExprState CurrState = State;
357 switch (State) {
358 default:
359 State = IES_ERROR;
360 break;
361 case IES_INTEGER:
362 case IES_RPAREN:
363 case IES_REGISTER:
364 State = IES_RSHIFT;
365 IC.pushOperator(IC_RSHIFT);
366 break;
367 }
368 PrevState = CurrState;
369 }
Chad Rosier5362af92013-04-16 18:15:40 +0000370 void onPlus() {
Chad Rosier31246272013-04-17 21:01:45 +0000371 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000372 switch (State) {
373 default:
374 State = IES_ERROR;
375 break;
376 case IES_INTEGER:
377 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000378 case IES_REGISTER:
379 State = IES_PLUS;
Chad Rosier5362af92013-04-16 18:15:40 +0000380 IC.pushOperator(IC_PLUS);
Chad Rosier31246272013-04-17 21:01:45 +0000381 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
382 // If we already have a BaseReg, then assume this is the IndexReg with
383 // a scale of 1.
384 if (!BaseReg) {
385 BaseReg = TmpReg;
386 } else {
387 assert (!IndexReg && "BaseReg/IndexReg already set!");
388 IndexReg = TmpReg;
389 Scale = 1;
390 }
391 }
Chad Rosier5362af92013-04-16 18:15:40 +0000392 break;
393 }
Chad Rosier31246272013-04-17 21:01:45 +0000394 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000395 }
396 void onMinus() {
Chad Rosier31246272013-04-17 21:01:45 +0000397 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000398 switch (State) {
399 default:
400 State = IES_ERROR;
401 break;
402 case IES_PLUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000403 case IES_NOT:
Chad Rosier31246272013-04-17 21:01:45 +0000404 case IES_MULTIPLY:
405 case IES_DIVIDE:
Chad Rosier5362af92013-04-16 18:15:40 +0000406 case IES_LPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000407 case IES_RPAREN:
Chad Rosier31246272013-04-17 21:01:45 +0000408 case IES_LBRAC:
409 case IES_RBRAC:
410 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000411 case IES_REGISTER:
412 State = IES_MINUS;
Chad Rosier31246272013-04-17 21:01:45 +0000413 // Only push the minus operator if it is not a unary operator.
414 if (!(CurrState == IES_PLUS || CurrState == IES_MINUS ||
415 CurrState == IES_MULTIPLY || CurrState == IES_DIVIDE ||
416 CurrState == IES_LPAREN || CurrState == IES_LBRAC))
417 IC.pushOperator(IC_MINUS);
418 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
419 // If we already have a BaseReg, then assume this is the IndexReg with
420 // a scale of 1.
421 if (!BaseReg) {
422 BaseReg = TmpReg;
423 } else {
424 assert (!IndexReg && "BaseReg/IndexReg already set!");
425 IndexReg = TmpReg;
426 Scale = 1;
427 }
Chad Rosier5362af92013-04-16 18:15:40 +0000428 }
Chad Rosier5362af92013-04-16 18:15:40 +0000429 break;
430 }
Chad Rosier31246272013-04-17 21:01:45 +0000431 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000432 }
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000433 void onNot() {
434 IntelExprState CurrState = State;
435 switch (State) {
436 default:
437 State = IES_ERROR;
438 break;
439 case IES_PLUS:
440 case IES_NOT:
441 State = IES_NOT;
442 break;
443 }
444 PrevState = CurrState;
445 }
Chad Rosier5362af92013-04-16 18:15:40 +0000446 void onRegister(unsigned Reg) {
Chad Rosier31246272013-04-17 21:01:45 +0000447 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000448 switch (State) {
449 default:
450 State = IES_ERROR;
451 break;
452 case IES_PLUS:
453 case IES_LPAREN:
454 State = IES_REGISTER;
455 TmpReg = Reg;
456 IC.pushOperand(IC_REGISTER);
457 break;
Chad Rosier31246272013-04-17 21:01:45 +0000458 case IES_MULTIPLY:
459 // Index Register - Scale * Register
460 if (PrevState == IES_INTEGER) {
461 assert (!IndexReg && "IndexReg already set!");
462 State = IES_REGISTER;
463 IndexReg = Reg;
464 // Get the scale and replace the 'Scale * Register' with '0'.
465 Scale = IC.popOperand();
466 IC.pushOperand(IC_IMM);
467 IC.popOperator();
468 } else {
469 State = IES_ERROR;
470 }
Chad Rosier5362af92013-04-16 18:15:40 +0000471 break;
472 }
Chad Rosier31246272013-04-17 21:01:45 +0000473 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000474 }
Chad Rosier95ce8892013-04-19 18:39:50 +0000475 void onIdentifierExpr(const MCExpr *SymRef, StringRef SymRefName) {
Chad Rosierdb003992013-04-18 16:28:19 +0000476 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000477 switch (State) {
478 default:
479 State = IES_ERROR;
480 break;
481 case IES_PLUS:
482 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000483 case IES_NOT:
Chad Rosier5362af92013-04-16 18:15:40 +0000484 State = IES_INTEGER;
485 Sym = SymRef;
486 SymName = SymRefName;
487 IC.pushOperand(IC_IMM);
488 break;
489 }
490 }
Kevin Enderby9d117022014-01-23 21:52:41 +0000491 bool onInteger(int64_t TmpInt, StringRef &ErrMsg) {
Chad Rosier31246272013-04-17 21:01:45 +0000492 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000493 switch (State) {
494 default:
495 State = IES_ERROR;
496 break;
497 case IES_PLUS:
498 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000499 case IES_NOT:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000500 case IES_OR:
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000501 case IES_XOR:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000502 case IES_AND:
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000503 case IES_LSHIFT:
504 case IES_RSHIFT:
Chad Rosier5362af92013-04-16 18:15:40 +0000505 case IES_DIVIDE:
Chad Rosier31246272013-04-17 21:01:45 +0000506 case IES_MULTIPLY:
Chad Rosier5362af92013-04-16 18:15:40 +0000507 case IES_LPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000508 State = IES_INTEGER;
Chad Rosier31246272013-04-17 21:01:45 +0000509 if (PrevState == IES_REGISTER && CurrState == IES_MULTIPLY) {
510 // Index Register - Register * Scale
511 assert (!IndexReg && "IndexReg already set!");
512 IndexReg = TmpReg;
513 Scale = TmpInt;
Kevin Enderby9d117022014-01-23 21:52:41 +0000514 if(Scale != 1 && Scale != 2 && Scale != 4 && Scale != 8) {
515 ErrMsg = "scale factor in address must be 1, 2, 4 or 8";
516 return true;
517 }
Chad Rosier31246272013-04-17 21:01:45 +0000518 // Get the scale and replace the 'Register * Scale' with '0'.
519 IC.popOperator();
520 } else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000521 PrevState == IES_OR || PrevState == IES_AND ||
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000522 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
Chad Rosier31246272013-04-17 21:01:45 +0000523 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000524 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000525 PrevState == IES_NOT || PrevState == IES_XOR) &&
Chad Rosier31246272013-04-17 21:01:45 +0000526 CurrState == IES_MINUS) {
527 // Unary minus. No need to pop the minus operand because it was never
528 // pushed.
529 IC.pushOperand(IC_IMM, -TmpInt); // Push -Imm.
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000530 } else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
531 PrevState == IES_OR || PrevState == IES_AND ||
532 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
533 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
534 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000535 PrevState == IES_NOT || PrevState == IES_XOR) &&
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000536 CurrState == IES_NOT) {
537 // Unary not. No need to pop the not operand because it was never
538 // pushed.
539 IC.pushOperand(IC_IMM, ~TmpInt); // Push ~Imm.
Chad Rosier31246272013-04-17 21:01:45 +0000540 } else {
541 IC.pushOperand(IC_IMM, TmpInt);
542 }
Chad Rosier5362af92013-04-16 18:15:40 +0000543 break;
544 }
Chad Rosier31246272013-04-17 21:01:45 +0000545 PrevState = CurrState;
Kevin Enderby9d117022014-01-23 21:52:41 +0000546 return false;
Chad Rosier5362af92013-04-16 18:15:40 +0000547 }
548 void onStar() {
Chad Rosierdb003992013-04-18 16:28:19 +0000549 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000550 switch (State) {
551 default:
552 State = IES_ERROR;
553 break;
554 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000555 case IES_REGISTER:
Chad Rosier5362af92013-04-16 18:15:40 +0000556 case IES_RPAREN:
557 State = IES_MULTIPLY;
558 IC.pushOperator(IC_MULTIPLY);
559 break;
560 }
561 }
562 void onDivide() {
Chad Rosierdb003992013-04-18 16:28:19 +0000563 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000564 switch (State) {
565 default:
566 State = IES_ERROR;
567 break;
568 case IES_INTEGER:
Chad Rosier31246272013-04-17 21:01:45 +0000569 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000570 State = IES_DIVIDE;
571 IC.pushOperator(IC_DIVIDE);
572 break;
573 }
574 }
575 void onLBrac() {
Chad Rosierdb003992013-04-18 16:28:19 +0000576 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000577 switch (State) {
578 default:
579 State = IES_ERROR;
580 break;
581 case IES_RBRAC:
582 State = IES_PLUS;
583 IC.pushOperator(IC_PLUS);
584 break;
585 }
586 }
587 void onRBrac() {
Chad Rosier31246272013-04-17 21:01:45 +0000588 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000589 switch (State) {
590 default:
591 State = IES_ERROR;
592 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000593 case IES_INTEGER:
Chad Rosier5362af92013-04-16 18:15:40 +0000594 case IES_REGISTER:
Chad Rosier31246272013-04-17 21:01:45 +0000595 case IES_RPAREN:
Chad Rosier5362af92013-04-16 18:15:40 +0000596 State = IES_RBRAC;
Chad Rosier31246272013-04-17 21:01:45 +0000597 if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
598 // If we already have a BaseReg, then assume this is the IndexReg with
599 // a scale of 1.
600 if (!BaseReg) {
601 BaseReg = TmpReg;
602 } else {
603 assert (!IndexReg && "BaseReg/IndexReg already set!");
604 IndexReg = TmpReg;
605 Scale = 1;
606 }
Chad Rosier5362af92013-04-16 18:15:40 +0000607 }
608 break;
609 }
Chad Rosier31246272013-04-17 21:01:45 +0000610 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000611 }
612 void onLParen() {
Chad Rosier31246272013-04-17 21:01:45 +0000613 IntelExprState CurrState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000614 switch (State) {
615 default:
616 State = IES_ERROR;
617 break;
618 case IES_PLUS:
619 case IES_MINUS:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000620 case IES_NOT:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000621 case IES_OR:
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000622 case IES_XOR:
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000623 case IES_AND:
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000624 case IES_LSHIFT:
625 case IES_RSHIFT:
Chad Rosier5362af92013-04-16 18:15:40 +0000626 case IES_MULTIPLY:
627 case IES_DIVIDE:
Chad Rosier5362af92013-04-16 18:15:40 +0000628 case IES_LPAREN:
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000629 // FIXME: We don't handle this type of unary minus or not, yet.
Chad Rosierdb003992013-04-18 16:28:19 +0000630 if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000631 PrevState == IES_OR || PrevState == IES_AND ||
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000632 PrevState == IES_LSHIFT || PrevState == IES_RSHIFT ||
Chad Rosierdb003992013-04-18 16:28:19 +0000633 PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000634 PrevState == IES_LPAREN || PrevState == IES_LBRAC ||
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000635 PrevState == IES_NOT || PrevState == IES_XOR) &&
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000636 (CurrState == IES_MINUS || CurrState == IES_NOT)) {
Chad Rosierdb003992013-04-18 16:28:19 +0000637 State = IES_ERROR;
638 break;
639 }
Chad Rosier5362af92013-04-16 18:15:40 +0000640 State = IES_LPAREN;
641 IC.pushOperator(IC_LPAREN);
642 break;
643 }
Chad Rosier31246272013-04-17 21:01:45 +0000644 PrevState = CurrState;
Chad Rosier5362af92013-04-16 18:15:40 +0000645 }
646 void onRParen() {
Chad Rosierdb003992013-04-18 16:28:19 +0000647 PrevState = State;
Chad Rosier5362af92013-04-16 18:15:40 +0000648 switch (State) {
649 default:
650 State = IES_ERROR;
651 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000652 case IES_INTEGER:
Chad Rosier31246272013-04-17 21:01:45 +0000653 case IES_REGISTER:
Chad Rosier5362af92013-04-16 18:15:40 +0000654 case IES_RPAREN:
655 State = IES_RPAREN;
656 IC.pushOperator(IC_RPAREN);
657 break;
658 }
659 }
660 };
661
Chris Lattnera3a06812011-10-16 04:47:35 +0000662 bool Error(SMLoc L, const Twine &Msg,
Dmitri Gribenko3238fb72013-05-05 00:40:33 +0000663 ArrayRef<SMRange> Ranges = None,
Chad Rosier4453e842012-10-12 23:09:25 +0000664 bool MatchingInlineAsm = false) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000665 MCAsmParser &Parser = getParser();
Chad Rosier4453e842012-10-12 23:09:25 +0000666 if (MatchingInlineAsm) return true;
Chris Lattnera3a06812011-10-16 04:47:35 +0000667 return Parser.Error(L, Msg, Ranges);
668 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000669
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000670 bool ErrorAndEatStatement(SMLoc L, const Twine &Msg,
671 ArrayRef<SMRange> Ranges = None,
672 bool MatchingInlineAsm = false) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000673 MCAsmParser &Parser = getParser();
674 Parser.eatToEndOfStatement();
675 return Error(L, Msg, Ranges, MatchingInlineAsm);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000676 }
677
David Blaikie960ea3f2014-06-08 16:18:35 +0000678 std::nullptr_t ErrorOperand(SMLoc Loc, StringRef Msg) {
Devang Patel41b9dde2012-01-17 18:00:18 +0000679 Error(Loc, Msg);
Craig Topper062a2ba2014-04-25 05:30:21 +0000680 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +0000681 }
682
David Blaikie960ea3f2014-06-08 16:18:35 +0000683 std::unique_ptr<X86Operand> DefaultMemSIOperand(SMLoc Loc);
684 std::unique_ptr<X86Operand> DefaultMemDIOperand(SMLoc Loc);
Michael Kupersteinffcc7662015-07-23 10:23:48 +0000685 void AddDefaultSrcDestOperands(
686 OperandVector& Operands, std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
687 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst);
David Blaikie960ea3f2014-06-08 16:18:35 +0000688 std::unique_ptr<X86Operand> ParseOperand();
689 std::unique_ptr<X86Operand> ParseATTOperand();
690 std::unique_ptr<X86Operand> ParseIntelOperand();
691 std::unique_ptr<X86Operand> ParseIntelOffsetOfOperator();
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000692 bool ParseIntelDotOperator(const MCExpr *Disp, const MCExpr *&NewDisp);
David Blaikie960ea3f2014-06-08 16:18:35 +0000693 std::unique_ptr<X86Operand> ParseIntelOperator(unsigned OpKind);
694 std::unique_ptr<X86Operand>
695 ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start, unsigned Size);
696 std::unique_ptr<X86Operand>
697 ParseIntelMemOperand(int64_t ImmDisp, SMLoc StartLoc, unsigned Size);
Elena Demikhovsky18fd4962015-03-02 15:00:34 +0000698 std::unique_ptr<X86Operand> ParseRoundingModeOp(SMLoc Start, SMLoc End);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000699 bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End);
David Blaikie960ea3f2014-06-08 16:18:35 +0000700 std::unique_ptr<X86Operand> ParseIntelBracExpression(unsigned SegReg,
701 SMLoc Start,
702 int64_t ImmDisp,
703 unsigned Size);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000704 bool ParseIntelIdentifier(const MCExpr *&Val, StringRef &Identifier,
705 InlineAsmIdentifierInfo &Info,
706 bool IsUnevaluatedOperand, SMLoc &End);
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000707
David Blaikie960ea3f2014-06-08 16:18:35 +0000708 std::unique_ptr<X86Operand> ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000709
David Blaikie960ea3f2014-06-08 16:18:35 +0000710 std::unique_ptr<X86Operand>
711 CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp, unsigned BaseReg,
712 unsigned IndexReg, unsigned Scale, SMLoc Start,
713 SMLoc End, unsigned Size, StringRef Identifier,
714 InlineAsmIdentifierInfo &Info);
Chad Rosier7ca135b2013-03-19 21:11:56 +0000715
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000716 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Evan Cheng481ebb02011-07-27 00:38:12 +0000717 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000718
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +0000719 bool validateInstruction(MCInst &Inst, const OperandVector &Ops);
David Blaikie960ea3f2014-06-08 16:18:35 +0000720 bool processInstruction(MCInst &Inst, const OperandVector &Ops);
Devang Patelde47cce2012-01-18 22:42:29 +0000721
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000722 /// Wrapper around MCStreamer::EmitInstruction(). Possibly adds
723 /// instrumentation around Inst.
David Blaikie960ea3f2014-06-08 16:18:35 +0000724 void EmitInstruction(MCInst &Inst, OperandVector &Operands, MCStreamer &Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000725
Chad Rosier49963552012-10-13 00:26:04 +0000726 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
David Blaikie960ea3f2014-06-08 16:18:35 +0000727 OperandVector &Operands, MCStreamer &Out,
Tim Northover26bb14e2014-08-18 11:49:42 +0000728 uint64_t &ErrorInfo,
Craig Topper39012cc2014-03-09 18:03:14 +0000729 bool MatchingInlineAsm) override;
Chad Rosier9cb988f2012-08-09 22:04:55 +0000730
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000731 void MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op, OperandVector &Operands,
732 MCStreamer &Out, bool MatchingInlineAsm);
733
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000734 bool ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000735 bool MatchingInlineAsm);
736
737 bool MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
738 OperandVector &Operands, MCStreamer &Out,
739 uint64_t &ErrorInfo,
740 bool MatchingInlineAsm);
741
742 bool MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
743 OperandVector &Operands, MCStreamer &Out,
744 uint64_t &ErrorInfo,
745 bool MatchingInlineAsm);
746
Craig Topperfd38cbe2014-08-30 16:48:34 +0000747 bool OmitRegisterFromClobberLists(unsigned RegNo) override;
Nico Weber42f79db2014-07-17 20:24:55 +0000748
David Woodhouse9bbf7ca2014-01-22 15:08:36 +0000749 /// doSrcDstMatch - Returns true if operands are matching in their
750 /// word size (%si and %di, %esi and %edi, etc.). Order depends on
751 /// the parsing mode (Intel vs. AT&T).
752 bool doSrcDstMatch(X86Operand &Op1, X86Operand &Op2);
753
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000754 /// Parses AVX512 specific operand primitives: masked registers ({%k<NUM>}, {z})
755 /// and memory broadcasting ({1to<NUM>}) primitives, updating Operands vector if required.
756 /// \return \c true if no parsing errors occurred, \c false otherwise.
David Blaikie960ea3f2014-06-08 16:18:35 +0000757 bool HandleAVX512Operand(OperandVector &Operands,
758 const MCParsedAsmOperand &Op);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000759
Evan Chengc5e6d2f2011-07-11 03:57:24 +0000760 bool is64BitMode() const {
Evan Cheng4d1ca962011-07-08 01:53:10 +0000761 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000762 return STI.getFeatureBits()[X86::Mode64Bit];
Evan Cheng4d1ca962011-07-08 01:53:10 +0000763 }
Craig Topper3c80d622014-01-06 04:55:54 +0000764 bool is32BitMode() const {
765 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000766 return STI.getFeatureBits()[X86::Mode32Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000767 }
768 bool is16BitMode() const {
769 // FIXME: Can tablegen auto-generate this?
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000770 return STI.getFeatureBits()[X86::Mode16Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000771 }
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000772 void SwitchMode(unsigned mode) {
773 FeatureBitset AllModes({X86::Mode64Bit, X86::Mode32Bit, X86::Mode16Bit});
774 FeatureBitset OldMode = STI.getFeatureBits() & AllModes;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000775 unsigned FB = ComputeAvailableFeatures(
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000776 STI.ToggleFeature(OldMode.flip(mode)));
Evan Cheng481ebb02011-07-27 00:38:12 +0000777 setAvailableFeatures(FB);
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000778
779 assert(FeatureBitset({mode}) == (STI.getFeatureBits() & AllModes));
Evan Cheng481ebb02011-07-27 00:38:12 +0000780 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000781
Reid Kleckner5b37c182014-08-01 20:21:24 +0000782 unsigned getPointerWidth() {
783 if (is16BitMode()) return 16;
784 if (is32BitMode()) return 32;
785 if (is64BitMode()) return 64;
786 llvm_unreachable("invalid mode");
787 }
788
Chad Rosierc2f055d2013-04-18 16:13:18 +0000789 bool isParsingIntelSyntax() {
790 return getParser().getAssemblerDialect();
791 }
792
Daniel Dunbareefe8612010-07-19 05:44:09 +0000793 /// @name Auto-generated Matcher Functions
794 /// {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000795
Chris Lattner3e4582a2010-09-06 19:11:01 +0000796#define GET_ASSEMBLER_HEADER
797#include "X86GenAsmMatcher.inc"
Michael J. Spencer530ce852010-10-09 11:00:50 +0000798
Daniel Dunbar00331992009-07-29 00:02:19 +0000799 /// }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000800
801public:
Rafael Espindola961d4692014-11-11 05:18:41 +0000802 X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &Parser,
803 const MCInstrInfo &mii, const MCTargetOptions &Options)
Colin LeMahieufe2c8b82015-07-27 21:56:53 +0000804 : MCTargetAsmParser(Options), STI(sti), MII(mii), InstInfo(nullptr) {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000805
Daniel Dunbareefe8612010-07-19 05:44:09 +0000806 // Initialize the set of available features.
Evan Cheng91111d22011-07-09 05:47:46 +0000807 setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000808 Instrumentation.reset(
809 CreateX86AsmInstrumentation(Options, Parser.getContext(), STI));
Daniel Dunbareefe8612010-07-19 05:44:09 +0000810 }
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000811
Craig Topper39012cc2014-03-09 18:03:14 +0000812 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000813
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000814 void SetFrameRegister(unsigned RegNo) override;
815
David Blaikie960ea3f2014-06-08 16:18:35 +0000816 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
817 SMLoc NameLoc, OperandVector &Operands) override;
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000818
Craig Topper39012cc2014-03-09 18:03:14 +0000819 bool ParseDirective(AsmToken DirectiveID) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000820};
Chris Lattner4eb9df02009-07-29 06:33:53 +0000821} // end anonymous namespace
822
Sean Callanan86c11812010-01-23 00:40:33 +0000823/// @name Auto-generated Match Functions
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000824/// {
Sean Callanan86c11812010-01-23 00:40:33 +0000825
Chris Lattner60db0a62010-02-09 00:34:28 +0000826static unsigned MatchRegisterName(StringRef Name);
Sean Callanan86c11812010-01-23 00:40:33 +0000827
828/// }
Chris Lattner4eb9df02009-07-29 06:33:53 +0000829
Kevin Enderbybc570f22014-01-23 22:34:42 +0000830static bool CheckBaseRegAndIndexReg(unsigned BaseReg, unsigned IndexReg,
831 StringRef &ErrMsg) {
832 // If we have both a base register and an index register make sure they are
833 // both 64-bit or 32-bit registers.
834 // To support VSIB, IndexReg can be 128-bit or 256-bit registers.
835 if (BaseReg != 0 && IndexReg != 0) {
836 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
837 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
838 X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
839 IndexReg != X86::RIZ) {
840 ErrMsg = "base register is 64-bit, but index register is not";
841 return true;
842 }
843 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
844 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
845 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
846 IndexReg != X86::EIZ){
847 ErrMsg = "base register is 32-bit, but index register is not";
848 return true;
849 }
850 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg)) {
851 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg) ||
852 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) {
853 ErrMsg = "base register is 16-bit, but index register is not";
854 return true;
855 }
856 if (((BaseReg == X86::BX || BaseReg == X86::BP) &&
857 IndexReg != X86::SI && IndexReg != X86::DI) ||
858 ((BaseReg == X86::SI || BaseReg == X86::DI) &&
859 IndexReg != X86::BX && IndexReg != X86::BP)) {
860 ErrMsg = "invalid 16-bit base/index register combination";
861 return true;
862 }
863 }
864 }
865 return false;
866}
867
David Woodhouse9bbf7ca2014-01-22 15:08:36 +0000868bool X86AsmParser::doSrcDstMatch(X86Operand &Op1, X86Operand &Op2)
869{
870 // Return true and let a normal complaint about bogus operands happen.
871 if (!Op1.isMem() || !Op2.isMem())
872 return true;
873
874 // Actually these might be the other way round if Intel syntax is
875 // being used. It doesn't matter.
876 unsigned diReg = Op1.Mem.BaseReg;
877 unsigned siReg = Op2.Mem.BaseReg;
878
879 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(siReg))
880 return X86MCRegisterClasses[X86::GR16RegClassID].contains(diReg);
881 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(siReg))
882 return X86MCRegisterClasses[X86::GR32RegClassID].contains(diReg);
883 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(siReg))
884 return X86MCRegisterClasses[X86::GR64RegClassID].contains(diReg);
885 // Again, return true and let another error happen.
886 return true;
887}
888
Devang Patel4a6e7782012-01-12 18:03:40 +0000889bool X86AsmParser::ParseRegister(unsigned &RegNo,
890 SMLoc &StartLoc, SMLoc &EndLoc) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000891 MCAsmParser &Parser = getParser();
Chris Lattnercc2ad082010-01-15 18:27:19 +0000892 RegNo = 0;
Benjamin Kramere3d658b2012-09-07 14:51:35 +0000893 const AsmToken &PercentTok = Parser.getTok();
894 StartLoc = PercentTok.getLoc();
895
896 // If we encounter a %, ignore it. This code handles registers with and
897 // without the prefix, unprefixed registers can occur in cfi directives.
898 if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
Devang Patel41b9dde2012-01-17 18:00:18 +0000899 Parser.Lex(); // Eat percent token.
Kevin Enderby7d912182009-09-03 17:15:07 +0000900
Sean Callanan936b0d32010-01-19 21:44:56 +0000901 const AsmToken &Tok = Parser.getTok();
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000902 EndLoc = Tok.getEndLoc();
903
Devang Patelce6a2ca2012-01-20 22:32:05 +0000904 if (Tok.isNot(AsmToken::Identifier)) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000905 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000906 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000907 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +0000908 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000909
Kevin Enderby7d912182009-09-03 17:15:07 +0000910 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000911
Chris Lattner1261b812010-09-22 04:11:10 +0000912 // If the match failed, try the register name as lowercase.
913 if (RegNo == 0)
Benjamin Kramer20baffb2011-11-06 20:37:06 +0000914 RegNo = MatchRegisterName(Tok.getString().lower());
Michael J. Spencer530ce852010-10-09 11:00:50 +0000915
Michael Kupersteincdb076b2015-07-30 10:10:25 +0000916 // The "flags" register cannot be referenced directly.
917 // Treat it as an identifier instead.
918 if (isParsingInlineAsm() && isParsingIntelSyntax() && RegNo == X86::EFLAGS)
919 RegNo = 0;
920
Evan Chengeda1d4f2011-07-27 23:22:03 +0000921 if (!is64BitMode()) {
Eric Christopherc0a5aae2013-12-20 02:04:49 +0000922 // FIXME: This should be done using Requires<Not64BitMode> and
Evan Chengeda1d4f2011-07-27 23:22:03 +0000923 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
924 // checked.
925 // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
926 // REX prefix.
927 if (RegNo == X86::RIZ ||
928 X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
929 X86II::isX86_64NonExtLowByteReg(RegNo) ||
930 X86II::isX86_64ExtendedReg(RegNo))
Benjamin Kramer1930b002011-10-16 12:10:27 +0000931 return Error(StartLoc, "register %"
932 + Tok.getString() + " is only available in 64-bit mode",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000933 SMRange(StartLoc, EndLoc));
Evan Chengeda1d4f2011-07-27 23:22:03 +0000934 }
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +0000935
Chris Lattner1261b812010-09-22 04:11:10 +0000936 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
937 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000938 RegNo = X86::ST0;
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000939 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000940
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000941 // Check to see if we have '(4)' after %st.
942 if (getLexer().isNot(AsmToken::LParen))
943 return false;
944 // Lex the paren.
945 getParser().Lex();
946
947 const AsmToken &IntTok = Parser.getTok();
948 if (IntTok.isNot(AsmToken::Integer))
949 return Error(IntTok.getLoc(), "expected stack index");
950 switch (IntTok.getIntVal()) {
951 case 0: RegNo = X86::ST0; break;
952 case 1: RegNo = X86::ST1; break;
953 case 2: RegNo = X86::ST2; break;
954 case 3: RegNo = X86::ST3; break;
955 case 4: RegNo = X86::ST4; break;
956 case 5: RegNo = X86::ST5; break;
957 case 6: RegNo = X86::ST6; break;
958 case 7: RegNo = X86::ST7; break;
959 default: return Error(IntTok.getLoc(), "invalid stack index");
960 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000961
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000962 if (getParser().Lex().isNot(AsmToken::RParen))
963 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000964
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000965 EndLoc = Parser.getTok().getEndLoc();
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000966 Parser.Lex(); // Eat ')'
967 return false;
968 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000969
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000970 EndLoc = Parser.getTok().getEndLoc();
971
Chris Lattner80486622010-06-24 07:29:18 +0000972 // If this is "db[0-7]", match it as an alias
973 // for dr[0-7].
974 if (RegNo == 0 && Tok.getString().size() == 3 &&
975 Tok.getString().startswith("db")) {
976 switch (Tok.getString()[2]) {
977 case '0': RegNo = X86::DR0; break;
978 case '1': RegNo = X86::DR1; break;
979 case '2': RegNo = X86::DR2; break;
980 case '3': RegNo = X86::DR3; break;
981 case '4': RegNo = X86::DR4; break;
982 case '5': RegNo = X86::DR5; break;
983 case '6': RegNo = X86::DR6; break;
984 case '7': RegNo = X86::DR7; break;
985 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000986
Chris Lattner80486622010-06-24 07:29:18 +0000987 if (RegNo != 0) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000988 EndLoc = Parser.getTok().getEndLoc();
Chris Lattner80486622010-06-24 07:29:18 +0000989 Parser.Lex(); // Eat it.
990 return false;
991 }
992 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000993
Devang Patelce6a2ca2012-01-20 22:32:05 +0000994 if (RegNo == 0) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000995 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000996 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000997 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +0000998 }
Daniel Dunbar00331992009-07-29 00:02:19 +0000999
Sean Callanana83fd7d2010-01-19 20:27:46 +00001000 Parser.Lex(); // Eat identifier token.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001001 return false;
Daniel Dunbar71475772009-07-17 20:42:00 +00001002}
1003
Yuri Gorshenin3939dec2014-09-10 09:45:49 +00001004void X86AsmParser::SetFrameRegister(unsigned RegNo) {
Yuri Gorshenine8c81fd2014-10-07 11:03:09 +00001005 Instrumentation->SetInitialFrameRegister(RegNo);
Yuri Gorshenin3939dec2014-09-10 09:45:49 +00001006}
1007
David Blaikie960ea3f2014-06-08 16:18:35 +00001008std::unique_ptr<X86Operand> X86AsmParser::DefaultMemSIOperand(SMLoc Loc) {
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00001009 unsigned basereg =
1010 is64BitMode() ? X86::RSI : (is32BitMode() ? X86::ESI : X86::SI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001011 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001012 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1013 /*BaseReg=*/basereg, /*IndexReg=*/0, /*Scale=*/1,
1014 Loc, Loc, 0);
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00001015}
1016
David Blaikie960ea3f2014-06-08 16:18:35 +00001017std::unique_ptr<X86Operand> X86AsmParser::DefaultMemDIOperand(SMLoc Loc) {
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001018 unsigned basereg =
1019 is64BitMode() ? X86::RDI : (is32BitMode() ? X86::EDI : X86::DI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001020 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001021 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1022 /*BaseReg=*/basereg, /*IndexReg=*/0, /*Scale=*/1,
1023 Loc, Loc, 0);
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001024}
1025
Michael Kupersteinffcc7662015-07-23 10:23:48 +00001026void X86AsmParser::AddDefaultSrcDestOperands(
1027 OperandVector& Operands, std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
1028 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst) {
1029 if (isParsingIntelSyntax()) {
1030 Operands.push_back(std::move(Dst));
1031 Operands.push_back(std::move(Src));
1032 }
1033 else {
1034 Operands.push_back(std::move(Src));
1035 Operands.push_back(std::move(Dst));
1036 }
1037}
1038
David Blaikie960ea3f2014-06-08 16:18:35 +00001039std::unique_ptr<X86Operand> X86AsmParser::ParseOperand() {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00001040 if (isParsingIntelSyntax())
Devang Patel46831de2012-01-12 01:36:43 +00001041 return ParseIntelOperand();
1042 return ParseATTOperand();
1043}
1044
Devang Patel41b9dde2012-01-17 18:00:18 +00001045/// getIntelMemOperandSize - Return intel memory operand size.
1046static unsigned getIntelMemOperandSize(StringRef OpStr) {
Chad Rosierb6b8e962012-09-11 21:10:25 +00001047 unsigned Size = StringSwitch<unsigned>(OpStr)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001048 .Cases("BYTE", "byte", 8)
1049 .Cases("WORD", "word", 16)
1050 .Cases("DWORD", "dword", 32)
1051 .Cases("QWORD", "qword", 64)
1052 .Cases("XWORD", "xword", 80)
Michael Kuperstein69e40a42015-07-19 11:03:08 +00001053 .Cases("TBYTE", "tbyte", 80)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001054 .Cases("XMMWORD", "xmmword", 128)
1055 .Cases("YMMWORD", "ymmword", 256)
Craig Topper9ac290a2014-01-17 07:37:39 +00001056 .Cases("ZMMWORD", "zmmword", 512)
Craig Topper2d4b3c92014-01-17 07:44:10 +00001057 .Cases("OPAQUE", "opaque", -1U) // needs to be non-zero, but doesn't matter
Chad Rosierb6b8e962012-09-11 21:10:25 +00001058 .Default(0);
1059 return Size;
Devang Patel46831de2012-01-12 01:36:43 +00001060}
1061
David Blaikie960ea3f2014-06-08 16:18:35 +00001062std::unique_ptr<X86Operand> X86AsmParser::CreateMemForInlineAsm(
1063 unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg,
1064 unsigned Scale, SMLoc Start, SMLoc End, unsigned Size, StringRef Identifier,
1065 InlineAsmIdentifierInfo &Info) {
Reid Kleckner5b37c182014-08-01 20:21:24 +00001066 // If we found a decl other than a VarDecl, then assume it is a FuncDecl or
1067 // some other label reference.
1068 if (isa<MCSymbolRefExpr>(Disp) && Info.OpDecl && !Info.IsVarDecl) {
1069 // Insert an explicit size if the user didn't have one.
1070 if (!Size) {
1071 Size = getPointerWidth();
1072 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_SizeDirective, Start,
1073 /*Len=*/0, Size));
1074 }
1075
1076 // Create an absolute memory reference in order to match against
1077 // instructions taking a PC relative operand.
Craig Topper055845f2015-01-02 07:02:25 +00001078 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size,
1079 Identifier, Info.OpDecl);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001080 }
1081
1082 // We either have a direct symbol reference, or an offset from a symbol. The
1083 // parser always puts the symbol on the LHS, so look there for size
1084 // calculation purposes.
1085 const MCBinaryExpr *BinOp = dyn_cast<MCBinaryExpr>(Disp);
1086 bool IsSymRef =
1087 isa<MCSymbolRefExpr>(BinOp ? BinOp->getLHS() : Disp);
1088 if (IsSymRef) {
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001089 if (!Size) {
1090 Size = Info.Type * 8; // Size is in terms of bits in this context.
1091 if (Size)
1092 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_SizeDirective, Start,
1093 /*Len=*/0, Size));
1094 }
Chad Rosier7ca135b2013-03-19 21:11:56 +00001095 }
1096
Chad Rosier7ca135b2013-03-19 21:11:56 +00001097 // When parsing inline assembly we set the base register to a non-zero value
Chad Rosier175d0ae2013-04-12 18:21:18 +00001098 // if we don't know the actual value at this time. This is necessary to
Chad Rosier7ca135b2013-03-19 21:11:56 +00001099 // get the matching correct in some cases.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001100 BaseReg = BaseReg ? BaseReg : 1;
Craig Topper055845f2015-01-02 07:02:25 +00001101 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1102 IndexReg, Scale, Start, End, Size, Identifier,
1103 Info.OpDecl);
Chad Rosier7ca135b2013-03-19 21:11:56 +00001104}
1105
Chad Rosierd383db52013-04-12 20:20:54 +00001106static void
1107RewriteIntelBracExpression(SmallVectorImpl<AsmRewrite> *AsmRewrites,
1108 StringRef SymName, int64_t ImmDisp,
1109 int64_t FinalImmDisp, SMLoc &BracLoc,
1110 SMLoc &StartInBrac, SMLoc &End) {
1111 // Remove the '[' and ']' from the IR string.
1112 AsmRewrites->push_back(AsmRewrite(AOK_Skip, BracLoc, 1));
1113 AsmRewrites->push_back(AsmRewrite(AOK_Skip, End, 1));
1114
1115 // If ImmDisp is non-zero, then we parsed a displacement before the
1116 // bracketed expression (i.e., ImmDisp [ BaseReg + Scale*IndexReg + Disp])
1117 // If ImmDisp doesn't match the displacement computed by the state machine
1118 // then we have an additional displacement in the bracketed expression.
1119 if (ImmDisp != FinalImmDisp) {
1120 if (ImmDisp) {
1121 // We have an immediate displacement before the bracketed expression.
1122 // Adjust this to match the final immediate displacement.
1123 bool Found = false;
1124 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
1125 E = AsmRewrites->end(); I != E; ++I) {
1126 if ((*I).Loc.getPointer() > BracLoc.getPointer())
1127 continue;
Chad Rosierbfb70992013-04-17 00:11:46 +00001128 if ((*I).Kind == AOK_ImmPrefix || (*I).Kind == AOK_Imm) {
1129 assert (!Found && "ImmDisp already rewritten.");
Chad Rosierd383db52013-04-12 20:20:54 +00001130 (*I).Kind = AOK_Imm;
1131 (*I).Len = BracLoc.getPointer() - (*I).Loc.getPointer();
1132 (*I).Val = FinalImmDisp;
1133 Found = true;
1134 break;
1135 }
1136 }
1137 assert (Found && "Unable to rewrite ImmDisp.");
Duncan Sands0480b9b2013-05-13 07:50:47 +00001138 (void)Found;
Chad Rosierd383db52013-04-12 20:20:54 +00001139 } else {
1140 // We have a symbolic and an immediate displacement, but no displacement
Chad Rosierbfb70992013-04-17 00:11:46 +00001141 // before the bracketed expression. Put the immediate displacement
Chad Rosierd383db52013-04-12 20:20:54 +00001142 // before the bracketed expression.
Chad Rosierbfb70992013-04-17 00:11:46 +00001143 AsmRewrites->push_back(AsmRewrite(AOK_Imm, BracLoc, 0, FinalImmDisp));
Chad Rosierd383db52013-04-12 20:20:54 +00001144 }
1145 }
1146 // Remove all the ImmPrefix rewrites within the brackets.
1147 for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
1148 E = AsmRewrites->end(); I != E; ++I) {
1149 if ((*I).Loc.getPointer() < StartInBrac.getPointer())
1150 continue;
1151 if ((*I).Kind == AOK_ImmPrefix)
1152 (*I).Kind = AOK_Delete;
1153 }
1154 const char *SymLocPtr = SymName.data();
Michael Liao5bf95782014-12-04 05:20:33 +00001155 // Skip everything before the symbol.
Chad Rosierd383db52013-04-12 20:20:54 +00001156 if (unsigned Len = SymLocPtr - StartInBrac.getPointer()) {
1157 assert(Len > 0 && "Expected a non-negative length.");
1158 AsmRewrites->push_back(AsmRewrite(AOK_Skip, StartInBrac, Len));
1159 }
1160 // Skip everything after the symbol.
1161 if (unsigned Len = End.getPointer() - (SymLocPtr + SymName.size())) {
1162 SMLoc Loc = SMLoc::getFromPointer(SymLocPtr + SymName.size());
1163 assert(Len > 0 && "Expected a non-negative length.");
1164 AsmRewrites->push_back(AsmRewrite(AOK_Skip, Loc, Len));
1165 }
1166}
1167
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001168bool X86AsmParser::ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001169 MCAsmParser &Parser = getParser();
Chad Rosier6844ea02012-10-24 22:13:37 +00001170 const AsmToken &Tok = Parser.getTok();
Chad Rosier51afe632012-06-27 22:34:28 +00001171
Chad Rosier5c118fd2013-01-14 22:31:35 +00001172 bool Done = false;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001173 while (!Done) {
1174 bool UpdateLocLex = true;
1175
1176 // The period in the dot operator (e.g., [ebx].foo.bar) is parsed as an
1177 // identifier. Don't try an parse it as a register.
1178 if (Tok.getString().startswith("."))
1179 break;
Michael Liao5bf95782014-12-04 05:20:33 +00001180
Chad Rosierbfb70992013-04-17 00:11:46 +00001181 // If we're parsing an immediate expression, we don't expect a '['.
1182 if (SM.getStopOnLBrac() && getLexer().getKind() == AsmToken::LBrac)
1183 break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001184
David Majnemer6a5b8122014-06-19 01:25:43 +00001185 AsmToken::TokenKind TK = getLexer().getKind();
1186 switch (TK) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001187 default: {
1188 if (SM.isValidEndState()) {
1189 Done = true;
1190 break;
1191 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001192 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001193 }
Chad Rosierbfb70992013-04-17 00:11:46 +00001194 case AsmToken::EndOfStatement: {
1195 Done = true;
1196 break;
1197 }
David Majnemer6a5b8122014-06-19 01:25:43 +00001198 case AsmToken::String:
Chad Rosier5c118fd2013-01-14 22:31:35 +00001199 case AsmToken::Identifier: {
Chad Rosier175d0ae2013-04-12 18:21:18 +00001200 // This could be a register or a symbolic displacement.
1201 unsigned TmpReg;
Chad Rosier95ce8892013-04-19 18:39:50 +00001202 const MCExpr *Val;
Chad Rosier152749c2013-04-12 18:54:20 +00001203 SMLoc IdentLoc = Tok.getLoc();
1204 StringRef Identifier = Tok.getString();
David Majnemer6a5b8122014-06-19 01:25:43 +00001205 if (TK != AsmToken::String && !ParseRegister(TmpReg, IdentLoc, End)) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001206 SM.onRegister(TmpReg);
1207 UpdateLocLex = false;
1208 break;
Chad Rosier95ce8892013-04-19 18:39:50 +00001209 } else {
1210 if (!isParsingInlineAsm()) {
1211 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001212 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier95ce8892013-04-19 18:39:50 +00001213 } else {
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001214 // This is a dot operator, not an adjacent identifier.
1215 if (Identifier.find('.') != StringRef::npos) {
1216 return false;
1217 } else {
1218 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
1219 if (ParseIntelIdentifier(Val, Identifier, Info,
1220 /*Unevaluated=*/false, End))
1221 return true;
1222 }
Chad Rosier95ce8892013-04-19 18:39:50 +00001223 }
1224 SM.onIdentifierExpr(Val, Identifier);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001225 UpdateLocLex = false;
1226 break;
1227 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001228 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001229 }
Kevin Enderby36eba252013-12-19 23:16:14 +00001230 case AsmToken::Integer: {
Kevin Enderby9d117022014-01-23 21:52:41 +00001231 StringRef ErrMsg;
Chad Rosierbfb70992013-04-17 00:11:46 +00001232 if (isParsingInlineAsm() && SM.getAddImmPrefix())
Chad Rosier4a7005e2013-04-05 16:28:55 +00001233 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix,
1234 Tok.getLoc()));
Kevin Enderby36eba252013-12-19 23:16:14 +00001235 // Look for 'b' or 'f' following an Integer as a directional label
1236 SMLoc Loc = getTok().getLoc();
1237 int64_t IntVal = getTok().getIntVal();
1238 End = consumeToken();
1239 UpdateLocLex = false;
1240 if (getLexer().getKind() == AsmToken::Identifier) {
1241 StringRef IDVal = getTok().getString();
1242 if (IDVal == "f" || IDVal == "b") {
1243 MCSymbol *Sym =
Jim Grosbach6f482002015-05-18 18:43:14 +00001244 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b");
Kevin Enderby36eba252013-12-19 23:16:14 +00001245 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Michael Liao5bf95782014-12-04 05:20:33 +00001246 const MCExpr *Val =
Jim Grosbach13760bd2015-05-30 01:25:56 +00001247 MCSymbolRefExpr::create(Sym, Variant, getContext());
Kevin Enderby36eba252013-12-19 23:16:14 +00001248 if (IDVal == "b" && Sym->isUndefined())
1249 return Error(Loc, "invalid reference to undefined symbol");
1250 StringRef Identifier = Sym->getName();
1251 SM.onIdentifierExpr(Val, Identifier);
1252 End = consumeToken();
1253 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001254 if (SM.onInteger(IntVal, ErrMsg))
1255 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001256 }
1257 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001258 if (SM.onInteger(IntVal, ErrMsg))
1259 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001260 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001261 break;
Kevin Enderby36eba252013-12-19 23:16:14 +00001262 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001263 case AsmToken::Plus: SM.onPlus(); break;
1264 case AsmToken::Minus: SM.onMinus(); break;
Ehsan Akhgari4103da62014-07-04 19:13:05 +00001265 case AsmToken::Tilde: SM.onNot(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001266 case AsmToken::Star: SM.onStar(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001267 case AsmToken::Slash: SM.onDivide(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001268 case AsmToken::Pipe: SM.onOr(); break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +00001269 case AsmToken::Caret: SM.onXor(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001270 case AsmToken::Amp: SM.onAnd(); break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +00001271 case AsmToken::LessLess:
1272 SM.onLShift(); break;
1273 case AsmToken::GreaterGreater:
1274 SM.onRShift(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001275 case AsmToken::LBrac: SM.onLBrac(); break;
1276 case AsmToken::RBrac: SM.onRBrac(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001277 case AsmToken::LParen: SM.onLParen(); break;
1278 case AsmToken::RParen: SM.onRParen(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001279 }
Chad Rosier31246272013-04-17 21:01:45 +00001280 if (SM.hadError())
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001281 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier31246272013-04-17 21:01:45 +00001282
Alp Tokera5b88a52013-12-02 16:06:06 +00001283 if (!Done && UpdateLocLex)
1284 End = consumeToken();
Devang Patel41b9dde2012-01-17 18:00:18 +00001285 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001286 return false;
Chad Rosier5362af92013-04-16 18:15:40 +00001287}
1288
David Blaikie960ea3f2014-06-08 16:18:35 +00001289std::unique_ptr<X86Operand>
1290X86AsmParser::ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
1291 int64_t ImmDisp, unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001292 MCAsmParser &Parser = getParser();
Chad Rosier5362af92013-04-16 18:15:40 +00001293 const AsmToken &Tok = Parser.getTok();
1294 SMLoc BracLoc = Tok.getLoc(), End = Tok.getEndLoc();
1295 if (getLexer().isNot(AsmToken::LBrac))
1296 return ErrorOperand(BracLoc, "Expected '[' token!");
1297 Parser.Lex(); // Eat '['
1298
1299 SMLoc StartInBrac = Tok.getLoc();
1300 // Parse [ Symbol + ImmDisp ] and [ BaseReg + Scale*IndexReg + ImmDisp ]. We
1301 // may have already parsed an immediate displacement before the bracketed
1302 // expression.
Chad Rosierbfb70992013-04-17 00:11:46 +00001303 IntelExprStateMachine SM(ImmDisp, /*StopOnLBrac=*/false, /*AddImmPrefix=*/true);
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001304 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001305 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +00001306
Craig Topper062a2ba2014-04-25 05:30:21 +00001307 const MCExpr *Disp = nullptr;
Chad Rosier175d0ae2013-04-12 18:21:18 +00001308 if (const MCExpr *Sym = SM.getSym()) {
Chad Rosierd383db52013-04-12 20:20:54 +00001309 // A symbolic displacement.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001310 Disp = Sym;
Chad Rosierd383db52013-04-12 20:20:54 +00001311 if (isParsingInlineAsm())
1312 RewriteIntelBracExpression(InstInfo->AsmRewrites, SM.getSymName(),
Chad Rosier5362af92013-04-16 18:15:40 +00001313 ImmDisp, SM.getImm(), BracLoc, StartInBrac,
Chad Rosierd383db52013-04-12 20:20:54 +00001314 End);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001315 }
1316
1317 if (SM.getImm() || !Disp) {
Jim Grosbach13760bd2015-05-30 01:25:56 +00001318 const MCExpr *Imm = MCConstantExpr::create(SM.getImm(), getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001319 if (Disp)
Jim Grosbach13760bd2015-05-30 01:25:56 +00001320 Disp = MCBinaryExpr::createAdd(Disp, Imm, getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001321 else
1322 Disp = Imm; // An immediate displacement only.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001323 }
Devang Pateld0930ff2012-01-20 21:21:01 +00001324
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001325 // Parse struct field access. Intel requires a dot, but MSVC doesn't. MSVC
1326 // will in fact do global lookup the field name inside all global typedefs,
1327 // but we don't emulate that.
1328 if (Tok.getString().find('.') != StringRef::npos) {
Chad Rosier911c1f32012-10-25 17:37:43 +00001329 const MCExpr *NewDisp;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001330 if (ParseIntelDotOperator(Disp, NewDisp))
Craig Topper062a2ba2014-04-25 05:30:21 +00001331 return nullptr;
Michael Liao5bf95782014-12-04 05:20:33 +00001332
Chad Rosier70f47592013-04-10 20:07:47 +00001333 End = Tok.getEndLoc();
Chad Rosier911c1f32012-10-25 17:37:43 +00001334 Parser.Lex(); // Eat the field.
1335 Disp = NewDisp;
1336 }
Chad Rosier5dcb4662012-10-24 22:21:50 +00001337
Chad Rosier5c118fd2013-01-14 22:31:35 +00001338 int BaseReg = SM.getBaseReg();
1339 int IndexReg = SM.getIndexReg();
Chad Rosier175d0ae2013-04-12 18:21:18 +00001340 int Scale = SM.getScale();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001341 if (!isParsingInlineAsm()) {
1342 // handle [-42]
1343 if (!BaseReg && !IndexReg) {
1344 if (!SegReg)
Craig Topper055845f2015-01-02 07:02:25 +00001345 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size);
1346 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1347 Start, End, Size);
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001348 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00001349 StringRef ErrMsg;
1350 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
1351 Error(StartInBrac, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00001352 return nullptr;
Kevin Enderbybc570f22014-01-23 22:34:42 +00001353 }
Craig Topper055845f2015-01-02 07:02:25 +00001354 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1355 IndexReg, Scale, Start, End, Size);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001356 }
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001357
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001358 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001359 return CreateMemForInlineAsm(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001360 End, Size, SM.getSymName(), Info);
Devang Patel41b9dde2012-01-17 18:00:18 +00001361}
1362
Chad Rosier8a244662013-04-02 20:02:33 +00001363// Inline assembly may use variable names with namespace alias qualifiers.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001364bool X86AsmParser::ParseIntelIdentifier(const MCExpr *&Val,
1365 StringRef &Identifier,
1366 InlineAsmIdentifierInfo &Info,
1367 bool IsUnevaluatedOperand, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001368 MCAsmParser &Parser = getParser();
Chad Rosier95ce8892013-04-19 18:39:50 +00001369 assert (isParsingInlineAsm() && "Expected to be parsing inline assembly.");
Craig Topper062a2ba2014-04-25 05:30:21 +00001370 Val = nullptr;
Chad Rosier8a244662013-04-02 20:02:33 +00001371
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001372 StringRef LineBuf(Identifier.data());
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001373 void *Result =
1374 SemaCallback->LookupInlineAsmIdentifier(LineBuf, Info, IsUnevaluatedOperand);
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001375
Chad Rosier8a244662013-04-02 20:02:33 +00001376 const AsmToken &Tok = Parser.getTok();
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001377 SMLoc Loc = Tok.getLoc();
John McCallf73981b2013-05-03 00:15:41 +00001378
1379 // Advance the token stream until the end of the current token is
1380 // after the end of what the frontend claimed.
1381 const char *EndPtr = Tok.getLoc().getPointer() + LineBuf.size();
1382 while (true) {
1383 End = Tok.getEndLoc();
1384 getLexer().Lex();
1385
1386 assert(End.getPointer() <= EndPtr && "frontend claimed part of a token?");
1387 if (End.getPointer() == EndPtr) break;
Chad Rosier8a244662013-04-02 20:02:33 +00001388 }
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001389 Identifier = LineBuf;
1390
1391 // If the identifier lookup was unsuccessful, assume that we are dealing with
1392 // a label.
1393 if (!Result) {
Ehsan Akhgaribb6bb072014-09-22 20:40:36 +00001394 StringRef InternalName =
1395 SemaCallback->LookupInlineAsmLabel(Identifier, getSourceManager(),
1396 Loc, false);
1397 assert(InternalName.size() && "We should have an internal name here.");
1398 // Push a rewrite for replacing the identifier name with the internal name.
1399 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Label, Loc,
1400 Identifier.size(),
1401 InternalName));
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001402 }
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001403
1404 // Create the symbol reference.
Jim Grosbach6f482002015-05-18 18:43:14 +00001405 MCSymbol *Sym = getContext().getOrCreateSymbol(Identifier);
Chad Rosier8a244662013-04-02 20:02:33 +00001406 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach13760bd2015-05-30 01:25:56 +00001407 Val = MCSymbolRefExpr::create(Sym, Variant, getParser().getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001408 return false;
Chad Rosier8a244662013-04-02 20:02:33 +00001409}
1410
David Majnemeraa34d792013-08-27 21:56:17 +00001411/// \brief Parse intel style segment override.
David Blaikie960ea3f2014-06-08 16:18:35 +00001412std::unique_ptr<X86Operand>
1413X86AsmParser::ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start,
1414 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001415 MCAsmParser &Parser = getParser();
David Majnemeraa34d792013-08-27 21:56:17 +00001416 assert(SegReg != 0 && "Tried to parse a segment override without a segment!");
1417 const AsmToken &Tok = Parser.getTok(); // Eat colon.
1418 if (Tok.isNot(AsmToken::Colon))
1419 return ErrorOperand(Tok.getLoc(), "Expected ':' token!");
1420 Parser.Lex(); // Eat ':'
Devang Patel41b9dde2012-01-17 18:00:18 +00001421
David Majnemeraa34d792013-08-27 21:56:17 +00001422 int64_t ImmDisp = 0;
Chad Rosier1530ba52013-03-27 21:49:56 +00001423 if (getLexer().is(AsmToken::Integer)) {
David Majnemeraa34d792013-08-27 21:56:17 +00001424 ImmDisp = Tok.getIntVal();
1425 AsmToken ImmDispToken = Parser.Lex(); // Eat the integer.
1426
Chad Rosier1530ba52013-03-27 21:49:56 +00001427 if (isParsingInlineAsm())
David Majnemeraa34d792013-08-27 21:56:17 +00001428 InstInfo->AsmRewrites->push_back(
1429 AsmRewrite(AOK_ImmPrefix, ImmDispToken.getLoc()));
1430
1431 if (getLexer().isNot(AsmToken::LBrac)) {
1432 // An immediate following a 'segment register', 'colon' token sequence can
1433 // be followed by a bracketed expression. If it isn't we know we have our
1434 // final segment override.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001435 const MCExpr *Disp = MCConstantExpr::create(ImmDisp, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001436 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp,
1437 /*BaseReg=*/0, /*IndexReg=*/0, /*Scale=*/1,
1438 Start, ImmDispToken.getEndLoc(), Size);
David Majnemeraa34d792013-08-27 21:56:17 +00001439 }
Chad Rosier1530ba52013-03-27 21:49:56 +00001440 }
1441
Chad Rosier91c82662012-10-24 17:22:29 +00001442 if (getLexer().is(AsmToken::LBrac))
Chad Rosierfce4fab2013-04-08 17:43:47 +00001443 return ParseIntelBracExpression(SegReg, Start, ImmDisp, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001444
David Majnemeraa34d792013-08-27 21:56:17 +00001445 const MCExpr *Val;
1446 SMLoc End;
1447 if (!isParsingInlineAsm()) {
1448 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001449 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
David Majnemeraa34d792013-08-27 21:56:17 +00001450
Craig Topper055845f2015-01-02 07:02:25 +00001451 return X86Operand::CreateMem(getPointerWidth(), Val, Start, End, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001452 }
Devang Patel41b9dde2012-01-17 18:00:18 +00001453
David Majnemeraa34d792013-08-27 21:56:17 +00001454 InlineAsmIdentifierInfo Info;
1455 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001456 if (ParseIntelIdentifier(Val, Identifier, Info,
1457 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001458 return nullptr;
David Majnemeraa34d792013-08-27 21:56:17 +00001459 return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0,/*IndexReg=*/0,
1460 /*Scale=*/1, Start, End, Size, Identifier, Info);
1461}
1462
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001463//ParseRoundingModeOp - Parse AVX-512 rounding mode operand
1464std::unique_ptr<X86Operand>
1465X86AsmParser::ParseRoundingModeOp(SMLoc Start, SMLoc End) {
1466 MCAsmParser &Parser = getParser();
1467 const AsmToken &Tok = Parser.getTok();
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001468 // Eat "{" and mark the current place.
1469 const SMLoc consumedToken = consumeToken();
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001470 if (Tok.getIdentifier().startswith("r")){
1471 int rndMode = StringSwitch<int>(Tok.getIdentifier())
1472 .Case("rn", X86::STATIC_ROUNDING::TO_NEAREST_INT)
1473 .Case("rd", X86::STATIC_ROUNDING::TO_NEG_INF)
1474 .Case("ru", X86::STATIC_ROUNDING::TO_POS_INF)
1475 .Case("rz", X86::STATIC_ROUNDING::TO_ZERO)
1476 .Default(-1);
1477 if (-1 == rndMode)
1478 return ErrorOperand(Tok.getLoc(), "Invalid rounding mode.");
1479 Parser.Lex(); // Eat "r*" of r*-sae
1480 if (!getLexer().is(AsmToken::Minus))
1481 return ErrorOperand(Tok.getLoc(), "Expected - at this point");
1482 Parser.Lex(); // Eat "-"
1483 Parser.Lex(); // Eat the sae
1484 if (!getLexer().is(AsmToken::RCurly))
1485 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1486 Parser.Lex(); // Eat "}"
1487 const MCExpr *RndModeOp =
Jim Grosbach13760bd2015-05-30 01:25:56 +00001488 MCConstantExpr::create(rndMode, Parser.getContext());
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001489 return X86Operand::CreateImm(RndModeOp, Start, End);
1490 }
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001491 if(Tok.getIdentifier().equals("sae")){
1492 Parser.Lex(); // Eat the sae
1493 if (!getLexer().is(AsmToken::RCurly))
1494 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1495 Parser.Lex(); // Eat "}"
1496 return X86Operand::CreateToken("{sae}", consumedToken);
1497 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001498 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
1499}
David Majnemeraa34d792013-08-27 21:56:17 +00001500/// ParseIntelMemOperand - Parse intel style memory operand.
David Blaikie960ea3f2014-06-08 16:18:35 +00001501std::unique_ptr<X86Operand> X86AsmParser::ParseIntelMemOperand(int64_t ImmDisp,
1502 SMLoc Start,
1503 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001504 MCAsmParser &Parser = getParser();
David Majnemeraa34d792013-08-27 21:56:17 +00001505 const AsmToken &Tok = Parser.getTok();
1506 SMLoc End;
1507
1508 // Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
1509 if (getLexer().is(AsmToken::LBrac))
1510 return ParseIntelBracExpression(/*SegReg=*/0, Start, ImmDisp, Size);
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001511 assert(ImmDisp == 0);
David Majnemeraa34d792013-08-27 21:56:17 +00001512
Chad Rosier95ce8892013-04-19 18:39:50 +00001513 const MCExpr *Val;
1514 if (!isParsingInlineAsm()) {
1515 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001516 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
Chad Rosier95ce8892013-04-19 18:39:50 +00001517
Craig Topper055845f2015-01-02 07:02:25 +00001518 return X86Operand::CreateMem(getPointerWidth(), Val, Start, End, Size);
Chad Rosier95ce8892013-04-19 18:39:50 +00001519 }
1520
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001521 InlineAsmIdentifierInfo Info;
Chad Rosierce031892013-04-11 23:24:15 +00001522 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001523 if (ParseIntelIdentifier(Val, Identifier, Info,
1524 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001525 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001526
1527 if (!getLexer().is(AsmToken::LBrac))
1528 return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0, /*IndexReg=*/0,
1529 /*Scale=*/1, Start, End, Size, Identifier, Info);
1530
1531 Parser.Lex(); // Eat '['
1532
1533 // Parse Identifier [ ImmDisp ]
1534 IntelExprStateMachine SM(/*ImmDisp=*/0, /*StopOnLBrac=*/true,
1535 /*AddImmPrefix=*/false);
1536 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001537 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001538
1539 if (SM.getSym()) {
1540 Error(Start, "cannot use more than one symbol in memory operand");
Craig Topper062a2ba2014-04-25 05:30:21 +00001541 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001542 }
1543 if (SM.getBaseReg()) {
1544 Error(Start, "cannot use base register with variable reference");
Craig Topper062a2ba2014-04-25 05:30:21 +00001545 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001546 }
1547 if (SM.getIndexReg()) {
1548 Error(Start, "cannot use index register with variable reference");
Craig Topper062a2ba2014-04-25 05:30:21 +00001549 return nullptr;
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001550 }
1551
Jim Grosbach13760bd2015-05-30 01:25:56 +00001552 const MCExpr *Disp = MCConstantExpr::create(SM.getImm(), getContext());
Reid Kleckner4e3bd512014-03-04 17:57:01 +00001553 // BaseReg is non-zero to avoid assertions. In the context of inline asm,
1554 // we're pointing to a local variable in memory, so the base register is
1555 // really the frame or stack pointer.
Craig Topper055845f2015-01-02 07:02:25 +00001556 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1557 /*BaseReg=*/1, /*IndexReg=*/0, /*Scale=*/1,
1558 Start, End, Size, Identifier, Info.OpDecl);
Chad Rosier91c82662012-10-24 17:22:29 +00001559}
1560
Chad Rosier5dcb4662012-10-24 22:21:50 +00001561/// Parse the '.' operator.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001562bool X86AsmParser::ParseIntelDotOperator(const MCExpr *Disp,
Chad Rosiercc541e82013-04-19 15:57:00 +00001563 const MCExpr *&NewDisp) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001564 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001565 const AsmToken &Tok = Parser.getTok();
Chad Rosier6241c1a2013-04-17 21:14:38 +00001566 int64_t OrigDispVal, DotDispVal;
Chad Rosier911c1f32012-10-25 17:37:43 +00001567
1568 // FIXME: Handle non-constant expressions.
Chad Rosiercc541e82013-04-19 15:57:00 +00001569 if (const MCConstantExpr *OrigDisp = dyn_cast<MCConstantExpr>(Disp))
Chad Rosier911c1f32012-10-25 17:37:43 +00001570 OrigDispVal = OrigDisp->getValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001571 else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001572 return Error(Tok.getLoc(), "Non-constant offsets are not supported!");
Chad Rosier5dcb4662012-10-24 22:21:50 +00001573
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001574 // Drop the optional '.'.
1575 StringRef DotDispStr = Tok.getString();
1576 if (DotDispStr.startswith("."))
1577 DotDispStr = DotDispStr.drop_front(1);
Chad Rosier5dcb4662012-10-24 22:21:50 +00001578
Chad Rosier5dcb4662012-10-24 22:21:50 +00001579 // .Imm gets lexed as a real.
1580 if (Tok.is(AsmToken::Real)) {
1581 APInt DotDisp;
1582 DotDispStr.getAsInteger(10, DotDisp);
Chad Rosier911c1f32012-10-25 17:37:43 +00001583 DotDispVal = DotDisp.getZExtValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001584 } else if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
Chad Rosier240b7b92012-10-25 21:51:10 +00001585 unsigned DotDisp;
1586 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.');
1587 if (SemaCallback->LookupInlineAsmField(BaseMember.first, BaseMember.second,
Chad Rosiercc541e82013-04-19 15:57:00 +00001588 DotDisp))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001589 return Error(Tok.getLoc(), "Unable to lookup field reference!");
Chad Rosier240b7b92012-10-25 21:51:10 +00001590 DotDispVal = DotDisp;
Chad Rosiercc541e82013-04-19 15:57:00 +00001591 } else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001592 return Error(Tok.getLoc(), "Unexpected token type!");
Chad Rosier911c1f32012-10-25 17:37:43 +00001593
Chad Rosier240b7b92012-10-25 21:51:10 +00001594 if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
1595 SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data());
1596 unsigned Len = DotDispStr.size();
1597 unsigned Val = OrigDispVal + DotDispVal;
1598 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_DotOperator, Loc, Len,
1599 Val));
Chad Rosier911c1f32012-10-25 17:37:43 +00001600 }
1601
Jim Grosbach13760bd2015-05-30 01:25:56 +00001602 NewDisp = MCConstantExpr::create(OrigDispVal + DotDispVal, getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001603 return false;
Chad Rosier5dcb4662012-10-24 22:21:50 +00001604}
1605
Chad Rosier91c82662012-10-24 17:22:29 +00001606/// Parse the 'offset' operator. This operator is used to specify the
1607/// location rather then the content of a variable.
David Blaikie960ea3f2014-06-08 16:18:35 +00001608std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOffsetOfOperator() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001609 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001610 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001611 SMLoc OffsetOfLoc = Tok.getLoc();
Chad Rosier91c82662012-10-24 17:22:29 +00001612 Parser.Lex(); // Eat offset.
Chad Rosier91c82662012-10-24 17:22:29 +00001613
Chad Rosier91c82662012-10-24 17:22:29 +00001614 const MCExpr *Val;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001615 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001616 SMLoc Start = Tok.getLoc(), End;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001617 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001618 if (ParseIntelIdentifier(Val, Identifier, Info,
1619 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001620 return nullptr;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001621
Chad Rosiere2f03772012-10-26 16:09:20 +00001622 // Don't emit the offset operator.
1623 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Skip, OffsetOfLoc, 7));
1624
Chad Rosier91c82662012-10-24 17:22:29 +00001625 // The offset operator will have an 'r' constraint, thus we need to create
1626 // register operand to ensure proper matching. Just pick a GPR based on
1627 // the size of a pointer.
Craig Topper3c80d622014-01-06 04:55:54 +00001628 unsigned RegNo =
1629 is64BitMode() ? X86::RBX : (is32BitMode() ? X86::EBX : X86::BX);
Chad Rosiera4bc9432013-01-10 22:10:27 +00001630 return X86Operand::CreateReg(RegNo, Start, End, /*GetAddress=*/true,
Chad Rosier732b8372013-04-22 22:04:25 +00001631 OffsetOfLoc, Identifier, Info.OpDecl);
Devang Patel41b9dde2012-01-17 18:00:18 +00001632}
1633
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001634enum IntelOperatorKind {
1635 IOK_LENGTH,
1636 IOK_SIZE,
1637 IOK_TYPE
1638};
1639
1640/// Parse the 'LENGTH', 'TYPE' and 'SIZE' operators. The LENGTH operator
1641/// returns the number of elements in an array. It returns the value 1 for
1642/// non-array variables. The SIZE operator returns the size of a C or C++
1643/// variable. A variable's size is the product of its LENGTH and TYPE. The
1644/// TYPE operator returns the size of a C or C++ type or variable. If the
1645/// variable is an array, TYPE returns the size of a single element.
David Blaikie960ea3f2014-06-08 16:18:35 +00001646std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperator(unsigned OpKind) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001647 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001648 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001649 SMLoc TypeLoc = Tok.getLoc();
1650 Parser.Lex(); // Eat operator.
Chad Rosier11c42f22012-10-26 18:04:20 +00001651
Craig Topper062a2ba2014-04-25 05:30:21 +00001652 const MCExpr *Val = nullptr;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001653 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001654 SMLoc Start = Tok.getLoc(), End;
Chad Rosierb67f8052013-04-11 23:57:04 +00001655 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001656 if (ParseIntelIdentifier(Val, Identifier, Info,
1657 /*Unevaluated=*/true, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001658 return nullptr;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001659
1660 if (!Info.OpDecl)
1661 return ErrorOperand(Start, "unable to lookup expression");
Chad Rosier11c42f22012-10-26 18:04:20 +00001662
Chad Rosierf6675c32013-04-22 17:01:46 +00001663 unsigned CVal = 0;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001664 switch(OpKind) {
1665 default: llvm_unreachable("Unexpected operand kind!");
1666 case IOK_LENGTH: CVal = Info.Length; break;
1667 case IOK_SIZE: CVal = Info.Size; break;
1668 case IOK_TYPE: CVal = Info.Type; break;
1669 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001670
1671 // Rewrite the type operator and the C or C++ type or variable in terms of an
1672 // immediate. E.g. TYPE foo -> $$4
1673 unsigned Len = End.getPointer() - TypeLoc.getPointer();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001674 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, TypeLoc, Len, CVal));
Chad Rosier11c42f22012-10-26 18:04:20 +00001675
Jim Grosbach13760bd2015-05-30 01:25:56 +00001676 const MCExpr *Imm = MCConstantExpr::create(CVal, getContext());
Chad Rosierf3c04f62013-03-19 21:58:18 +00001677 return X86Operand::CreateImm(Imm, Start, End);
Chad Rosier11c42f22012-10-26 18:04:20 +00001678}
1679
David Blaikie960ea3f2014-06-08 16:18:35 +00001680std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001681 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001682 const AsmToken &Tok = Parser.getTok();
David Majnemeraa34d792013-08-27 21:56:17 +00001683 SMLoc Start, End;
Chad Rosier91c82662012-10-24 17:22:29 +00001684
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001685 // Offset, length, type and size operators.
1686 if (isParsingInlineAsm()) {
Chad Rosier99e54642013-04-19 17:32:29 +00001687 StringRef AsmTokStr = Tok.getString();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001688 if (AsmTokStr == "offset" || AsmTokStr == "OFFSET")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001689 return ParseIntelOffsetOfOperator();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001690 if (AsmTokStr == "length" || AsmTokStr == "LENGTH")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001691 return ParseIntelOperator(IOK_LENGTH);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001692 if (AsmTokStr == "size" || AsmTokStr == "SIZE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001693 return ParseIntelOperator(IOK_SIZE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001694 if (AsmTokStr == "type" || AsmTokStr == "TYPE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001695 return ParseIntelOperator(IOK_TYPE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001696 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001697
David Majnemeraa34d792013-08-27 21:56:17 +00001698 unsigned Size = getIntelMemOperandSize(Tok.getString());
1699 if (Size) {
1700 Parser.Lex(); // Eat operand size (e.g., byte, word).
1701 if (Tok.getString() != "PTR" && Tok.getString() != "ptr")
Reid Kleckner71ff3f22014-08-01 00:59:22 +00001702 return ErrorOperand(Tok.getLoc(), "Expected 'PTR' or 'ptr' token!");
David Majnemeraa34d792013-08-27 21:56:17 +00001703 Parser.Lex(); // Eat ptr.
1704 }
1705 Start = Tok.getLoc();
1706
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001707 // Immediate.
Chad Rosierbfb70992013-04-17 00:11:46 +00001708 if (getLexer().is(AsmToken::Integer) || getLexer().is(AsmToken::Minus) ||
Ehsan Akhgari4103da62014-07-04 19:13:05 +00001709 getLexer().is(AsmToken::Tilde) || getLexer().is(AsmToken::LParen)) {
Chad Rosierbfb70992013-04-17 00:11:46 +00001710 AsmToken StartTok = Tok;
1711 IntelExprStateMachine SM(/*Imm=*/0, /*StopOnLBrac=*/true,
1712 /*AddImmPrefix=*/false);
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001713 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001714 return nullptr;
Chad Rosierbfb70992013-04-17 00:11:46 +00001715
1716 int64_t Imm = SM.getImm();
1717 if (isParsingInlineAsm()) {
1718 unsigned Len = Tok.getLoc().getPointer() - Start.getPointer();
1719 if (StartTok.getString().size() == Len)
1720 // Just add a prefix if this wasn't a complex immediate expression.
Chad Rosierf3c04f62013-03-19 21:58:18 +00001721 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix, Start));
Chad Rosierbfb70992013-04-17 00:11:46 +00001722 else
1723 // Otherwise, rewrite the complex expression as a single immediate.
1724 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, Start, Len, Imm));
Devang Patel41b9dde2012-01-17 18:00:18 +00001725 }
Chad Rosierbfb70992013-04-17 00:11:46 +00001726
1727 if (getLexer().isNot(AsmToken::LBrac)) {
Kevin Enderby36eba252013-12-19 23:16:14 +00001728 // If a directional label (ie. 1f or 2b) was parsed above from
1729 // ParseIntelExpression() then SM.getSym() was set to a pointer to
1730 // to the MCExpr with the directional local symbol and this is a
1731 // memory operand not an immediate operand.
1732 if (SM.getSym())
Craig Topper055845f2015-01-02 07:02:25 +00001733 return X86Operand::CreateMem(getPointerWidth(), SM.getSym(), Start, End,
1734 Size);
Kevin Enderby36eba252013-12-19 23:16:14 +00001735
Jim Grosbach13760bd2015-05-30 01:25:56 +00001736 const MCExpr *ImmExpr = MCConstantExpr::create(Imm, getContext());
Chad Rosierbfb70992013-04-17 00:11:46 +00001737 return X86Operand::CreateImm(ImmExpr, Start, End);
1738 }
1739
1740 // Only positive immediates are valid.
1741 if (Imm < 0)
1742 return ErrorOperand(Start, "expected a positive immediate displacement "
1743 "before bracketed expr.");
1744
1745 // Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
David Majnemeraa34d792013-08-27 21:56:17 +00001746 return ParseIntelMemOperand(Imm, Start, Size);
Devang Patel41b9dde2012-01-17 18:00:18 +00001747 }
1748
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001749 // rounding mode token
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001750 if (STI.getFeatureBits()[X86::FeatureAVX512] &&
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001751 getLexer().is(AsmToken::LCurly))
1752 return ParseRoundingModeOp(Start, End);
1753
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001754 // Register.
Devang Patelce6a2ca2012-01-20 22:32:05 +00001755 unsigned RegNo = 0;
1756 if (!ParseRegister(RegNo, Start, End)) {
Chad Rosier0397edd2012-10-04 23:59:38 +00001757 // If this is a segment register followed by a ':', then this is the start
David Majnemeraa34d792013-08-27 21:56:17 +00001758 // of a segment override, otherwise this is a normal register reference.
Chad Rosier0397edd2012-10-04 23:59:38 +00001759 if (getLexer().isNot(AsmToken::Colon))
Jordan Rosee8f1eae2013-01-07 19:00:49 +00001760 return X86Operand::CreateReg(RegNo, Start, End);
Chad Rosier0397edd2012-10-04 23:59:38 +00001761
David Majnemeraa34d792013-08-27 21:56:17 +00001762 return ParseIntelSegmentOverride(/*SegReg=*/RegNo, Start, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001763 }
1764
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001765 // Memory operand.
David Majnemeraa34d792013-08-27 21:56:17 +00001766 return ParseIntelMemOperand(/*Disp=*/0, Start, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001767}
1768
David Blaikie960ea3f2014-06-08 16:18:35 +00001769std::unique_ptr<X86Operand> X86AsmParser::ParseATTOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001770 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001771 switch (getLexer().getKind()) {
1772 default:
Chris Lattnerb9270732010-04-17 18:56:34 +00001773 // Parse a memory operand with no segment register.
1774 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattnercc2ad082010-01-15 18:27:19 +00001775 case AsmToken::Percent: {
Chris Lattnerb9270732010-04-17 18:56:34 +00001776 // Read the register.
Chris Lattnercc2ad082010-01-15 18:27:19 +00001777 unsigned RegNo;
Chris Lattner0c2538f2010-01-15 18:51:29 +00001778 SMLoc Start, End;
Craig Topper062a2ba2014-04-25 05:30:21 +00001779 if (ParseRegister(RegNo, Start, End)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001780 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001781 Error(Start, "%eiz and %riz can only be used as index registers",
1782 SMRange(Start, End));
Craig Topper062a2ba2014-04-25 05:30:21 +00001783 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001784 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001785
Chris Lattnerb9270732010-04-17 18:56:34 +00001786 // If this is a segment register followed by a ':', then this is the start
1787 // of a memory reference, otherwise this is a normal register reference.
1788 if (getLexer().isNot(AsmToken::Colon))
1789 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001790
Reid Kleckner0c5da972014-07-31 23:03:22 +00001791 if (!X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo))
1792 return ErrorOperand(Start, "invalid segment register");
1793
Chris Lattnerb9270732010-04-17 18:56:34 +00001794 getParser().Lex(); // Eat the colon.
1795 return ParseMemOperand(RegNo, Start);
Chris Lattnercc2ad082010-01-15 18:27:19 +00001796 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001797 case AsmToken::Dollar: {
1798 // $42 -> immediate.
Sean Callanan936b0d32010-01-19 21:44:56 +00001799 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callanana83fd7d2010-01-19 20:27:46 +00001800 Parser.Lex();
Daniel Dunbar73da11e2009-08-31 08:08:38 +00001801 const MCExpr *Val;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001802 if (getParser().parseExpression(Val, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001803 return nullptr;
Chris Lattner528d00b2010-01-15 19:28:38 +00001804 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001805 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001806 case AsmToken::LCurly:{
1807 SMLoc Start = Parser.getTok().getLoc(), End;
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001808 if (STI.getFeatureBits()[X86::FeatureAVX512])
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001809 return ParseRoundingModeOp(Start, End);
1810 return ErrorOperand(Start, "unknown token in expression");
1811 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001812 }
Daniel Dunbar2b11c7d2009-07-20 20:01:54 +00001813}
1814
David Blaikie960ea3f2014-06-08 16:18:35 +00001815bool X86AsmParser::HandleAVX512Operand(OperandVector &Operands,
1816 const MCParsedAsmOperand &Op) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001817 MCAsmParser &Parser = getParser();
Michael Kupersteindb0712f2015-05-26 10:47:10 +00001818 if(STI.getFeatureBits()[X86::FeatureAVX512]) {
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001819 if (getLexer().is(AsmToken::LCurly)) {
1820 // Eat "{" and mark the current place.
1821 const SMLoc consumedToken = consumeToken();
1822 // Distinguish {1to<NUM>} from {%k<NUM>}.
1823 if(getLexer().is(AsmToken::Integer)) {
1824 // Parse memory broadcasting ({1to<NUM>}).
1825 if (getLexer().getTok().getIntVal() != 1)
1826 return !ErrorAndEatStatement(getLexer().getLoc(),
1827 "Expected 1to<NUM> at this point");
1828 Parser.Lex(); // Eat "1" of 1to8
1829 if (!getLexer().is(AsmToken::Identifier) ||
1830 !getLexer().getTok().getIdentifier().startswith("to"))
1831 return !ErrorAndEatStatement(getLexer().getLoc(),
1832 "Expected 1to<NUM> at this point");
1833 // Recognize only reasonable suffixes.
1834 const char *BroadcastPrimitive =
1835 StringSwitch<const char*>(getLexer().getTok().getIdentifier())
Robert Khasanovbfa01312014-07-21 14:54:21 +00001836 .Case("to2", "{1to2}")
1837 .Case("to4", "{1to4}")
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001838 .Case("to8", "{1to8}")
1839 .Case("to16", "{1to16}")
Craig Topper062a2ba2014-04-25 05:30:21 +00001840 .Default(nullptr);
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001841 if (!BroadcastPrimitive)
1842 return !ErrorAndEatStatement(getLexer().getLoc(),
1843 "Invalid memory broadcast primitive.");
1844 Parser.Lex(); // Eat "toN" of 1toN
1845 if (!getLexer().is(AsmToken::RCurly))
1846 return !ErrorAndEatStatement(getLexer().getLoc(),
1847 "Expected } at this point");
1848 Parser.Lex(); // Eat "}"
1849 Operands.push_back(X86Operand::CreateToken(BroadcastPrimitive,
1850 consumedToken));
1851 // No AVX512 specific primitives can pass
1852 // after memory broadcasting, so return.
1853 return true;
1854 } else {
1855 // Parse mask register {%k1}
1856 Operands.push_back(X86Operand::CreateToken("{", consumedToken));
David Blaikie960ea3f2014-06-08 16:18:35 +00001857 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
1858 Operands.push_back(std::move(Op));
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001859 if (!getLexer().is(AsmToken::RCurly))
1860 return !ErrorAndEatStatement(getLexer().getLoc(),
1861 "Expected } at this point");
1862 Operands.push_back(X86Operand::CreateToken("}", consumeToken()));
1863
1864 // Parse "zeroing non-masked" semantic {z}
1865 if (getLexer().is(AsmToken::LCurly)) {
1866 Operands.push_back(X86Operand::CreateToken("{z}", consumeToken()));
1867 if (!getLexer().is(AsmToken::Identifier) ||
1868 getLexer().getTok().getIdentifier() != "z")
1869 return !ErrorAndEatStatement(getLexer().getLoc(),
1870 "Expected z at this point");
1871 Parser.Lex(); // Eat the z
1872 if (!getLexer().is(AsmToken::RCurly))
1873 return !ErrorAndEatStatement(getLexer().getLoc(),
1874 "Expected } at this point");
1875 Parser.Lex(); // Eat the }
1876 }
1877 }
1878 }
1879 }
1880 }
1881 return true;
1882}
1883
Chris Lattnerb9270732010-04-17 18:56:34 +00001884/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
1885/// has already been parsed if present.
David Blaikie960ea3f2014-06-08 16:18:35 +00001886std::unique_ptr<X86Operand> X86AsmParser::ParseMemOperand(unsigned SegReg,
1887 SMLoc MemStart) {
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001888
Rafael Espindola961d4692014-11-11 05:18:41 +00001889 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001890 // We have to disambiguate a parenthesized expression "(4+5)" from the start
1891 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner807a3bc2010-01-24 01:07:33 +00001892 // only way to do this without lookahead is to eat the '(' and see what is
1893 // after it.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001894 const MCExpr *Disp = MCConstantExpr::create(0, getParser().getContext());
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001895 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattnere17df0b2010-01-15 19:39:23 +00001896 SMLoc ExprEnd;
Craig Topper062a2ba2014-04-25 05:30:21 +00001897 if (getParser().parseExpression(Disp, ExprEnd)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001898
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001899 // After parsing the base expression we could either have a parenthesized
1900 // memory address or not. If not, return now. If so, eat the (.
1901 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00001902 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001903 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00001904 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, ExprEnd);
1905 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1906 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001907 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001908
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001909 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00001910 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001911 } else {
1912 // Okay, we have a '('. We don't know if this is an expression or not, but
1913 // so we have to eat the ( to see beyond it.
Sean Callanan936b0d32010-01-19 21:44:56 +00001914 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00001915 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001916
Kevin Enderby7d912182009-09-03 17:15:07 +00001917 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001918 // Nothing to do here, fall into the code below with the '(' part of the
1919 // memory operand consumed.
1920 } else {
Chris Lattner528d00b2010-01-15 19:28:38 +00001921 SMLoc ExprEnd;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001922
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001923 // It must be an parenthesized expression, parse it now.
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001924 if (getParser().parseParenExpression(Disp, ExprEnd))
Craig Topper062a2ba2014-04-25 05:30:21 +00001925 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001926
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001927 // After parsing the base expression we could either have a parenthesized
1928 // memory address or not. If not, return now. If so, eat the (.
1929 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00001930 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001931 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00001932 return X86Operand::CreateMem(getPointerWidth(), Disp, LParenLoc,
1933 ExprEnd);
1934 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1935 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001936 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001937
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001938 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00001939 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001940 }
1941 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001942
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001943 // If we reached here, then we just ate the ( of the memory operand. Process
1944 // the rest of the memory operand.
Daniel Dunbar3ebf8482009-07-31 20:53:16 +00001945 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
David Woodhouse6dbda442014-01-08 12:58:28 +00001946 SMLoc IndexLoc, BaseLoc;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001947
Chris Lattner0c2538f2010-01-15 18:51:29 +00001948 if (getLexer().is(AsmToken::Percent)) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001949 SMLoc StartLoc, EndLoc;
David Woodhouse6dbda442014-01-08 12:58:28 +00001950 BaseLoc = Parser.getTok().getLoc();
Craig Topper062a2ba2014-04-25 05:30:21 +00001951 if (ParseRegister(BaseReg, StartLoc, EndLoc)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001952 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001953 Error(StartLoc, "eiz and riz can only be used as index registers",
1954 SMRange(StartLoc, EndLoc));
Craig Topper062a2ba2014-04-25 05:30:21 +00001955 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001956 }
Chris Lattner0c2538f2010-01-15 18:51:29 +00001957 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001958
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001959 if (getLexer().is(AsmToken::Comma)) {
Sean Callanana83fd7d2010-01-19 20:27:46 +00001960 Parser.Lex(); // Eat the comma.
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00001961 IndexLoc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001962
1963 // Following the comma we should have either an index register, or a scale
1964 // value. We don't support the later form, but we want to parse it
1965 // correctly.
1966 //
1967 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001968 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7d912182009-09-03 17:15:07 +00001969 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner0c2538f2010-01-15 18:51:29 +00001970 SMLoc L;
Craig Topper062a2ba2014-04-25 05:30:21 +00001971 if (ParseRegister(IndexReg, L, L)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001972
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001973 if (getLexer().isNot(AsmToken::RParen)) {
1974 // Parse the scale amount:
1975 // ::= ',' [scale-expression]
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001976 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00001977 Error(Parser.getTok().getLoc(),
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001978 "expected comma in scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00001979 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001980 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00001981 Parser.Lex(); // Eat the comma.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001982
1983 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00001984 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001985
1986 int64_t ScaleVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001987 if (getParser().parseAbsoluteExpression(ScaleVal)){
Kevin Enderbydeed5aa2012-03-09 22:24:10 +00001988 Error(Loc, "expected scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00001989 return nullptr;
Craig Topper6bf3ed42012-07-18 04:59:16 +00001990 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001991
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001992 // Validate the scale amount.
David Woodhouse6dbda442014-01-08 12:58:28 +00001993 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
1994 ScaleVal != 1) {
1995 Error(Loc, "scale factor in 16-bit address must be 1");
Craig Topper062a2ba2014-04-25 05:30:21 +00001996 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00001997 }
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001998 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){
1999 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
Craig Topper062a2ba2014-04-25 05:30:21 +00002000 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002001 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002002 Scale = (unsigned)ScaleVal;
2003 }
2004 }
2005 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002006 // A scale amount without an index is ignored.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002007 // index.
Sean Callanan936b0d32010-01-19 21:44:56 +00002008 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002009
2010 int64_t Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002011 if (getParser().parseAbsoluteExpression(Value))
Craig Topper062a2ba2014-04-25 05:30:21 +00002012 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002013
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002014 if (Value != 1)
2015 Warning(Loc, "scale factor without index register is ignored");
2016 Scale = 1;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002017 }
2018 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002019
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002020 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002021 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002022 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Craig Topper062a2ba2014-04-25 05:30:21 +00002023 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002024 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002025 SMLoc MemEnd = Parser.getTok().getEndLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00002026 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002027
David Woodhouse6dbda442014-01-08 12:58:28 +00002028 // Check for use of invalid 16-bit registers. Only BX/BP/SI/DI are allowed,
2029 // and then only in non-64-bit modes. Except for DX, which is a special case
2030 // because an unofficial form of in/out instructions uses it.
2031 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
2032 (is64BitMode() || (BaseReg != X86::BX && BaseReg != X86::BP &&
2033 BaseReg != X86::SI && BaseReg != X86::DI)) &&
2034 BaseReg != X86::DX) {
2035 Error(BaseLoc, "invalid 16-bit base register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002036 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002037 }
2038 if (BaseReg == 0 &&
2039 X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg)) {
2040 Error(IndexLoc, "16-bit memory operand may not include only index register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002041 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002042 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00002043
2044 StringRef ErrMsg;
2045 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
2046 Error(BaseLoc, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00002047 return nullptr;
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00002048 }
2049
Reid Klecknerb7e2f602014-07-31 23:26:35 +00002050 if (SegReg || BaseReg || IndexReg)
Craig Topper055845f2015-01-02 07:02:25 +00002051 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
2052 IndexReg, Scale, MemStart, MemEnd);
2053 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, MemEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002054}
2055
David Blaikie960ea3f2014-06-08 16:18:35 +00002056bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
2057 SMLoc NameLoc, OperandVector &Operands) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002058 MCAsmParser &Parser = getParser();
Chad Rosierf0e87202012-10-25 20:41:34 +00002059 InstInfo = &Info;
Chris Lattner2cb092d2010-10-30 19:23:13 +00002060 StringRef PatchedName = Name;
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002061
Chris Lattner7e8a99b2010-11-28 20:23:50 +00002062 // FIXME: Hack to recognize setneb as setne.
2063 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
2064 PatchedName != "setb" && PatchedName != "setnb")
2065 PatchedName = PatchedName.substr(0, Name.size()-1);
Chad Rosier51afe632012-06-27 22:34:28 +00002066
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002067 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
Bruno Cardoso Lopes3183dd52010-06-23 21:10:57 +00002068 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002069 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
2070 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Craig Toppera0a603e2012-03-29 07:11:23 +00002071 bool IsVCMP = PatchedName[0] == 'v';
Craig Topper78c424d2015-02-15 07:13:48 +00002072 unsigned CCIdx = IsVCMP ? 4 : 3;
2073 unsigned ComparisonCode = StringSwitch<unsigned>(
2074 PatchedName.slice(CCIdx, PatchedName.size() - 2))
Craig Toppera0a603e2012-03-29 07:11:23 +00002075 .Case("eq", 0x00)
2076 .Case("lt", 0x01)
2077 .Case("le", 0x02)
2078 .Case("unord", 0x03)
2079 .Case("neq", 0x04)
2080 .Case("nlt", 0x05)
2081 .Case("nle", 0x06)
2082 .Case("ord", 0x07)
2083 /* AVX only from here */
2084 .Case("eq_uq", 0x08)
2085 .Case("nge", 0x09)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002086 .Case("ngt", 0x0A)
2087 .Case("false", 0x0B)
2088 .Case("neq_oq", 0x0C)
2089 .Case("ge", 0x0D)
2090 .Case("gt", 0x0E)
2091 .Case("true", 0x0F)
2092 .Case("eq_os", 0x10)
2093 .Case("lt_oq", 0x11)
2094 .Case("le_oq", 0x12)
2095 .Case("unord_s", 0x13)
2096 .Case("neq_us", 0x14)
2097 .Case("nlt_uq", 0x15)
2098 .Case("nle_uq", 0x16)
2099 .Case("ord_s", 0x17)
2100 .Case("eq_us", 0x18)
2101 .Case("nge_uq", 0x19)
2102 .Case("ngt_uq", 0x1A)
2103 .Case("false_os", 0x1B)
2104 .Case("neq_os", 0x1C)
2105 .Case("ge_oq", 0x1D)
2106 .Case("gt_oq", 0x1E)
2107 .Case("true_us", 0x1F)
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002108 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002109 if (ComparisonCode != ~0U && (IsVCMP || ComparisonCode < 8)) {
Craig Topper43860832015-02-14 21:54:03 +00002110
Craig Topper78c424d2015-02-15 07:13:48 +00002111 Operands.push_back(X86Operand::CreateToken(PatchedName.slice(0, CCIdx),
Craig Topper43860832015-02-14 21:54:03 +00002112 NameLoc));
2113
Jim Grosbach13760bd2015-05-30 01:25:56 +00002114 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper43860832015-02-14 21:54:03 +00002115 getParser().getContext());
2116 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2117
2118 PatchedName = PatchedName.substr(PatchedName.size() - 2);
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002119 }
2120 }
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +00002121
Craig Topper78c424d2015-02-15 07:13:48 +00002122 // FIXME: Hack to recognize vpcmp<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2123 if (PatchedName.startswith("vpcmp") &&
2124 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2125 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
2126 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2127 unsigned ComparisonCode = StringSwitch<unsigned>(
2128 PatchedName.slice(5, PatchedName.size() - CCIdx))
2129 .Case("eq", 0x0) // Only allowed on unsigned. Checked below.
2130 .Case("lt", 0x1)
2131 .Case("le", 0x2)
2132 //.Case("false", 0x3) // Not a documented alias.
2133 .Case("neq", 0x4)
2134 .Case("nlt", 0x5)
2135 .Case("nle", 0x6)
2136 //.Case("true", 0x7) // Not a documented alias.
2137 .Default(~0U);
2138 if (ComparisonCode != ~0U && (ComparisonCode != 0 || CCIdx == 2)) {
2139 Operands.push_back(X86Operand::CreateToken("vpcmp", NameLoc));
2140
Jim Grosbach13760bd2015-05-30 01:25:56 +00002141 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper78c424d2015-02-15 07:13:48 +00002142 getParser().getContext());
2143 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2144
2145 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
2146 }
2147 }
2148
Craig Topper916708f2015-02-13 07:42:25 +00002149 // FIXME: Hack to recognize vpcom<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2150 if (PatchedName.startswith("vpcom") &&
2151 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2152 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
Craig Topper78c424d2015-02-15 07:13:48 +00002153 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2154 unsigned ComparisonCode = StringSwitch<unsigned>(
2155 PatchedName.slice(5, PatchedName.size() - CCIdx))
Craig Topper916708f2015-02-13 07:42:25 +00002156 .Case("lt", 0x0)
2157 .Case("le", 0x1)
2158 .Case("gt", 0x2)
2159 .Case("ge", 0x3)
2160 .Case("eq", 0x4)
2161 .Case("neq", 0x5)
2162 .Case("false", 0x6)
2163 .Case("true", 0x7)
2164 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002165 if (ComparisonCode != ~0U) {
Craig Topper916708f2015-02-13 07:42:25 +00002166 Operands.push_back(X86Operand::CreateToken("vpcom", NameLoc));
2167
Jim Grosbach13760bd2015-05-30 01:25:56 +00002168 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper916708f2015-02-13 07:42:25 +00002169 getParser().getContext());
2170 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2171
Craig Topper78c424d2015-02-15 07:13:48 +00002172 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
Craig Topper916708f2015-02-13 07:42:25 +00002173 }
2174 }
2175
Daniel Dunbar3e0c9792010-02-10 21:19:28 +00002176 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002177
Chris Lattner086a83a2010-09-08 05:17:37 +00002178 // Determine whether this is an instruction prefix.
2179 bool isPrefix =
Chris Lattner2cb092d2010-10-30 19:23:13 +00002180 Name == "lock" || Name == "rep" ||
2181 Name == "repe" || Name == "repz" ||
Rafael Espindolaf6c05b12010-11-23 11:23:24 +00002182 Name == "repne" || Name == "repnz" ||
Rafael Espindolaeab08002010-11-27 20:29:45 +00002183 Name == "rex64" || Name == "data16";
Michael J. Spencer530ce852010-10-09 11:00:50 +00002184
2185
Chris Lattner086a83a2010-09-08 05:17:37 +00002186 // This does the actual operand parsing. Don't parse any more if we have a
2187 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
2188 // just want to parse the "lock" as the first instruction and the "incl" as
2189 // the next one.
2190 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar71527c12009-08-11 05:00:25 +00002191
2192 // Parse '*' modifier.
Alp Tokera5b88a52013-12-02 16:06:06 +00002193 if (getLexer().is(AsmToken::Star))
2194 Operands.push_back(X86Operand::CreateToken("*", consumeToken()));
Daniel Dunbar71527c12009-08-11 05:00:25 +00002195
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002196 // Read the operands.
2197 while(1) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002198 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
2199 Operands.push_back(std::move(Op));
2200 if (!HandleAVX512Operand(Operands, *Operands.back()))
Elena Demikhovsky89529742013-09-12 08:55:00 +00002201 return true;
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002202 } else {
2203 Parser.eatToEndOfStatement();
2204 return true;
Elena Demikhovsky89529742013-09-12 08:55:00 +00002205 }
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002206 // check for comma and eat it
2207 if (getLexer().is(AsmToken::Comma))
2208 Parser.Lex();
2209 else
2210 break;
2211 }
Elena Demikhovsky89529742013-09-12 08:55:00 +00002212
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002213 if (getLexer().isNot(AsmToken::EndOfStatement))
Elena Demikhovsky9f09b3e2014-02-20 07:00:10 +00002214 return ErrorAndEatStatement(getLexer().getLoc(),
2215 "unexpected token in argument list");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002216 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002217
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002218 // Consume the EndOfStatement or the prefix separator Slash
Elena Demikhovsky9f09b3e2014-02-20 07:00:10 +00002219 if (getLexer().is(AsmToken::EndOfStatement) ||
2220 (isPrefix && getLexer().is(AsmToken::Slash)))
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002221 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002222
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002223 // This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
2224 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
2225 // documented form in various unofficial manuals, so a lot of code uses it.
2226 if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
2227 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002228 X86Operand &Op = (X86Operand &)*Operands.back();
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002229 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2230 isa<MCConstantExpr>(Op.Mem.Disp) &&
2231 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2232 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2233 SMLoc Loc = Op.getEndLoc();
2234 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002235 }
2236 }
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002237 // Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
2238 if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
2239 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002240 X86Operand &Op = (X86Operand &)*Operands[1];
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002241 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2242 isa<MCConstantExpr>(Op.Mem.Disp) &&
2243 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2244 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2245 SMLoc Loc = Op.getEndLoc();
David Blaikie960ea3f2014-06-08 16:18:35 +00002246 Operands[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002247 }
2248 }
David Woodhouse4ce66062014-01-22 15:08:55 +00002249
2250 // Append default arguments to "ins[bwld]"
2251 if (Name.startswith("ins") && Operands.size() == 1 &&
2252 (Name == "insb" || Name == "insw" || Name == "insl" ||
2253 Name == "insd" )) {
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002254 AddDefaultSrcDestOperands(Operands,
2255 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc),
2256 DefaultMemDIOperand(NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002257 }
2258
David Woodhousec472b812014-01-22 15:08:49 +00002259 // Append default arguments to "outs[bwld]"
2260 if (Name.startswith("outs") && Operands.size() == 1 &&
2261 (Name == "outsb" || Name == "outsw" || Name == "outsl" ||
2262 Name == "outsd" )) {
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002263 AddDefaultSrcDestOperands(Operands,
2264 DefaultMemSIOperand(NameLoc),
2265 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002266 }
2267
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002268 // Transform "lods[bwlq]" into "lods[bwlq] ($SIREG)" for appropriate
2269 // values of $SIREG according to the mode. It would be nice if this
2270 // could be achieved with InstAlias in the tables.
2271 if (Name.startswith("lods") && Operands.size() == 1 &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002272 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002273 Name == "lodsl" || Name == "lodsd" || Name == "lodsq"))
2274 Operands.push_back(DefaultMemSIOperand(NameLoc));
2275
David Woodhouseb33c2ef2014-01-22 15:08:21 +00002276 // Transform "stos[bwlq]" into "stos[bwlq] ($DIREG)" for appropriate
2277 // values of $DIREG according to the mode. It would be nice if this
2278 // could be achieved with InstAlias in the tables.
2279 if (Name.startswith("stos") && Operands.size() == 1 &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002280 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
David Woodhouseb33c2ef2014-01-22 15:08:21 +00002281 Name == "stosl" || Name == "stosd" || Name == "stosq"))
2282 Operands.push_back(DefaultMemDIOperand(NameLoc));
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002283
David Woodhouse20fe4802014-01-22 15:08:27 +00002284 // Transform "scas[bwlq]" into "scas[bwlq] ($DIREG)" for appropriate
2285 // values of $DIREG according to the mode. It would be nice if this
2286 // could be achieved with InstAlias in the tables.
2287 if (Name.startswith("scas") && Operands.size() == 1 &&
2288 (Name == "scas" || Name == "scasb" || Name == "scasw" ||
2289 Name == "scasl" || Name == "scasd" || Name == "scasq"))
2290 Operands.push_back(DefaultMemDIOperand(NameLoc));
2291
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002292 // Add default SI and DI operands to "cmps[bwlq]".
2293 if (Name.startswith("cmps") &&
2294 (Name == "cmps" || Name == "cmpsb" || Name == "cmpsw" ||
2295 Name == "cmpsl" || Name == "cmpsd" || Name == "cmpsq")) {
2296 if (Operands.size() == 1) {
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002297 AddDefaultSrcDestOperands(Operands,
2298 DefaultMemDIOperand(NameLoc),
2299 DefaultMemSIOperand(NameLoc));
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002300 } else if (Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002301 X86Operand &Op = (X86Operand &)*Operands[1];
2302 X86Operand &Op2 = (X86Operand &)*Operands[2];
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002303 if (!doSrcDstMatch(Op, Op2))
2304 return Error(Op.getStartLoc(),
2305 "mismatching source and destination index registers");
2306 }
2307 }
2308
David Woodhouse6f417de2014-01-22 15:08:42 +00002309 // Add default SI and DI operands to "movs[bwlq]".
2310 if ((Name.startswith("movs") &&
2311 (Name == "movs" || Name == "movsb" || Name == "movsw" ||
2312 Name == "movsl" || Name == "movsd" || Name == "movsq")) ||
2313 (Name.startswith("smov") &&
2314 (Name == "smov" || Name == "smovb" || Name == "smovw" ||
2315 Name == "smovl" || Name == "smovd" || Name == "smovq"))) {
2316 if (Operands.size() == 1) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002317 if (Name == "movsd")
David Woodhouse6f417de2014-01-22 15:08:42 +00002318 Operands.back() = X86Operand::CreateToken("movsl", NameLoc);
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002319 AddDefaultSrcDestOperands(Operands,
2320 DefaultMemSIOperand(NameLoc),
2321 DefaultMemDIOperand(NameLoc));
David Woodhouse6f417de2014-01-22 15:08:42 +00002322 } else if (Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002323 X86Operand &Op = (X86Operand &)*Operands[1];
2324 X86Operand &Op2 = (X86Operand &)*Operands[2];
David Woodhouse6f417de2014-01-22 15:08:42 +00002325 if (!doSrcDstMatch(Op, Op2))
2326 return Error(Op.getStartLoc(),
2327 "mismatching source and destination index registers");
2328 }
2329 }
2330
Chris Lattner4bd21712010-09-15 04:33:27 +00002331 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattner30561ab2010-09-11 16:32:12 +00002332 // "shift <op>".
Daniel Dunbar18fc3442010-03-13 00:47:29 +00002333 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner64f91b92010-11-06 21:23:40 +00002334 Name.startswith("shl") || Name.startswith("sal") ||
2335 Name.startswith("rcl") || Name.startswith("rcr") ||
2336 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002337 Operands.size() == 3) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002338 if (isParsingIntelSyntax()) {
Devang Patela410ed32012-01-24 21:43:36 +00002339 // Intel syntax
David Blaikie960ea3f2014-06-08 16:18:35 +00002340 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[2]);
2341 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2342 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002343 Operands.pop_back();
Devang Patela410ed32012-01-24 21:43:36 +00002344 } else {
David Blaikie960ea3f2014-06-08 16:18:35 +00002345 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
2346 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2347 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002348 Operands.erase(Operands.begin() + 1);
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002349 }
Daniel Dunbarfbd12cc2010-03-20 22:36:38 +00002350 }
Chad Rosier51afe632012-06-27 22:34:28 +00002351
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002352 // Transforms "int $3" into "int3" as a size optimization. We can't write an
2353 // instalias with an immediate operand yet.
2354 if (Name == "int" && Operands.size() == 2) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002355 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
Duncan P. N. Exon Smithd5313222015-07-23 19:27:07 +00002356 if (Op1.isImm())
2357 if (auto *CE = dyn_cast<MCConstantExpr>(Op1.getImm()))
2358 if (CE->getValue() == 3) {
2359 Operands.erase(Operands.begin() + 1);
2360 static_cast<X86Operand &>(*Operands[0]).setTokenValue("int3");
2361 }
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002362 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002363
Chris Lattnerf29c0b62010-01-14 22:21:20 +00002364 return false;
Daniel Dunbar3c2a8932009-07-20 18:55:04 +00002365}
2366
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002367static bool convertToSExti8(MCInst &Inst, unsigned Opcode, unsigned Reg,
2368 bool isCmp) {
2369 MCInst TmpInst;
2370 TmpInst.setOpcode(Opcode);
2371 if (!isCmp)
Jim Grosbache9119e42015-05-13 18:37:00 +00002372 TmpInst.addOperand(MCOperand::createReg(Reg));
2373 TmpInst.addOperand(MCOperand::createReg(Reg));
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002374 TmpInst.addOperand(Inst.getOperand(0));
2375 Inst = TmpInst;
2376 return true;
2377}
2378
2379static bool convert16i16to16ri8(MCInst &Inst, unsigned Opcode,
2380 bool isCmp = false) {
2381 if (!Inst.getOperand(0).isImm() ||
2382 !isImmSExti16i8Value(Inst.getOperand(0).getImm()))
2383 return false;
2384
2385 return convertToSExti8(Inst, Opcode, X86::AX, isCmp);
2386}
2387
2388static bool convert32i32to32ri8(MCInst &Inst, unsigned Opcode,
2389 bool isCmp = false) {
2390 if (!Inst.getOperand(0).isImm() ||
2391 !isImmSExti32i8Value(Inst.getOperand(0).getImm()))
2392 return false;
2393
2394 return convertToSExti8(Inst, Opcode, X86::EAX, isCmp);
2395}
2396
2397static bool convert64i32to64ri8(MCInst &Inst, unsigned Opcode,
2398 bool isCmp = false) {
2399 if (!Inst.getOperand(0).isImm() ||
2400 !isImmSExti64i8Value(Inst.getOperand(0).getImm()))
2401 return false;
2402
2403 return convertToSExti8(Inst, Opcode, X86::RAX, isCmp);
2404}
2405
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002406bool X86AsmParser::validateInstruction(MCInst &Inst, const OperandVector &Ops) {
2407 switch (Inst.getOpcode()) {
2408 default: return true;
2409 case X86::INT:
David Majnemer7efc6132015-01-14 06:14:36 +00002410 X86Operand &Op = static_cast<X86Operand &>(*Ops[1]);
2411 assert(Op.isImm() && "expected immediate");
2412 int64_t Res;
Jim Grosbach13760bd2015-05-30 01:25:56 +00002413 if (!Op.getImm()->evaluateAsAbsolute(Res) || Res > 255) {
David Majnemer7efc6132015-01-14 06:14:36 +00002414 Error(Op.getStartLoc(), "interrupt vector must be in range [0-255]");
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002415 return false;
2416 }
2417 return true;
2418 }
2419 llvm_unreachable("handle the instruction appropriately");
2420}
2421
David Blaikie960ea3f2014-06-08 16:18:35 +00002422bool X86AsmParser::processInstruction(MCInst &Inst, const OperandVector &Ops) {
Devang Patelde47cce2012-01-18 22:42:29 +00002423 switch (Inst.getOpcode()) {
2424 default: return false;
Craig Topper7e9a1cb2013-03-18 02:53:34 +00002425 case X86::AND16i16: return convert16i16to16ri8(Inst, X86::AND16ri8);
2426 case X86::AND32i32: return convert32i32to32ri8(Inst, X86::AND32ri8);
2427 case X86::AND64i32: return convert64i32to64ri8(Inst, X86::AND64ri8);
2428 case X86::XOR16i16: return convert16i16to16ri8(Inst, X86::XOR16ri8);
2429 case X86::XOR32i32: return convert32i32to32ri8(Inst, X86::XOR32ri8);
2430 case X86::XOR64i32: return convert64i32to64ri8(Inst, X86::XOR64ri8);
2431 case X86::OR16i16: return convert16i16to16ri8(Inst, X86::OR16ri8);
2432 case X86::OR32i32: return convert32i32to32ri8(Inst, X86::OR32ri8);
2433 case X86::OR64i32: return convert64i32to64ri8(Inst, X86::OR64ri8);
2434 case X86::CMP16i16: return convert16i16to16ri8(Inst, X86::CMP16ri8, true);
2435 case X86::CMP32i32: return convert32i32to32ri8(Inst, X86::CMP32ri8, true);
2436 case X86::CMP64i32: return convert64i32to64ri8(Inst, X86::CMP64ri8, true);
2437 case X86::ADD16i16: return convert16i16to16ri8(Inst, X86::ADD16ri8);
2438 case X86::ADD32i32: return convert32i32to32ri8(Inst, X86::ADD32ri8);
2439 case X86::ADD64i32: return convert64i32to64ri8(Inst, X86::ADD64ri8);
2440 case X86::SUB16i16: return convert16i16to16ri8(Inst, X86::SUB16ri8);
2441 case X86::SUB32i32: return convert32i32to32ri8(Inst, X86::SUB32ri8);
2442 case X86::SUB64i32: return convert64i32to64ri8(Inst, X86::SUB64ri8);
Craig Topper0498b882013-03-18 03:34:55 +00002443 case X86::ADC16i16: return convert16i16to16ri8(Inst, X86::ADC16ri8);
2444 case X86::ADC32i32: return convert32i32to32ri8(Inst, X86::ADC32ri8);
2445 case X86::ADC64i32: return convert64i32to64ri8(Inst, X86::ADC64ri8);
2446 case X86::SBB16i16: return convert16i16to16ri8(Inst, X86::SBB16ri8);
2447 case X86::SBB32i32: return convert32i32to32ri8(Inst, X86::SBB32ri8);
2448 case X86::SBB64i32: return convert64i32to64ri8(Inst, X86::SBB64ri8);
Craig Toppera0e07352013-10-07 05:42:48 +00002449 case X86::VMOVAPDrr:
2450 case X86::VMOVAPDYrr:
2451 case X86::VMOVAPSrr:
2452 case X86::VMOVAPSYrr:
2453 case X86::VMOVDQArr:
2454 case X86::VMOVDQAYrr:
2455 case X86::VMOVDQUrr:
2456 case X86::VMOVDQUYrr:
2457 case X86::VMOVUPDrr:
2458 case X86::VMOVUPDYrr:
2459 case X86::VMOVUPSrr:
2460 case X86::VMOVUPSYrr: {
2461 if (X86II::isX86_64ExtendedReg(Inst.getOperand(0).getReg()) ||
2462 !X86II::isX86_64ExtendedReg(Inst.getOperand(1).getReg()))
2463 return false;
2464
2465 unsigned NewOpc;
2466 switch (Inst.getOpcode()) {
2467 default: llvm_unreachable("Invalid opcode");
2468 case X86::VMOVAPDrr: NewOpc = X86::VMOVAPDrr_REV; break;
2469 case X86::VMOVAPDYrr: NewOpc = X86::VMOVAPDYrr_REV; break;
2470 case X86::VMOVAPSrr: NewOpc = X86::VMOVAPSrr_REV; break;
2471 case X86::VMOVAPSYrr: NewOpc = X86::VMOVAPSYrr_REV; break;
2472 case X86::VMOVDQArr: NewOpc = X86::VMOVDQArr_REV; break;
2473 case X86::VMOVDQAYrr: NewOpc = X86::VMOVDQAYrr_REV; break;
2474 case X86::VMOVDQUrr: NewOpc = X86::VMOVDQUrr_REV; break;
2475 case X86::VMOVDQUYrr: NewOpc = X86::VMOVDQUYrr_REV; break;
2476 case X86::VMOVUPDrr: NewOpc = X86::VMOVUPDrr_REV; break;
2477 case X86::VMOVUPDYrr: NewOpc = X86::VMOVUPDYrr_REV; break;
2478 case X86::VMOVUPSrr: NewOpc = X86::VMOVUPSrr_REV; break;
2479 case X86::VMOVUPSYrr: NewOpc = X86::VMOVUPSYrr_REV; break;
2480 }
2481 Inst.setOpcode(NewOpc);
2482 return true;
2483 }
2484 case X86::VMOVSDrr:
2485 case X86::VMOVSSrr: {
2486 if (X86II::isX86_64ExtendedReg(Inst.getOperand(0).getReg()) ||
2487 !X86II::isX86_64ExtendedReg(Inst.getOperand(2).getReg()))
2488 return false;
2489 unsigned NewOpc;
2490 switch (Inst.getOpcode()) {
2491 default: llvm_unreachable("Invalid opcode");
2492 case X86::VMOVSDrr: NewOpc = X86::VMOVSDrr_REV; break;
2493 case X86::VMOVSSrr: NewOpc = X86::VMOVSSrr_REV; break;
2494 }
2495 Inst.setOpcode(NewOpc);
2496 return true;
2497 }
Devang Patelde47cce2012-01-18 22:42:29 +00002498 }
Devang Patelde47cce2012-01-18 22:42:29 +00002499}
2500
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002501static const char *getSubtargetFeatureName(uint64_t Val);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002502
David Blaikie960ea3f2014-06-08 16:18:35 +00002503void X86AsmParser::EmitInstruction(MCInst &Inst, OperandVector &Operands,
2504 MCStreamer &Out) {
Evgeniy Stepanov77ad8662014-07-31 09:11:04 +00002505 Instrumentation->InstrumentAndEmitInstruction(Inst, Operands, getContext(),
2506 MII, Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002507}
2508
David Blaikie960ea3f2014-06-08 16:18:35 +00002509bool X86AsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
2510 OperandVector &Operands,
Tim Northover26bb14e2014-08-18 11:49:42 +00002511 MCStreamer &Out, uint64_t &ErrorInfo,
David Blaikie960ea3f2014-06-08 16:18:35 +00002512 bool MatchingInlineAsm) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002513 if (isParsingIntelSyntax())
2514 return MatchAndEmitIntelInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002515 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002516 return MatchAndEmitATTInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002517 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002518}
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002519
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002520void X86AsmParser::MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op,
2521 OperandVector &Operands, MCStreamer &Out,
2522 bool MatchingInlineAsm) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002523 // FIXME: This should be replaced with a real .td file alias mechanism.
Chad Rosier3b1336c2012-08-28 23:57:47 +00002524 // Also, MatchInstructionImpl should actually *do* the EmitInstruction
Chris Lattner4869d342010-11-06 19:57:21 +00002525 // call.
Reid Klecknerb1f2d2f2014-07-31 00:07:33 +00002526 const char *Repl = StringSwitch<const char *>(Op.getToken())
2527 .Case("finit", "fninit")
2528 .Case("fsave", "fnsave")
2529 .Case("fstcw", "fnstcw")
2530 .Case("fstcww", "fnstcw")
2531 .Case("fstenv", "fnstenv")
2532 .Case("fstsw", "fnstsw")
2533 .Case("fstsww", "fnstsw")
2534 .Case("fclex", "fnclex")
2535 .Default(nullptr);
2536 if (Repl) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002537 MCInst Inst;
2538 Inst.setOpcode(X86::WAIT);
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002539 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002540 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002541 EmitInstruction(Inst, Operands, Out);
Chris Lattneradc0dbe2010-09-30 16:39:29 +00002542 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattnera63292a2010-09-29 01:50:45 +00002543 }
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002544}
2545
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002546bool X86AsmParser::ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002547 bool MatchingInlineAsm) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002548 assert(ErrorInfo && "Unknown missing feature!");
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002549 ArrayRef<SMRange> EmptyRanges = None;
2550 SmallString<126> Msg;
2551 raw_svector_ostream OS(Msg);
2552 OS << "instruction requires:";
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002553 uint64_t Mask = 1;
2554 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
2555 if (ErrorInfo & Mask)
2556 OS << ' ' << getSubtargetFeatureName(ErrorInfo & Mask);
2557 Mask <<= 1;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002558 }
2559 return Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
2560}
2561
2562bool X86AsmParser::MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
2563 OperandVector &Operands,
2564 MCStreamer &Out,
2565 uint64_t &ErrorInfo,
2566 bool MatchingInlineAsm) {
2567 assert(!Operands.empty() && "Unexpect empty operand list!");
2568 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2569 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
2570 ArrayRef<SMRange> EmptyRanges = None;
2571
2572 // First, handle aliases that expand to multiple instructions.
2573 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002574
Chris Lattner628fbec2010-09-06 21:54:15 +00002575 bool WasOriginallyInvalidOperand = false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002576 MCInst Inst;
Michael J. Spencer530ce852010-10-09 11:00:50 +00002577
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002578 // First, try a direct match.
Chad Rosier2f480a82012-10-12 22:53:36 +00002579 switch (MatchInstructionImpl(Operands, Inst,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002580 ErrorInfo, MatchingInlineAsm,
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002581 isParsingIntelSyntax())) {
Craig Topper589ceee2015-01-03 08:16:34 +00002582 default: llvm_unreachable("Unexpected match result!");
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002583 case Match_Success:
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002584 if (!validateInstruction(Inst, Operands))
2585 return true;
2586
Devang Patelde47cce2012-01-18 22:42:29 +00002587 // Some instructions need post-processing to, for example, tweak which
2588 // encoding is selected. Loop on it while changes happen so the
Chad Rosier51afe632012-06-27 22:34:28 +00002589 // individual transformations can chain off each other.
Chad Rosier4453e842012-10-12 23:09:25 +00002590 if (!MatchingInlineAsm)
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002591 while (processInstruction(Inst, Operands))
2592 ;
Devang Patelde47cce2012-01-18 22:42:29 +00002593
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002594 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002595 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002596 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002597 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002598 return false;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002599 case Match_MissingFeature:
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002600 return ErrorMissingFeature(IDLoc, ErrorInfo, MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002601 case Match_InvalidOperand:
2602 WasOriginallyInvalidOperand = true;
2603 break;
2604 case Match_MnemonicFail:
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002605 break;
2606 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002607
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002608 // FIXME: Ideally, we would only attempt suffix matches for things which are
2609 // valid prefixes, and we could just infer the right unambiguous
2610 // type. However, that requires substantially more matcher support than the
2611 // following hack.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002612
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002613 // Change the operand to point to a temporary token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002614 StringRef Base = Op.getToken();
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002615 SmallString<16> Tmp;
2616 Tmp += Base;
2617 Tmp += ' ';
Yaron Keren075759a2015-03-30 15:42:36 +00002618 Op.setTokenValue(Tmp);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002619
Chris Lattnerfab94132010-11-06 18:28:02 +00002620 // If this instruction starts with an 'f', then it is a floating point stack
2621 // instruction. These come in up to three forms for 32-bit, 64-bit, and
2622 // 80-bit floating point, which use the suffixes s,l,t respectively.
2623 //
2624 // Otherwise, we assume that this may be an integer instruction, which comes
2625 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
2626 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
Chad Rosier51afe632012-06-27 22:34:28 +00002627
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002628 // Check for the various suffix matches.
Tim Northover26bb14e2014-08-18 11:49:42 +00002629 uint64_t ErrorInfoIgnore;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002630 uint64_t ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002631 unsigned Match[4];
Chad Rosier51afe632012-06-27 22:34:28 +00002632
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002633 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I) {
2634 Tmp.back() = Suffixes[I];
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002635 Match[I] = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2636 MatchingInlineAsm, isParsingIntelSyntax());
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002637 // If this returned as a missing feature failure, remember that.
2638 if (Match[I] == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002639 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002640 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002641
2642 // Restore the old token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002643 Op.setTokenValue(Base);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002644
2645 // If exactly one matched, then we treat that as a successful match (and the
2646 // instruction will already have been filled in correctly, since the failing
2647 // matches won't have modified it).
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002648 unsigned NumSuccessfulMatches =
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002649 std::count(std::begin(Match), std::end(Match), Match_Success);
Chris Lattnerb44fd242010-09-29 01:42:58 +00002650 if (NumSuccessfulMatches == 1) {
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002651 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002652 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002653 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002654 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002655 return false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002656 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002657
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002658 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002659
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002660 // If we had multiple suffix matches, then identify this as an ambiguous
2661 // match.
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002662 if (NumSuccessfulMatches > 1) {
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002663 char MatchChars[4];
2664 unsigned NumMatches = 0;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002665 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I)
2666 if (Match[I] == Match_Success)
2667 MatchChars[NumMatches++] = Suffixes[I];
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002668
Alp Tokere69170a2014-06-26 22:52:05 +00002669 SmallString<126> Msg;
2670 raw_svector_ostream OS(Msg);
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002671 OS << "ambiguous instructions require an explicit suffix (could be ";
2672 for (unsigned i = 0; i != NumMatches; ++i) {
2673 if (i != 0)
2674 OS << ", ";
2675 if (i + 1 == NumMatches)
2676 OS << "or ";
2677 OS << "'" << Base << MatchChars[i] << "'";
2678 }
2679 OS << ")";
Chad Rosier4453e842012-10-12 23:09:25 +00002680 Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002681 return true;
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002682 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002683
Chris Lattner628fbec2010-09-06 21:54:15 +00002684 // Okay, we know that none of the variants matched successfully.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002685
Chris Lattner628fbec2010-09-06 21:54:15 +00002686 // If all of the instructions reported an invalid mnemonic, then the original
2687 // mnemonic was invalid.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002688 if (std::count(std::begin(Match), std::end(Match), Match_MnemonicFail) == 4) {
Chris Lattner339cc7b2010-09-06 22:11:18 +00002689 if (!WasOriginallyInvalidOperand) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002690 ArrayRef<SMRange> Ranges =
2691 MatchingInlineAsm ? EmptyRanges : Op.getLocRange();
Benjamin Kramerd416bae2011-10-16 11:28:29 +00002692 return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
Chad Rosier4453e842012-10-12 23:09:25 +00002693 Ranges, MatchingInlineAsm);
Chris Lattner339cc7b2010-09-06 22:11:18 +00002694 }
2695
2696 // Recover location info for the operand if we know which was the problem.
Tim Northover26bb14e2014-08-18 11:49:42 +00002697 if (ErrorInfo != ~0ULL) {
Chad Rosier49963552012-10-13 00:26:04 +00002698 if (ErrorInfo >= Operands.size())
Chad Rosier3d4bc622012-08-21 19:36:59 +00002699 return Error(IDLoc, "too few operands for instruction",
Chad Rosier4453e842012-10-12 23:09:25 +00002700 EmptyRanges, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002701
David Blaikie960ea3f2014-06-08 16:18:35 +00002702 X86Operand &Operand = (X86Operand &)*Operands[ErrorInfo];
2703 if (Operand.getStartLoc().isValid()) {
2704 SMRange OperandRange = Operand.getLocRange();
2705 return Error(Operand.getStartLoc(), "invalid operand for instruction",
Chad Rosier4453e842012-10-12 23:09:25 +00002706 OperandRange, MatchingInlineAsm);
Chris Lattnera3a06812011-10-16 04:47:35 +00002707 }
Chris Lattner339cc7b2010-09-06 22:11:18 +00002708 }
2709
Chad Rosier3d4bc622012-08-21 19:36:59 +00002710 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
Chad Rosier4453e842012-10-12 23:09:25 +00002711 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002712 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002713
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002714 // If one instruction matched with a missing feature, report this as a
2715 // missing feature.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002716 if (std::count(std::begin(Match), std::end(Match),
2717 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002718 ErrorInfo = ErrorInfoMissingFeature;
2719 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002720 MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002721 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002722
Chris Lattner628fbec2010-09-06 21:54:15 +00002723 // If one instruction matched with an invalid operand, report this as an
2724 // operand failure.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002725 if (std::count(std::begin(Match), std::end(Match),
2726 Match_InvalidOperand) == 1) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002727 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
2728 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002729 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002730
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002731 // If all of these were an outright failure, report it in a useless way.
Chad Rosier3d4bc622012-08-21 19:36:59 +00002732 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
Chad Rosier4453e842012-10-12 23:09:25 +00002733 EmptyRanges, MatchingInlineAsm);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002734 return true;
2735}
2736
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002737bool X86AsmParser::MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
2738 OperandVector &Operands,
2739 MCStreamer &Out,
2740 uint64_t &ErrorInfo,
2741 bool MatchingInlineAsm) {
2742 assert(!Operands.empty() && "Unexpect empty operand list!");
2743 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2744 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
2745 StringRef Mnemonic = Op.getToken();
2746 ArrayRef<SMRange> EmptyRanges = None;
2747
2748 // First, handle aliases that expand to multiple instructions.
2749 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
2750
2751 MCInst Inst;
2752
2753 // Find one unsized memory operand, if present.
2754 X86Operand *UnsizedMemOp = nullptr;
2755 for (const auto &Op : Operands) {
2756 X86Operand *X86Op = static_cast<X86Operand *>(Op.get());
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002757 if (X86Op->isMemUnsized())
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002758 UnsizedMemOp = X86Op;
2759 }
2760
2761 // Allow some instructions to have implicitly pointer-sized operands. This is
2762 // compatible with gas.
2763 if (UnsizedMemOp) {
2764 static const char *const PtrSizedInstrs[] = {"call", "jmp", "push"};
2765 for (const char *Instr : PtrSizedInstrs) {
2766 if (Mnemonic == Instr) {
Craig Topper055845f2015-01-02 07:02:25 +00002767 UnsizedMemOp->Mem.Size = getPointerWidth();
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002768 break;
2769 }
2770 }
2771 }
2772
2773 // If an unsized memory operand is present, try to match with each memory
2774 // operand size. In Intel assembly, the size is not part of the instruction
2775 // mnemonic.
2776 SmallVector<unsigned, 8> Match;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002777 uint64_t ErrorInfoMissingFeature = 0;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002778 if (UnsizedMemOp && UnsizedMemOp->isMemUnsized()) {
Ahmed Bougachad65f7872014-12-03 02:03:26 +00002779 static const unsigned MopSizes[] = {8, 16, 32, 64, 80, 128, 256, 512};
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002780 for (unsigned Size : MopSizes) {
2781 UnsizedMemOp->Mem.Size = Size;
2782 uint64_t ErrorInfoIgnore;
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002783 unsigned LastOpcode = Inst.getOpcode();
2784 unsigned M =
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002785 MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002786 MatchingInlineAsm, isParsingIntelSyntax());
2787 if (Match.empty() || LastOpcode != Inst.getOpcode())
2788 Match.push_back(M);
2789
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002790 // If this returned as a missing feature failure, remember that.
2791 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002792 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002793 }
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002794
2795 // Restore the size of the unsized memory operand if we modified it.
2796 if (UnsizedMemOp)
2797 UnsizedMemOp->Mem.Size = 0;
2798 }
2799
2800 // If we haven't matched anything yet, this is not a basic integer or FPU
Saleem Abdulrasoolc3f8ad32015-01-16 20:16:06 +00002801 // operation. There shouldn't be any ambiguity in our mnemonic table, so try
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002802 // matching with the unsized operand.
2803 if (Match.empty()) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002804 Match.push_back(MatchInstructionImpl(Operands, Inst, ErrorInfo,
2805 MatchingInlineAsm,
2806 isParsingIntelSyntax()));
2807 // If this returned as a missing feature failure, remember that.
2808 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002809 ErrorInfoMissingFeature = ErrorInfo;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002810 }
2811
2812 // Restore the size of the unsized memory operand if we modified it.
2813 if (UnsizedMemOp)
2814 UnsizedMemOp->Mem.Size = 0;
2815
2816 // If it's a bad mnemonic, all results will be the same.
2817 if (Match.back() == Match_MnemonicFail) {
2818 ArrayRef<SMRange> Ranges =
2819 MatchingInlineAsm ? EmptyRanges : Op.getLocRange();
2820 return Error(IDLoc, "invalid instruction mnemonic '" + Mnemonic + "'",
2821 Ranges, MatchingInlineAsm);
2822 }
2823
2824 // If exactly one matched, then we treat that as a successful match (and the
2825 // instruction will already have been filled in correctly, since the failing
2826 // matches won't have modified it).
2827 unsigned NumSuccessfulMatches =
2828 std::count(std::begin(Match), std::end(Match), Match_Success);
2829 if (NumSuccessfulMatches == 1) {
Saleem Abdulrasoolca24b1d2015-01-14 05:10:21 +00002830 if (!validateInstruction(Inst, Operands))
2831 return true;
2832
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002833 // Some instructions need post-processing to, for example, tweak which
2834 // encoding is selected. Loop on it while changes happen so the individual
2835 // transformations can chain off each other.
2836 if (!MatchingInlineAsm)
2837 while (processInstruction(Inst, Operands))
2838 ;
2839 Inst.setLoc(IDLoc);
2840 if (!MatchingInlineAsm)
2841 EmitInstruction(Inst, Operands, Out);
2842 Opcode = Inst.getOpcode();
2843 return false;
2844 } else if (NumSuccessfulMatches > 1) {
2845 assert(UnsizedMemOp &&
2846 "multiple matches only possible with unsized memory operands");
2847 ArrayRef<SMRange> Ranges =
2848 MatchingInlineAsm ? EmptyRanges : UnsizedMemOp->getLocRange();
2849 return Error(UnsizedMemOp->getStartLoc(),
2850 "ambiguous operand size for instruction '" + Mnemonic + "\'",
2851 Ranges, MatchingInlineAsm);
2852 }
2853
2854 // If one instruction matched with a missing feature, report this as a
2855 // missing feature.
2856 if (std::count(std::begin(Match), std::end(Match),
2857 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002858 ErrorInfo = ErrorInfoMissingFeature;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002859 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
2860 MatchingInlineAsm);
2861 }
2862
2863 // If one instruction matched with an invalid operand, report this as an
2864 // operand failure.
2865 if (std::count(std::begin(Match), std::end(Match),
2866 Match_InvalidOperand) == 1) {
2867 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
2868 MatchingInlineAsm);
2869 }
2870
2871 // If all of these were an outright failure, report it in a useless way.
2872 return Error(IDLoc, "unknown instruction mnemonic", EmptyRanges,
2873 MatchingInlineAsm);
2874}
2875
Nico Weber42f79db2014-07-17 20:24:55 +00002876bool X86AsmParser::OmitRegisterFromClobberLists(unsigned RegNo) {
2877 return X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo);
2878}
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002879
Devang Patel4a6e7782012-01-12 18:03:40 +00002880bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002881 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00002882 StringRef IDVal = DirectiveID.getIdentifier();
2883 if (IDVal == ".word")
2884 return ParseDirectiveWord(2, DirectiveID.getLoc());
Evan Cheng481ebb02011-07-27 00:38:12 +00002885 else if (IDVal.startswith(".code"))
2886 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
Chad Rosier6f8d8b22012-09-10 20:54:39 +00002887 else if (IDVal.startswith(".att_syntax")) {
Reid Klecknerce63b792014-08-06 23:21:13 +00002888 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2889 if (Parser.getTok().getString() == "prefix")
2890 Parser.Lex();
2891 else if (Parser.getTok().getString() == "noprefix")
2892 return Error(DirectiveID.getLoc(), "'.att_syntax noprefix' is not "
2893 "supported: registers must have a "
2894 "'%' prefix in .att_syntax");
2895 }
Chad Rosier6f8d8b22012-09-10 20:54:39 +00002896 getParser().setAssemblerDialect(0);
2897 return false;
2898 } else if (IDVal.startswith(".intel_syntax")) {
Devang Patela173ee52012-01-31 18:14:05 +00002899 getParser().setAssemblerDialect(1);
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002900 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002901 if (Parser.getTok().getString() == "noprefix")
Craig Topper6bf3ed42012-07-18 04:59:16 +00002902 Parser.Lex();
Reid Klecknerce63b792014-08-06 23:21:13 +00002903 else if (Parser.getTok().getString() == "prefix")
2904 return Error(DirectiveID.getLoc(), "'.intel_syntax prefix' is not "
2905 "supported: registers must not have "
2906 "a '%' prefix in .intel_syntax");
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002907 }
2908 return false;
2909 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002910 return true;
2911}
2912
2913/// ParseDirectiveWord
2914/// ::= .word [ expression (, expression)* ]
Devang Patel4a6e7782012-01-12 18:03:40 +00002915bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002916 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00002917 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2918 for (;;) {
2919 const MCExpr *Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002920 if (getParser().parseExpression(Value))
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002921 return false;
Chad Rosier51afe632012-06-27 22:34:28 +00002922
Eric Christopherbf7bc492013-01-09 03:52:05 +00002923 getParser().getStreamer().EmitValue(Value, Size);
Chad Rosier51afe632012-06-27 22:34:28 +00002924
Chris Lattner72c0b592010-10-30 17:38:55 +00002925 if (getLexer().is(AsmToken::EndOfStatement))
2926 break;
Chad Rosier51afe632012-06-27 22:34:28 +00002927
Chris Lattner72c0b592010-10-30 17:38:55 +00002928 // FIXME: Improve diagnostic.
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002929 if (getLexer().isNot(AsmToken::Comma)) {
2930 Error(L, "unexpected token in directive");
2931 return false;
2932 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002933 Parser.Lex();
2934 }
2935 }
Chad Rosier51afe632012-06-27 22:34:28 +00002936
Chris Lattner72c0b592010-10-30 17:38:55 +00002937 Parser.Lex();
2938 return false;
2939}
2940
Evan Cheng481ebb02011-07-27 00:38:12 +00002941/// ParseDirectiveCode
Craig Topper3c80d622014-01-06 04:55:54 +00002942/// ::= .code16 | .code32 | .code64
Devang Patel4a6e7782012-01-12 18:03:40 +00002943bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002944 MCAsmParser &Parser = getParser();
Craig Topper3c80d622014-01-06 04:55:54 +00002945 if (IDVal == ".code16") {
Evan Cheng481ebb02011-07-27 00:38:12 +00002946 Parser.Lex();
Craig Topper3c80d622014-01-06 04:55:54 +00002947 if (!is16BitMode()) {
2948 SwitchMode(X86::Mode16Bit);
2949 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
2950 }
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002951 } else if (IDVal == ".code32") {
Craig Topper3c80d622014-01-06 04:55:54 +00002952 Parser.Lex();
2953 if (!is32BitMode()) {
2954 SwitchMode(X86::Mode32Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00002955 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
2956 }
2957 } else if (IDVal == ".code64") {
2958 Parser.Lex();
2959 if (!is64BitMode()) {
Craig Topper3c80d622014-01-06 04:55:54 +00002960 SwitchMode(X86::Mode64Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00002961 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
2962 }
2963 } else {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002964 Error(L, "unknown directive " + IDVal);
2965 return false;
Evan Cheng481ebb02011-07-27 00:38:12 +00002966 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002967
Evan Cheng481ebb02011-07-27 00:38:12 +00002968 return false;
2969}
Chris Lattner72c0b592010-10-30 17:38:55 +00002970
Daniel Dunbar71475772009-07-17 20:42:00 +00002971// Force static initialization.
2972extern "C" void LLVMInitializeX86AsmParser() {
Devang Patel4a6e7782012-01-12 18:03:40 +00002973 RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
2974 RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
Daniel Dunbar71475772009-07-17 20:42:00 +00002975}
Daniel Dunbar00331992009-07-29 00:02:19 +00002976
Chris Lattner3e4582a2010-09-06 19:11:01 +00002977#define GET_REGISTER_MATCHER
2978#define GET_MATCHER_IMPLEMENTATION
Jim Grosbach6f1f41b2012-11-14 18:04:47 +00002979#define GET_SUBTARGET_FEATURE_NAME
Daniel Dunbar00331992009-07-29 00:02:19 +00002980#include "X86GenAsmMatcher.inc"