blob: 05fcd2a828d20b697ff2a6038f6327809664bb64 [file] [log] [blame]
Daniel Dunbar71475772009-07-17 20:42:00 +00001//===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Evan Cheng11424442011-07-26 00:24:13 +000010#include "MCTargetDesc/X86BaseInfo.h"
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000011#include "X86AsmInstrumentation.h"
Evgeniy Stepanove3804d42014-02-28 12:28:07 +000012#include "X86AsmParserCommon.h"
13#include "X86Operand.h"
Craig Topper690d8ea2013-07-24 07:33:14 +000014#include "llvm/ADT/STLExtras.h"
Chris Lattner1261b812010-09-22 04:11:10 +000015#include "llvm/ADT/SmallString.h"
16#include "llvm/ADT/SmallVector.h"
Chris Lattner1261b812010-09-22 04:11:10 +000017#include "llvm/ADT/StringSwitch.h"
18#include "llvm/ADT/Twine.h"
Chad Rosier8a244662013-04-02 20:02:33 +000019#include "llvm/MC/MCContext.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/MC/MCExpr.h"
21#include "llvm/MC/MCInst.h"
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000022#include "llvm/MC/MCInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/MC/MCParser/MCAsmLexer.h"
24#include "llvm/MC/MCParser/MCAsmParser.h"
25#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Benjamin Kramerb3e8a6d2016-01-27 10:01:28 +000026#include "llvm/MC/MCParser/MCTargetAsmParser.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000027#include "llvm/MC/MCRegisterInfo.h"
Michael Zuckerman02ecd432015-12-13 17:07:23 +000028#include "llvm/MC/MCSection.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000029#include "llvm/MC/MCStreamer.h"
30#include "llvm/MC/MCSubtargetInfo.h"
31#include "llvm/MC/MCSymbol.h"
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000032#include "llvm/Support/SourceMgr.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000033#include "llvm/Support/TargetRegistry.h"
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +000034#include "llvm/Support/raw_ostream.h"
Reid Kleckner7b1e1a02014-07-30 22:23:11 +000035#include <algorithm>
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000036#include <memory>
Evan Cheng4d1ca962011-07-08 01:53:10 +000037
Daniel Dunbar71475772009-07-17 20:42:00 +000038using namespace llvm;
39
40namespace {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000041
Chad Rosier5362af92013-04-16 18:15:40 +000042static const char OpPrecedence[] = {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000043 0, // IC_OR
Michael Kupersteine3de07a2015-06-14 12:59:45 +000044 1, // IC_XOR
45 2, // IC_AND
46 3, // IC_LSHIFT
47 3, // IC_RSHIFT
48 4, // IC_PLUS
49 4, // IC_MINUS
50 5, // IC_MULTIPLY
51 5, // IC_DIVIDE
52 6, // IC_RPAREN
53 7, // IC_LPAREN
Chad Rosier5362af92013-04-16 18:15:40 +000054 0, // IC_IMM
55 0 // IC_REGISTER
56};
57
Devang Patel4a6e7782012-01-12 18:03:40 +000058class X86AsmParser : public MCTargetAsmParser {
Evgeniy Stepanovf4a36992014-04-24 13:29:34 +000059 const MCInstrInfo &MII;
Chad Rosierf0e87202012-10-25 20:41:34 +000060 ParseInstructionInfo *InstInfo;
Evgeniy Stepanov49e26252014-03-14 08:58:04 +000061 std::unique_ptr<X86AsmInstrumentation> Instrumentation;
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +000062
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +000063private:
Alp Tokera5b88a52013-12-02 16:06:06 +000064 SMLoc consumeToken() {
Rafael Espindola961d4692014-11-11 05:18:41 +000065 MCAsmParser &Parser = getParser();
Alp Tokera5b88a52013-12-02 16:06:06 +000066 SMLoc Result = Parser.getTok().getLoc();
67 Parser.Lex();
68 return Result;
69 }
70
Chad Rosier5362af92013-04-16 18:15:40 +000071 enum InfixCalculatorTok {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000072 IC_OR = 0,
Michael Kupersteine3de07a2015-06-14 12:59:45 +000073 IC_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000074 IC_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +000075 IC_LSHIFT,
76 IC_RSHIFT,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +000077 IC_PLUS,
Chad Rosier5362af92013-04-16 18:15:40 +000078 IC_MINUS,
79 IC_MULTIPLY,
80 IC_DIVIDE,
81 IC_RPAREN,
82 IC_LPAREN,
83 IC_IMM,
84 IC_REGISTER
85 };
86
87 class InfixCalculator {
88 typedef std::pair< InfixCalculatorTok, int64_t > ICToken;
89 SmallVector<InfixCalculatorTok, 4> InfixOperatorStack;
90 SmallVector<ICToken, 4> PostfixStack;
Michael Liao5bf95782014-12-04 05:20:33 +000091
Chad Rosier5362af92013-04-16 18:15:40 +000092 public:
93 int64_t popOperand() {
94 assert (!PostfixStack.empty() && "Poped an empty stack!");
95 ICToken Op = PostfixStack.pop_back_val();
96 assert ((Op.first == IC_IMM || Op.first == IC_REGISTER)
97 && "Expected and immediate or register!");
98 return Op.second;
99 }
100 void pushOperand(InfixCalculatorTok Op, int64_t Val = 0) {
101 assert ((Op == IC_IMM || Op == IC_REGISTER) &&
102 "Unexpected operand!");
103 PostfixStack.push_back(std::make_pair(Op, Val));
104 }
Michael Liao5bf95782014-12-04 05:20:33 +0000105
Jakub Staszak9c349222013-08-08 15:48:46 +0000106 void popOperator() { InfixOperatorStack.pop_back(); }
Chad Rosier5362af92013-04-16 18:15:40 +0000107 void pushOperator(InfixCalculatorTok Op) {
108 // Push the new operator if the stack is empty.
109 if (InfixOperatorStack.empty()) {
110 InfixOperatorStack.push_back(Op);
111 return;
112 }
Michael Liao5bf95782014-12-04 05:20:33 +0000113
Chad Rosier5362af92013-04-16 18:15:40 +0000114 // Push the new operator if it has a higher precedence than the operator
115 // on the top of the stack or the operator on the top of the stack is a
116 // left parentheses.
117 unsigned Idx = InfixOperatorStack.size() - 1;
118 InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
119 if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
120 InfixOperatorStack.push_back(Op);
121 return;
122 }
Michael Liao5bf95782014-12-04 05:20:33 +0000123
Chad Rosier5362af92013-04-16 18:15:40 +0000124 // The operator on the top of the stack has higher precedence than the
125 // new operator.
126 unsigned ParenCount = 0;
127 while (1) {
128 // Nothing to process.
129 if (InfixOperatorStack.empty())
130 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000131
Chad Rosier5362af92013-04-16 18:15:40 +0000132 Idx = InfixOperatorStack.size() - 1;
133 StackOp = InfixOperatorStack[Idx];
134 if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
135 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000136
Chad Rosier5362af92013-04-16 18:15:40 +0000137 // If we have an even parentheses count and we see a left parentheses,
138 // then stop processing.
139 if (!ParenCount && StackOp == IC_LPAREN)
140 break;
Michael Liao5bf95782014-12-04 05:20:33 +0000141
Chad Rosier5362af92013-04-16 18:15:40 +0000142 if (StackOp == IC_RPAREN) {
143 ++ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000144 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000145 } else if (StackOp == IC_LPAREN) {
146 --ParenCount;
Jakub Staszak9c349222013-08-08 15:48:46 +0000147 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000148 } else {
Jakub Staszak9c349222013-08-08 15:48:46 +0000149 InfixOperatorStack.pop_back();
Chad Rosier5362af92013-04-16 18:15:40 +0000150 PostfixStack.push_back(std::make_pair(StackOp, 0));
151 }
152 }
153 // Push the new operator.
154 InfixOperatorStack.push_back(Op);
155 }
Marina Yatsinaa0e02412015-08-10 11:33:10 +0000156
Chad Rosier5362af92013-04-16 18:15:40 +0000157 int64_t execute() {
158 // Push any remaining operators onto the postfix stack.
159 while (!InfixOperatorStack.empty()) {
160 InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val();
161 if (StackOp != IC_LPAREN && StackOp != IC_RPAREN)
162 PostfixStack.push_back(std::make_pair(StackOp, 0));
163 }
Michael Liao5bf95782014-12-04 05:20:33 +0000164
Chad Rosier5362af92013-04-16 18:15:40 +0000165 if (PostfixStack.empty())
166 return 0;
Michael Liao5bf95782014-12-04 05:20:33 +0000167
Chad Rosier5362af92013-04-16 18:15:40 +0000168 SmallVector<ICToken, 16> OperandStack;
169 for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) {
170 ICToken Op = PostfixStack[i];
171 if (Op.first == IC_IMM || Op.first == IC_REGISTER) {
172 OperandStack.push_back(Op);
173 } else {
174 assert (OperandStack.size() > 1 && "Too few operands.");
175 int64_t Val;
176 ICToken Op2 = OperandStack.pop_back_val();
177 ICToken Op1 = OperandStack.pop_back_val();
178 switch (Op.first) {
179 default:
180 report_fatal_error("Unexpected operator!");
181 break;
182 case IC_PLUS:
183 Val = Op1.second + Op2.second;
184 OperandStack.push_back(std::make_pair(IC_IMM, Val));
185 break;
186 case IC_MINUS:
187 Val = Op1.second - Op2.second;
188 OperandStack.push_back(std::make_pair(IC_IMM, Val));
189 break;
190 case IC_MULTIPLY:
191 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
192 "Multiply operation with an immediate and a register!");
193 Val = Op1.second * Op2.second;
194 OperandStack.push_back(std::make_pair(IC_IMM, Val));
195 break;
196 case IC_DIVIDE:
197 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
198 "Divide operation with an immediate and a register!");
199 assert (Op2.second != 0 && "Division by zero!");
200 Val = Op1.second / Op2.second;
201 OperandStack.push_back(std::make_pair(IC_IMM, Val));
202 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000203 case IC_OR:
204 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
205 "Or operation with an immediate and a register!");
206 Val = Op1.second | Op2.second;
207 OperandStack.push_back(std::make_pair(IC_IMM, Val));
208 break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000209 case IC_XOR:
210 assert(Op1.first == IC_IMM && Op2.first == IC_IMM &&
211 "Xor operation with an immediate and a register!");
212 Val = Op1.second ^ Op2.second;
213 OperandStack.push_back(std::make_pair(IC_IMM, Val));
214 break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000215 case IC_AND:
216 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
217 "And operation with an immediate and a register!");
218 Val = Op1.second & Op2.second;
219 OperandStack.push_back(std::make_pair(IC_IMM, Val));
220 break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000221 case IC_LSHIFT:
222 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
223 "Left shift operation with an immediate and a register!");
224 Val = Op1.second << Op2.second;
225 OperandStack.push_back(std::make_pair(IC_IMM, Val));
226 break;
227 case IC_RSHIFT:
228 assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
229 "Right shift operation with an immediate and a register!");
230 Val = Op1.second >> Op2.second;
231 OperandStack.push_back(std::make_pair(IC_IMM, Val));
232 break;
Chad Rosier5362af92013-04-16 18:15:40 +0000233 }
234 }
235 }
236 assert (OperandStack.size() == 1 && "Expected a single result.");
237 return OperandStack.pop_back_val().second;
238 }
239 };
240
241 enum IntelExprState {
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000242 IES_OR,
Michael Kupersteine3de07a2015-06-14 12:59:45 +0000243 IES_XOR,
Kevin Enderby2e13b1c2014-01-15 19:05:24 +0000244 IES_AND,
Kevin Enderbyd6b10712014-02-06 01:21:15 +0000245 IES_LSHIFT,
246 IES_RSHIFT,
Chad Rosier5362af92013-04-16 18:15:40 +0000247 IES_PLUS,
248 IES_MINUS,
Ehsan Akhgari4103da62014-07-04 19:13:05 +0000249 IES_NOT,
Chad Rosier5362af92013-04-16 18:15:40 +0000250 IES_MULTIPLY,
251 IES_DIVIDE,
252 IES_LBRAC,
253 IES_RBRAC,
254 IES_LPAREN,
255 IES_RPAREN,
256 IES_REGISTER,
Chad Rosier5362af92013-04-16 18:15:40 +0000257 IES_INTEGER,
Chad Rosier5362af92013-04-16 18:15:40 +0000258 IES_IDENTIFIER,
259 IES_ERROR
260 };
261
262 class IntelExprStateMachine {
Chad Rosier31246272013-04-17 21:01:45 +0000263 IntelExprState State, PrevState;
Chad Rosier5362af92013-04-16 18:15:40 +0000264 unsigned BaseReg, IndexReg, TmpReg, Scale;
Chad Rosierbfb70992013-04-17 00:11:46 +0000265 int64_t Imm;
Chad Rosier5362af92013-04-16 18:15:40 +0000266 const MCExpr *Sym;
267 StringRef SymName;
Chad Rosierbfb70992013-04-17 00:11:46 +0000268 bool StopOnLBrac, AddImmPrefix;
Chad Rosier5362af92013-04-16 18:15:40 +0000269 InfixCalculator IC;
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000270 InlineAsmIdentifierInfo Info;
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +0000271
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
Nico Webere204c482016-09-13 18:17:00 +0000662 bool Error(SMLoc L, const Twine &Msg,
663 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();
Nico Webere204c482016-09-13 18:17:00 +0000666 if (MatchingInlineAsm) return true;
667 return Parser.Error(L, Msg, Ranges);
668 }
669
670 bool ErrorAndEatStatement(SMLoc L, const Twine &Msg,
671 ArrayRef<SMRange> Ranges = None,
672 bool MatchingInlineAsm = false) {
673 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);
Marina Yatsinab9f4f622016-01-19 15:37:56 +0000685 bool IsSIReg(unsigned Reg);
686 unsigned GetSIDIForRegClass(unsigned RegClassID, unsigned Reg, bool IsSIReg);
687 void
688 AddDefaultSrcDestOperands(OperandVector &Operands,
689 std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
690 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst);
691 bool VerifyAndAdjustOperands(OperandVector &OrigOperands,
692 OperandVector &FinalOperands);
David Blaikie960ea3f2014-06-08 16:18:35 +0000693 std::unique_ptr<X86Operand> ParseOperand();
694 std::unique_ptr<X86Operand> ParseATTOperand();
695 std::unique_ptr<X86Operand> ParseIntelOperand();
696 std::unique_ptr<X86Operand> ParseIntelOffsetOfOperator();
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000697 bool ParseIntelDotOperator(const MCExpr *Disp, const MCExpr *&NewDisp);
David Blaikie960ea3f2014-06-08 16:18:35 +0000698 std::unique_ptr<X86Operand> ParseIntelOperator(unsigned OpKind);
699 std::unique_ptr<X86Operand>
700 ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start, unsigned Size);
Elena Demikhovsky18fd4962015-03-02 15:00:34 +0000701 std::unique_ptr<X86Operand> ParseRoundingModeOp(SMLoc Start, SMLoc End);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000702 bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End);
Nirav Dave8601ac12016-08-02 17:56:03 +0000703 std::unique_ptr<X86Operand>
704 ParseIntelBracExpression(unsigned SegReg, SMLoc Start, int64_t ImmDisp,
705 bool isSymbol, unsigned Size);
Benjamin Kramer951b15e2013-12-01 11:47:42 +0000706 bool ParseIntelIdentifier(const MCExpr *&Val, StringRef &Identifier,
707 InlineAsmIdentifierInfo &Info,
708 bool IsUnevaluatedOperand, SMLoc &End);
Chad Rosiercb78f0d2013-04-22 19:42:15 +0000709
David Blaikie960ea3f2014-06-08 16:18:35 +0000710 std::unique_ptr<X86Operand> ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000711
David Blaikie960ea3f2014-06-08 16:18:35 +0000712 std::unique_ptr<X86Operand>
713 CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp, unsigned BaseReg,
714 unsigned IndexReg, unsigned Scale, SMLoc Start,
715 SMLoc End, unsigned Size, StringRef Identifier,
716 InlineAsmIdentifierInfo &Info);
Chad Rosier7ca135b2013-03-19 21:11:56 +0000717
Michael Zuckerman02ecd432015-12-13 17:07:23 +0000718 bool parseDirectiveEven(SMLoc L);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000719 bool ParseDirectiveWord(unsigned Size, SMLoc L);
Evan Cheng481ebb02011-07-27 00:38:12 +0000720 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000721
David Blaikie960ea3f2014-06-08 16:18:35 +0000722 bool processInstruction(MCInst &Inst, const OperandVector &Ops);
Devang Patelde47cce2012-01-18 22:42:29 +0000723
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000724 /// Wrapper around MCStreamer::EmitInstruction(). Possibly adds
725 /// instrumentation around Inst.
David Blaikie960ea3f2014-06-08 16:18:35 +0000726 void EmitInstruction(MCInst &Inst, OperandVector &Operands, MCStreamer &Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +0000727
Chad Rosier49963552012-10-13 00:26:04 +0000728 bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
David Blaikie960ea3f2014-06-08 16:18:35 +0000729 OperandVector &Operands, MCStreamer &Out,
Tim Northover26bb14e2014-08-18 11:49:42 +0000730 uint64_t &ErrorInfo,
Craig Topper39012cc2014-03-09 18:03:14 +0000731 bool MatchingInlineAsm) override;
Chad Rosier9cb988f2012-08-09 22:04:55 +0000732
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000733 void MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op, OperandVector &Operands,
734 MCStreamer &Out, bool MatchingInlineAsm);
735
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000736 bool ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +0000737 bool MatchingInlineAsm);
738
739 bool MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
740 OperandVector &Operands, MCStreamer &Out,
741 uint64_t &ErrorInfo,
742 bool MatchingInlineAsm);
743
744 bool MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
745 OperandVector &Operands, MCStreamer &Out,
746 uint64_t &ErrorInfo,
747 bool MatchingInlineAsm);
748
Craig Topperfd38cbe2014-08-30 16:48:34 +0000749 bool OmitRegisterFromClobberLists(unsigned RegNo) override;
Nico Weber42f79db2014-07-17 20:24:55 +0000750
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000751 /// Parses AVX512 specific operand primitives: masked registers ({%k<NUM>}, {z})
752 /// and memory broadcasting ({1to<NUM>}) primitives, updating Operands vector if required.
753 /// \return \c true if no parsing errors occurred, \c false otherwise.
David Blaikie960ea3f2014-06-08 16:18:35 +0000754 bool HandleAVX512Operand(OperandVector &Operands,
755 const MCParsedAsmOperand &Op);
Elena Demikhovskyc9657012014-02-20 06:34:39 +0000756
Evan Chengc5e6d2f2011-07-11 03:57:24 +0000757 bool is64BitMode() const {
Evan Cheng4d1ca962011-07-08 01:53:10 +0000758 // FIXME: Can tablegen auto-generate this?
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000759 return getSTI().getFeatureBits()[X86::Mode64Bit];
Evan Cheng4d1ca962011-07-08 01:53:10 +0000760 }
Craig Topper3c80d622014-01-06 04:55:54 +0000761 bool is32BitMode() const {
762 // FIXME: Can tablegen auto-generate this?
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000763 return getSTI().getFeatureBits()[X86::Mode32Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000764 }
765 bool is16BitMode() const {
766 // FIXME: Can tablegen auto-generate this?
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000767 return getSTI().getFeatureBits()[X86::Mode16Bit];
Craig Topper3c80d622014-01-06 04:55:54 +0000768 }
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000769 void SwitchMode(unsigned mode) {
Akira Hatanakab11ef082015-11-14 06:35:56 +0000770 MCSubtargetInfo &STI = copySTI();
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000771 FeatureBitset AllModes({X86::Mode64Bit, X86::Mode32Bit, X86::Mode16Bit});
772 FeatureBitset OldMode = STI.getFeatureBits() & AllModes;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +0000773 unsigned FB = ComputeAvailableFeatures(
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000774 STI.ToggleFeature(OldMode.flip(mode)));
Evan Cheng481ebb02011-07-27 00:38:12 +0000775 setAvailableFeatures(FB);
NAKAMURA Takumia9cb5382015-09-22 11:14:39 +0000776
Michael Kupersteindb0712f2015-05-26 10:47:10 +0000777 assert(FeatureBitset({mode}) == (STI.getFeatureBits() & AllModes));
Evan Cheng481ebb02011-07-27 00:38:12 +0000778 }
Evan Cheng4d1ca962011-07-08 01:53:10 +0000779
Reid Kleckner5b37c182014-08-01 20:21:24 +0000780 unsigned getPointerWidth() {
781 if (is16BitMode()) return 16;
782 if (is32BitMode()) return 32;
783 if (is64BitMode()) return 64;
784 llvm_unreachable("invalid mode");
785 }
786
Chad Rosierc2f055d2013-04-18 16:13:18 +0000787 bool isParsingIntelSyntax() {
788 return getParser().getAssemblerDialect();
789 }
790
Daniel Dunbareefe8612010-07-19 05:44:09 +0000791 /// @name Auto-generated Matcher Functions
792 /// {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000793
Chris Lattner3e4582a2010-09-06 19:11:01 +0000794#define GET_ASSEMBLER_HEADER
795#include "X86GenAsmMatcher.inc"
Michael J. Spencer530ce852010-10-09 11:00:50 +0000796
Daniel Dunbar00331992009-07-29 00:02:19 +0000797 /// }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000798
799public:
Akira Hatanakab11ef082015-11-14 06:35:56 +0000800 X86AsmParser(const MCSubtargetInfo &sti, MCAsmParser &Parser,
Rafael Espindola961d4692014-11-11 05:18:41 +0000801 const MCInstrInfo &mii, const MCTargetOptions &Options)
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000802 : MCTargetAsmParser(Options, sti), MII(mii), InstInfo(nullptr) {
Michael J. Spencer530ce852010-10-09 11:00:50 +0000803
Daniel Dunbareefe8612010-07-19 05:44:09 +0000804 // Initialize the set of available features.
Akira Hatanakabd9fc282015-11-14 05:20:05 +0000805 setAvailableFeatures(ComputeAvailableFeatures(getSTI().getFeatureBits()));
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000806 Instrumentation.reset(
807 CreateX86AsmInstrumentation(Options, Parser.getContext(), STI));
Daniel Dunbareefe8612010-07-19 05:44:09 +0000808 }
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +0000809
Craig Topper39012cc2014-03-09 18:03:14 +0000810 bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000811
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000812 void SetFrameRegister(unsigned RegNo) override;
813
David Blaikie960ea3f2014-06-08 16:18:35 +0000814 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
815 SMLoc NameLoc, OperandVector &Operands) override;
Kevin Enderbyce4bec82009-09-10 20:51:44 +0000816
Craig Topper39012cc2014-03-09 18:03:14 +0000817 bool ParseDirective(AsmToken DirectiveID) override;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000818};
Chris Lattner4eb9df02009-07-29 06:33:53 +0000819} // end anonymous namespace
820
Sean Callanan86c11812010-01-23 00:40:33 +0000821/// @name Auto-generated Match Functions
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000822/// {
Sean Callanan86c11812010-01-23 00:40:33 +0000823
Chris Lattner60db0a62010-02-09 00:34:28 +0000824static unsigned MatchRegisterName(StringRef Name);
Sean Callanan86c11812010-01-23 00:40:33 +0000825
826/// }
Chris Lattner4eb9df02009-07-29 06:33:53 +0000827
Kevin Enderbybc570f22014-01-23 22:34:42 +0000828static bool CheckBaseRegAndIndexReg(unsigned BaseReg, unsigned IndexReg,
829 StringRef &ErrMsg) {
830 // If we have both a base register and an index register make sure they are
831 // both 64-bit or 32-bit registers.
832 // To support VSIB, IndexReg can be 128-bit or 256-bit registers.
833 if (BaseReg != 0 && IndexReg != 0) {
834 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
835 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
836 X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
837 IndexReg != X86::RIZ) {
838 ErrMsg = "base register is 64-bit, but index register is not";
839 return true;
840 }
841 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
842 (X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
843 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
844 IndexReg != X86::EIZ){
845 ErrMsg = "base register is 32-bit, but index register is not";
846 return true;
847 }
848 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg)) {
849 if (X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg) ||
850 X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) {
851 ErrMsg = "base register is 16-bit, but index register is not";
852 return true;
853 }
854 if (((BaseReg == X86::BX || BaseReg == X86::BP) &&
855 IndexReg != X86::SI && IndexReg != X86::DI) ||
856 ((BaseReg == X86::SI || BaseReg == X86::DI) &&
857 IndexReg != X86::BX && IndexReg != X86::BP)) {
858 ErrMsg = "invalid 16-bit base/index register combination";
859 return true;
860 }
861 }
862 }
863 return false;
864}
865
Devang Patel4a6e7782012-01-12 18:03:40 +0000866bool X86AsmParser::ParseRegister(unsigned &RegNo,
867 SMLoc &StartLoc, SMLoc &EndLoc) {
Rafael Espindola961d4692014-11-11 05:18:41 +0000868 MCAsmParser &Parser = getParser();
Chris Lattnercc2ad082010-01-15 18:27:19 +0000869 RegNo = 0;
Benjamin Kramere3d658b2012-09-07 14:51:35 +0000870 const AsmToken &PercentTok = Parser.getTok();
871 StartLoc = PercentTok.getLoc();
872
873 // If we encounter a %, ignore it. This code handles registers with and
874 // without the prefix, unprefixed registers can occur in cfi directives.
875 if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
Devang Patel41b9dde2012-01-17 18:00:18 +0000876 Parser.Lex(); // Eat percent token.
Kevin Enderby7d912182009-09-03 17:15:07 +0000877
Sean Callanan936b0d32010-01-19 21:44:56 +0000878 const AsmToken &Tok = Parser.getTok();
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000879 EndLoc = Tok.getEndLoc();
880
Devang Patelce6a2ca2012-01-20 22:32:05 +0000881 if (Tok.isNot(AsmToken::Identifier)) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000882 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000883 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000884 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +0000885 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000886
Kevin Enderby7d912182009-09-03 17:15:07 +0000887 RegNo = MatchRegisterName(Tok.getString());
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000888
Chris Lattner1261b812010-09-22 04:11:10 +0000889 // If the match failed, try the register name as lowercase.
890 if (RegNo == 0)
Benjamin Kramer20baffb2011-11-06 20:37:06 +0000891 RegNo = MatchRegisterName(Tok.getString().lower());
Michael J. Spencer530ce852010-10-09 11:00:50 +0000892
Michael Kupersteincdb076b2015-07-30 10:10:25 +0000893 // The "flags" register cannot be referenced directly.
894 // Treat it as an identifier instead.
895 if (isParsingInlineAsm() && isParsingIntelSyntax() && RegNo == X86::EFLAGS)
896 RegNo = 0;
897
Evan Chengeda1d4f2011-07-27 23:22:03 +0000898 if (!is64BitMode()) {
Eric Christopherc0a5aae2013-12-20 02:04:49 +0000899 // FIXME: This should be done using Requires<Not64BitMode> and
Evan Chengeda1d4f2011-07-27 23:22:03 +0000900 // Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
901 // checked.
902 // FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
903 // REX prefix.
904 if (RegNo == X86::RIZ ||
905 X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
906 X86II::isX86_64NonExtLowByteReg(RegNo) ||
Craig Topper6acca802016-08-27 17:13:37 +0000907 X86II::isX86_64ExtendedReg(RegNo))
Benjamin Kramer1930b002011-10-16 12:10:27 +0000908 return Error(StartLoc, "register %"
909 + Tok.getString() + " is only available in 64-bit mode",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000910 SMRange(StartLoc, EndLoc));
Craig Topper29c22732016-02-26 05:29:32 +0000911 } else if (!getSTI().getFeatureBits()[X86::FeatureAVX512]) {
912 if (X86II::is32ExtendedReg(RegNo))
913 return Error(StartLoc, "register %"
Craig Topperd50b5f82016-02-26 06:50:24 +0000914 + Tok.getString() + " is only available with AVX512",
Craig Topper29c22732016-02-26 05:29:32 +0000915 SMRange(StartLoc, EndLoc));
Evan Chengeda1d4f2011-07-27 23:22:03 +0000916 }
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +0000917
Chris Lattner1261b812010-09-22 04:11:10 +0000918 // Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
919 if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000920 RegNo = X86::ST0;
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000921 Parser.Lex(); // Eat 'st'
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000922
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000923 // Check to see if we have '(4)' after %st.
924 if (getLexer().isNot(AsmToken::LParen))
925 return false;
926 // Lex the paren.
927 getParser().Lex();
928
929 const AsmToken &IntTok = Parser.getTok();
930 if (IntTok.isNot(AsmToken::Integer))
931 return Error(IntTok.getLoc(), "expected stack index");
932 switch (IntTok.getIntVal()) {
933 case 0: RegNo = X86::ST0; break;
934 case 1: RegNo = X86::ST1; break;
935 case 2: RegNo = X86::ST2; break;
936 case 3: RegNo = X86::ST3; break;
937 case 4: RegNo = X86::ST4; break;
938 case 5: RegNo = X86::ST5; break;
939 case 6: RegNo = X86::ST6; break;
940 case 7: RegNo = X86::ST7; break;
941 default: return Error(IntTok.getLoc(), "invalid stack index");
942 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000943
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000944 if (getParser().Lex().isNot(AsmToken::RParen))
945 return Error(Parser.getTok().getLoc(), "expected ')'");
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000946
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000947 EndLoc = Parser.getTok().getEndLoc();
Chris Lattnerd00faaa2010-02-09 00:49:22 +0000948 Parser.Lex(); // Eat ')'
949 return false;
950 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000951
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000952 EndLoc = Parser.getTok().getEndLoc();
953
Chris Lattner80486622010-06-24 07:29:18 +0000954 // If this is "db[0-7]", match it as an alias
955 // for dr[0-7].
956 if (RegNo == 0 && Tok.getString().size() == 3 &&
957 Tok.getString().startswith("db")) {
958 switch (Tok.getString()[2]) {
959 case '0': RegNo = X86::DR0; break;
960 case '1': RegNo = X86::DR1; break;
961 case '2': RegNo = X86::DR2; break;
962 case '3': RegNo = X86::DR3; break;
963 case '4': RegNo = X86::DR4; break;
964 case '5': RegNo = X86::DR5; break;
965 case '6': RegNo = X86::DR6; break;
966 case '7': RegNo = X86::DR7; break;
967 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000968
Chris Lattner80486622010-06-24 07:29:18 +0000969 if (RegNo != 0) {
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000970 EndLoc = Parser.getTok().getEndLoc();
Chris Lattner80486622010-06-24 07:29:18 +0000971 Parser.Lex(); // Eat it.
972 return false;
973 }
974 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +0000975
Devang Patelce6a2ca2012-01-20 22:32:05 +0000976 if (RegNo == 0) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +0000977 if (isParsingIntelSyntax()) return true;
Benjamin Kramer1930b002011-10-16 12:10:27 +0000978 return Error(StartLoc, "invalid register name",
Jordan Rosee8f1eae2013-01-07 19:00:49 +0000979 SMRange(StartLoc, EndLoc));
Devang Patelce6a2ca2012-01-20 22:32:05 +0000980 }
Daniel Dunbar00331992009-07-29 00:02:19 +0000981
Sean Callanana83fd7d2010-01-19 20:27:46 +0000982 Parser.Lex(); // Eat identifier token.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +0000983 return false;
Daniel Dunbar71475772009-07-17 20:42:00 +0000984}
985
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000986void X86AsmParser::SetFrameRegister(unsigned RegNo) {
Yuri Gorshenine8c81fd2014-10-07 11:03:09 +0000987 Instrumentation->SetInitialFrameRegister(RegNo);
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000988}
989
David Blaikie960ea3f2014-06-08 16:18:35 +0000990std::unique_ptr<X86Operand> X86AsmParser::DefaultMemSIOperand(SMLoc Loc) {
David Woodhouse2ef8d9c2014-01-22 15:08:08 +0000991 unsigned basereg =
992 is64BitMode() ? X86::RSI : (is32BitMode() ? X86::ESI : X86::SI);
Jim Grosbach13760bd2015-05-30 01:25:56 +0000993 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +0000994 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
995 /*BaseReg=*/basereg, /*IndexReg=*/0, /*Scale=*/1,
996 Loc, Loc, 0);
David Woodhouse2ef8d9c2014-01-22 15:08:08 +0000997}
998
David Blaikie960ea3f2014-06-08 16:18:35 +0000999std::unique_ptr<X86Operand> X86AsmParser::DefaultMemDIOperand(SMLoc Loc) {
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001000 unsigned basereg =
1001 is64BitMode() ? X86::RDI : (is32BitMode() ? X86::EDI : X86::DI);
Jim Grosbach13760bd2015-05-30 01:25:56 +00001002 const MCExpr *Disp = MCConstantExpr::create(0, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001003 return X86Operand::CreateMem(getPointerWidth(), /*SegReg=*/0, Disp,
1004 /*BaseReg=*/basereg, /*IndexReg=*/0, /*Scale=*/1,
1005 Loc, Loc, 0);
David Woodhouseb33c2ef2014-01-22 15:08:21 +00001006}
1007
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001008bool X86AsmParser::IsSIReg(unsigned Reg) {
1009 switch (Reg) {
Craig Topper4d187632016-02-26 05:29:39 +00001010 default: llvm_unreachable("Only (R|E)SI and (R|E)DI are expected!");
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001011 case X86::RSI:
1012 case X86::ESI:
1013 case X86::SI:
1014 return true;
1015 case X86::RDI:
1016 case X86::EDI:
1017 case X86::DI:
1018 return false;
1019 }
1020}
1021
1022unsigned X86AsmParser::GetSIDIForRegClass(unsigned RegClassID, unsigned Reg,
1023 bool IsSIReg) {
1024 switch (RegClassID) {
Craig Topper4d187632016-02-26 05:29:39 +00001025 default: llvm_unreachable("Unexpected register class");
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001026 case X86::GR64RegClassID:
1027 return IsSIReg ? X86::RSI : X86::RDI;
1028 case X86::GR32RegClassID:
1029 return IsSIReg ? X86::ESI : X86::EDI;
1030 case X86::GR16RegClassID:
1031 return IsSIReg ? X86::SI : X86::DI;
1032 }
1033}
1034
Michael Kupersteinffcc7662015-07-23 10:23:48 +00001035void X86AsmParser::AddDefaultSrcDestOperands(
1036 OperandVector& Operands, std::unique_ptr<llvm::MCParsedAsmOperand> &&Src,
1037 std::unique_ptr<llvm::MCParsedAsmOperand> &&Dst) {
1038 if (isParsingIntelSyntax()) {
1039 Operands.push_back(std::move(Dst));
1040 Operands.push_back(std::move(Src));
1041 }
1042 else {
1043 Operands.push_back(std::move(Src));
1044 Operands.push_back(std::move(Dst));
1045 }
1046}
1047
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001048bool X86AsmParser::VerifyAndAdjustOperands(OperandVector &OrigOperands,
1049 OperandVector &FinalOperands) {
1050
1051 if (OrigOperands.size() > 1) {
Craig Topperd55f4bc2016-02-16 07:45:07 +00001052 // Check if sizes match, OrigOperands also contains the instruction name
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001053 assert(OrigOperands.size() == FinalOperands.size() + 1 &&
Craig Topperd55f4bc2016-02-16 07:45:07 +00001054 "Operand size mismatch");
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001055
Marina Yatsinaff262fa2016-01-21 11:37:06 +00001056 SmallVector<std::pair<SMLoc, std::string>, 2> Warnings;
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001057 // Verify types match
1058 int RegClassID = -1;
1059 for (unsigned int i = 0; i < FinalOperands.size(); ++i) {
1060 X86Operand &OrigOp = static_cast<X86Operand &>(*OrigOperands[i + 1]);
1061 X86Operand &FinalOp = static_cast<X86Operand &>(*FinalOperands[i]);
1062
1063 if (FinalOp.isReg() &&
1064 (!OrigOp.isReg() || FinalOp.getReg() != OrigOp.getReg()))
1065 // Return false and let a normal complaint about bogus operands happen
1066 return false;
1067
1068 if (FinalOp.isMem()) {
1069
1070 if (!OrigOp.isMem())
1071 // Return false and let a normal complaint about bogus operands happen
1072 return false;
1073
1074 unsigned OrigReg = OrigOp.Mem.BaseReg;
1075 unsigned FinalReg = FinalOp.Mem.BaseReg;
1076
1077 // If we've already encounterd a register class, make sure all register
1078 // bases are of the same register class
1079 if (RegClassID != -1 &&
1080 !X86MCRegisterClasses[RegClassID].contains(OrigReg)) {
1081 return Error(OrigOp.getStartLoc(),
1082 "mismatching source and destination index registers");
1083 }
1084
1085 if (X86MCRegisterClasses[X86::GR64RegClassID].contains(OrigReg))
1086 RegClassID = X86::GR64RegClassID;
1087 else if (X86MCRegisterClasses[X86::GR32RegClassID].contains(OrigReg))
1088 RegClassID = X86::GR32RegClassID;
1089 else if (X86MCRegisterClasses[X86::GR16RegClassID].contains(OrigReg))
1090 RegClassID = X86::GR16RegClassID;
Marina Yatsina701938d2016-01-20 14:03:47 +00001091 else
Craig Topper5a62f7e2016-02-16 07:28:03 +00001092 // Unexpected register class type
Marina Yatsina701938d2016-01-20 14:03:47 +00001093 // Return false and let a normal complaint about bogus operands happen
1094 return false;
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001095
1096 bool IsSI = IsSIReg(FinalReg);
1097 FinalReg = GetSIDIForRegClass(RegClassID, FinalReg, IsSI);
1098
1099 if (FinalReg != OrigReg) {
1100 std::string RegName = IsSI ? "ES:(R|E)SI" : "ES:(R|E)DI";
Marina Yatsinaff262fa2016-01-21 11:37:06 +00001101 Warnings.push_back(std::make_pair(
1102 OrigOp.getStartLoc(),
1103 "memory operand is only for determining the size, " + RegName +
1104 " will be used for the location"));
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001105 }
1106
1107 FinalOp.Mem.Size = OrigOp.Mem.Size;
1108 FinalOp.Mem.SegReg = OrigOp.Mem.SegReg;
1109 FinalOp.Mem.BaseReg = FinalReg;
1110 }
1111 }
1112
Marina Yatsinaff262fa2016-01-21 11:37:06 +00001113 // Produce warnings only if all the operands passed the adjustment - prevent
1114 // legal cases like "movsd (%rax), %xmm0" mistakenly produce warnings
Craig Topper16d7eb22016-02-16 07:45:04 +00001115 for (auto &WarningMsg : Warnings) {
1116 Warning(WarningMsg.first, WarningMsg.second);
Marina Yatsinaff262fa2016-01-21 11:37:06 +00001117 }
1118
1119 // Remove old operands
Marina Yatsinab9f4f622016-01-19 15:37:56 +00001120 for (unsigned int i = 0; i < FinalOperands.size(); ++i)
1121 OrigOperands.pop_back();
1122 }
1123 // OrigOperands.append(FinalOperands.begin(), FinalOperands.end());
1124 for (unsigned int i = 0; i < FinalOperands.size(); ++i)
1125 OrigOperands.push_back(std::move(FinalOperands[i]));
1126
1127 return false;
1128}
1129
David Blaikie960ea3f2014-06-08 16:18:35 +00001130std::unique_ptr<X86Operand> X86AsmParser::ParseOperand() {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00001131 if (isParsingIntelSyntax())
Devang Patel46831de2012-01-12 01:36:43 +00001132 return ParseIntelOperand();
1133 return ParseATTOperand();
1134}
1135
Devang Patel41b9dde2012-01-17 18:00:18 +00001136/// getIntelMemOperandSize - Return intel memory operand size.
1137static unsigned getIntelMemOperandSize(StringRef OpStr) {
Chad Rosierb6b8e962012-09-11 21:10:25 +00001138 unsigned Size = StringSwitch<unsigned>(OpStr)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001139 .Cases("BYTE", "byte", 8)
1140 .Cases("WORD", "word", 16)
1141 .Cases("DWORD", "dword", 32)
Marina Yatsina497d44a2015-12-07 13:09:20 +00001142 .Cases("FWORD", "fword", 48)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001143 .Cases("QWORD", "qword", 64)
Michael Zuckerman9beca2e2015-08-24 10:26:54 +00001144 .Cases("MMWORD","mmword", 64)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001145 .Cases("XWORD", "xword", 80)
Michael Kuperstein69e40a42015-07-19 11:03:08 +00001146 .Cases("TBYTE", "tbyte", 80)
Chad Rosierab53b4f2012-09-12 18:24:26 +00001147 .Cases("XMMWORD", "xmmword", 128)
1148 .Cases("YMMWORD", "ymmword", 256)
Craig Topper9ac290a2014-01-17 07:37:39 +00001149 .Cases("ZMMWORD", "zmmword", 512)
Craig Topper2d4b3c92014-01-17 07:44:10 +00001150 .Cases("OPAQUE", "opaque", -1U) // needs to be non-zero, but doesn't matter
Chad Rosierb6b8e962012-09-11 21:10:25 +00001151 .Default(0);
1152 return Size;
Devang Patel46831de2012-01-12 01:36:43 +00001153}
1154
David Blaikie960ea3f2014-06-08 16:18:35 +00001155std::unique_ptr<X86Operand> X86AsmParser::CreateMemForInlineAsm(
1156 unsigned SegReg, const MCExpr *Disp, unsigned BaseReg, unsigned IndexReg,
1157 unsigned Scale, SMLoc Start, SMLoc End, unsigned Size, StringRef Identifier,
1158 InlineAsmIdentifierInfo &Info) {
Reid Kleckner5b37c182014-08-01 20:21:24 +00001159 // If we found a decl other than a VarDecl, then assume it is a FuncDecl or
1160 // some other label reference.
1161 if (isa<MCSymbolRefExpr>(Disp) && Info.OpDecl && !Info.IsVarDecl) {
1162 // Insert an explicit size if the user didn't have one.
1163 if (!Size) {
1164 Size = getPointerWidth();
Craig Topper7d5b2312015-10-10 05:25:02 +00001165 InstInfo->AsmRewrites->emplace_back(AOK_SizeDirective, Start,
1166 /*Len=*/0, Size);
Reid Kleckner5b37c182014-08-01 20:21:24 +00001167 }
1168
1169 // Create an absolute memory reference in order to match against
1170 // instructions taking a PC relative operand.
Craig Topper055845f2015-01-02 07:02:25 +00001171 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size,
1172 Identifier, Info.OpDecl);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001173 }
1174
1175 // We either have a direct symbol reference, or an offset from a symbol. The
1176 // parser always puts the symbol on the LHS, so look there for size
1177 // calculation purposes.
1178 const MCBinaryExpr *BinOp = dyn_cast<MCBinaryExpr>(Disp);
1179 bool IsSymRef =
1180 isa<MCSymbolRefExpr>(BinOp ? BinOp->getLHS() : Disp);
1181 if (IsSymRef) {
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001182 if (!Size) {
1183 Size = Info.Type * 8; // Size is in terms of bits in this context.
1184 if (Size)
Craig Topper7d5b2312015-10-10 05:25:02 +00001185 InstInfo->AsmRewrites->emplace_back(AOK_SizeDirective, Start,
1186 /*Len=*/0, Size);
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001187 }
Chad Rosier7ca135b2013-03-19 21:11:56 +00001188 }
1189
Chad Rosier7ca135b2013-03-19 21:11:56 +00001190 // When parsing inline assembly we set the base register to a non-zero value
Chad Rosier175d0ae2013-04-12 18:21:18 +00001191 // if we don't know the actual value at this time. This is necessary to
Chad Rosier7ca135b2013-03-19 21:11:56 +00001192 // get the matching correct in some cases.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001193 BaseReg = BaseReg ? BaseReg : 1;
Craig Topper055845f2015-01-02 07:02:25 +00001194 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1195 IndexReg, Scale, Start, End, Size, Identifier,
1196 Info.OpDecl);
Chad Rosier7ca135b2013-03-19 21:11:56 +00001197}
1198
Chad Rosierd383db52013-04-12 20:20:54 +00001199static void
Craig Topper7143d802015-10-10 05:25:06 +00001200RewriteIntelBracExpression(SmallVectorImpl<AsmRewrite> &AsmRewrites,
Chad Rosierd383db52013-04-12 20:20:54 +00001201 StringRef SymName, int64_t ImmDisp,
1202 int64_t FinalImmDisp, SMLoc &BracLoc,
1203 SMLoc &StartInBrac, SMLoc &End) {
1204 // Remove the '[' and ']' from the IR string.
Craig Topper7143d802015-10-10 05:25:06 +00001205 AsmRewrites.emplace_back(AOK_Skip, BracLoc, 1);
1206 AsmRewrites.emplace_back(AOK_Skip, End, 1);
Chad Rosierd383db52013-04-12 20:20:54 +00001207
1208 // If ImmDisp is non-zero, then we parsed a displacement before the
1209 // bracketed expression (i.e., ImmDisp [ BaseReg + Scale*IndexReg + Disp])
1210 // If ImmDisp doesn't match the displacement computed by the state machine
1211 // then we have an additional displacement in the bracketed expression.
1212 if (ImmDisp != FinalImmDisp) {
1213 if (ImmDisp) {
1214 // We have an immediate displacement before the bracketed expression.
1215 // Adjust this to match the final immediate displacement.
1216 bool Found = false;
Craig Topper7143d802015-10-10 05:25:06 +00001217 for (AsmRewrite &AR : AsmRewrites) {
1218 if (AR.Loc.getPointer() > BracLoc.getPointer())
Chad Rosierd383db52013-04-12 20:20:54 +00001219 continue;
Craig Topper7143d802015-10-10 05:25:06 +00001220 if (AR.Kind == AOK_ImmPrefix || AR.Kind == AOK_Imm) {
Chad Rosierbfb70992013-04-17 00:11:46 +00001221 assert (!Found && "ImmDisp already rewritten.");
Craig Topper7143d802015-10-10 05:25:06 +00001222 AR.Kind = AOK_Imm;
1223 AR.Len = BracLoc.getPointer() - AR.Loc.getPointer();
1224 AR.Val = FinalImmDisp;
Chad Rosierd383db52013-04-12 20:20:54 +00001225 Found = true;
1226 break;
1227 }
1228 }
1229 assert (Found && "Unable to rewrite ImmDisp.");
Duncan Sands0480b9b2013-05-13 07:50:47 +00001230 (void)Found;
Chad Rosierd383db52013-04-12 20:20:54 +00001231 } else {
1232 // We have a symbolic and an immediate displacement, but no displacement
Chad Rosierbfb70992013-04-17 00:11:46 +00001233 // before the bracketed expression. Put the immediate displacement
Chad Rosierd383db52013-04-12 20:20:54 +00001234 // before the bracketed expression.
Craig Topper7143d802015-10-10 05:25:06 +00001235 AsmRewrites.emplace_back(AOK_Imm, BracLoc, 0, FinalImmDisp);
Chad Rosierd383db52013-04-12 20:20:54 +00001236 }
1237 }
1238 // Remove all the ImmPrefix rewrites within the brackets.
Craig Topper7143d802015-10-10 05:25:06 +00001239 for (AsmRewrite &AR : AsmRewrites) {
1240 if (AR.Loc.getPointer() < StartInBrac.getPointer())
Chad Rosierd383db52013-04-12 20:20:54 +00001241 continue;
Craig Topper7143d802015-10-10 05:25:06 +00001242 if (AR.Kind == AOK_ImmPrefix)
1243 AR.Kind = AOK_Delete;
Chad Rosierd383db52013-04-12 20:20:54 +00001244 }
1245 const char *SymLocPtr = SymName.data();
Michael Liao5bf95782014-12-04 05:20:33 +00001246 // Skip everything before the symbol.
Chad Rosierd383db52013-04-12 20:20:54 +00001247 if (unsigned Len = SymLocPtr - StartInBrac.getPointer()) {
1248 assert(Len > 0 && "Expected a non-negative length.");
Craig Topper7d5b2312015-10-10 05:25:02 +00001249 AsmRewrites.emplace_back(AOK_Skip, StartInBrac, Len);
Chad Rosierd383db52013-04-12 20:20:54 +00001250 }
1251 // Skip everything after the symbol.
1252 if (unsigned Len = End.getPointer() - (SymLocPtr + SymName.size())) {
1253 SMLoc Loc = SMLoc::getFromPointer(SymLocPtr + SymName.size());
1254 assert(Len > 0 && "Expected a non-negative length.");
Craig Topper7d5b2312015-10-10 05:25:02 +00001255 AsmRewrites.emplace_back(AOK_Skip, Loc, Len);
Chad Rosierd383db52013-04-12 20:20:54 +00001256 }
1257}
1258
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001259bool X86AsmParser::ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001260 MCAsmParser &Parser = getParser();
Chad Rosier6844ea02012-10-24 22:13:37 +00001261 const AsmToken &Tok = Parser.getTok();
Chad Rosier51afe632012-06-27 22:34:28 +00001262
Marina Yatsina8dfd5cb2015-12-24 12:09:51 +00001263 AsmToken::TokenKind PrevTK = AsmToken::Error;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001264 bool Done = false;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001265 while (!Done) {
1266 bool UpdateLocLex = true;
1267
1268 // The period in the dot operator (e.g., [ebx].foo.bar) is parsed as an
1269 // identifier. Don't try an parse it as a register.
Nirav Dave8601ac12016-08-02 17:56:03 +00001270 if (PrevTK != AsmToken::Error && Tok.getString().startswith("."))
Chad Rosier5c118fd2013-01-14 22:31:35 +00001271 break;
Michael Liao5bf95782014-12-04 05:20:33 +00001272
Chad Rosierbfb70992013-04-17 00:11:46 +00001273 // If we're parsing an immediate expression, we don't expect a '['.
1274 if (SM.getStopOnLBrac() && getLexer().getKind() == AsmToken::LBrac)
1275 break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001276
David Majnemer6a5b8122014-06-19 01:25:43 +00001277 AsmToken::TokenKind TK = getLexer().getKind();
1278 switch (TK) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001279 default: {
1280 if (SM.isValidEndState()) {
1281 Done = true;
1282 break;
1283 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001284 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001285 }
Chad Rosierbfb70992013-04-17 00:11:46 +00001286 case AsmToken::EndOfStatement: {
1287 Done = true;
1288 break;
1289 }
David Majnemer6a5b8122014-06-19 01:25:43 +00001290 case AsmToken::String:
Chad Rosier5c118fd2013-01-14 22:31:35 +00001291 case AsmToken::Identifier: {
Chad Rosier175d0ae2013-04-12 18:21:18 +00001292 // This could be a register or a symbolic displacement.
1293 unsigned TmpReg;
Chad Rosier95ce8892013-04-19 18:39:50 +00001294 const MCExpr *Val;
Chad Rosier152749c2013-04-12 18:54:20 +00001295 SMLoc IdentLoc = Tok.getLoc();
1296 StringRef Identifier = Tok.getString();
David Majnemer6a5b8122014-06-19 01:25:43 +00001297 if (TK != AsmToken::String && !ParseRegister(TmpReg, IdentLoc, End)) {
Chad Rosier5c118fd2013-01-14 22:31:35 +00001298 SM.onRegister(TmpReg);
1299 UpdateLocLex = false;
1300 break;
Chad Rosier95ce8892013-04-19 18:39:50 +00001301 } else {
1302 if (!isParsingInlineAsm()) {
1303 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001304 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier95ce8892013-04-19 18:39:50 +00001305 } else {
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001306 // This is a dot operator, not an adjacent identifier.
Marina Yatsina8dfd5cb2015-12-24 12:09:51 +00001307 if (Identifier.find('.') != StringRef::npos &&
1308 PrevTK == AsmToken::RBrac) {
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001309 return false;
1310 } else {
1311 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
1312 if (ParseIntelIdentifier(Val, Identifier, Info,
1313 /*Unevaluated=*/false, End))
1314 return true;
1315 }
Chad Rosier95ce8892013-04-19 18:39:50 +00001316 }
1317 SM.onIdentifierExpr(Val, Identifier);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001318 UpdateLocLex = false;
1319 break;
1320 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001321 return Error(Tok.getLoc(), "Unexpected identifier!");
Chad Rosier5c118fd2013-01-14 22:31:35 +00001322 }
Kevin Enderby36eba252013-12-19 23:16:14 +00001323 case AsmToken::Integer: {
Kevin Enderby9d117022014-01-23 21:52:41 +00001324 StringRef ErrMsg;
Chad Rosierbfb70992013-04-17 00:11:46 +00001325 if (isParsingInlineAsm() && SM.getAddImmPrefix())
Craig Topper7d5b2312015-10-10 05:25:02 +00001326 InstInfo->AsmRewrites->emplace_back(AOK_ImmPrefix, Tok.getLoc());
Kevin Enderby36eba252013-12-19 23:16:14 +00001327 // Look for 'b' or 'f' following an Integer as a directional label
1328 SMLoc Loc = getTok().getLoc();
1329 int64_t IntVal = getTok().getIntVal();
1330 End = consumeToken();
1331 UpdateLocLex = false;
1332 if (getLexer().getKind() == AsmToken::Identifier) {
1333 StringRef IDVal = getTok().getString();
1334 if (IDVal == "f" || IDVal == "b") {
1335 MCSymbol *Sym =
Jim Grosbach6f482002015-05-18 18:43:14 +00001336 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b");
Kevin Enderby36eba252013-12-19 23:16:14 +00001337 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Michael Liao5bf95782014-12-04 05:20:33 +00001338 const MCExpr *Val =
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00001339 MCSymbolRefExpr::create(Sym, Variant, getContext());
Kevin Enderby36eba252013-12-19 23:16:14 +00001340 if (IDVal == "b" && Sym->isUndefined())
1341 return Error(Loc, "invalid reference to undefined symbol");
1342 StringRef Identifier = Sym->getName();
1343 SM.onIdentifierExpr(Val, Identifier);
1344 End = consumeToken();
1345 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001346 if (SM.onInteger(IntVal, ErrMsg))
1347 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001348 }
1349 } else {
Kevin Enderby9d117022014-01-23 21:52:41 +00001350 if (SM.onInteger(IntVal, ErrMsg))
1351 return Error(Loc, ErrMsg);
Kevin Enderby36eba252013-12-19 23:16:14 +00001352 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001353 break;
Kevin Enderby36eba252013-12-19 23:16:14 +00001354 }
Chad Rosier5c118fd2013-01-14 22:31:35 +00001355 case AsmToken::Plus: SM.onPlus(); break;
1356 case AsmToken::Minus: SM.onMinus(); break;
Ehsan Akhgari4103da62014-07-04 19:13:05 +00001357 case AsmToken::Tilde: SM.onNot(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001358 case AsmToken::Star: SM.onStar(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001359 case AsmToken::Slash: SM.onDivide(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001360 case AsmToken::Pipe: SM.onOr(); break;
Michael Kupersteine3de07a2015-06-14 12:59:45 +00001361 case AsmToken::Caret: SM.onXor(); break;
Kevin Enderby2e13b1c2014-01-15 19:05:24 +00001362 case AsmToken::Amp: SM.onAnd(); break;
Kevin Enderbyd6b10712014-02-06 01:21:15 +00001363 case AsmToken::LessLess:
1364 SM.onLShift(); break;
1365 case AsmToken::GreaterGreater:
1366 SM.onRShift(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001367 case AsmToken::LBrac: SM.onLBrac(); break;
1368 case AsmToken::RBrac: SM.onRBrac(); break;
Chad Rosier4a7005e2013-04-05 16:28:55 +00001369 case AsmToken::LParen: SM.onLParen(); break;
1370 case AsmToken::RParen: SM.onRParen(); break;
Chad Rosier5c118fd2013-01-14 22:31:35 +00001371 }
Chad Rosier31246272013-04-17 21:01:45 +00001372 if (SM.hadError())
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001373 return Error(Tok.getLoc(), "unknown token in expression");
Chad Rosier31246272013-04-17 21:01:45 +00001374
Alp Tokera5b88a52013-12-02 16:06:06 +00001375 if (!Done && UpdateLocLex)
1376 End = consumeToken();
Marina Yatsina8dfd5cb2015-12-24 12:09:51 +00001377
1378 PrevTK = TK;
Devang Patel41b9dde2012-01-17 18:00:18 +00001379 }
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001380 return false;
Chad Rosier5362af92013-04-16 18:15:40 +00001381}
1382
David Blaikie960ea3f2014-06-08 16:18:35 +00001383std::unique_ptr<X86Operand>
1384X86AsmParser::ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
Nirav Dave8601ac12016-08-02 17:56:03 +00001385 int64_t ImmDisp, bool isSymbol,
1386 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001387 MCAsmParser &Parser = getParser();
Chad Rosier5362af92013-04-16 18:15:40 +00001388 const AsmToken &Tok = Parser.getTok();
1389 SMLoc BracLoc = Tok.getLoc(), End = Tok.getEndLoc();
1390 if (getLexer().isNot(AsmToken::LBrac))
1391 return ErrorOperand(BracLoc, "Expected '[' token!");
1392 Parser.Lex(); // Eat '['
1393
Nirav Davea6c75952016-07-14 17:37:05 +00001394 SMLoc StartInBrac = Parser.getTok().getLoc();
Chad Rosier5362af92013-04-16 18:15:40 +00001395 // Parse [ Symbol + ImmDisp ] and [ BaseReg + Scale*IndexReg + ImmDisp ]. We
1396 // may have already parsed an immediate displacement before the bracketed
1397 // expression.
Chad Rosierbfb70992013-04-17 00:11:46 +00001398 IntelExprStateMachine SM(ImmDisp, /*StopOnLBrac=*/false, /*AddImmPrefix=*/true);
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001399 if (ParseIntelExpression(SM, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001400 return nullptr;
Devang Patel41b9dde2012-01-17 18:00:18 +00001401
Craig Topper062a2ba2014-04-25 05:30:21 +00001402 const MCExpr *Disp = nullptr;
Chad Rosier175d0ae2013-04-12 18:21:18 +00001403 if (const MCExpr *Sym = SM.getSym()) {
Chad Rosierd383db52013-04-12 20:20:54 +00001404 // A symbolic displacement.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001405 Disp = Sym;
Chad Rosierd383db52013-04-12 20:20:54 +00001406 if (isParsingInlineAsm())
Craig Topper7143d802015-10-10 05:25:06 +00001407 RewriteIntelBracExpression(*InstInfo->AsmRewrites, SM.getSymName(),
Chad Rosier5362af92013-04-16 18:15:40 +00001408 ImmDisp, SM.getImm(), BracLoc, StartInBrac,
Chad Rosierd383db52013-04-12 20:20:54 +00001409 End);
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001410 }
1411
1412 if (SM.getImm() || !Disp) {
Jim Grosbach13760bd2015-05-30 01:25:56 +00001413 const MCExpr *Imm = MCConstantExpr::create(SM.getImm(), getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001414 if (Disp)
Jim Grosbach13760bd2015-05-30 01:25:56 +00001415 Disp = MCBinaryExpr::createAdd(Disp, Imm, getContext());
Reid Klecknerd84e70e2014-03-04 00:33:17 +00001416 else
1417 Disp = Imm; // An immediate displacement only.
Chad Rosier175d0ae2013-04-12 18:21:18 +00001418 }
Devang Pateld0930ff2012-01-20 21:21:01 +00001419
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001420 // Parse struct field access. Intel requires a dot, but MSVC doesn't. MSVC
1421 // will in fact do global lookup the field name inside all global typedefs,
1422 // but we don't emulate that.
Nirav Davea6c75952016-07-14 17:37:05 +00001423 if ((Parser.getTok().getKind() == AsmToken::Identifier ||
1424 Parser.getTok().getKind() == AsmToken::Dot ||
1425 Parser.getTok().getKind() == AsmToken::Real) &&
1426 Parser.getTok().getString().find('.') != StringRef::npos) {
Chad Rosier911c1f32012-10-25 17:37:43 +00001427 const MCExpr *NewDisp;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001428 if (ParseIntelDotOperator(Disp, NewDisp))
Craig Topper062a2ba2014-04-25 05:30:21 +00001429 return nullptr;
Michael Liao5bf95782014-12-04 05:20:33 +00001430
Chad Rosier70f47592013-04-10 20:07:47 +00001431 End = Tok.getEndLoc();
Chad Rosier911c1f32012-10-25 17:37:43 +00001432 Parser.Lex(); // Eat the field.
1433 Disp = NewDisp;
1434 }
Chad Rosier5dcb4662012-10-24 22:21:50 +00001435
Nirav Dave8601ac12016-08-02 17:56:03 +00001436 if (isSymbol) {
1437 if (SM.getSym()) {
1438 Error(Start, "cannot use more than one symbol in memory operand");
1439 return nullptr;
1440 }
1441 if (SM.getBaseReg()) {
1442 Error(Start, "cannot use base register with variable reference");
1443 return nullptr;
1444 }
1445 if (SM.getIndexReg()) {
1446 Error(Start, "cannot use index register with variable reference");
1447 return nullptr;
1448 }
1449 }
1450
Chad Rosier5c118fd2013-01-14 22:31:35 +00001451 int BaseReg = SM.getBaseReg();
1452 int IndexReg = SM.getIndexReg();
Chad Rosier175d0ae2013-04-12 18:21:18 +00001453 int Scale = SM.getScale();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001454 if (!isParsingInlineAsm()) {
1455 // handle [-42]
1456 if (!BaseReg && !IndexReg) {
1457 if (!SegReg)
Craig Topper055845f2015-01-02 07:02:25 +00001458 return X86Operand::CreateMem(getPointerWidth(), Disp, Start, End, Size);
1459 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1460 Start, End, Size);
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001461 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00001462 StringRef ErrMsg;
1463 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
1464 Error(StartInBrac, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00001465 return nullptr;
Kevin Enderbybc570f22014-01-23 22:34:42 +00001466 }
Craig Topper055845f2015-01-02 07:02:25 +00001467 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
1468 IndexReg, Scale, Start, End, Size);
Chad Rosier5c118fd2013-01-14 22:31:35 +00001469 }
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001470
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001471 InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
Chad Rosiere8f9bfd2013-04-19 19:29:50 +00001472 return CreateMemForInlineAsm(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001473 End, Size, SM.getSymName(), Info);
Devang Patel41b9dde2012-01-17 18:00:18 +00001474}
1475
Chad Rosier8a244662013-04-02 20:02:33 +00001476// Inline assembly may use variable names with namespace alias qualifiers.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001477bool X86AsmParser::ParseIntelIdentifier(const MCExpr *&Val,
1478 StringRef &Identifier,
1479 InlineAsmIdentifierInfo &Info,
1480 bool IsUnevaluatedOperand, SMLoc &End) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001481 MCAsmParser &Parser = getParser();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001482 assert(isParsingInlineAsm() && "Expected to be parsing inline assembly.");
Craig Topper062a2ba2014-04-25 05:30:21 +00001483 Val = nullptr;
Chad Rosier8a244662013-04-02 20:02:33 +00001484
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001485 StringRef LineBuf(Identifier.data());
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001486 void *Result =
1487 SemaCallback->LookupInlineAsmIdentifier(LineBuf, Info, IsUnevaluatedOperand);
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001488
Chad Rosier8a244662013-04-02 20:02:33 +00001489 const AsmToken &Tok = Parser.getTok();
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001490 SMLoc Loc = Tok.getLoc();
John McCallf73981b2013-05-03 00:15:41 +00001491
1492 // Advance the token stream until the end of the current token is
1493 // after the end of what the frontend claimed.
1494 const char *EndPtr = Tok.getLoc().getPointer() + LineBuf.size();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001495 do {
John McCallf73981b2013-05-03 00:15:41 +00001496 End = Tok.getEndLoc();
1497 getLexer().Lex();
Reid Klecknerc2b92542015-08-26 21:57:25 +00001498 } while (End.getPointer() < EndPtr);
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001499 Identifier = LineBuf;
1500
Reid Klecknerc2b92542015-08-26 21:57:25 +00001501 // The frontend should end parsing on an assembler token boundary, unless it
1502 // failed parsing.
1503 assert((End.getPointer() == EndPtr || !Result) &&
1504 "frontend claimed part of a token?");
1505
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001506 // If the identifier lookup was unsuccessful, assume that we are dealing with
1507 // a label.
1508 if (!Result) {
Ehsan Akhgaribb6bb072014-09-22 20:40:36 +00001509 StringRef InternalName =
1510 SemaCallback->LookupInlineAsmLabel(Identifier, getSourceManager(),
1511 Loc, false);
1512 assert(InternalName.size() && "We should have an internal name here.");
1513 // Push a rewrite for replacing the identifier name with the internal name.
Craig Topper7d5b2312015-10-10 05:25:02 +00001514 InstInfo->AsmRewrites->emplace_back(AOK_Label, Loc, Identifier.size(),
1515 InternalName);
Ehsan Akhgaridb0e7062014-09-22 02:21:35 +00001516 }
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001517
1518 // Create the symbol reference.
Jim Grosbach6f482002015-05-18 18:43:14 +00001519 MCSymbol *Sym = getContext().getOrCreateSymbol(Identifier);
Chad Rosier8a244662013-04-02 20:02:33 +00001520 MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
Jim Grosbach13760bd2015-05-30 01:25:56 +00001521 Val = MCSymbolRefExpr::create(Sym, Variant, getParser().getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001522 return false;
Chad Rosier8a244662013-04-02 20:02:33 +00001523}
1524
David Majnemeraa34d792013-08-27 21:56:17 +00001525/// \brief Parse intel style segment override.
David Blaikie960ea3f2014-06-08 16:18:35 +00001526std::unique_ptr<X86Operand>
1527X86AsmParser::ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start,
1528 unsigned Size) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001529 MCAsmParser &Parser = getParser();
David Majnemeraa34d792013-08-27 21:56:17 +00001530 assert(SegReg != 0 && "Tried to parse a segment override without a segment!");
1531 const AsmToken &Tok = Parser.getTok(); // Eat colon.
1532 if (Tok.isNot(AsmToken::Colon))
1533 return ErrorOperand(Tok.getLoc(), "Expected ':' token!");
1534 Parser.Lex(); // Eat ':'
Devang Patel41b9dde2012-01-17 18:00:18 +00001535
David Majnemeraa34d792013-08-27 21:56:17 +00001536 int64_t ImmDisp = 0;
Chad Rosier1530ba52013-03-27 21:49:56 +00001537 if (getLexer().is(AsmToken::Integer)) {
David Majnemeraa34d792013-08-27 21:56:17 +00001538 ImmDisp = Tok.getIntVal();
1539 AsmToken ImmDispToken = Parser.Lex(); // Eat the integer.
1540
Chad Rosier1530ba52013-03-27 21:49:56 +00001541 if (isParsingInlineAsm())
Craig Topper7d5b2312015-10-10 05:25:02 +00001542 InstInfo->AsmRewrites->emplace_back(AOK_ImmPrefix, ImmDispToken.getLoc());
David Majnemeraa34d792013-08-27 21:56:17 +00001543
1544 if (getLexer().isNot(AsmToken::LBrac)) {
1545 // An immediate following a 'segment register', 'colon' token sequence can
1546 // be followed by a bracketed expression. If it isn't we know we have our
1547 // final segment override.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001548 const MCExpr *Disp = MCConstantExpr::create(ImmDisp, getContext());
Craig Topper055845f2015-01-02 07:02:25 +00001549 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp,
1550 /*BaseReg=*/0, /*IndexReg=*/0, /*Scale=*/1,
1551 Start, ImmDispToken.getEndLoc(), Size);
David Majnemeraa34d792013-08-27 21:56:17 +00001552 }
Chad Rosier1530ba52013-03-27 21:49:56 +00001553 }
1554
Chad Rosier91c82662012-10-24 17:22:29 +00001555 if (getLexer().is(AsmToken::LBrac))
Nirav Dave8601ac12016-08-02 17:56:03 +00001556 return ParseIntelBracExpression(SegReg, Start, ImmDisp, false, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001557
David Majnemeraa34d792013-08-27 21:56:17 +00001558 const MCExpr *Val;
1559 SMLoc End;
1560 if (!isParsingInlineAsm()) {
1561 if (getParser().parsePrimaryExpr(Val, End))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001562 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
David Majnemeraa34d792013-08-27 21:56:17 +00001563
Craig Topper055845f2015-01-02 07:02:25 +00001564 return X86Operand::CreateMem(getPointerWidth(), Val, Start, End, Size);
Devang Patel880bc162012-01-23 18:31:58 +00001565 }
Devang Patel41b9dde2012-01-17 18:00:18 +00001566
David Majnemeraa34d792013-08-27 21:56:17 +00001567 InlineAsmIdentifierInfo Info;
1568 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001569 if (ParseIntelIdentifier(Val, Identifier, Info,
1570 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001571 return nullptr;
David Majnemeraa34d792013-08-27 21:56:17 +00001572 return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0,/*IndexReg=*/0,
1573 /*Scale=*/1, Start, End, Size, Identifier, Info);
1574}
1575
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001576//ParseRoundingModeOp - Parse AVX-512 rounding mode operand
1577std::unique_ptr<X86Operand>
1578X86AsmParser::ParseRoundingModeOp(SMLoc Start, SMLoc End) {
1579 MCAsmParser &Parser = getParser();
1580 const AsmToken &Tok = Parser.getTok();
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001581 // Eat "{" and mark the current place.
1582 const SMLoc consumedToken = consumeToken();
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001583 if (Tok.getIdentifier().startswith("r")){
1584 int rndMode = StringSwitch<int>(Tok.getIdentifier())
1585 .Case("rn", X86::STATIC_ROUNDING::TO_NEAREST_INT)
1586 .Case("rd", X86::STATIC_ROUNDING::TO_NEG_INF)
1587 .Case("ru", X86::STATIC_ROUNDING::TO_POS_INF)
1588 .Case("rz", X86::STATIC_ROUNDING::TO_ZERO)
1589 .Default(-1);
1590 if (-1 == rndMode)
1591 return ErrorOperand(Tok.getLoc(), "Invalid rounding mode.");
1592 Parser.Lex(); // Eat "r*" of r*-sae
1593 if (!getLexer().is(AsmToken::Minus))
1594 return ErrorOperand(Tok.getLoc(), "Expected - at this point");
1595 Parser.Lex(); // Eat "-"
1596 Parser.Lex(); // Eat the sae
1597 if (!getLexer().is(AsmToken::RCurly))
1598 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1599 Parser.Lex(); // Eat "}"
1600 const MCExpr *RndModeOp =
Jim Grosbach13760bd2015-05-30 01:25:56 +00001601 MCConstantExpr::create(rndMode, Parser.getContext());
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001602 return X86Operand::CreateImm(RndModeOp, Start, End);
1603 }
Elena Demikhovsky29792e92015-05-07 11:24:42 +00001604 if(Tok.getIdentifier().equals("sae")){
1605 Parser.Lex(); // Eat the sae
1606 if (!getLexer().is(AsmToken::RCurly))
1607 return ErrorOperand(Tok.getLoc(), "Expected } at this point");
1608 Parser.Lex(); // Eat "}"
1609 return X86Operand::CreateToken("{sae}", consumedToken);
1610 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001611 return ErrorOperand(Tok.getLoc(), "unknown token in expression");
1612}
Chad Rosier91c82662012-10-24 17:22:29 +00001613
Chad Rosier5dcb4662012-10-24 22:21:50 +00001614/// Parse the '.' operator.
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001615bool X86AsmParser::ParseIntelDotOperator(const MCExpr *Disp,
Chad Rosiercc541e82013-04-19 15:57:00 +00001616 const MCExpr *&NewDisp) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001617 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001618 const AsmToken &Tok = Parser.getTok();
Chad Rosier6241c1a2013-04-17 21:14:38 +00001619 int64_t OrigDispVal, DotDispVal;
Chad Rosier911c1f32012-10-25 17:37:43 +00001620
1621 // FIXME: Handle non-constant expressions.
Chad Rosiercc541e82013-04-19 15:57:00 +00001622 if (const MCConstantExpr *OrigDisp = dyn_cast<MCConstantExpr>(Disp))
Chad Rosier911c1f32012-10-25 17:37:43 +00001623 OrigDispVal = OrigDisp->getValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001624 else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001625 return Error(Tok.getLoc(), "Non-constant offsets are not supported!");
Chad Rosier5dcb4662012-10-24 22:21:50 +00001626
Reid Kleckner94a1c4d2014-03-06 19:19:12 +00001627 // Drop the optional '.'.
1628 StringRef DotDispStr = Tok.getString();
1629 if (DotDispStr.startswith("."))
1630 DotDispStr = DotDispStr.drop_front(1);
Chad Rosier5dcb4662012-10-24 22:21:50 +00001631
Chad Rosier5dcb4662012-10-24 22:21:50 +00001632 // .Imm gets lexed as a real.
1633 if (Tok.is(AsmToken::Real)) {
1634 APInt DotDisp;
1635 DotDispStr.getAsInteger(10, DotDisp);
Chad Rosier911c1f32012-10-25 17:37:43 +00001636 DotDispVal = DotDisp.getZExtValue();
Chad Rosiercc541e82013-04-19 15:57:00 +00001637 } else if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
Chad Rosier240b7b92012-10-25 21:51:10 +00001638 unsigned DotDisp;
1639 std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.');
1640 if (SemaCallback->LookupInlineAsmField(BaseMember.first, BaseMember.second,
Chad Rosiercc541e82013-04-19 15:57:00 +00001641 DotDisp))
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001642 return Error(Tok.getLoc(), "Unable to lookup field reference!");
Chad Rosier240b7b92012-10-25 21:51:10 +00001643 DotDispVal = DotDisp;
Chad Rosiercc541e82013-04-19 15:57:00 +00001644 } else
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001645 return Error(Tok.getLoc(), "Unexpected token type!");
Chad Rosier911c1f32012-10-25 17:37:43 +00001646
Chad Rosier240b7b92012-10-25 21:51:10 +00001647 if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
1648 SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data());
1649 unsigned Len = DotDispStr.size();
1650 unsigned Val = OrigDispVal + DotDispVal;
Craig Topper7d5b2312015-10-10 05:25:02 +00001651 InstInfo->AsmRewrites->emplace_back(AOK_DotOperator, Loc, Len, Val);
Chad Rosier911c1f32012-10-25 17:37:43 +00001652 }
1653
Jim Grosbach13760bd2015-05-30 01:25:56 +00001654 NewDisp = MCConstantExpr::create(OrigDispVal + DotDispVal, getContext());
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001655 return false;
Chad Rosier5dcb4662012-10-24 22:21:50 +00001656}
1657
Chad Rosier91c82662012-10-24 17:22:29 +00001658/// Parse the 'offset' operator. This operator is used to specify the
1659/// location rather then the content of a variable.
David Blaikie960ea3f2014-06-08 16:18:35 +00001660std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOffsetOfOperator() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001661 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001662 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001663 SMLoc OffsetOfLoc = Tok.getLoc();
Chad Rosier91c82662012-10-24 17:22:29 +00001664 Parser.Lex(); // Eat offset.
Chad Rosier91c82662012-10-24 17:22:29 +00001665
Chad Rosier91c82662012-10-24 17:22:29 +00001666 const MCExpr *Val;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001667 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001668 SMLoc Start = Tok.getLoc(), End;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001669 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001670 if (ParseIntelIdentifier(Val, Identifier, Info,
1671 /*Unevaluated=*/false, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001672 return nullptr;
Chad Rosierae7ecd62013-04-11 23:37:34 +00001673
Chad Rosiere2f03772012-10-26 16:09:20 +00001674 // Don't emit the offset operator.
Craig Topper7d5b2312015-10-10 05:25:02 +00001675 InstInfo->AsmRewrites->emplace_back(AOK_Skip, OffsetOfLoc, 7);
Chad Rosiere2f03772012-10-26 16:09:20 +00001676
Chad Rosier91c82662012-10-24 17:22:29 +00001677 // The offset operator will have an 'r' constraint, thus we need to create
1678 // register operand to ensure proper matching. Just pick a GPR based on
1679 // the size of a pointer.
Craig Topper3c80d622014-01-06 04:55:54 +00001680 unsigned RegNo =
1681 is64BitMode() ? X86::RBX : (is32BitMode() ? X86::EBX : X86::BX);
Chad Rosiera4bc9432013-01-10 22:10:27 +00001682 return X86Operand::CreateReg(RegNo, Start, End, /*GetAddress=*/true,
Chad Rosier732b8372013-04-22 22:04:25 +00001683 OffsetOfLoc, Identifier, Info.OpDecl);
Devang Patel41b9dde2012-01-17 18:00:18 +00001684}
1685
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001686enum IntelOperatorKind {
1687 IOK_LENGTH,
1688 IOK_SIZE,
1689 IOK_TYPE
1690};
1691
1692/// Parse the 'LENGTH', 'TYPE' and 'SIZE' operators. The LENGTH operator
1693/// returns the number of elements in an array. It returns the value 1 for
1694/// non-array variables. The SIZE operator returns the size of a C or C++
1695/// variable. A variable's size is the product of its LENGTH and TYPE. The
1696/// TYPE operator returns the size of a C or C++ type or variable. If the
1697/// variable is an array, TYPE returns the size of a single element.
David Blaikie960ea3f2014-06-08 16:18:35 +00001698std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperator(unsigned OpKind) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001699 MCAsmParser &Parser = getParser();
Chad Rosier18785852013-04-09 20:58:48 +00001700 const AsmToken &Tok = Parser.getTok();
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001701 SMLoc TypeLoc = Tok.getLoc();
1702 Parser.Lex(); // Eat operator.
Chad Rosier11c42f22012-10-26 18:04:20 +00001703
Craig Topper062a2ba2014-04-25 05:30:21 +00001704 const MCExpr *Val = nullptr;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001705 InlineAsmIdentifierInfo Info;
Chad Rosier18785852013-04-09 20:58:48 +00001706 SMLoc Start = Tok.getLoc(), End;
Chad Rosierb67f8052013-04-11 23:57:04 +00001707 StringRef Identifier = Tok.getString();
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001708 if (ParseIntelIdentifier(Val, Identifier, Info,
1709 /*Unevaluated=*/true, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001710 return nullptr;
Benjamin Kramer951b15e2013-12-01 11:47:42 +00001711
1712 if (!Info.OpDecl)
1713 return ErrorOperand(Start, "unable to lookup expression");
Chad Rosier11c42f22012-10-26 18:04:20 +00001714
Chad Rosierf6675c32013-04-22 17:01:46 +00001715 unsigned CVal = 0;
Chad Rosiercb78f0d2013-04-22 19:42:15 +00001716 switch(OpKind) {
1717 default: llvm_unreachable("Unexpected operand kind!");
1718 case IOK_LENGTH: CVal = Info.Length; break;
1719 case IOK_SIZE: CVal = Info.Size; break;
1720 case IOK_TYPE: CVal = Info.Type; break;
1721 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001722
1723 // Rewrite the type operator and the C or C++ type or variable in terms of an
1724 // immediate. E.g. TYPE foo -> $$4
1725 unsigned Len = End.getPointer() - TypeLoc.getPointer();
Craig Topper7d5b2312015-10-10 05:25:02 +00001726 InstInfo->AsmRewrites->emplace_back(AOK_Imm, TypeLoc, Len, CVal);
Chad Rosier11c42f22012-10-26 18:04:20 +00001727
Jim Grosbach13760bd2015-05-30 01:25:56 +00001728 const MCExpr *Imm = MCConstantExpr::create(CVal, getContext());
Chad Rosierf3c04f62013-03-19 21:58:18 +00001729 return X86Operand::CreateImm(Imm, Start, End);
Chad Rosier11c42f22012-10-26 18:04:20 +00001730}
1731
David Blaikie960ea3f2014-06-08 16:18:35 +00001732std::unique_ptr<X86Operand> X86AsmParser::ParseIntelOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001733 MCAsmParser &Parser = getParser();
Chad Rosier70f47592013-04-10 20:07:47 +00001734 const AsmToken &Tok = Parser.getTok();
David Majnemeraa34d792013-08-27 21:56:17 +00001735 SMLoc Start, End;
Chad Rosier91c82662012-10-24 17:22:29 +00001736
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001737 // Offset, length, type and size operators.
1738 if (isParsingInlineAsm()) {
Chad Rosier99e54642013-04-19 17:32:29 +00001739 StringRef AsmTokStr = Tok.getString();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001740 if (AsmTokStr == "offset" || AsmTokStr == "OFFSET")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001741 return ParseIntelOffsetOfOperator();
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001742 if (AsmTokStr == "length" || AsmTokStr == "LENGTH")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001743 return ParseIntelOperator(IOK_LENGTH);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001744 if (AsmTokStr == "size" || AsmTokStr == "SIZE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001745 return ParseIntelOperator(IOK_SIZE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001746 if (AsmTokStr == "type" || AsmTokStr == "TYPE")
Chad Rosier10d1d1c2013-04-09 20:44:09 +00001747 return ParseIntelOperator(IOK_TYPE);
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001748 }
Chad Rosier11c42f22012-10-26 18:04:20 +00001749
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001750 bool PtrInOperand = false;
David Majnemeraa34d792013-08-27 21:56:17 +00001751 unsigned Size = getIntelMemOperandSize(Tok.getString());
1752 if (Size) {
1753 Parser.Lex(); // Eat operand size (e.g., byte, word).
1754 if (Tok.getString() != "PTR" && Tok.getString() != "ptr")
Reid Kleckner71ff3f22014-08-01 00:59:22 +00001755 return ErrorOperand(Tok.getLoc(), "Expected 'PTR' or 'ptr' token!");
David Majnemeraa34d792013-08-27 21:56:17 +00001756 Parser.Lex(); // Eat ptr.
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001757 PtrInOperand = true;
David Majnemeraa34d792013-08-27 21:56:17 +00001758 }
Nirav Dave8601ac12016-08-02 17:56:03 +00001759
David Majnemeraa34d792013-08-27 21:56:17 +00001760 Start = Tok.getLoc();
1761
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001762 // rounding mode token
Akira Hatanakabd9fc282015-11-14 05:20:05 +00001763 if (getSTI().getFeatureBits()[X86::FeatureAVX512] &&
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001764 getLexer().is(AsmToken::LCurly))
1765 return ParseRoundingModeOp(Start, End);
1766
Chad Rosierd0ed73a2013-01-17 19:21:48 +00001767 // Register.
Devang Patelce6a2ca2012-01-20 22:32:05 +00001768 unsigned RegNo = 0;
Nirav Dave8601ac12016-08-02 17:56:03 +00001769 if (getLexer().is(AsmToken::Identifier) &&
1770 !ParseRegister(RegNo, Start, End)) {
Chad Rosier0397edd2012-10-04 23:59:38 +00001771 // If this is a segment register followed by a ':', then this is the start
David Majnemeraa34d792013-08-27 21:56:17 +00001772 // of a segment override, otherwise this is a normal register reference.
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001773 // In case it is a normal register and there is ptr in the operand this
1774 // is an error
1775 if (getLexer().isNot(AsmToken::Colon)){
1776 if (PtrInOperand){
1777 return ErrorOperand(Start, "expected memory operand after "
1778 "'ptr', found register operand instead");
1779 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00001780 return X86Operand::CreateReg(RegNo, Start, End);
Marina Yatsina4b1aea02015-12-03 12:17:03 +00001781 }
David Majnemeraa34d792013-08-27 21:56:17 +00001782 return ParseIntelSegmentOverride(/*SegReg=*/RegNo, Start, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001783 }
1784
Nirav Dave8601ac12016-08-02 17:56:03 +00001785 // Immediates and Memory
1786
1787 // Parse [ BaseReg + Scale*IndexReg + Disp ].
1788 if (getLexer().is(AsmToken::LBrac))
1789 return ParseIntelBracExpression(/*SegReg=*/0, Start, /*ImmDisp=*/0, false,
1790 Size);
1791
1792 AsmToken StartTok = Tok;
1793 IntelExprStateMachine SM(/*Imm=*/0, /*StopOnLBrac=*/true,
1794 /*AddImmPrefix=*/false);
1795 if (ParseIntelExpression(SM, End))
1796 return nullptr;
1797
1798 bool isSymbol = SM.getSym() && SM.getSym()->getKind() != MCExpr::Constant;
1799 int64_t Imm = SM.getImm();
1800 if (SM.getSym() && SM.getSym()->getKind() == MCExpr::Constant)
1801 SM.getSym()->evaluateAsAbsolute(Imm);
1802
1803 if (StartTok.isNot(AsmToken::Identifier) &&
1804 StartTok.isNot(AsmToken::String) && isParsingInlineAsm()) {
1805 unsigned Len = Tok.getLoc().getPointer() - Start.getPointer();
1806 if (StartTok.getString().size() == Len)
1807 // Just add a prefix if this wasn't a complex immediate expression.
1808 InstInfo->AsmRewrites->emplace_back(AOK_ImmPrefix, Start);
1809 else
1810 // Otherwise, rewrite the complex expression as a single immediate.
1811 InstInfo->AsmRewrites->emplace_back(AOK_Imm, Start, Len, Imm);
1812 }
1813
1814 if (getLexer().isNot(AsmToken::LBrac)) {
1815 // If a directional label (ie. 1f or 2b) was parsed above from
1816 // ParseIntelExpression() then SM.getSym() was set to a pointer to
1817 // to the MCExpr with the directional local symbol and this is a
1818 // memory operand not an immediate operand.
1819 if (isSymbol) {
1820 if (isParsingInlineAsm())
1821 return CreateMemForInlineAsm(/*SegReg=*/0, SM.getSym(), /*BaseReg=*/0,
1822 /*IndexReg=*/0,
1823 /*Scale=*/1, Start, End, Size,
1824 SM.getSymName(), SM.getIdentifierInfo());
1825 return X86Operand::CreateMem(getPointerWidth(), SM.getSym(), Start, End,
1826 Size);
1827 }
1828
1829 const MCExpr *ImmExpr = MCConstantExpr::create(Imm, getContext());
1830 return X86Operand::CreateImm(ImmExpr, Start, End);
1831 }
1832
1833 // Only positive immediates are valid.
1834 if (Imm < 0)
1835 return ErrorOperand(Start, "expected a positive immediate displacement "
1836 "before bracketed expr.");
1837
1838 return ParseIntelBracExpression(/*SegReg=*/0, Start, Imm, isSymbol, Size);
Devang Patel46831de2012-01-12 01:36:43 +00001839}
1840
David Blaikie960ea3f2014-06-08 16:18:35 +00001841std::unique_ptr<X86Operand> X86AsmParser::ParseATTOperand() {
Rafael Espindola961d4692014-11-11 05:18:41 +00001842 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001843 switch (getLexer().getKind()) {
1844 default:
Chris Lattnerb9270732010-04-17 18:56:34 +00001845 // Parse a memory operand with no segment register.
1846 return ParseMemOperand(0, Parser.getTok().getLoc());
Chris Lattnercc2ad082010-01-15 18:27:19 +00001847 case AsmToken::Percent: {
Chris Lattnerb9270732010-04-17 18:56:34 +00001848 // Read the register.
Chris Lattnercc2ad082010-01-15 18:27:19 +00001849 unsigned RegNo;
Chris Lattner0c2538f2010-01-15 18:51:29 +00001850 SMLoc Start, End;
Craig Topper062a2ba2014-04-25 05:30:21 +00001851 if (ParseRegister(RegNo, Start, End)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001852 if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00001853 Error(Start, "%eiz and %riz can only be used as index registers",
1854 SMRange(Start, End));
Craig Topper062a2ba2014-04-25 05:30:21 +00001855 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00001856 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001857
Chris Lattnerb9270732010-04-17 18:56:34 +00001858 // If this is a segment register followed by a ':', then this is the start
1859 // of a memory reference, otherwise this is a normal register reference.
1860 if (getLexer().isNot(AsmToken::Colon))
1861 return X86Operand::CreateReg(RegNo, Start, End);
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001862
Reid Kleckner0c5da972014-07-31 23:03:22 +00001863 if (!X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo))
1864 return ErrorOperand(Start, "invalid segment register");
1865
Chris Lattnerb9270732010-04-17 18:56:34 +00001866 getParser().Lex(); // Eat the colon.
1867 return ParseMemOperand(RegNo, Start);
Chris Lattnercc2ad082010-01-15 18:27:19 +00001868 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001869 case AsmToken::Dollar: {
1870 // $42 -> immediate.
Sean Callanan936b0d32010-01-19 21:44:56 +00001871 SMLoc Start = Parser.getTok().getLoc(), End;
Sean Callanana83fd7d2010-01-19 20:27:46 +00001872 Parser.Lex();
Daniel Dunbar73da11e2009-08-31 08:08:38 +00001873 const MCExpr *Val;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001874 if (getParser().parseExpression(Val, End))
Craig Topper062a2ba2014-04-25 05:30:21 +00001875 return nullptr;
Chris Lattner528d00b2010-01-15 19:28:38 +00001876 return X86Operand::CreateImm(Val, Start, End);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001877 }
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001878 case AsmToken::LCurly:{
1879 SMLoc Start = Parser.getTok().getLoc(), End;
Akira Hatanakabd9fc282015-11-14 05:20:05 +00001880 if (getSTI().getFeatureBits()[X86::FeatureAVX512])
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001881 return ParseRoundingModeOp(Start, End);
Nirav Dave8601ac12016-08-02 17:56:03 +00001882 return ErrorOperand(Start, "Unexpected '{' in expression");
Elena Demikhovsky18fd4962015-03-02 15:00:34 +00001883 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001884 }
Daniel Dunbar2b11c7d2009-07-20 20:01:54 +00001885}
1886
David Blaikie960ea3f2014-06-08 16:18:35 +00001887bool X86AsmParser::HandleAVX512Operand(OperandVector &Operands,
1888 const MCParsedAsmOperand &Op) {
Rafael Espindola961d4692014-11-11 05:18:41 +00001889 MCAsmParser &Parser = getParser();
Akira Hatanakabd9fc282015-11-14 05:20:05 +00001890 if(getSTI().getFeatureBits()[X86::FeatureAVX512]) {
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001891 if (getLexer().is(AsmToken::LCurly)) {
1892 // Eat "{" and mark the current place.
1893 const SMLoc consumedToken = consumeToken();
1894 // Distinguish {1to<NUM>} from {%k<NUM>}.
1895 if(getLexer().is(AsmToken::Integer)) {
1896 // Parse memory broadcasting ({1to<NUM>}).
1897 if (getLexer().getTok().getIntVal() != 1)
Nico Webere204c482016-09-13 18:17:00 +00001898 return !ErrorAndEatStatement(getLexer().getLoc(),
1899 "Expected 1to<NUM> at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001900 Parser.Lex(); // Eat "1" of 1to8
1901 if (!getLexer().is(AsmToken::Identifier) ||
1902 !getLexer().getTok().getIdentifier().startswith("to"))
Nico Webere204c482016-09-13 18:17:00 +00001903 return !ErrorAndEatStatement(getLexer().getLoc(),
1904 "Expected 1to<NUM> at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001905 // Recognize only reasonable suffixes.
1906 const char *BroadcastPrimitive =
1907 StringSwitch<const char*>(getLexer().getTok().getIdentifier())
Robert Khasanovbfa01312014-07-21 14:54:21 +00001908 .Case("to2", "{1to2}")
1909 .Case("to4", "{1to4}")
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001910 .Case("to8", "{1to8}")
1911 .Case("to16", "{1to16}")
Craig Topper062a2ba2014-04-25 05:30:21 +00001912 .Default(nullptr);
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001913 if (!BroadcastPrimitive)
Nico Webere204c482016-09-13 18:17:00 +00001914 return !ErrorAndEatStatement(getLexer().getLoc(),
1915 "Invalid memory broadcast primitive.");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001916 Parser.Lex(); // Eat "toN" of 1toN
1917 if (!getLexer().is(AsmToken::RCurly))
Nico Webere204c482016-09-13 18:17:00 +00001918 return !ErrorAndEatStatement(getLexer().getLoc(),
1919 "Expected } at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001920 Parser.Lex(); // Eat "}"
1921 Operands.push_back(X86Operand::CreateToken(BroadcastPrimitive,
1922 consumedToken));
1923 // No AVX512 specific primitives can pass
1924 // after memory broadcasting, so return.
1925 return true;
1926 } else {
1927 // Parse mask register {%k1}
1928 Operands.push_back(X86Operand::CreateToken("{", consumedToken));
David Blaikie960ea3f2014-06-08 16:18:35 +00001929 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
1930 Operands.push_back(std::move(Op));
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001931 if (!getLexer().is(AsmToken::RCurly))
Nico Webere204c482016-09-13 18:17:00 +00001932 return !ErrorAndEatStatement(getLexer().getLoc(),
1933 "Expected } at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001934 Operands.push_back(X86Operand::CreateToken("}", consumeToken()));
1935
1936 // Parse "zeroing non-masked" semantic {z}
1937 if (getLexer().is(AsmToken::LCurly)) {
1938 Operands.push_back(X86Operand::CreateToken("{z}", consumeToken()));
1939 if (!getLexer().is(AsmToken::Identifier) ||
1940 getLexer().getTok().getIdentifier() != "z")
Nico Webere204c482016-09-13 18:17:00 +00001941 return !ErrorAndEatStatement(getLexer().getLoc(),
1942 "Expected z at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001943 Parser.Lex(); // Eat the z
1944 if (!getLexer().is(AsmToken::RCurly))
Nico Webere204c482016-09-13 18:17:00 +00001945 return !ErrorAndEatStatement(getLexer().getLoc(),
1946 "Expected } at this point");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00001947 Parser.Lex(); // Eat the }
1948 }
1949 }
1950 }
1951 }
1952 }
1953 return true;
1954}
1955
Chris Lattnerb9270732010-04-17 18:56:34 +00001956/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
1957/// has already been parsed if present.
David Blaikie960ea3f2014-06-08 16:18:35 +00001958std::unique_ptr<X86Operand> X86AsmParser::ParseMemOperand(unsigned SegReg,
1959 SMLoc MemStart) {
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001960
Rafael Espindola961d4692014-11-11 05:18:41 +00001961 MCAsmParser &Parser = getParser();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001962 // We have to disambiguate a parenthesized expression "(4+5)" from the start
1963 // of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
Chris Lattner807a3bc2010-01-24 01:07:33 +00001964 // only way to do this without lookahead is to eat the '(' and see what is
1965 // after it.
Jim Grosbach13760bd2015-05-30 01:25:56 +00001966 const MCExpr *Disp = MCConstantExpr::create(0, getParser().getContext());
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001967 if (getLexer().isNot(AsmToken::LParen)) {
Chris Lattnere17df0b2010-01-15 19:39:23 +00001968 SMLoc ExprEnd;
Craig Topper062a2ba2014-04-25 05:30:21 +00001969 if (getParser().parseExpression(Disp, ExprEnd)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001970
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001971 // After parsing the base expression we could either have a parenthesized
1972 // memory address or not. If not, return now. If so, eat the (.
1973 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00001974 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00001975 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00001976 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, ExprEnd);
1977 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
1978 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001979 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001980
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001981 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00001982 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001983 } else {
1984 // Okay, we have a '('. We don't know if this is an expression or not, but
1985 // so we have to eat the ( to see beyond it.
Sean Callanan936b0d32010-01-19 21:44:56 +00001986 SMLoc LParenLoc = Parser.getTok().getLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00001987 Parser.Lex(); // Eat the '('.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001988
Kevin Enderby7d912182009-09-03 17:15:07 +00001989 if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001990 // Nothing to do here, fall into the code below with the '(' part of the
1991 // memory operand consumed.
1992 } else {
Chris Lattner528d00b2010-01-15 19:28:38 +00001993 SMLoc ExprEnd;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001994
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001995 // It must be an parenthesized expression, parse it now.
Jim Grosbachd2037eb2013-02-20 22:21:35 +00001996 if (getParser().parseParenExpression(Disp, ExprEnd))
Craig Topper062a2ba2014-04-25 05:30:21 +00001997 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00001998
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00001999 // After parsing the base expression we could either have a parenthesized
2000 // memory address or not. If not, return now. If so, eat the (.
2001 if (getLexer().isNot(AsmToken::LParen)) {
Daniel Dunbara4fc8d92009-07-31 22:22:54 +00002002 // Unless we have a segment register, treat this as an immediate.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002003 if (SegReg == 0)
Craig Topper055845f2015-01-02 07:02:25 +00002004 return X86Operand::CreateMem(getPointerWidth(), Disp, LParenLoc,
2005 ExprEnd);
2006 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, 0, 0, 1,
2007 MemStart, ExprEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002008 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002009
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002010 // Eat the '('.
Sean Callanana83fd7d2010-01-19 20:27:46 +00002011 Parser.Lex();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002012 }
2013 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002014
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002015 // If we reached here, then we just ate the ( of the memory operand. Process
2016 // the rest of the memory operand.
Daniel Dunbar3ebf8482009-07-31 20:53:16 +00002017 unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
David Woodhouse6dbda442014-01-08 12:58:28 +00002018 SMLoc IndexLoc, BaseLoc;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002019
Chris Lattner0c2538f2010-01-15 18:51:29 +00002020 if (getLexer().is(AsmToken::Percent)) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00002021 SMLoc StartLoc, EndLoc;
David Woodhouse6dbda442014-01-08 12:58:28 +00002022 BaseLoc = Parser.getTok().getLoc();
Craig Topper062a2ba2014-04-25 05:30:21 +00002023 if (ParseRegister(BaseReg, StartLoc, EndLoc)) return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00002024 if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
Benjamin Kramer1930b002011-10-16 12:10:27 +00002025 Error(StartLoc, "eiz and riz can only be used as index registers",
2026 SMRange(StartLoc, EndLoc));
Craig Topper062a2ba2014-04-25 05:30:21 +00002027 return nullptr;
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00002028 }
Chris Lattner0c2538f2010-01-15 18:51:29 +00002029 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002030
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002031 if (getLexer().is(AsmToken::Comma)) {
Sean Callanana83fd7d2010-01-19 20:27:46 +00002032 Parser.Lex(); // Eat the comma.
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00002033 IndexLoc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002034
2035 // Following the comma we should have either an index register, or a scale
2036 // value. We don't support the later form, but we want to parse it
2037 // correctly.
2038 //
2039 // Not that even though it would be completely consistent to support syntax
Bruno Cardoso Lopes306a1f92010-07-24 00:06:39 +00002040 // like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
Kevin Enderby7d912182009-09-03 17:15:07 +00002041 if (getLexer().is(AsmToken::Percent)) {
Chris Lattner0c2538f2010-01-15 18:51:29 +00002042 SMLoc L;
Craig Topper062a2ba2014-04-25 05:30:21 +00002043 if (ParseRegister(IndexReg, L, L)) return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002044
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002045 if (getLexer().isNot(AsmToken::RParen)) {
2046 // Parse the scale amount:
2047 // ::= ',' [scale-expression]
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002048 if (getLexer().isNot(AsmToken::Comma)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002049 Error(Parser.getTok().getLoc(),
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002050 "expected comma in scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00002051 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002052 }
Sean Callanana83fd7d2010-01-19 20:27:46 +00002053 Parser.Lex(); // Eat the comma.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002054
2055 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002056 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002057
2058 int64_t ScaleVal;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002059 if (getParser().parseAbsoluteExpression(ScaleVal)){
Kevin Enderbydeed5aa2012-03-09 22:24:10 +00002060 Error(Loc, "expected scale expression");
Craig Topper062a2ba2014-04-25 05:30:21 +00002061 return nullptr;
Craig Topper6bf3ed42012-07-18 04:59:16 +00002062 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002063
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002064 // Validate the scale amount.
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00002065 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
David Woodhouse6dbda442014-01-08 12:58:28 +00002066 ScaleVal != 1) {
2067 Error(Loc, "scale factor in 16-bit address must be 1");
Craig Topper062a2ba2014-04-25 05:30:21 +00002068 return nullptr;
NAKAMURA Takumi0a7d0ad2015-09-22 11:15:07 +00002069 }
2070 if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 &&
2071 ScaleVal != 8) {
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002072 Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
Craig Topper062a2ba2014-04-25 05:30:21 +00002073 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002074 }
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002075 Scale = (unsigned)ScaleVal;
2076 }
2077 }
2078 } else if (getLexer().isNot(AsmToken::RParen)) {
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002079 // A scale amount without an index is ignored.
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002080 // index.
Sean Callanan936b0d32010-01-19 21:44:56 +00002081 SMLoc Loc = Parser.getTok().getLoc();
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002082
2083 int64_t Value;
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002084 if (getParser().parseAbsoluteExpression(Value))
Craig Topper062a2ba2014-04-25 05:30:21 +00002085 return nullptr;
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002086
Daniel Dunbar94b84a12010-08-24 19:13:38 +00002087 if (Value != 1)
2088 Warning(Loc, "scale factor without index register is ignored");
2089 Scale = 1;
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002090 }
2091 }
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002092
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002093 // Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002094 if (getLexer().isNot(AsmToken::RParen)) {
Sean Callanan936b0d32010-01-19 21:44:56 +00002095 Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
Craig Topper062a2ba2014-04-25 05:30:21 +00002096 return nullptr;
Chris Lattnera2bbb7c2010-01-15 18:44:13 +00002097 }
Jordan Rosee8f1eae2013-01-07 19:00:49 +00002098 SMLoc MemEnd = Parser.getTok().getEndLoc();
Sean Callanana83fd7d2010-01-19 20:27:46 +00002099 Parser.Lex(); // Eat the ')'.
Bruno Cardoso Lopesd65cd1d2010-07-23 22:15:26 +00002100
David Woodhouse6dbda442014-01-08 12:58:28 +00002101 // Check for use of invalid 16-bit registers. Only BX/BP/SI/DI are allowed,
2102 // and then only in non-64-bit modes. Except for DX, which is a special case
2103 // because an unofficial form of in/out instructions uses it.
2104 if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
2105 (is64BitMode() || (BaseReg != X86::BX && BaseReg != X86::BP &&
2106 BaseReg != X86::SI && BaseReg != X86::DI)) &&
2107 BaseReg != X86::DX) {
2108 Error(BaseLoc, "invalid 16-bit base register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002109 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002110 }
2111 if (BaseReg == 0 &&
2112 X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg)) {
2113 Error(IndexLoc, "16-bit memory operand may not include only index register");
Craig Topper062a2ba2014-04-25 05:30:21 +00002114 return nullptr;
David Woodhouse6dbda442014-01-08 12:58:28 +00002115 }
Kevin Enderbybc570f22014-01-23 22:34:42 +00002116
2117 StringRef ErrMsg;
2118 if (CheckBaseRegAndIndexReg(BaseReg, IndexReg, ErrMsg)) {
2119 Error(BaseLoc, ErrMsg);
Craig Topper062a2ba2014-04-25 05:30:21 +00002120 return nullptr;
Kevin Enderbyfb3110b2012-03-12 21:32:09 +00002121 }
2122
Reid Klecknerb7e2f602014-07-31 23:26:35 +00002123 if (SegReg || BaseReg || IndexReg)
Craig Topper055845f2015-01-02 07:02:25 +00002124 return X86Operand::CreateMem(getPointerWidth(), SegReg, Disp, BaseReg,
2125 IndexReg, Scale, MemStart, MemEnd);
2126 return X86Operand::CreateMem(getPointerWidth(), Disp, MemStart, MemEnd);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002127}
2128
David Blaikie960ea3f2014-06-08 16:18:35 +00002129bool X86AsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
2130 SMLoc NameLoc, OperandVector &Operands) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002131 MCAsmParser &Parser = getParser();
Chad Rosierf0e87202012-10-25 20:41:34 +00002132 InstInfo = &Info;
Chris Lattner2cb092d2010-10-30 19:23:13 +00002133 StringRef PatchedName = Name;
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002134
Chris Lattner7e8a99b2010-11-28 20:23:50 +00002135 // FIXME: Hack to recognize setneb as setne.
2136 if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
2137 PatchedName != "setb" && PatchedName != "setnb")
2138 PatchedName = PatchedName.substr(0, Name.size()-1);
Chad Rosier51afe632012-06-27 22:34:28 +00002139
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002140 // FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
Bruno Cardoso Lopes3183dd52010-06-23 21:10:57 +00002141 if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002142 (PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
2143 PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
Craig Toppera0a603e2012-03-29 07:11:23 +00002144 bool IsVCMP = PatchedName[0] == 'v';
Craig Topper78c424d2015-02-15 07:13:48 +00002145 unsigned CCIdx = IsVCMP ? 4 : 3;
2146 unsigned ComparisonCode = StringSwitch<unsigned>(
2147 PatchedName.slice(CCIdx, PatchedName.size() - 2))
Craig Toppera0a603e2012-03-29 07:11:23 +00002148 .Case("eq", 0x00)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002149 .Case("eq_oq", 0x00)
Craig Toppera0a603e2012-03-29 07:11:23 +00002150 .Case("lt", 0x01)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002151 .Case("lt_os", 0x01)
Craig Toppera0a603e2012-03-29 07:11:23 +00002152 .Case("le", 0x02)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002153 .Case("le_os", 0x02)
Craig Toppera0a603e2012-03-29 07:11:23 +00002154 .Case("unord", 0x03)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002155 .Case("unord_q", 0x03)
Craig Toppera0a603e2012-03-29 07:11:23 +00002156 .Case("neq", 0x04)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002157 .Case("neq_uq", 0x04)
Craig Toppera0a603e2012-03-29 07:11:23 +00002158 .Case("nlt", 0x05)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002159 .Case("nlt_us", 0x05)
Craig Toppera0a603e2012-03-29 07:11:23 +00002160 .Case("nle", 0x06)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002161 .Case("nle_us", 0x06)
Craig Toppera0a603e2012-03-29 07:11:23 +00002162 .Case("ord", 0x07)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002163 .Case("ord_q", 0x07)
Craig Toppera0a603e2012-03-29 07:11:23 +00002164 /* AVX only from here */
2165 .Case("eq_uq", 0x08)
2166 .Case("nge", 0x09)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002167 .Case("nge_us", 0x09)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002168 .Case("ngt", 0x0A)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002169 .Case("ngt_us", 0x0A)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002170 .Case("false", 0x0B)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002171 .Case("false_oq", 0x0B)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002172 .Case("neq_oq", 0x0C)
2173 .Case("ge", 0x0D)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002174 .Case("ge_os", 0x0D)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002175 .Case("gt", 0x0E)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002176 .Case("gt_os", 0x0E)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002177 .Case("true", 0x0F)
Michael Zuckerman72b72232016-01-25 08:43:26 +00002178 .Case("true_uq", 0x0F)
Bruno Cardoso Lopes6c614512010-07-07 22:24:03 +00002179 .Case("eq_os", 0x10)
2180 .Case("lt_oq", 0x11)
2181 .Case("le_oq", 0x12)
2182 .Case("unord_s", 0x13)
2183 .Case("neq_us", 0x14)
2184 .Case("nlt_uq", 0x15)
2185 .Case("nle_uq", 0x16)
2186 .Case("ord_s", 0x17)
2187 .Case("eq_us", 0x18)
2188 .Case("nge_uq", 0x19)
2189 .Case("ngt_uq", 0x1A)
2190 .Case("false_os", 0x1B)
2191 .Case("neq_os", 0x1C)
2192 .Case("ge_oq", 0x1D)
2193 .Case("gt_oq", 0x1E)
2194 .Case("true_us", 0x1F)
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002195 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002196 if (ComparisonCode != ~0U && (IsVCMP || ComparisonCode < 8)) {
Craig Topper43860832015-02-14 21:54:03 +00002197
Craig Topper78c424d2015-02-15 07:13:48 +00002198 Operands.push_back(X86Operand::CreateToken(PatchedName.slice(0, CCIdx),
Craig Topper43860832015-02-14 21:54:03 +00002199 NameLoc));
2200
Jim Grosbach13760bd2015-05-30 01:25:56 +00002201 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper43860832015-02-14 21:54:03 +00002202 getParser().getContext());
2203 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2204
2205 PatchedName = PatchedName.substr(PatchedName.size() - 2);
Daniel Dunbar0e767d72010-05-25 19:49:32 +00002206 }
2207 }
Bruno Cardoso Lopesea0e05a2010-07-23 18:41:12 +00002208
Craig Topper78c424d2015-02-15 07:13:48 +00002209 // FIXME: Hack to recognize vpcmp<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2210 if (PatchedName.startswith("vpcmp") &&
2211 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2212 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
2213 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2214 unsigned ComparisonCode = StringSwitch<unsigned>(
2215 PatchedName.slice(5, PatchedName.size() - CCIdx))
2216 .Case("eq", 0x0) // Only allowed on unsigned. Checked below.
2217 .Case("lt", 0x1)
2218 .Case("le", 0x2)
2219 //.Case("false", 0x3) // Not a documented alias.
2220 .Case("neq", 0x4)
2221 .Case("nlt", 0x5)
2222 .Case("nle", 0x6)
2223 //.Case("true", 0x7) // Not a documented alias.
2224 .Default(~0U);
2225 if (ComparisonCode != ~0U && (ComparisonCode != 0 || CCIdx == 2)) {
2226 Operands.push_back(X86Operand::CreateToken("vpcmp", NameLoc));
2227
Jim Grosbach13760bd2015-05-30 01:25:56 +00002228 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper78c424d2015-02-15 07:13:48 +00002229 getParser().getContext());
2230 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2231
2232 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
2233 }
2234 }
2235
Craig Topper916708f2015-02-13 07:42:25 +00002236 // FIXME: Hack to recognize vpcom<comparison code>{ub,uw,ud,uq,b,w,d,q}.
2237 if (PatchedName.startswith("vpcom") &&
2238 (PatchedName.endswith("b") || PatchedName.endswith("w") ||
2239 PatchedName.endswith("d") || PatchedName.endswith("q"))) {
Craig Topper78c424d2015-02-15 07:13:48 +00002240 unsigned CCIdx = PatchedName.drop_back().back() == 'u' ? 2 : 1;
2241 unsigned ComparisonCode = StringSwitch<unsigned>(
2242 PatchedName.slice(5, PatchedName.size() - CCIdx))
Craig Topper916708f2015-02-13 07:42:25 +00002243 .Case("lt", 0x0)
2244 .Case("le", 0x1)
2245 .Case("gt", 0x2)
2246 .Case("ge", 0x3)
2247 .Case("eq", 0x4)
2248 .Case("neq", 0x5)
2249 .Case("false", 0x6)
2250 .Case("true", 0x7)
2251 .Default(~0U);
Craig Topper78c424d2015-02-15 07:13:48 +00002252 if (ComparisonCode != ~0U) {
Craig Topper916708f2015-02-13 07:42:25 +00002253 Operands.push_back(X86Operand::CreateToken("vpcom", NameLoc));
2254
Jim Grosbach13760bd2015-05-30 01:25:56 +00002255 const MCExpr *ImmOp = MCConstantExpr::create(ComparisonCode,
Craig Topper916708f2015-02-13 07:42:25 +00002256 getParser().getContext());
2257 Operands.push_back(X86Operand::CreateImm(ImmOp, NameLoc, NameLoc));
2258
Craig Topper78c424d2015-02-15 07:13:48 +00002259 PatchedName = PatchedName.substr(PatchedName.size() - CCIdx);
Craig Topper916708f2015-02-13 07:42:25 +00002260 }
2261 }
2262
Daniel Dunbar3e0c9792010-02-10 21:19:28 +00002263 Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002264
Chris Lattner086a83a2010-09-08 05:17:37 +00002265 // Determine whether this is an instruction prefix.
2266 bool isPrefix =
Chris Lattner2cb092d2010-10-30 19:23:13 +00002267 Name == "lock" || Name == "rep" ||
2268 Name == "repe" || Name == "repz" ||
Rafael Espindolaf6c05b12010-11-23 11:23:24 +00002269 Name == "repne" || Name == "repnz" ||
Rafael Espindolaeab08002010-11-27 20:29:45 +00002270 Name == "rex64" || Name == "data16";
Michael J. Spencer530ce852010-10-09 11:00:50 +00002271
Marina Yatsina5f5de9f2016-03-07 18:11:16 +00002272 bool CurlyAsEndOfStatement = false;
Chris Lattner086a83a2010-09-08 05:17:37 +00002273 // This does the actual operand parsing. Don't parse any more if we have a
2274 // prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
2275 // just want to parse the "lock" as the first instruction and the "incl" as
2276 // the next one.
2277 if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
Daniel Dunbar71527c12009-08-11 05:00:25 +00002278
2279 // Parse '*' modifier.
Alp Tokera5b88a52013-12-02 16:06:06 +00002280 if (getLexer().is(AsmToken::Star))
2281 Operands.push_back(X86Operand::CreateToken("*", consumeToken()));
Daniel Dunbar71527c12009-08-11 05:00:25 +00002282
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002283 // Read the operands.
2284 while(1) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002285 if (std::unique_ptr<X86Operand> Op = ParseOperand()) {
2286 Operands.push_back(std::move(Op));
2287 if (!HandleAVX512Operand(Operands, *Operands.back()))
Elena Demikhovsky89529742013-09-12 08:55:00 +00002288 return true;
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002289 } else {
Nico Webere204c482016-09-13 18:17:00 +00002290 Parser.eatToEndOfStatement();
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002291 return true;
Elena Demikhovsky89529742013-09-12 08:55:00 +00002292 }
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002293 // check for comma and eat it
2294 if (getLexer().is(AsmToken::Comma))
2295 Parser.Lex();
2296 else
2297 break;
2298 }
Elena Demikhovsky89529742013-09-12 08:55:00 +00002299
Marina Yatsina5f5de9f2016-03-07 18:11:16 +00002300 // In MS inline asm curly braces mark the begining/end of a block, therefore
2301 // they should be interepreted as end of statement
2302 CurlyAsEndOfStatement =
2303 isParsingIntelSyntax() && isParsingInlineAsm() &&
2304 (getLexer().is(AsmToken::LCurly) || getLexer().is(AsmToken::RCurly));
2305 if (getLexer().isNot(AsmToken::EndOfStatement) && !CurlyAsEndOfStatement)
Nico Webere204c482016-09-13 18:17:00 +00002306 return ErrorAndEatStatement(getLexer().getLoc(),
2307 "unexpected token in argument list");
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002308 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002309
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002310 // Consume the EndOfStatement or the prefix separator Slash
Elena Demikhovsky9f09b3e2014-02-20 07:00:10 +00002311 if (getLexer().is(AsmToken::EndOfStatement) ||
2312 (isPrefix && getLexer().is(AsmToken::Slash)))
Elena Demikhovskyc9657012014-02-20 06:34:39 +00002313 Parser.Lex();
Marina Yatsina5f5de9f2016-03-07 18:11:16 +00002314 else if (CurlyAsEndOfStatement)
2315 // Add an actual EndOfStatement before the curly brace
2316 Info.AsmRewrites->emplace_back(AOK_EndOfStatement,
2317 getLexer().getTok().getLoc(), 0);
Daniel Dunbare1fdb0e2009-07-28 22:40:46 +00002318
Michael Zuckermanfd3fe9e2015-11-12 16:58:51 +00002319 // This is for gas compatibility and cannot be done in td.
2320 // Adding "p" for some floating point with no argument.
2321 // For example: fsub --> fsubp
2322 bool IsFp =
2323 Name == "fsub" || Name == "fdiv" || Name == "fsubr" || Name == "fdivr";
2324 if (IsFp && Operands.size() == 1) {
2325 const char *Repl = StringSwitch<const char *>(Name)
2326 .Case("fsub", "fsubp")
2327 .Case("fdiv", "fdivp")
2328 .Case("fsubr", "fsubrp")
2329 .Case("fdivr", "fdivrp");
2330 static_cast<X86Operand &>(*Operands[0]).setTokenValue(Repl);
2331 }
2332
Nirav Davef45fd2b2016-08-08 18:01:04 +00002333 // Moving a 32 or 16 bit value into a segment register has the same
2334 // behavior. Modify such instructions to always take shorter form.
2335 if ((Name == "mov" || Name == "movw" || Name == "movl") &&
2336 (Operands.size() == 3)) {
2337 X86Operand &Op1 = (X86Operand &)*Operands[1];
2338 X86Operand &Op2 = (X86Operand &)*Operands[2];
2339 SMLoc Loc = Op1.getEndLoc();
2340 if (Op1.isReg() && Op2.isReg() &&
2341 X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(
2342 Op2.getReg()) &&
2343 (X86MCRegisterClasses[X86::GR16RegClassID].contains(Op1.getReg()) ||
2344 X86MCRegisterClasses[X86::GR32RegClassID].contains(Op1.getReg()))) {
2345 // Change instruction name to match new instruction.
2346 if (Name != "mov" && Name[3] == (is16BitMode() ? 'l' : 'w')) {
2347 Name = is16BitMode() ? "movw" : "movl";
2348 Operands[0] = X86Operand::CreateToken(Name, NameLoc);
2349 }
2350 // Select the correct equivalent 16-/32-bit source register.
2351 unsigned Reg =
2352 getX86SubSuperRegisterOrZero(Op1.getReg(), is16BitMode() ? 16 : 32);
2353 Operands[1] = X86Operand::CreateReg(Reg, Loc, Loc);
2354 }
2355 }
2356
Nirav Dave8e103802016-06-29 19:54:27 +00002357 // This is a terrible hack to handle "out[s]?[bwl]? %al, (%dx)" ->
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002358 // "outb %al, %dx". Out doesn't take a memory form, but this is a widely
2359 // documented form in various unofficial manuals, so a lot of code uses it.
Nirav Dave8e103802016-06-29 19:54:27 +00002360 if ((Name == "outb" || Name == "outsb" || Name == "outw" || Name == "outsw" ||
2361 Name == "outl" || Name == "outsl" || Name == "out" || Name == "outs") &&
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002362 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002363 X86Operand &Op = (X86Operand &)*Operands.back();
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002364 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2365 isa<MCConstantExpr>(Op.Mem.Disp) &&
2366 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2367 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2368 SMLoc Loc = Op.getEndLoc();
2369 Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Chris Lattnerb6f8e822010-11-06 19:25:43 +00002370 }
2371 }
Nirav Dave8e103802016-06-29 19:54:27 +00002372 // Same hack for "in[s]?[bwl]? (%dx), %al" -> "inb %dx, %al".
2373 if ((Name == "inb" || Name == "insb" || Name == "inw" || Name == "insw" ||
2374 Name == "inl" || Name == "insl" || Name == "in" || Name == "ins") &&
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002375 Operands.size() == 3) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002376 X86Operand &Op = (X86Operand &)*Operands[1];
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002377 if (Op.isMem() && Op.Mem.SegReg == 0 &&
2378 isa<MCConstantExpr>(Op.Mem.Disp) &&
2379 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
2380 Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
2381 SMLoc Loc = Op.getEndLoc();
David Blaikie960ea3f2014-06-08 16:18:35 +00002382 Operands[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
Joerg Sonnenbergerb7e635d2011-02-22 20:40:09 +00002383 }
2384 }
David Woodhouse4ce66062014-01-22 15:08:55 +00002385
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002386 SmallVector<std::unique_ptr<MCParsedAsmOperand>, 2> TmpOperands;
2387 bool HadVerifyError = false;
2388
David Woodhouse4ce66062014-01-22 15:08:55 +00002389 // Append default arguments to "ins[bwld]"
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002390 if (Name.startswith("ins") &&
2391 (Operands.size() == 1 || Operands.size() == 3) &&
2392 (Name == "insb" || Name == "insw" || Name == "insl" || Name == "insd" ||
2393 Name == "ins")) {
2394
2395 AddDefaultSrcDestOperands(TmpOperands,
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002396 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc),
2397 DefaultMemDIOperand(NameLoc));
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002398 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002399 }
2400
David Woodhousec472b812014-01-22 15:08:49 +00002401 // Append default arguments to "outs[bwld]"
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002402 if (Name.startswith("outs") &&
2403 (Operands.size() == 1 || Operands.size() == 3) &&
David Woodhousec472b812014-01-22 15:08:49 +00002404 (Name == "outsb" || Name == "outsw" || Name == "outsl" ||
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002405 Name == "outsd" || Name == "outs")) {
2406 AddDefaultSrcDestOperands(TmpOperands, DefaultMemSIOperand(NameLoc),
Michael Kupersteinffcc7662015-07-23 10:23:48 +00002407 X86Operand::CreateReg(X86::DX, NameLoc, NameLoc));
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002408 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002409 }
2410
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002411 // Transform "lods[bwlq]" into "lods[bwlq] ($SIREG)" for appropriate
2412 // values of $SIREG according to the mode. It would be nice if this
2413 // could be achieved with InstAlias in the tables.
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002414 if (Name.startswith("lods") &&
2415 (Operands.size() == 1 || Operands.size() == 2) &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002416 (Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002417 Name == "lodsl" || Name == "lodsd" || Name == "lodsq")) {
2418 TmpOperands.push_back(DefaultMemSIOperand(NameLoc));
2419 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
2420 }
David Woodhouse2ef8d9c2014-01-22 15:08:08 +00002421
David Woodhouseb33c2ef2014-01-22 15:08:21 +00002422 // Transform "stos[bwlq]" into "stos[bwlq] ($DIREG)" for appropriate
2423 // values of $DIREG according to the mode. It would be nice if this
2424 // could be achieved with InstAlias in the tables.
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002425 if (Name.startswith("stos") &&
2426 (Operands.size() == 1 || Operands.size() == 2) &&
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002427 (Name == "stos" || Name == "stosb" || Name == "stosw" ||
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002428 Name == "stosl" || Name == "stosd" || Name == "stosq")) {
2429 TmpOperands.push_back(DefaultMemDIOperand(NameLoc));
2430 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
2431 }
Joerg Sonnenberger3fbfcc02011-03-18 11:59:40 +00002432
David Woodhouse20fe4802014-01-22 15:08:27 +00002433 // Transform "scas[bwlq]" into "scas[bwlq] ($DIREG)" for appropriate
2434 // values of $DIREG according to the mode. It would be nice if this
2435 // could be achieved with InstAlias in the tables.
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002436 if (Name.startswith("scas") &&
2437 (Operands.size() == 1 || Operands.size() == 2) &&
David Woodhouse20fe4802014-01-22 15:08:27 +00002438 (Name == "scas" || Name == "scasb" || Name == "scasw" ||
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002439 Name == "scasl" || Name == "scasd" || Name == "scasq")) {
2440 TmpOperands.push_back(DefaultMemDIOperand(NameLoc));
2441 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
2442 }
David Woodhouse20fe4802014-01-22 15:08:27 +00002443
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002444 // Add default SI and DI operands to "cmps[bwlq]".
2445 if (Name.startswith("cmps") &&
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002446 (Operands.size() == 1 || Operands.size() == 3) &&
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002447 (Name == "cmps" || Name == "cmpsb" || Name == "cmpsw" ||
2448 Name == "cmpsl" || Name == "cmpsd" || Name == "cmpsq")) {
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002449 AddDefaultSrcDestOperands(TmpOperands, DefaultMemDIOperand(NameLoc),
2450 DefaultMemSIOperand(NameLoc));
2451 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
David Woodhouse9bbf7ca2014-01-22 15:08:36 +00002452 }
2453
David Woodhouse6f417de2014-01-22 15:08:42 +00002454 // Add default SI and DI operands to "movs[bwlq]".
Marina Yatsinab9f4f622016-01-19 15:37:56 +00002455 if (((Name.startswith("movs") &&
2456 (Name == "movs" || Name == "movsb" || Name == "movsw" ||
2457 Name == "movsl" || Name == "movsd" || Name == "movsq")) ||
2458 (Name.startswith("smov") &&
2459 (Name == "smov" || Name == "smovb" || Name == "smovw" ||
2460 Name == "smovl" || Name == "smovd" || Name == "smovq"))) &&
2461 (Operands.size() == 1 || Operands.size() == 3)) {
2462 if (Name == "movsd" && Operands.size() == 1)
2463 Operands.back() = X86Operand::CreateToken("movsl", NameLoc);
2464 AddDefaultSrcDestOperands(TmpOperands, DefaultMemSIOperand(NameLoc),
2465 DefaultMemDIOperand(NameLoc));
2466 HadVerifyError = VerifyAndAdjustOperands(Operands, TmpOperands);
2467 }
2468
2469 // Check if we encountered an error for one the string insturctions
2470 if (HadVerifyError) {
2471 return HadVerifyError;
David Woodhouse6f417de2014-01-22 15:08:42 +00002472 }
2473
Chris Lattner4bd21712010-09-15 04:33:27 +00002474 // FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
Chris Lattner30561ab2010-09-11 16:32:12 +00002475 // "shift <op>".
Daniel Dunbar18fc3442010-03-13 00:47:29 +00002476 if ((Name.startswith("shr") || Name.startswith("sar") ||
Chris Lattner64f91b92010-11-06 21:23:40 +00002477 Name.startswith("shl") || Name.startswith("sal") ||
2478 Name.startswith("rcl") || Name.startswith("rcr") ||
2479 Name.startswith("rol") || Name.startswith("ror")) &&
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002480 Operands.size() == 3) {
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002481 if (isParsingIntelSyntax()) {
Devang Patela410ed32012-01-24 21:43:36 +00002482 // Intel syntax
David Blaikie960ea3f2014-06-08 16:18:35 +00002483 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[2]);
2484 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2485 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002486 Operands.pop_back();
Devang Patela410ed32012-01-24 21:43:36 +00002487 } else {
David Blaikie960ea3f2014-06-08 16:18:35 +00002488 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
2489 if (Op1.isImm() && isa<MCConstantExpr>(Op1.getImm()) &&
2490 cast<MCConstantExpr>(Op1.getImm())->getValue() == 1)
Craig Topper6bf3ed42012-07-18 04:59:16 +00002491 Operands.erase(Operands.begin() + 1);
Chris Lattner4cfbcdc2010-09-06 18:32:06 +00002492 }
Daniel Dunbarfbd12cc2010-03-20 22:36:38 +00002493 }
Chad Rosier51afe632012-06-27 22:34:28 +00002494
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002495 // Transforms "int $3" into "int3" as a size optimization. We can't write an
2496 // instalias with an immediate operand yet.
2497 if (Name == "int" && Operands.size() == 2) {
David Blaikie960ea3f2014-06-08 16:18:35 +00002498 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
Duncan P. N. Exon Smithd5313222015-07-23 19:27:07 +00002499 if (Op1.isImm())
2500 if (auto *CE = dyn_cast<MCConstantExpr>(Op1.getImm()))
2501 if (CE->getValue() == 3) {
2502 Operands.erase(Operands.begin() + 1);
2503 static_cast<X86Operand &>(*Operands[0]).setTokenValue("int3");
2504 }
Chris Lattnerfc4fe002011-04-09 19:41:05 +00002505 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002506
Marina Yatsinad9658d12016-01-19 16:35:38 +00002507 // Transforms "xlat mem8" into "xlatb"
2508 if ((Name == "xlat" || Name == "xlatb") && Operands.size() == 2) {
2509 X86Operand &Op1 = static_cast<X86Operand &>(*Operands[1]);
2510 if (Op1.isMem8()) {
2511 Warning(Op1.getStartLoc(), "memory operand is only for determining the "
2512 "size, (R|E)BX will be used for the location");
2513 Operands.pop_back();
2514 static_cast<X86Operand &>(*Operands[0]).setTokenValue("xlatb");
2515 }
2516 }
2517
Chris Lattnerf29c0b62010-01-14 22:21:20 +00002518 return false;
Daniel Dunbar3c2a8932009-07-20 18:55:04 +00002519}
2520
David Blaikie960ea3f2014-06-08 16:18:35 +00002521bool X86AsmParser::processInstruction(MCInst &Inst, const OperandVector &Ops) {
Aaron Ballmana81264b2016-05-23 15:52:59 +00002522 return false;
Devang Patelde47cce2012-01-18 22:42:29 +00002523}
2524
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002525static const char *getSubtargetFeatureName(uint64_t Val);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002526
David Blaikie960ea3f2014-06-08 16:18:35 +00002527void X86AsmParser::EmitInstruction(MCInst &Inst, OperandVector &Operands,
2528 MCStreamer &Out) {
Evgeniy Stepanov77ad8662014-07-31 09:11:04 +00002529 Instrumentation->InstrumentAndEmitInstruction(Inst, Operands, getContext(),
2530 MII, Out);
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002531}
2532
David Blaikie960ea3f2014-06-08 16:18:35 +00002533bool X86AsmParser::MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
2534 OperandVector &Operands,
Tim Northover26bb14e2014-08-18 11:49:42 +00002535 MCStreamer &Out, uint64_t &ErrorInfo,
David Blaikie960ea3f2014-06-08 16:18:35 +00002536 bool MatchingInlineAsm) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002537 if (isParsingIntelSyntax())
2538 return MatchAndEmitIntelInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002539 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002540 return MatchAndEmitATTInstruction(IDLoc, Opcode, Operands, Out, ErrorInfo,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002541 MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002542}
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002543
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002544void X86AsmParser::MatchFPUWaitAlias(SMLoc IDLoc, X86Operand &Op,
2545 OperandVector &Operands, MCStreamer &Out,
2546 bool MatchingInlineAsm) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002547 // FIXME: This should be replaced with a real .td file alias mechanism.
Chad Rosier3b1336c2012-08-28 23:57:47 +00002548 // Also, MatchInstructionImpl should actually *do* the EmitInstruction
Chris Lattner4869d342010-11-06 19:57:21 +00002549 // call.
Reid Klecknerb1f2d2f2014-07-31 00:07:33 +00002550 const char *Repl = StringSwitch<const char *>(Op.getToken())
2551 .Case("finit", "fninit")
2552 .Case("fsave", "fnsave")
2553 .Case("fstcw", "fnstcw")
2554 .Case("fstcww", "fnstcw")
2555 .Case("fstenv", "fnstenv")
2556 .Case("fstsw", "fnstsw")
2557 .Case("fstsww", "fnstsw")
2558 .Case("fclex", "fnclex")
2559 .Default(nullptr);
2560 if (Repl) {
Chris Lattnera63292a2010-09-29 01:50:45 +00002561 MCInst Inst;
2562 Inst.setOpcode(X86::WAIT);
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002563 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002564 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002565 EmitInstruction(Inst, Operands, Out);
Chris Lattneradc0dbe2010-09-30 16:39:29 +00002566 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
Chris Lattnera63292a2010-09-29 01:50:45 +00002567 }
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002568}
2569
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002570bool X86AsmParser::ErrorMissingFeature(SMLoc IDLoc, uint64_t ErrorInfo,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002571 bool MatchingInlineAsm) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002572 assert(ErrorInfo && "Unknown missing feature!");
Nico Webere204c482016-09-13 18:17:00 +00002573 ArrayRef<SMRange> EmptyRanges = None;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002574 SmallString<126> Msg;
2575 raw_svector_ostream OS(Msg);
2576 OS << "instruction requires:";
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002577 uint64_t Mask = 1;
2578 for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
2579 if (ErrorInfo & Mask)
2580 OS << ' ' << getSubtargetFeatureName(ErrorInfo & Mask);
2581 Mask <<= 1;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002582 }
Nico Webere204c482016-09-13 18:17:00 +00002583 return Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002584}
2585
2586bool X86AsmParser::MatchAndEmitATTInstruction(SMLoc IDLoc, unsigned &Opcode,
2587 OperandVector &Operands,
2588 MCStreamer &Out,
2589 uint64_t &ErrorInfo,
2590 bool MatchingInlineAsm) {
2591 assert(!Operands.empty() && "Unexpect empty operand list!");
2592 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2593 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
Nico Webere204c482016-09-13 18:17:00 +00002594 ArrayRef<SMRange> EmptyRanges = None;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002595
2596 // First, handle aliases that expand to multiple instructions.
2597 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002598
Chris Lattner628fbec2010-09-06 21:54:15 +00002599 bool WasOriginallyInvalidOperand = false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002600 MCInst Inst;
Michael J. Spencer530ce852010-10-09 11:00:50 +00002601
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002602 // First, try a direct match.
Chad Rosier2f480a82012-10-12 22:53:36 +00002603 switch (MatchInstructionImpl(Operands, Inst,
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002604 ErrorInfo, MatchingInlineAsm,
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002605 isParsingIntelSyntax())) {
Craig Topper589ceee2015-01-03 08:16:34 +00002606 default: llvm_unreachable("Unexpected match result!");
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002607 case Match_Success:
Devang Patelde47cce2012-01-18 22:42:29 +00002608 // Some instructions need post-processing to, for example, tweak which
2609 // encoding is selected. Loop on it while changes happen so the
Chad Rosier51afe632012-06-27 22:34:28 +00002610 // individual transformations can chain off each other.
Chad Rosier4453e842012-10-12 23:09:25 +00002611 if (!MatchingInlineAsm)
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002612 while (processInstruction(Inst, Operands))
2613 ;
Devang Patelde47cce2012-01-18 22:42:29 +00002614
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002615 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002616 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002617 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002618 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002619 return false;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002620 case Match_MissingFeature:
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002621 return ErrorMissingFeature(IDLoc, ErrorInfo, MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002622 case Match_InvalidOperand:
2623 WasOriginallyInvalidOperand = true;
2624 break;
2625 case Match_MnemonicFail:
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002626 break;
2627 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002628
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002629 // FIXME: Ideally, we would only attempt suffix matches for things which are
2630 // valid prefixes, and we could just infer the right unambiguous
2631 // type. However, that requires substantially more matcher support than the
2632 // following hack.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002633
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002634 // Change the operand to point to a temporary token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002635 StringRef Base = Op.getToken();
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002636 SmallString<16> Tmp;
2637 Tmp += Base;
2638 Tmp += ' ';
Yaron Keren075759a2015-03-30 15:42:36 +00002639 Op.setTokenValue(Tmp);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002640
Chris Lattnerfab94132010-11-06 18:28:02 +00002641 // If this instruction starts with an 'f', then it is a floating point stack
2642 // instruction. These come in up to three forms for 32-bit, 64-bit, and
2643 // 80-bit floating point, which use the suffixes s,l,t respectively.
2644 //
2645 // Otherwise, we assume that this may be an integer instruction, which comes
2646 // in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
2647 const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
Chad Rosier51afe632012-06-27 22:34:28 +00002648
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002649 // Check for the various suffix matches.
Tim Northover26bb14e2014-08-18 11:49:42 +00002650 uint64_t ErrorInfoIgnore;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002651 uint64_t ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002652 unsigned Match[4];
Chad Rosier51afe632012-06-27 22:34:28 +00002653
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002654 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I) {
2655 Tmp.back() = Suffixes[I];
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002656 Match[I] = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
2657 MatchingInlineAsm, isParsingIntelSyntax());
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002658 // If this returned as a missing feature failure, remember that.
2659 if (Match[I] == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002660 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002661 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002662
2663 // Restore the old token.
David Blaikie960ea3f2014-06-08 16:18:35 +00002664 Op.setTokenValue(Base);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002665
2666 // If exactly one matched, then we treat that as a successful match (and the
2667 // instruction will already have been filled in correctly, since the failing
2668 // matches won't have modified it).
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002669 unsigned NumSuccessfulMatches =
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002670 std::count(std::begin(Match), std::end(Match), Match_Success);
Chris Lattnerb44fd242010-09-29 01:42:58 +00002671 if (NumSuccessfulMatches == 1) {
Jim Grosbach8f28dbd2012-01-27 00:51:27 +00002672 Inst.setLoc(IDLoc);
Chad Rosier4453e842012-10-12 23:09:25 +00002673 if (!MatchingInlineAsm)
Evgeniy Stepanov49e26252014-03-14 08:58:04 +00002674 EmitInstruction(Inst, Operands, Out);
Chad Rosierf4e35dc2012-10-01 23:45:51 +00002675 Opcode = Inst.getOpcode();
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002676 return false;
Chris Lattnerb44fd242010-09-29 01:42:58 +00002677 }
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002678
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002679 // Otherwise, the match failed, try to produce a decent error message.
Daniel Dunbar2ecc3bb2010-08-12 00:55:38 +00002680
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002681 // If we had multiple suffix matches, then identify this as an ambiguous
2682 // match.
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002683 if (NumSuccessfulMatches > 1) {
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002684 char MatchChars[4];
2685 unsigned NumMatches = 0;
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002686 for (unsigned I = 0, E = array_lengthof(Match); I != E; ++I)
2687 if (Match[I] == Match_Success)
2688 MatchChars[NumMatches++] = Suffixes[I];
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002689
Alp Tokere69170a2014-06-26 22:52:05 +00002690 SmallString<126> Msg;
2691 raw_svector_ostream OS(Msg);
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002692 OS << "ambiguous instructions require an explicit suffix (could be ";
2693 for (unsigned i = 0; i != NumMatches; ++i) {
2694 if (i != 0)
2695 OS << ", ";
2696 if (i + 1 == NumMatches)
2697 OS << "or ";
2698 OS << "'" << Base << MatchChars[i] << "'";
2699 }
2700 OS << ")";
Nico Webere204c482016-09-13 18:17:00 +00002701 Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002702 return true;
Daniel Dunbar7d7b4d12010-08-12 00:55:42 +00002703 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002704
Chris Lattner628fbec2010-09-06 21:54:15 +00002705 // Okay, we know that none of the variants matched successfully.
Michael J. Spencer530ce852010-10-09 11:00:50 +00002706
Chris Lattner628fbec2010-09-06 21:54:15 +00002707 // If all of the instructions reported an invalid mnemonic, then the original
2708 // mnemonic was invalid.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002709 if (std::count(std::begin(Match), std::end(Match), Match_MnemonicFail) == 4) {
Chris Lattner339cc7b2010-09-06 22:11:18 +00002710 if (!WasOriginallyInvalidOperand) {
Nico Webere204c482016-09-13 18:17:00 +00002711 SMRange OpRange = Op.getLocRange();
2712 ArrayRef<SMRange> Ranges = MatchingInlineAsm ? EmptyRanges : OpRange;
Benjamin Kramerd416bae2011-10-16 11:28:29 +00002713 return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
Nico Webere204c482016-09-13 18:17:00 +00002714 Ranges, MatchingInlineAsm);
Chris Lattner339cc7b2010-09-06 22:11:18 +00002715 }
2716
2717 // Recover location info for the operand if we know which was the problem.
Tim Northover26bb14e2014-08-18 11:49:42 +00002718 if (ErrorInfo != ~0ULL) {
Chad Rosier49963552012-10-13 00:26:04 +00002719 if (ErrorInfo >= Operands.size())
Nico Webere204c482016-09-13 18:17:00 +00002720 return Error(IDLoc, "too few operands for instruction",
2721 EmptyRanges, MatchingInlineAsm);
Michael J. Spencer530ce852010-10-09 11:00:50 +00002722
David Blaikie960ea3f2014-06-08 16:18:35 +00002723 X86Operand &Operand = (X86Operand &)*Operands[ErrorInfo];
2724 if (Operand.getStartLoc().isValid()) {
2725 SMRange OperandRange = Operand.getLocRange();
2726 return Error(Operand.getStartLoc(), "invalid operand for instruction",
Chad Rosier4453e842012-10-12 23:09:25 +00002727 OperandRange, MatchingInlineAsm);
Chris Lattnera3a06812011-10-16 04:47:35 +00002728 }
Chris Lattner339cc7b2010-09-06 22:11:18 +00002729 }
2730
Nico Webere204c482016-09-13 18:17:00 +00002731 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
Chad Rosier4453e842012-10-12 23:09:25 +00002732 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002733 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002734
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002735 // If one instruction matched with a missing feature, report this as a
2736 // missing feature.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002737 if (std::count(std::begin(Match), std::end(Match),
2738 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002739 ErrorInfo = ErrorInfoMissingFeature;
2740 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002741 MatchingInlineAsm);
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002742 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002743
Chris Lattner628fbec2010-09-06 21:54:15 +00002744 // If one instruction matched with an invalid operand, report this as an
2745 // operand failure.
Reid Kleckner7b1e1a02014-07-30 22:23:11 +00002746 if (std::count(std::begin(Match), std::end(Match),
2747 Match_InvalidOperand) == 1) {
Nico Webere204c482016-09-13 18:17:00 +00002748 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002749 MatchingInlineAsm);
Chris Lattner628fbec2010-09-06 21:54:15 +00002750 }
Michael J. Spencer530ce852010-10-09 11:00:50 +00002751
Chris Lattnerb4be28f2010-09-06 20:08:02 +00002752 // If all of these were an outright failure, report it in a useless way.
Chad Rosier3d4bc622012-08-21 19:36:59 +00002753 Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
Nico Webere204c482016-09-13 18:17:00 +00002754 EmptyRanges, MatchingInlineAsm);
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002755 return true;
2756}
2757
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002758bool X86AsmParser::MatchAndEmitIntelInstruction(SMLoc IDLoc, unsigned &Opcode,
2759 OperandVector &Operands,
2760 MCStreamer &Out,
2761 uint64_t &ErrorInfo,
2762 bool MatchingInlineAsm) {
2763 assert(!Operands.empty() && "Unexpect empty operand list!");
2764 X86Operand &Op = static_cast<X86Operand &>(*Operands[0]);
2765 assert(Op.isToken() && "Leading operand should always be a mnemonic!");
2766 StringRef Mnemonic = Op.getToken();
Nico Webere204c482016-09-13 18:17:00 +00002767 ArrayRef<SMRange> EmptyRanges = None;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002768
2769 // First, handle aliases that expand to multiple instructions.
2770 MatchFPUWaitAlias(IDLoc, Op, Operands, Out, MatchingInlineAsm);
2771
2772 MCInst Inst;
2773
2774 // Find one unsized memory operand, if present.
2775 X86Operand *UnsizedMemOp = nullptr;
2776 for (const auto &Op : Operands) {
2777 X86Operand *X86Op = static_cast<X86Operand *>(Op.get());
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002778 if (X86Op->isMemUnsized())
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002779 UnsizedMemOp = X86Op;
2780 }
2781
2782 // Allow some instructions to have implicitly pointer-sized operands. This is
2783 // compatible with gas.
2784 if (UnsizedMemOp) {
2785 static const char *const PtrSizedInstrs[] = {"call", "jmp", "push"};
2786 for (const char *Instr : PtrSizedInstrs) {
2787 if (Mnemonic == Instr) {
Craig Topper055845f2015-01-02 07:02:25 +00002788 UnsizedMemOp->Mem.Size = getPointerWidth();
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002789 break;
2790 }
2791 }
2792 }
2793
2794 // If an unsized memory operand is present, try to match with each memory
2795 // operand size. In Intel assembly, the size is not part of the instruction
2796 // mnemonic.
2797 SmallVector<unsigned, 8> Match;
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002798 uint64_t ErrorInfoMissingFeature = 0;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002799 if (UnsizedMemOp && UnsizedMemOp->isMemUnsized()) {
Ahmed Bougachad65f7872014-12-03 02:03:26 +00002800 static const unsigned MopSizes[] = {8, 16, 32, 64, 80, 128, 256, 512};
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002801 for (unsigned Size : MopSizes) {
2802 UnsizedMemOp->Mem.Size = Size;
2803 uint64_t ErrorInfoIgnore;
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002804 unsigned LastOpcode = Inst.getOpcode();
2805 unsigned M =
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002806 MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002807 MatchingInlineAsm, isParsingIntelSyntax());
2808 if (Match.empty() || LastOpcode != Inst.getOpcode())
2809 Match.push_back(M);
2810
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002811 // If this returned as a missing feature failure, remember that.
2812 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002813 ErrorInfoMissingFeature = ErrorInfoIgnore;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002814 }
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002815
2816 // Restore the size of the unsized memory operand if we modified it.
2817 if (UnsizedMemOp)
2818 UnsizedMemOp->Mem.Size = 0;
2819 }
2820
2821 // If we haven't matched anything yet, this is not a basic integer or FPU
Saleem Abdulrasoolc3f8ad32015-01-16 20:16:06 +00002822 // operation. There shouldn't be any ambiguity in our mnemonic table, so try
Reid Kleckner7b7a5992014-08-27 20:10:38 +00002823 // matching with the unsized operand.
2824 if (Match.empty()) {
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002825 Match.push_back(MatchInstructionImpl(Operands, Inst, ErrorInfo,
2826 MatchingInlineAsm,
2827 isParsingIntelSyntax()));
2828 // If this returned as a missing feature failure, remember that.
2829 if (Match.back() == Match_MissingFeature)
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002830 ErrorInfoMissingFeature = ErrorInfo;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002831 }
2832
2833 // Restore the size of the unsized memory operand if we modified it.
2834 if (UnsizedMemOp)
2835 UnsizedMemOp->Mem.Size = 0;
2836
2837 // If it's a bad mnemonic, all results will be the same.
2838 if (Match.back() == Match_MnemonicFail) {
Nico Webere204c482016-09-13 18:17:00 +00002839 ArrayRef<SMRange> Ranges =
2840 MatchingInlineAsm ? EmptyRanges : Op.getLocRange();
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002841 return Error(IDLoc, "invalid instruction mnemonic '" + Mnemonic + "'",
Nico Webere204c482016-09-13 18:17:00 +00002842 Ranges, MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002843 }
2844
2845 // If exactly one matched, then we treat that as a successful match (and the
2846 // instruction will already have been filled in correctly, since the failing
2847 // matches won't have modified it).
2848 unsigned NumSuccessfulMatches =
2849 std::count(std::begin(Match), std::end(Match), Match_Success);
2850 if (NumSuccessfulMatches == 1) {
2851 // Some instructions need post-processing to, for example, tweak which
2852 // encoding is selected. Loop on it while changes happen so the individual
2853 // transformations can chain off each other.
2854 if (!MatchingInlineAsm)
2855 while (processInstruction(Inst, Operands))
2856 ;
2857 Inst.setLoc(IDLoc);
2858 if (!MatchingInlineAsm)
2859 EmitInstruction(Inst, Operands, Out);
2860 Opcode = Inst.getOpcode();
2861 return false;
2862 } else if (NumSuccessfulMatches > 1) {
2863 assert(UnsizedMemOp &&
2864 "multiple matches only possible with unsized memory operands");
Nico Webere204c482016-09-13 18:17:00 +00002865 SMRange OpRange = UnsizedMemOp->getLocRange();
2866 ArrayRef<SMRange> Ranges = MatchingInlineAsm ? EmptyRanges : OpRange;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002867 return Error(UnsizedMemOp->getStartLoc(),
2868 "ambiguous operand size for instruction '" + Mnemonic + "\'",
Nico Webere204c482016-09-13 18:17:00 +00002869 Ranges, MatchingInlineAsm);
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002870 }
2871
2872 // If one instruction matched with a missing feature, report this as a
2873 // missing feature.
2874 if (std::count(std::begin(Match), std::end(Match),
2875 Match_MissingFeature) == 1) {
Ranjeet Singh86ecbb72015-06-30 12:32:53 +00002876 ErrorInfo = ErrorInfoMissingFeature;
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002877 return ErrorMissingFeature(IDLoc, ErrorInfoMissingFeature,
2878 MatchingInlineAsm);
2879 }
2880
2881 // If one instruction matched with an invalid operand, report this as an
2882 // operand failure.
2883 if (std::count(std::begin(Match), std::end(Match),
2884 Match_InvalidOperand) == 1) {
Nico Webere204c482016-09-13 18:17:00 +00002885 return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002886 MatchingInlineAsm);
2887 }
2888
2889 // If all of these were an outright failure, report it in a useless way.
Nico Webere204c482016-09-13 18:17:00 +00002890 return Error(IDLoc, "unknown instruction mnemonic", EmptyRanges,
Reid Klecknerf6fb7802014-08-26 20:32:34 +00002891 MatchingInlineAsm);
2892}
2893
Nico Weber42f79db2014-07-17 20:24:55 +00002894bool X86AsmParser::OmitRegisterFromClobberLists(unsigned RegNo) {
2895 return X86MCRegisterClasses[X86::SEGMENT_REGRegClassID].contains(RegNo);
2896}
Daniel Dunbar9b816a12010-05-04 16:12:42 +00002897
Devang Patel4a6e7782012-01-12 18:03:40 +00002898bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002899 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00002900 StringRef IDVal = DirectiveID.getIdentifier();
2901 if (IDVal == ".word")
2902 return ParseDirectiveWord(2, DirectiveID.getLoc());
Evan Cheng481ebb02011-07-27 00:38:12 +00002903 else if (IDVal.startswith(".code"))
2904 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
Chad Rosier6f8d8b22012-09-10 20:54:39 +00002905 else if (IDVal.startswith(".att_syntax")) {
Reid Klecknerce63b792014-08-06 23:21:13 +00002906 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2907 if (Parser.getTok().getString() == "prefix")
2908 Parser.Lex();
2909 else if (Parser.getTok().getString() == "noprefix")
2910 return Error(DirectiveID.getLoc(), "'.att_syntax noprefix' is not "
2911 "supported: registers must have a "
2912 "'%' prefix in .att_syntax");
2913 }
Chad Rosier6f8d8b22012-09-10 20:54:39 +00002914 getParser().setAssemblerDialect(0);
2915 return false;
2916 } else if (IDVal.startswith(".intel_syntax")) {
Devang Patela173ee52012-01-31 18:14:05 +00002917 getParser().setAssemblerDialect(1);
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002918 if (getLexer().isNot(AsmToken::EndOfStatement)) {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002919 if (Parser.getTok().getString() == "noprefix")
Craig Topper6bf3ed42012-07-18 04:59:16 +00002920 Parser.Lex();
Reid Klecknerce63b792014-08-06 23:21:13 +00002921 else if (Parser.getTok().getString() == "prefix")
2922 return Error(DirectiveID.getLoc(), "'.intel_syntax prefix' is not "
2923 "supported: registers must not have "
2924 "a '%' prefix in .intel_syntax");
Devang Patel9a9bb5c2012-01-30 20:02:42 +00002925 }
2926 return false;
Michael Zuckerman02ecd432015-12-13 17:07:23 +00002927 } else if (IDVal == ".even")
2928 return parseDirectiveEven(DirectiveID.getLoc());
Chris Lattner72c0b592010-10-30 17:38:55 +00002929 return true;
2930}
2931
Michael Zuckerman02ecd432015-12-13 17:07:23 +00002932/// parseDirectiveEven
2933/// ::= .even
2934bool X86AsmParser::parseDirectiveEven(SMLoc L) {
2935 const MCSection *Section = getStreamer().getCurrentSection().first;
2936 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2937 TokError("unexpected token in directive");
2938 return false;
2939 }
2940 if (!Section) {
2941 getStreamer().InitSections(false);
2942 Section = getStreamer().getCurrentSection().first;
2943 }
2944 if (Section->UseCodeAlign())
2945 getStreamer().EmitCodeAlignment(2, 0);
2946 else
2947 getStreamer().EmitValueToAlignment(2, 0, 1, 0);
2948 return false;
2949}
Chris Lattner72c0b592010-10-30 17:38:55 +00002950/// ParseDirectiveWord
2951/// ::= .word [ expression (, expression)* ]
Devang Patel4a6e7782012-01-12 18:03:40 +00002952bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002953 MCAsmParser &Parser = getParser();
Chris Lattner72c0b592010-10-30 17:38:55 +00002954 if (getLexer().isNot(AsmToken::EndOfStatement)) {
2955 for (;;) {
2956 const MCExpr *Value;
David Majnemera375b262015-10-26 02:45:50 +00002957 SMLoc ExprLoc = getLexer().getLoc();
Jim Grosbachd2037eb2013-02-20 22:21:35 +00002958 if (getParser().parseExpression(Value))
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002959 return false;
Chad Rosier51afe632012-06-27 22:34:28 +00002960
David Majnemera375b262015-10-26 02:45:50 +00002961 if (const auto *MCE = dyn_cast<MCConstantExpr>(Value)) {
2962 assert(Size <= 8 && "Invalid size");
2963 uint64_t IntValue = MCE->getValue();
2964 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2965 return Error(ExprLoc, "literal value out of range for directive");
2966 getStreamer().EmitIntValue(IntValue, Size);
2967 } else {
2968 getStreamer().EmitValue(Value, Size, ExprLoc);
2969 }
Chad Rosier51afe632012-06-27 22:34:28 +00002970
Chris Lattner72c0b592010-10-30 17:38:55 +00002971 if (getLexer().is(AsmToken::EndOfStatement))
2972 break;
Chad Rosier51afe632012-06-27 22:34:28 +00002973
Chris Lattner72c0b592010-10-30 17:38:55 +00002974 // FIXME: Improve diagnostic.
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002975 if (getLexer().isNot(AsmToken::Comma)) {
2976 Error(L, "unexpected token in directive");
2977 return false;
2978 }
Chris Lattner72c0b592010-10-30 17:38:55 +00002979 Parser.Lex();
2980 }
2981 }
Chad Rosier51afe632012-06-27 22:34:28 +00002982
Chris Lattner72c0b592010-10-30 17:38:55 +00002983 Parser.Lex();
2984 return false;
2985}
2986
Evan Cheng481ebb02011-07-27 00:38:12 +00002987/// ParseDirectiveCode
Craig Topper3c80d622014-01-06 04:55:54 +00002988/// ::= .code16 | .code32 | .code64
Devang Patel4a6e7782012-01-12 18:03:40 +00002989bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
Rafael Espindola961d4692014-11-11 05:18:41 +00002990 MCAsmParser &Parser = getParser();
Craig Topper3c80d622014-01-06 04:55:54 +00002991 if (IDVal == ".code16") {
Evan Cheng481ebb02011-07-27 00:38:12 +00002992 Parser.Lex();
Craig Topper3c80d622014-01-06 04:55:54 +00002993 if (!is16BitMode()) {
2994 SwitchMode(X86::Mode16Bit);
2995 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
2996 }
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00002997 } else if (IDVal == ".code32") {
Craig Topper3c80d622014-01-06 04:55:54 +00002998 Parser.Lex();
2999 if (!is32BitMode()) {
3000 SwitchMode(X86::Mode32Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00003001 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
3002 }
3003 } else if (IDVal == ".code64") {
3004 Parser.Lex();
3005 if (!is64BitMode()) {
Craig Topper3c80d622014-01-06 04:55:54 +00003006 SwitchMode(X86::Mode64Bit);
Evan Cheng481ebb02011-07-27 00:38:12 +00003007 getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
3008 }
3009 } else {
Saleem Abdulrasoola6505ca2014-01-13 01:15:39 +00003010 Error(L, "unknown directive " + IDVal);
3011 return false;
Evan Cheng481ebb02011-07-27 00:38:12 +00003012 }
Chris Lattner72c0b592010-10-30 17:38:55 +00003013
Evan Cheng481ebb02011-07-27 00:38:12 +00003014 return false;
3015}
Chris Lattner72c0b592010-10-30 17:38:55 +00003016
Daniel Dunbar71475772009-07-17 20:42:00 +00003017// Force static initialization.
3018extern "C" void LLVMInitializeX86AsmParser() {
Devang Patel4a6e7782012-01-12 18:03:40 +00003019 RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
3020 RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
Daniel Dunbar71475772009-07-17 20:42:00 +00003021}
Daniel Dunbar00331992009-07-29 00:02:19 +00003022
Chris Lattner3e4582a2010-09-06 19:11:01 +00003023#define GET_REGISTER_MATCHER
3024#define GET_MATCHER_IMPLEMENTATION
Jim Grosbach6f1f41b2012-11-14 18:04:47 +00003025#define GET_SUBTARGET_FEATURE_NAME
Daniel Dunbar00331992009-07-29 00:02:19 +00003026#include "X86GenAsmMatcher.inc"