2009-07-18 04:42:00 +08:00
|
|
|
//===-- X86AsmParser.cpp - Parse X86 assembly to MCInst instructions ------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-26 08:24:13 +08:00
|
|
|
#include "MCTargetDesc/X86BaseInfo.h"
|
2012-10-25 06:13:37 +08:00
|
|
|
#include "llvm/ADT/APFloat.h"
|
2013-07-24 15:33:14 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2010-09-22 12:11:10 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2013-04-03 04:02:33 +08:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
|
|
|
#include "llvm/MC/MCParser/MCAsmLexer.h"
|
|
|
|
#include "llvm/MC/MCParser/MCAsmParser.h"
|
|
|
|
#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
|
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
|
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
#include "llvm/MC/MCTargetAsmParser.h"
|
2009-07-29 06:40:46 +08:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2011-08-25 02:08:43 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2010-08-12 08:55:42 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2011-07-08 09:53:10 +08:00
|
|
|
|
2009-07-18 04:42:00 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
2009-07-31 19:35:26 +08:00
|
|
|
struct X86Operand;
|
2009-07-18 04:42:00 +08:00
|
|
|
|
2013-04-17 02:15:40 +08:00
|
|
|
static const char OpPrecedence[] = {
|
2014-01-16 03:05:24 +08:00
|
|
|
0, // IC_OR
|
|
|
|
1, // IC_AND
|
|
|
|
2, // IC_PLUS
|
|
|
|
2, // IC_MINUS
|
|
|
|
3, // IC_MULTIPLY
|
|
|
|
3, // IC_DIVIDE
|
|
|
|
4, // IC_RPAREN
|
|
|
|
5, // IC_LPAREN
|
2013-04-17 02:15:40 +08:00
|
|
|
0, // IC_IMM
|
|
|
|
0 // IC_REGISTER
|
|
|
|
};
|
|
|
|
|
2012-01-13 02:03:40 +08:00
|
|
|
class X86AsmParser : public MCTargetAsmParser {
|
2011-07-09 13:47:46 +08:00
|
|
|
MCSubtargetInfo &STI;
|
2009-07-29 06:40:46 +08:00
|
|
|
MCAsmParser &Parser;
|
2012-10-26 04:41:34 +08:00
|
|
|
ParseInstructionInfo *InstInfo;
|
2009-07-29 06:40:46 +08:00
|
|
|
private:
|
2013-12-03 00:06:06 +08:00
|
|
|
SMLoc consumeToken() {
|
|
|
|
SMLoc Result = Parser.getTok().getLoc();
|
|
|
|
Parser.Lex();
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2013-04-17 02:15:40 +08:00
|
|
|
enum InfixCalculatorTok {
|
2014-01-16 03:05:24 +08:00
|
|
|
IC_OR = 0,
|
|
|
|
IC_AND,
|
|
|
|
IC_PLUS,
|
2013-04-17 02:15:40 +08:00
|
|
|
IC_MINUS,
|
|
|
|
IC_MULTIPLY,
|
|
|
|
IC_DIVIDE,
|
|
|
|
IC_RPAREN,
|
|
|
|
IC_LPAREN,
|
|
|
|
IC_IMM,
|
|
|
|
IC_REGISTER
|
|
|
|
};
|
|
|
|
|
|
|
|
class InfixCalculator {
|
|
|
|
typedef std::pair< InfixCalculatorTok, int64_t > ICToken;
|
|
|
|
SmallVector<InfixCalculatorTok, 4> InfixOperatorStack;
|
|
|
|
SmallVector<ICToken, 4> PostfixStack;
|
|
|
|
|
|
|
|
public:
|
|
|
|
int64_t popOperand() {
|
|
|
|
assert (!PostfixStack.empty() && "Poped an empty stack!");
|
|
|
|
ICToken Op = PostfixStack.pop_back_val();
|
|
|
|
assert ((Op.first == IC_IMM || Op.first == IC_REGISTER)
|
|
|
|
&& "Expected and immediate or register!");
|
|
|
|
return Op.second;
|
|
|
|
}
|
|
|
|
void pushOperand(InfixCalculatorTok Op, int64_t Val = 0) {
|
|
|
|
assert ((Op == IC_IMM || Op == IC_REGISTER) &&
|
|
|
|
"Unexpected operand!");
|
|
|
|
PostfixStack.push_back(std::make_pair(Op, Val));
|
|
|
|
}
|
|
|
|
|
2013-08-08 23:48:46 +08:00
|
|
|
void popOperator() { InfixOperatorStack.pop_back(); }
|
2013-04-17 02:15:40 +08:00
|
|
|
void pushOperator(InfixCalculatorTok Op) {
|
|
|
|
// Push the new operator if the stack is empty.
|
|
|
|
if (InfixOperatorStack.empty()) {
|
|
|
|
InfixOperatorStack.push_back(Op);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Push the new operator if it has a higher precedence than the operator
|
|
|
|
// on the top of the stack or the operator on the top of the stack is a
|
|
|
|
// left parentheses.
|
|
|
|
unsigned Idx = InfixOperatorStack.size() - 1;
|
|
|
|
InfixCalculatorTok StackOp = InfixOperatorStack[Idx];
|
|
|
|
if (OpPrecedence[Op] > OpPrecedence[StackOp] || StackOp == IC_LPAREN) {
|
|
|
|
InfixOperatorStack.push_back(Op);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The operator on the top of the stack has higher precedence than the
|
|
|
|
// new operator.
|
|
|
|
unsigned ParenCount = 0;
|
|
|
|
while (1) {
|
|
|
|
// Nothing to process.
|
|
|
|
if (InfixOperatorStack.empty())
|
|
|
|
break;
|
|
|
|
|
|
|
|
Idx = InfixOperatorStack.size() - 1;
|
|
|
|
StackOp = InfixOperatorStack[Idx];
|
|
|
|
if (!(OpPrecedence[StackOp] >= OpPrecedence[Op] || ParenCount))
|
|
|
|
break;
|
|
|
|
|
|
|
|
// If we have an even parentheses count and we see a left parentheses,
|
|
|
|
// then stop processing.
|
|
|
|
if (!ParenCount && StackOp == IC_LPAREN)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (StackOp == IC_RPAREN) {
|
|
|
|
++ParenCount;
|
2013-08-08 23:48:46 +08:00
|
|
|
InfixOperatorStack.pop_back();
|
2013-04-17 02:15:40 +08:00
|
|
|
} else if (StackOp == IC_LPAREN) {
|
|
|
|
--ParenCount;
|
2013-08-08 23:48:46 +08:00
|
|
|
InfixOperatorStack.pop_back();
|
2013-04-17 02:15:40 +08:00
|
|
|
} else {
|
2013-08-08 23:48:46 +08:00
|
|
|
InfixOperatorStack.pop_back();
|
2013-04-17 02:15:40 +08:00
|
|
|
PostfixStack.push_back(std::make_pair(StackOp, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Push the new operator.
|
|
|
|
InfixOperatorStack.push_back(Op);
|
|
|
|
}
|
|
|
|
int64_t execute() {
|
|
|
|
// Push any remaining operators onto the postfix stack.
|
|
|
|
while (!InfixOperatorStack.empty()) {
|
|
|
|
InfixCalculatorTok StackOp = InfixOperatorStack.pop_back_val();
|
|
|
|
if (StackOp != IC_LPAREN && StackOp != IC_RPAREN)
|
|
|
|
PostfixStack.push_back(std::make_pair(StackOp, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PostfixStack.empty())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
SmallVector<ICToken, 16> OperandStack;
|
|
|
|
for (unsigned i = 0, e = PostfixStack.size(); i != e; ++i) {
|
|
|
|
ICToken Op = PostfixStack[i];
|
|
|
|
if (Op.first == IC_IMM || Op.first == IC_REGISTER) {
|
|
|
|
OperandStack.push_back(Op);
|
|
|
|
} else {
|
|
|
|
assert (OperandStack.size() > 1 && "Too few operands.");
|
|
|
|
int64_t Val;
|
|
|
|
ICToken Op2 = OperandStack.pop_back_val();
|
|
|
|
ICToken Op1 = OperandStack.pop_back_val();
|
|
|
|
switch (Op.first) {
|
|
|
|
default:
|
|
|
|
report_fatal_error("Unexpected operator!");
|
|
|
|
break;
|
|
|
|
case IC_PLUS:
|
|
|
|
Val = Op1.second + Op2.second;
|
|
|
|
OperandStack.push_back(std::make_pair(IC_IMM, Val));
|
|
|
|
break;
|
|
|
|
case IC_MINUS:
|
|
|
|
Val = Op1.second - Op2.second;
|
|
|
|
OperandStack.push_back(std::make_pair(IC_IMM, Val));
|
|
|
|
break;
|
|
|
|
case IC_MULTIPLY:
|
|
|
|
assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
|
|
|
|
"Multiply operation with an immediate and a register!");
|
|
|
|
Val = Op1.second * Op2.second;
|
|
|
|
OperandStack.push_back(std::make_pair(IC_IMM, Val));
|
|
|
|
break;
|
|
|
|
case IC_DIVIDE:
|
|
|
|
assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
|
|
|
|
"Divide operation with an immediate and a register!");
|
|
|
|
assert (Op2.second != 0 && "Division by zero!");
|
|
|
|
Val = Op1.second / Op2.second;
|
|
|
|
OperandStack.push_back(std::make_pair(IC_IMM, Val));
|
|
|
|
break;
|
2014-01-16 03:05:24 +08:00
|
|
|
case IC_OR:
|
|
|
|
assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
|
|
|
|
"Or operation with an immediate and a register!");
|
|
|
|
Val = Op1.second | Op2.second;
|
|
|
|
OperandStack.push_back(std::make_pair(IC_IMM, Val));
|
|
|
|
break;
|
|
|
|
case IC_AND:
|
|
|
|
assert (Op1.first == IC_IMM && Op2.first == IC_IMM &&
|
|
|
|
"And operation with an immediate and a register!");
|
|
|
|
Val = Op1.second & Op2.second;
|
|
|
|
OperandStack.push_back(std::make_pair(IC_IMM, Val));
|
|
|
|
break;
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert (OperandStack.size() == 1 && "Expected a single result.");
|
|
|
|
return OperandStack.pop_back_val().second;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
enum IntelExprState {
|
2014-01-16 03:05:24 +08:00
|
|
|
IES_OR,
|
|
|
|
IES_AND,
|
2013-04-17 02:15:40 +08:00
|
|
|
IES_PLUS,
|
|
|
|
IES_MINUS,
|
|
|
|
IES_MULTIPLY,
|
|
|
|
IES_DIVIDE,
|
|
|
|
IES_LBRAC,
|
|
|
|
IES_RBRAC,
|
|
|
|
IES_LPAREN,
|
|
|
|
IES_RPAREN,
|
|
|
|
IES_REGISTER,
|
|
|
|
IES_INTEGER,
|
|
|
|
IES_IDENTIFIER,
|
|
|
|
IES_ERROR
|
|
|
|
};
|
|
|
|
|
|
|
|
class IntelExprStateMachine {
|
2013-04-18 05:01:45 +08:00
|
|
|
IntelExprState State, PrevState;
|
2013-04-17 02:15:40 +08:00
|
|
|
unsigned BaseReg, IndexReg, TmpReg, Scale;
|
2013-04-17 08:11:46 +08:00
|
|
|
int64_t Imm;
|
2013-04-17 02:15:40 +08:00
|
|
|
const MCExpr *Sym;
|
|
|
|
StringRef SymName;
|
2013-04-17 08:11:46 +08:00
|
|
|
bool StopOnLBrac, AddImmPrefix;
|
2013-04-17 02:15:40 +08:00
|
|
|
InfixCalculator IC;
|
2013-04-23 03:42:15 +08:00
|
|
|
InlineAsmIdentifierInfo Info;
|
2013-04-17 02:15:40 +08:00
|
|
|
public:
|
2013-04-17 08:11:46 +08:00
|
|
|
IntelExprStateMachine(int64_t imm, bool stoponlbrac, bool addimmprefix) :
|
2013-04-18 05:01:45 +08:00
|
|
|
State(IES_PLUS), PrevState(IES_ERROR), BaseReg(0), IndexReg(0), TmpReg(0),
|
|
|
|
Scale(1), Imm(imm), Sym(0), StopOnLBrac(stoponlbrac),
|
2013-04-23 03:42:15 +08:00
|
|
|
AddImmPrefix(addimmprefix) { Info.clear(); }
|
2013-04-17 02:15:40 +08:00
|
|
|
|
|
|
|
unsigned getBaseReg() { return BaseReg; }
|
|
|
|
unsigned getIndexReg() { return IndexReg; }
|
|
|
|
unsigned getScale() { return Scale; }
|
|
|
|
const MCExpr *getSym() { return Sym; }
|
|
|
|
StringRef getSymName() { return SymName; }
|
2013-04-17 08:11:46 +08:00
|
|
|
int64_t getImm() { return Imm + IC.execute(); }
|
2013-05-10 07:48:53 +08:00
|
|
|
bool isValidEndState() {
|
|
|
|
return State == IES_RBRAC || State == IES_INTEGER;
|
|
|
|
}
|
2013-04-17 08:11:46 +08:00
|
|
|
bool getStopOnLBrac() { return StopOnLBrac; }
|
|
|
|
bool getAddImmPrefix() { return AddImmPrefix; }
|
2013-04-18 05:01:45 +08:00
|
|
|
bool hadError() { return State == IES_ERROR; }
|
2013-04-17 08:11:46 +08:00
|
|
|
|
2013-04-23 03:42:15 +08:00
|
|
|
InlineAsmIdentifierInfo &getIdentifierInfo() {
|
|
|
|
return Info;
|
|
|
|
}
|
|
|
|
|
2014-01-16 03:05:24 +08:00
|
|
|
void onOr() {
|
|
|
|
IntelExprState CurrState = State;
|
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_INTEGER:
|
|
|
|
case IES_RPAREN:
|
|
|
|
case IES_REGISTER:
|
|
|
|
State = IES_OR;
|
|
|
|
IC.pushOperator(IC_OR);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
PrevState = CurrState;
|
|
|
|
}
|
|
|
|
void onAnd() {
|
|
|
|
IntelExprState CurrState = State;
|
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_INTEGER:
|
|
|
|
case IES_RPAREN:
|
|
|
|
case IES_REGISTER:
|
|
|
|
State = IES_AND;
|
|
|
|
IC.pushOperator(IC_AND);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
PrevState = CurrState;
|
|
|
|
}
|
2013-04-17 02:15:40 +08:00
|
|
|
void onPlus() {
|
2013-04-18 05:01:45 +08:00
|
|
|
IntelExprState CurrState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_INTEGER:
|
|
|
|
case IES_RPAREN:
|
|
|
|
case IES_REGISTER:
|
|
|
|
State = IES_PLUS;
|
|
|
|
IC.pushOperator(IC_PLUS);
|
2013-04-18 05:01:45 +08:00
|
|
|
if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
|
|
|
|
// If we already have a BaseReg, then assume this is the IndexReg with
|
|
|
|
// a scale of 1.
|
|
|
|
if (!BaseReg) {
|
|
|
|
BaseReg = TmpReg;
|
|
|
|
} else {
|
|
|
|
assert (!IndexReg && "BaseReg/IndexReg already set!");
|
|
|
|
IndexReg = TmpReg;
|
|
|
|
Scale = 1;
|
|
|
|
}
|
|
|
|
}
|
2013-04-17 02:15:40 +08:00
|
|
|
break;
|
|
|
|
}
|
2013-04-18 05:01:45 +08:00
|
|
|
PrevState = CurrState;
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
void onMinus() {
|
2013-04-18 05:01:45 +08:00
|
|
|
IntelExprState CurrState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_PLUS:
|
2013-04-18 05:01:45 +08:00
|
|
|
case IES_MULTIPLY:
|
|
|
|
case IES_DIVIDE:
|
2013-04-17 02:15:40 +08:00
|
|
|
case IES_LPAREN:
|
|
|
|
case IES_RPAREN:
|
2013-04-18 05:01:45 +08:00
|
|
|
case IES_LBRAC:
|
|
|
|
case IES_RBRAC:
|
|
|
|
case IES_INTEGER:
|
2013-04-17 02:15:40 +08:00
|
|
|
case IES_REGISTER:
|
|
|
|
State = IES_MINUS;
|
2013-04-18 05:01:45 +08:00
|
|
|
// Only push the minus operator if it is not a unary operator.
|
|
|
|
if (!(CurrState == IES_PLUS || CurrState == IES_MINUS ||
|
|
|
|
CurrState == IES_MULTIPLY || CurrState == IES_DIVIDE ||
|
|
|
|
CurrState == IES_LPAREN || CurrState == IES_LBRAC))
|
|
|
|
IC.pushOperator(IC_MINUS);
|
|
|
|
if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
|
|
|
|
// If we already have a BaseReg, then assume this is the IndexReg with
|
|
|
|
// a scale of 1.
|
|
|
|
if (!BaseReg) {
|
|
|
|
BaseReg = TmpReg;
|
|
|
|
} else {
|
|
|
|
assert (!IndexReg && "BaseReg/IndexReg already set!");
|
|
|
|
IndexReg = TmpReg;
|
|
|
|
Scale = 1;
|
|
|
|
}
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-04-18 05:01:45 +08:00
|
|
|
PrevState = CurrState;
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
void onRegister(unsigned Reg) {
|
2013-04-18 05:01:45 +08:00
|
|
|
IntelExprState CurrState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_PLUS:
|
|
|
|
case IES_LPAREN:
|
|
|
|
State = IES_REGISTER;
|
|
|
|
TmpReg = Reg;
|
|
|
|
IC.pushOperand(IC_REGISTER);
|
|
|
|
break;
|
2013-04-18 05:01:45 +08:00
|
|
|
case IES_MULTIPLY:
|
|
|
|
// Index Register - Scale * Register
|
|
|
|
if (PrevState == IES_INTEGER) {
|
|
|
|
assert (!IndexReg && "IndexReg already set!");
|
|
|
|
State = IES_REGISTER;
|
|
|
|
IndexReg = Reg;
|
|
|
|
// Get the scale and replace the 'Scale * Register' with '0'.
|
|
|
|
Scale = IC.popOperand();
|
|
|
|
IC.pushOperand(IC_IMM);
|
|
|
|
IC.popOperator();
|
|
|
|
} else {
|
|
|
|
State = IES_ERROR;
|
|
|
|
}
|
2013-04-17 02:15:40 +08:00
|
|
|
break;
|
|
|
|
}
|
2013-04-18 05:01:45 +08:00
|
|
|
PrevState = CurrState;
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
2013-04-20 02:39:50 +08:00
|
|
|
void onIdentifierExpr(const MCExpr *SymRef, StringRef SymRefName) {
|
2013-04-19 00:28:19 +08:00
|
|
|
PrevState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_PLUS:
|
|
|
|
case IES_MINUS:
|
|
|
|
State = IES_INTEGER;
|
|
|
|
Sym = SymRef;
|
|
|
|
SymName = SymRefName;
|
|
|
|
IC.pushOperand(IC_IMM);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void onInteger(int64_t TmpInt) {
|
2013-04-18 05:01:45 +08:00
|
|
|
IntelExprState CurrState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_PLUS:
|
|
|
|
case IES_MINUS:
|
2014-01-16 03:05:24 +08:00
|
|
|
case IES_OR:
|
|
|
|
case IES_AND:
|
2013-04-17 02:15:40 +08:00
|
|
|
case IES_DIVIDE:
|
2013-04-18 05:01:45 +08:00
|
|
|
case IES_MULTIPLY:
|
2013-04-17 02:15:40 +08:00
|
|
|
case IES_LPAREN:
|
|
|
|
State = IES_INTEGER;
|
2013-04-18 05:01:45 +08:00
|
|
|
if (PrevState == IES_REGISTER && CurrState == IES_MULTIPLY) {
|
|
|
|
// Index Register - Register * Scale
|
|
|
|
assert (!IndexReg && "IndexReg already set!");
|
|
|
|
IndexReg = TmpReg;
|
|
|
|
Scale = TmpInt;
|
|
|
|
// Get the scale and replace the 'Register * Scale' with '0'.
|
|
|
|
IC.popOperator();
|
|
|
|
} else if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
|
2014-01-16 03:05:24 +08:00
|
|
|
PrevState == IES_OR || PrevState == IES_AND ||
|
2013-04-18 05:01:45 +08:00
|
|
|
PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
|
|
|
|
PrevState == IES_LPAREN || PrevState == IES_LBRAC) &&
|
|
|
|
CurrState == IES_MINUS) {
|
|
|
|
// Unary minus. No need to pop the minus operand because it was never
|
|
|
|
// pushed.
|
|
|
|
IC.pushOperand(IC_IMM, -TmpInt); // Push -Imm.
|
|
|
|
} else {
|
|
|
|
IC.pushOperand(IC_IMM, TmpInt);
|
|
|
|
}
|
2013-04-17 02:15:40 +08:00
|
|
|
break;
|
|
|
|
}
|
2013-04-18 05:01:45 +08:00
|
|
|
PrevState = CurrState;
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
void onStar() {
|
2013-04-19 00:28:19 +08:00
|
|
|
PrevState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_INTEGER:
|
|
|
|
case IES_REGISTER:
|
|
|
|
case IES_RPAREN:
|
|
|
|
State = IES_MULTIPLY;
|
|
|
|
IC.pushOperator(IC_MULTIPLY);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void onDivide() {
|
2013-04-19 00:28:19 +08:00
|
|
|
PrevState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_INTEGER:
|
2013-04-18 05:01:45 +08:00
|
|
|
case IES_RPAREN:
|
2013-04-17 02:15:40 +08:00
|
|
|
State = IES_DIVIDE;
|
|
|
|
IC.pushOperator(IC_DIVIDE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void onLBrac() {
|
2013-04-19 00:28:19 +08:00
|
|
|
PrevState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_RBRAC:
|
|
|
|
State = IES_PLUS;
|
|
|
|
IC.pushOperator(IC_PLUS);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void onRBrac() {
|
2013-04-18 05:01:45 +08:00
|
|
|
IntelExprState CurrState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_INTEGER:
|
|
|
|
case IES_REGISTER:
|
2013-04-18 05:01:45 +08:00
|
|
|
case IES_RPAREN:
|
2013-04-17 02:15:40 +08:00
|
|
|
State = IES_RBRAC;
|
2013-04-18 05:01:45 +08:00
|
|
|
if (CurrState == IES_REGISTER && PrevState != IES_MULTIPLY) {
|
|
|
|
// If we already have a BaseReg, then assume this is the IndexReg with
|
|
|
|
// a scale of 1.
|
|
|
|
if (!BaseReg) {
|
|
|
|
BaseReg = TmpReg;
|
|
|
|
} else {
|
|
|
|
assert (!IndexReg && "BaseReg/IndexReg already set!");
|
|
|
|
IndexReg = TmpReg;
|
|
|
|
Scale = 1;
|
|
|
|
}
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2013-04-18 05:01:45 +08:00
|
|
|
PrevState = CurrState;
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
void onLParen() {
|
2013-04-18 05:01:45 +08:00
|
|
|
IntelExprState CurrState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_PLUS:
|
|
|
|
case IES_MINUS:
|
2014-01-16 03:05:24 +08:00
|
|
|
case IES_OR:
|
|
|
|
case IES_AND:
|
2013-04-17 02:15:40 +08:00
|
|
|
case IES_MULTIPLY:
|
|
|
|
case IES_DIVIDE:
|
|
|
|
case IES_LPAREN:
|
2013-04-19 00:28:19 +08:00
|
|
|
// FIXME: We don't handle this type of unary minus, yet.
|
|
|
|
if ((PrevState == IES_PLUS || PrevState == IES_MINUS ||
|
2014-01-16 03:05:24 +08:00
|
|
|
PrevState == IES_OR || PrevState == IES_AND ||
|
2013-04-19 00:28:19 +08:00
|
|
|
PrevState == IES_MULTIPLY || PrevState == IES_DIVIDE ||
|
|
|
|
PrevState == IES_LPAREN || PrevState == IES_LBRAC) &&
|
|
|
|
CurrState == IES_MINUS) {
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
2013-04-17 02:15:40 +08:00
|
|
|
State = IES_LPAREN;
|
|
|
|
IC.pushOperator(IC_LPAREN);
|
|
|
|
break;
|
|
|
|
}
|
2013-04-18 05:01:45 +08:00
|
|
|
PrevState = CurrState;
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
void onRParen() {
|
2013-04-19 00:28:19 +08:00
|
|
|
PrevState = State;
|
2013-04-17 02:15:40 +08:00
|
|
|
switch (State) {
|
|
|
|
default:
|
|
|
|
State = IES_ERROR;
|
|
|
|
break;
|
|
|
|
case IES_INTEGER:
|
2013-04-18 05:01:45 +08:00
|
|
|
case IES_REGISTER:
|
2013-04-17 02:15:40 +08:00
|
|
|
case IES_RPAREN:
|
|
|
|
State = IES_RPAREN;
|
|
|
|
IC.pushOperator(IC_RPAREN);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
MCAsmParser &getParser() const { return Parser; }
|
2009-07-29 04:47:52 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
MCAsmLexer &getLexer() const { return Parser.getLexer(); }
|
|
|
|
|
2011-10-16 12:47:35 +08:00
|
|
|
bool Error(SMLoc L, const Twine &Msg,
|
2013-05-05 08:40:33 +08:00
|
|
|
ArrayRef<SMRange> Ranges = None,
|
2012-10-13 07:09:25 +08:00
|
|
|
bool MatchingInlineAsm = false) {
|
|
|
|
if (MatchingInlineAsm) return true;
|
2011-10-16 12:47:35 +08:00
|
|
|
return Parser.Error(L, Msg, Ranges);
|
|
|
|
}
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2012-01-18 02:00:18 +08:00
|
|
|
X86Operand *ErrorOperand(SMLoc Loc, StringRef Msg) {
|
|
|
|
Error(Loc, Msg);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-16 02:44:13 +08:00
|
|
|
X86Operand *ParseOperand();
|
2012-01-12 09:36:43 +08:00
|
|
|
X86Operand *ParseATTOperand();
|
|
|
|
X86Operand *ParseIntelOperand();
|
2013-04-10 04:44:09 +08:00
|
|
|
X86Operand *ParseIntelOffsetOfOperator();
|
2013-12-01 19:47:42 +08:00
|
|
|
bool ParseIntelDotOperator(const MCExpr *Disp, const MCExpr *&NewDisp);
|
2013-04-10 04:44:09 +08:00
|
|
|
X86Operand *ParseIntelOperator(unsigned OpKind);
|
2013-08-28 05:56:17 +08:00
|
|
|
X86Operand *ParseIntelSegmentOverride(unsigned SegReg, SMLoc Start, unsigned Size);
|
|
|
|
X86Operand *ParseIntelMemOperand(int64_t ImmDisp, SMLoc StartLoc,
|
|
|
|
unsigned Size);
|
2013-12-01 19:47:42 +08:00
|
|
|
bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End);
|
2013-04-13 03:51:49 +08:00
|
|
|
X86Operand *ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
|
2013-04-18 05:14:38 +08:00
|
|
|
int64_t ImmDisp, unsigned Size);
|
2013-12-01 19:47:42 +08:00
|
|
|
bool ParseIntelIdentifier(const MCExpr *&Val, StringRef &Identifier,
|
|
|
|
InlineAsmIdentifierInfo &Info,
|
|
|
|
bool IsUnevaluatedOperand, SMLoc &End);
|
2013-04-23 03:42:15 +08:00
|
|
|
|
2010-04-18 02:56:34 +08:00
|
|
|
X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
|
2009-09-11 04:51:44 +08:00
|
|
|
|
2013-04-13 02:21:18 +08:00
|
|
|
X86Operand *CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp,
|
|
|
|
unsigned BaseReg, unsigned IndexReg,
|
|
|
|
unsigned Scale, SMLoc Start, SMLoc End,
|
2013-04-23 03:42:15 +08:00
|
|
|
unsigned Size, StringRef Identifier,
|
|
|
|
InlineAsmIdentifierInfo &Info);
|
2013-03-20 05:11:56 +08:00
|
|
|
|
2009-09-11 04:51:44 +08:00
|
|
|
bool ParseDirectiveWord(unsigned Size, SMLoc L);
|
2011-07-27 08:38:12 +08:00
|
|
|
bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
|
2009-09-11 04:51:44 +08:00
|
|
|
|
2012-01-19 06:42:29 +08:00
|
|
|
bool processInstruction(MCInst &Inst,
|
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Ops);
|
|
|
|
|
2012-10-13 08:26:04 +08:00
|
|
|
bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
|
2010-09-29 09:50:45 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2012-10-13 08:26:04 +08:00
|
|
|
MCStreamer &Out, unsigned &ErrorInfo,
|
|
|
|
bool MatchingInlineAsm);
|
2012-08-10 06:04:55 +08:00
|
|
|
|
2011-03-18 19:59:40 +08:00
|
|
|
/// isSrcOp - Returns true if operand is either (%rsi) or %ds:%(rsi)
|
2012-03-14 03:47:55 +08:00
|
|
|
/// in 64bit mode or (%esi) or %es:(%esi) in 32bit mode.
|
2011-03-18 19:59:40 +08:00
|
|
|
bool isSrcOp(X86Operand &Op);
|
|
|
|
|
2012-03-14 03:47:55 +08:00
|
|
|
/// isDstOp - Returns true if operand is either (%rdi) or %es:(%rdi)
|
|
|
|
/// in 64bit mode or (%edi) or %es:(%edi) in 32bit mode.
|
2011-03-18 19:59:40 +08:00
|
|
|
bool isDstOp(X86Operand &Op);
|
|
|
|
|
2011-07-11 11:57:24 +08:00
|
|
|
bool is64BitMode() const {
|
2011-07-08 09:53:10 +08:00
|
|
|
// FIXME: Can tablegen auto-generate this?
|
2011-07-09 13:47:46 +08:00
|
|
|
return (STI.getFeatureBits() & X86::Mode64Bit) != 0;
|
2011-07-08 09:53:10 +08:00
|
|
|
}
|
2014-01-06 12:55:54 +08:00
|
|
|
bool is32BitMode() const {
|
|
|
|
// FIXME: Can tablegen auto-generate this?
|
|
|
|
return (STI.getFeatureBits() & X86::Mode32Bit) != 0;
|
|
|
|
}
|
|
|
|
bool is16BitMode() const {
|
|
|
|
// FIXME: Can tablegen auto-generate this?
|
|
|
|
return (STI.getFeatureBits() & X86::Mode16Bit) != 0;
|
|
|
|
}
|
|
|
|
void SwitchMode(uint64_t mode) {
|
|
|
|
uint64_t oldMode = STI.getFeatureBits() &
|
|
|
|
(X86::Mode64Bit | X86::Mode32Bit | X86::Mode16Bit);
|
|
|
|
unsigned FB = ComputeAvailableFeatures(STI.ToggleFeature(oldMode | mode));
|
2011-07-27 08:38:12 +08:00
|
|
|
setAvailableFeatures(FB);
|
2014-01-06 12:55:54 +08:00
|
|
|
assert(mode == (STI.getFeatureBits() &
|
|
|
|
(X86::Mode64Bit | X86::Mode32Bit | X86::Mode16Bit)));
|
2011-07-27 08:38:12 +08:00
|
|
|
}
|
2011-07-08 09:53:10 +08:00
|
|
|
|
2013-04-19 00:13:18 +08:00
|
|
|
bool isParsingIntelSyntax() {
|
|
|
|
return getParser().getAssemblerDialect();
|
|
|
|
}
|
|
|
|
|
2010-07-19 13:44:09 +08:00
|
|
|
/// @name Auto-generated Matcher Functions
|
|
|
|
/// {
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-07 03:11:01 +08:00
|
|
|
#define GET_ASSEMBLER_HEADER
|
|
|
|
#include "X86GenAsmMatcher.inc"
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2009-07-29 08:02:19 +08:00
|
|
|
/// }
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
public:
|
2013-09-12 18:28:05 +08:00
|
|
|
X86AsmParser(MCSubtargetInfo &sti, MCAsmParser &parser,
|
|
|
|
const MCInstrInfo &MII)
|
|
|
|
: MCTargetAsmParser(), STI(sti), Parser(parser), InstInfo(0) {
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-07-19 13:44:09 +08:00
|
|
|
// Initialize the set of available features.
|
2011-07-09 13:47:46 +08:00
|
|
|
setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
|
2010-07-19 13:44:09 +08:00
|
|
|
}
|
2011-01-28 01:14:22 +08:00
|
|
|
virtual bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2012-10-26 04:41:34 +08:00
|
|
|
virtual bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
|
|
|
|
SMLoc NameLoc,
|
2010-01-15 06:21:20 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
2009-09-11 04:51:44 +08:00
|
|
|
|
|
|
|
virtual bool ParseDirective(AsmToken DirectiveID);
|
2009-07-29 06:40:46 +08:00
|
|
|
};
|
2009-07-29 14:33:53 +08:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
2010-01-23 08:40:33 +08:00
|
|
|
/// @name Auto-generated Match Functions
|
2010-07-24 06:15:26 +08:00
|
|
|
/// {
|
2010-01-23 08:40:33 +08:00
|
|
|
|
2010-02-09 08:34:28 +08:00
|
|
|
static unsigned MatchRegisterName(StringRef Name);
|
2010-01-23 08:40:33 +08:00
|
|
|
|
|
|
|
/// }
|
2009-07-29 14:33:53 +08:00
|
|
|
|
2012-07-18 12:59:16 +08:00
|
|
|
static bool isImmSExti16i8Value(uint64_t Value) {
|
2012-01-19 06:42:29 +08:00
|
|
|
return (( Value <= 0x000000000000007FULL)||
|
|
|
|
(0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)||
|
|
|
|
(0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isImmSExti32i8Value(uint64_t Value) {
|
|
|
|
return (( Value <= 0x000000000000007FULL)||
|
|
|
|
(0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)||
|
|
|
|
(0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isImmZExtu32u8Value(uint64_t Value) {
|
|
|
|
return (Value <= 0x00000000000000FFULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isImmSExti64i8Value(uint64_t Value) {
|
|
|
|
return (( Value <= 0x000000000000007FULL)||
|
2012-07-18 12:59:16 +08:00
|
|
|
(0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
|
2012-01-19 06:42:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool isImmSExti64i32Value(uint64_t Value) {
|
|
|
|
return (( Value <= 0x000000007FFFFFFFULL)||
|
2012-07-18 12:59:16 +08:00
|
|
|
(0xFFFFFFFF80000000ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
|
2012-01-19 06:42:29 +08:00
|
|
|
}
|
2009-07-29 14:33:53 +08:00
|
|
|
namespace {
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
/// X86Operand - Instances of this class represent a parsed X86 machine
|
|
|
|
/// instruction.
|
2010-01-15 05:20:55 +08:00
|
|
|
struct X86Operand : public MCParsedAsmOperand {
|
2010-01-16 03:06:59 +08:00
|
|
|
enum KindTy {
|
2009-08-07 16:26:05 +08:00
|
|
|
Token,
|
2009-07-29 06:40:46 +08:00
|
|
|
Register,
|
|
|
|
Immediate,
|
2012-10-03 07:38:50 +08:00
|
|
|
Memory
|
2009-07-29 06:40:46 +08:00
|
|
|
} Kind;
|
|
|
|
|
2010-01-16 02:51:29 +08:00
|
|
|
SMLoc StartLoc, EndLoc;
|
2012-10-24 01:43:43 +08:00
|
|
|
SMLoc OffsetOfLoc;
|
2013-04-10 01:53:49 +08:00
|
|
|
StringRef SymName;
|
2013-04-23 06:04:25 +08:00
|
|
|
void *OpDecl;
|
2013-01-11 06:10:27 +08:00
|
|
|
bool AddressOf;
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2013-03-15 08:42:55 +08:00
|
|
|
struct TokOp {
|
|
|
|
const char *Data;
|
|
|
|
unsigned Length;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RegOp {
|
|
|
|
unsigned RegNo;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ImmOp {
|
|
|
|
const MCExpr *Val;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MemOp {
|
|
|
|
unsigned SegReg;
|
|
|
|
const MCExpr *Disp;
|
|
|
|
unsigned BaseReg;
|
|
|
|
unsigned IndexReg;
|
|
|
|
unsigned Scale;
|
|
|
|
unsigned Size;
|
|
|
|
};
|
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
union {
|
2013-03-15 08:42:55 +08:00
|
|
|
struct TokOp Tok;
|
|
|
|
struct RegOp Reg;
|
|
|
|
struct ImmOp Imm;
|
|
|
|
struct MemOp Mem;
|
2009-07-21 04:01:54 +08:00
|
|
|
};
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2010-01-16 03:33:43 +08:00
|
|
|
X86Operand(KindTy K, SMLoc Start, SMLoc End)
|
2010-01-16 03:06:59 +08:00
|
|
|
: Kind(K), StartLoc(Start), EndLoc(End) {}
|
2010-05-05 00:12:42 +08:00
|
|
|
|
2013-04-10 01:53:49 +08:00
|
|
|
StringRef getSymName() { return SymName; }
|
2013-04-23 06:04:25 +08:00
|
|
|
void *getOpDecl() { return OpDecl; }
|
2013-04-10 01:53:49 +08:00
|
|
|
|
2010-01-16 03:06:59 +08:00
|
|
|
/// getStartLoc - Get the location of the first token of this operand.
|
|
|
|
SMLoc getStartLoc() const { return StartLoc; }
|
|
|
|
/// getEndLoc - Get the location of the last token of this operand.
|
|
|
|
SMLoc getEndLoc() const { return EndLoc; }
|
2012-09-22 05:08:46 +08:00
|
|
|
/// getLocRange - Get the range between the first and last token of this
|
|
|
|
/// operand.
|
2011-10-16 12:47:35 +08:00
|
|
|
SMRange getLocRange() const { return SMRange(StartLoc, EndLoc); }
|
2012-10-24 01:43:43 +08:00
|
|
|
/// getOffsetOfLoc - Get the location of the offset operator.
|
|
|
|
SMLoc getOffsetOfLoc() const { return OffsetOfLoc; }
|
2010-01-16 03:06:59 +08:00
|
|
|
|
2011-07-13 23:34:57 +08:00
|
|
|
virtual void print(raw_ostream &OS) const {}
|
2010-08-11 14:37:04 +08:00
|
|
|
|
2009-08-07 16:26:05 +08:00
|
|
|
StringRef getToken() const {
|
|
|
|
assert(Kind == Token && "Invalid access!");
|
|
|
|
return StringRef(Tok.Data, Tok.Length);
|
|
|
|
}
|
2010-05-05 00:12:42 +08:00
|
|
|
void setTokenValue(StringRef Value) {
|
|
|
|
assert(Kind == Token && "Invalid access!");
|
|
|
|
Tok.Data = Value.data();
|
|
|
|
Tok.Length = Value.size();
|
|
|
|
}
|
2009-08-07 16:26:05 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
unsigned getReg() const {
|
|
|
|
assert(Kind == Register && "Invalid access!");
|
|
|
|
return Reg.RegNo;
|
|
|
|
}
|
|
|
|
|
2009-08-31 16:08:38 +08:00
|
|
|
const MCExpr *getImm() const {
|
2009-08-01 04:53:16 +08:00
|
|
|
assert(Kind == Immediate && "Invalid access!");
|
|
|
|
return Imm.Val;
|
|
|
|
}
|
|
|
|
|
2009-08-31 16:08:38 +08:00
|
|
|
const MCExpr *getMemDisp() const {
|
2009-08-01 04:53:16 +08:00
|
|
|
assert(Kind == Memory && "Invalid access!");
|
|
|
|
return Mem.Disp;
|
|
|
|
}
|
|
|
|
unsigned getMemSegReg() const {
|
|
|
|
assert(Kind == Memory && "Invalid access!");
|
|
|
|
return Mem.SegReg;
|
|
|
|
}
|
|
|
|
unsigned getMemBaseReg() const {
|
|
|
|
assert(Kind == Memory && "Invalid access!");
|
|
|
|
return Mem.BaseReg;
|
|
|
|
}
|
|
|
|
unsigned getMemIndexReg() const {
|
|
|
|
assert(Kind == Memory && "Invalid access!");
|
|
|
|
return Mem.IndexReg;
|
|
|
|
}
|
|
|
|
unsigned getMemScale() const {
|
|
|
|
assert(Kind == Memory && "Invalid access!");
|
|
|
|
return Mem.Scale;
|
|
|
|
}
|
|
|
|
|
2009-08-08 15:50:56 +08:00
|
|
|
bool isToken() const {return Kind == Token; }
|
2009-08-07 16:26:05 +08:00
|
|
|
|
|
|
|
bool isImm() const { return Kind == Immediate; }
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-05-23 05:02:33 +08:00
|
|
|
bool isImmSExti16i8() const {
|
2009-08-09 15:20:21 +08:00
|
|
|
if (!isImm())
|
|
|
|
return false;
|
|
|
|
|
2010-05-23 05:02:33 +08:00
|
|
|
// If this isn't a constant expr, just assume it fits and let relaxation
|
|
|
|
// handle it.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Otherwise, check the value is in a range that makes sense for this
|
|
|
|
// extension.
|
2012-01-19 06:42:29 +08:00
|
|
|
return isImmSExti16i8Value(CE->getValue());
|
2010-05-23 05:02:33 +08:00
|
|
|
}
|
|
|
|
bool isImmSExti32i8() const {
|
|
|
|
if (!isImm())
|
|
|
|
return false;
|
2009-08-09 15:20:21 +08:00
|
|
|
|
2010-05-23 05:02:33 +08:00
|
|
|
// If this isn't a constant expr, just assume it fits and let relaxation
|
|
|
|
// handle it.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Otherwise, check the value is in a range that makes sense for this
|
|
|
|
// extension.
|
2012-01-19 06:42:29 +08:00
|
|
|
return isImmSExti32i8Value(CE->getValue());
|
2009-08-09 15:20:21 +08:00
|
|
|
}
|
2011-07-28 07:01:50 +08:00
|
|
|
bool isImmZExtu32u8() const {
|
|
|
|
if (!isImm())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// If this isn't a constant expr, just assume it fits and let relaxation
|
|
|
|
// handle it.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Otherwise, check the value is in a range that makes sense for this
|
|
|
|
// extension.
|
2012-01-19 06:42:29 +08:00
|
|
|
return isImmZExtu32u8Value(CE->getValue());
|
2011-07-28 07:01:50 +08:00
|
|
|
}
|
2010-05-23 05:02:33 +08:00
|
|
|
bool isImmSExti64i8() const {
|
2010-05-21 04:20:39 +08:00
|
|
|
if (!isImm())
|
|
|
|
return false;
|
|
|
|
|
2010-05-23 05:02:33 +08:00
|
|
|
// If this isn't a constant expr, just assume it fits and let relaxation
|
|
|
|
// handle it.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Otherwise, check the value is in a range that makes sense for this
|
|
|
|
// extension.
|
2012-01-19 06:42:29 +08:00
|
|
|
return isImmSExti64i8Value(CE->getValue());
|
2010-05-23 05:02:33 +08:00
|
|
|
}
|
|
|
|
bool isImmSExti64i32() const {
|
|
|
|
if (!isImm())
|
|
|
|
return false;
|
2010-05-21 04:20:39 +08:00
|
|
|
|
2010-05-23 05:02:33 +08:00
|
|
|
// If this isn't a constant expr, just assume it fits and let relaxation
|
|
|
|
// handle it.
|
|
|
|
const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getImm());
|
|
|
|
if (!CE)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Otherwise, check the value is in a range that makes sense for this
|
|
|
|
// extension.
|
2012-01-19 06:42:29 +08:00
|
|
|
return isImmSExti64i32Value(CE->getValue());
|
2010-05-21 04:20:39 +08:00
|
|
|
}
|
|
|
|
|
2012-10-23 03:50:35 +08:00
|
|
|
bool isOffsetOf() const {
|
2012-10-25 01:22:29 +08:00
|
|
|
return OffsetOfLoc.getPointer();
|
2012-10-23 03:50:35 +08:00
|
|
|
}
|
|
|
|
|
2013-01-11 06:10:27 +08:00
|
|
|
bool needAddressOf() const {
|
|
|
|
return AddressOf;
|
|
|
|
}
|
|
|
|
|
2009-08-07 16:26:05 +08:00
|
|
|
bool isMem() const { return Kind == Memory; }
|
2012-06-28 06:34:28 +08:00
|
|
|
bool isMem8() const {
|
2012-10-03 07:38:50 +08:00
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 8);
|
2012-01-12 09:51:42 +08:00
|
|
|
}
|
2012-06-28 06:34:28 +08:00
|
|
|
bool isMem16() const {
|
2012-10-03 07:38:50 +08:00
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 16);
|
2012-01-12 09:51:42 +08:00
|
|
|
}
|
2012-06-28 06:34:28 +08:00
|
|
|
bool isMem32() const {
|
2012-10-03 07:38:50 +08:00
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 32);
|
2012-01-12 09:51:42 +08:00
|
|
|
}
|
2012-06-28 06:34:28 +08:00
|
|
|
bool isMem64() const {
|
2012-10-03 07:38:50 +08:00
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 64);
|
2012-01-12 09:51:42 +08:00
|
|
|
}
|
2012-06-28 06:34:28 +08:00
|
|
|
bool isMem80() const {
|
2012-10-03 07:38:50 +08:00
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 80);
|
2012-01-12 09:51:42 +08:00
|
|
|
}
|
2012-06-28 06:34:28 +08:00
|
|
|
bool isMem128() const {
|
2012-10-03 07:38:50 +08:00
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 128);
|
2012-01-12 09:51:42 +08:00
|
|
|
}
|
2012-06-28 06:34:28 +08:00
|
|
|
bool isMem256() const {
|
2012-10-03 07:38:50 +08:00
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 256);
|
2012-01-12 09:51:42 +08:00
|
|
|
}
|
2013-08-26 07:18:05 +08:00
|
|
|
bool isMem512() const {
|
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 512);
|
|
|
|
}
|
2009-08-07 16:26:05 +08:00
|
|
|
|
2012-07-18 12:11:12 +08:00
|
|
|
bool isMemVX32() const {
|
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
|
|
|
|
getMemIndexReg() >= X86::XMM0 && getMemIndexReg() <= X86::XMM15;
|
|
|
|
}
|
|
|
|
bool isMemVY32() const {
|
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
|
|
|
|
getMemIndexReg() >= X86::YMM0 && getMemIndexReg() <= X86::YMM15;
|
|
|
|
}
|
|
|
|
bool isMemVX64() const {
|
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
|
|
|
|
getMemIndexReg() >= X86::XMM0 && getMemIndexReg() <= X86::XMM15;
|
|
|
|
}
|
|
|
|
bool isMemVY64() const {
|
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
|
|
|
|
getMemIndexReg() >= X86::YMM0 && getMemIndexReg() <= X86::YMM15;
|
|
|
|
}
|
2013-07-28 16:28:38 +08:00
|
|
|
bool isMemVZ32() const {
|
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 32) &&
|
|
|
|
getMemIndexReg() >= X86::ZMM0 && getMemIndexReg() <= X86::ZMM31;
|
|
|
|
}
|
|
|
|
bool isMemVZ64() const {
|
|
|
|
return Kind == Memory && (!Mem.Size || Mem.Size == 64) &&
|
|
|
|
getMemIndexReg() >= X86::ZMM0 && getMemIndexReg() <= X86::ZMM31;
|
|
|
|
}
|
|
|
|
|
2010-01-30 09:02:48 +08:00
|
|
|
bool isAbsMem() const {
|
|
|
|
return Kind == Memory && !getMemSegReg() && !getMemBaseReg() &&
|
2010-02-03 05:44:16 +08:00
|
|
|
!getMemIndexReg() && getMemScale() == 1;
|
2010-01-30 09:02:48 +08:00
|
|
|
}
|
|
|
|
|
2013-08-26 06:23:38 +08:00
|
|
|
bool isMemOffs8() const {
|
2014-01-16 15:36:58 +08:00
|
|
|
return Kind == Memory && !getMemBaseReg() &&
|
2013-08-26 06:23:38 +08:00
|
|
|
!getMemIndexReg() && getMemScale() == 1 && (!Mem.Size || Mem.Size == 8);
|
|
|
|
}
|
|
|
|
bool isMemOffs16() const {
|
2014-01-16 15:36:58 +08:00
|
|
|
return Kind == Memory && !getMemBaseReg() &&
|
2013-08-26 06:23:38 +08:00
|
|
|
!getMemIndexReg() && getMemScale() == 1 && (!Mem.Size || Mem.Size == 16);
|
|
|
|
}
|
|
|
|
bool isMemOffs32() const {
|
2014-01-16 15:36:58 +08:00
|
|
|
return Kind == Memory && !getMemBaseReg() &&
|
2013-08-26 06:23:38 +08:00
|
|
|
!getMemIndexReg() && getMemScale() == 1 && (!Mem.Size || Mem.Size == 32);
|
|
|
|
}
|
|
|
|
bool isMemOffs64() const {
|
2014-01-16 15:36:58 +08:00
|
|
|
return Kind == Memory && !getMemBaseReg() &&
|
2013-08-26 06:23:38 +08:00
|
|
|
!getMemIndexReg() && getMemScale() == 1 && (!Mem.Size || Mem.Size == 64);
|
|
|
|
}
|
|
|
|
|
2009-08-07 16:26:05 +08:00
|
|
|
bool isReg() const { return Kind == Register; }
|
|
|
|
|
2013-10-14 12:55:01 +08:00
|
|
|
bool isGR32orGR64() const {
|
|
|
|
return Kind == Register &&
|
|
|
|
(X86MCRegisterClasses[X86::GR32RegClassID].contains(getReg()) ||
|
|
|
|
X86MCRegisterClasses[X86::GR64RegClassID].contains(getReg()));
|
|
|
|
}
|
|
|
|
|
2010-02-13 08:17:21 +08:00
|
|
|
void addExpr(MCInst &Inst, const MCExpr *Expr) const {
|
|
|
|
// Add as immediates when possible.
|
|
|
|
if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
|
|
|
|
else
|
|
|
|
Inst.addOperand(MCOperand::CreateExpr(Expr));
|
|
|
|
}
|
|
|
|
|
2009-08-11 05:00:45 +08:00
|
|
|
void addRegOperands(MCInst &Inst, unsigned N) const {
|
2009-08-07 16:26:05 +08:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getReg()));
|
|
|
|
}
|
|
|
|
|
2013-10-14 12:55:01 +08:00
|
|
|
static unsigned getGR32FromGR64(unsigned RegNo) {
|
|
|
|
switch (RegNo) {
|
|
|
|
default: llvm_unreachable("Unexpected register");
|
|
|
|
case X86::RAX: return X86::EAX;
|
|
|
|
case X86::RCX: return X86::ECX;
|
|
|
|
case X86::RDX: return X86::EDX;
|
|
|
|
case X86::RBX: return X86::EBX;
|
|
|
|
case X86::RBP: return X86::EBP;
|
|
|
|
case X86::RSP: return X86::ESP;
|
|
|
|
case X86::RSI: return X86::ESI;
|
|
|
|
case X86::RDI: return X86::EDI;
|
|
|
|
case X86::R8: return X86::R8D;
|
|
|
|
case X86::R9: return X86::R9D;
|
|
|
|
case X86::R10: return X86::R10D;
|
|
|
|
case X86::R11: return X86::R11D;
|
|
|
|
case X86::R12: return X86::R12D;
|
|
|
|
case X86::R13: return X86::R13D;
|
|
|
|
case X86::R14: return X86::R14D;
|
|
|
|
case X86::R15: return X86::R15D;
|
|
|
|
case X86::RIP: return X86::EIP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void addGR32orGR64Operands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
unsigned RegNo = getReg();
|
|
|
|
if (X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo))
|
|
|
|
RegNo = getGR32FromGR64(RegNo);
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(RegNo));
|
|
|
|
}
|
|
|
|
|
2009-08-11 05:00:45 +08:00
|
|
|
void addImmOperands(MCInst &Inst, unsigned N) const {
|
2009-08-07 16:26:05 +08:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
2010-02-13 08:17:21 +08:00
|
|
|
addExpr(Inst, getImm());
|
2009-08-07 16:26:05 +08:00
|
|
|
}
|
|
|
|
|
2009-08-11 05:00:45 +08:00
|
|
|
void addMemOperands(MCInst &Inst, unsigned N) const {
|
2010-01-30 08:24:00 +08:00
|
|
|
assert((N == 5) && "Invalid number of operands!");
|
2009-08-07 16:26:05 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemBaseReg()));
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(getMemScale()));
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemIndexReg()));
|
2010-02-13 08:17:21 +08:00
|
|
|
addExpr(Inst, getMemDisp());
|
2010-01-30 08:24:00 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemSegReg()));
|
|
|
|
}
|
|
|
|
|
2010-01-30 09:02:48 +08:00
|
|
|
void addAbsMemOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert((N == 1) && "Invalid number of operands!");
|
2013-08-26 06:23:38 +08:00
|
|
|
// Add as immediates when possible.
|
|
|
|
if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemDisp()))
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
|
|
|
|
else
|
|
|
|
Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void addMemOffsOperands(MCInst &Inst, unsigned N) const {
|
2014-01-16 15:36:58 +08:00
|
|
|
assert((N == 2) && "Invalid number of operands!");
|
2012-02-24 02:18:17 +08:00
|
|
|
// Add as immediates when possible.
|
|
|
|
if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(getMemDisp()))
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
|
|
|
|
else
|
|
|
|
Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
|
2014-01-16 15:36:58 +08:00
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemSegReg()));
|
2010-01-30 09:02:48 +08:00
|
|
|
}
|
|
|
|
|
2010-01-16 03:28:38 +08:00
|
|
|
static X86Operand *CreateToken(StringRef Str, SMLoc Loc) {
|
2013-01-08 03:00:49 +08:00
|
|
|
SMLoc EndLoc = SMLoc::getFromPointer(Loc.getPointer() + Str.size());
|
2011-10-16 19:28:29 +08:00
|
|
|
X86Operand *Res = new X86Operand(Token, Loc, EndLoc);
|
2010-01-16 02:51:29 +08:00
|
|
|
Res->Tok.Data = Str.data();
|
|
|
|
Res->Tok.Length = Str.size();
|
2009-08-07 16:26:05 +08:00
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
2012-10-25 01:22:29 +08:00
|
|
|
static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc,
|
2013-01-11 06:10:27 +08:00
|
|
|
bool AddressOf = false,
|
2013-04-10 01:53:49 +08:00
|
|
|
SMLoc OffsetOfLoc = SMLoc(),
|
2013-04-23 06:04:25 +08:00
|
|
|
StringRef SymName = StringRef(),
|
|
|
|
void *OpDecl = 0) {
|
2010-01-16 03:06:59 +08:00
|
|
|
X86Operand *Res = new X86Operand(Register, StartLoc, EndLoc);
|
2010-01-16 02:51:29 +08:00
|
|
|
Res->Reg.RegNo = RegNo;
|
2013-01-11 06:10:27 +08:00
|
|
|
Res->AddressOf = AddressOf;
|
2012-10-25 01:22:29 +08:00
|
|
|
Res->OffsetOfLoc = OffsetOfLoc;
|
2013-04-10 01:53:49 +08:00
|
|
|
Res->SymName = SymName;
|
2013-04-23 06:04:25 +08:00
|
|
|
Res->OpDecl = OpDecl;
|
2010-01-16 02:51:29 +08:00
|
|
|
return Res;
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
2009-08-07 16:26:05 +08:00
|
|
|
|
2013-03-20 05:58:18 +08:00
|
|
|
static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){
|
2010-01-16 03:28:38 +08:00
|
|
|
X86Operand *Res = new X86Operand(Immediate, StartLoc, EndLoc);
|
2010-01-16 02:51:29 +08:00
|
|
|
Res->Imm.Val = Val;
|
|
|
|
return Res;
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
2009-08-07 16:26:05 +08:00
|
|
|
|
2010-01-30 09:02:48 +08:00
|
|
|
/// Create an absolute memory operand.
|
2012-10-25 06:13:37 +08:00
|
|
|
static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc, SMLoc EndLoc,
|
2013-04-23 06:04:25 +08:00
|
|
|
unsigned Size = 0, StringRef SymName = StringRef(),
|
|
|
|
void *OpDecl = 0) {
|
2010-01-30 09:02:48 +08:00
|
|
|
X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
|
|
|
|
Res->Mem.SegReg = 0;
|
|
|
|
Res->Mem.Disp = Disp;
|
|
|
|
Res->Mem.BaseReg = 0;
|
|
|
|
Res->Mem.IndexReg = 0;
|
2010-02-03 05:44:16 +08:00
|
|
|
Res->Mem.Scale = 1;
|
2012-01-12 09:51:42 +08:00
|
|
|
Res->Mem.Size = Size;
|
2013-04-23 06:04:25 +08:00
|
|
|
Res->SymName = SymName;
|
|
|
|
Res->OpDecl = OpDecl;
|
|
|
|
Res->AddressOf = false;
|
2010-01-30 09:02:48 +08:00
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a generalized memory operand.
|
2010-01-16 02:44:13 +08:00
|
|
|
static X86Operand *CreateMem(unsigned SegReg, const MCExpr *Disp,
|
|
|
|
unsigned BaseReg, unsigned IndexReg,
|
2012-01-12 09:51:42 +08:00
|
|
|
unsigned Scale, SMLoc StartLoc, SMLoc EndLoc,
|
2013-04-10 01:53:49 +08:00
|
|
|
unsigned Size = 0,
|
2013-04-23 06:04:25 +08:00
|
|
|
StringRef SymName = StringRef(),
|
|
|
|
void *OpDecl = 0) {
|
2010-01-30 09:02:48 +08:00
|
|
|
// We should never just have a displacement, that should be parsed as an
|
|
|
|
// absolute memory operand.
|
2009-08-01 06:22:54 +08:00
|
|
|
assert((SegReg || BaseReg || IndexReg) && "Invalid memory operand!");
|
|
|
|
|
2009-08-01 04:53:16 +08:00
|
|
|
// The scale should always be one of {1,2,4,8}.
|
|
|
|
assert(((Scale == 1 || Scale == 2 || Scale == 4 || Scale == 8)) &&
|
2009-07-29 06:40:46 +08:00
|
|
|
"Invalid scale!");
|
2010-01-16 03:33:43 +08:00
|
|
|
X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
|
2010-01-16 02:51:29 +08:00
|
|
|
Res->Mem.SegReg = SegReg;
|
|
|
|
Res->Mem.Disp = Disp;
|
|
|
|
Res->Mem.BaseReg = BaseReg;
|
|
|
|
Res->Mem.IndexReg = IndexReg;
|
|
|
|
Res->Mem.Scale = Scale;
|
2012-01-12 09:51:42 +08:00
|
|
|
Res->Mem.Size = Size;
|
2013-04-23 06:04:25 +08:00
|
|
|
Res->SymName = SymName;
|
|
|
|
Res->OpDecl = OpDecl;
|
|
|
|
Res->AddressOf = false;
|
2010-01-16 02:51:29 +08:00
|
|
|
return Res;
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-29 14:33:53 +08:00
|
|
|
} // end anonymous namespace.
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2012-01-13 02:03:40 +08:00
|
|
|
bool X86AsmParser::isSrcOp(X86Operand &Op) {
|
2014-01-06 12:55:54 +08:00
|
|
|
unsigned basereg =
|
|
|
|
is64BitMode() ? X86::RSI : (is32BitMode() ? X86::ESI : X86::SI);
|
2011-03-18 19:59:40 +08:00
|
|
|
|
|
|
|
return (Op.isMem() &&
|
|
|
|
(Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::DS) &&
|
|
|
|
isa<MCConstantExpr>(Op.Mem.Disp) &&
|
|
|
|
cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
|
|
|
|
Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0);
|
|
|
|
}
|
|
|
|
|
2012-01-13 02:03:40 +08:00
|
|
|
bool X86AsmParser::isDstOp(X86Operand &Op) {
|
2014-01-06 12:55:54 +08:00
|
|
|
unsigned basereg =
|
|
|
|
is64BitMode() ? X86::RDI : (is32BitMode() ? X86::EDI : X86::DI);
|
2011-03-18 19:59:40 +08:00
|
|
|
|
2012-06-28 06:34:28 +08:00
|
|
|
return Op.isMem() &&
|
2012-03-14 03:47:55 +08:00
|
|
|
(Op.Mem.SegReg == 0 || Op.Mem.SegReg == X86::ES) &&
|
2011-03-18 19:59:40 +08:00
|
|
|
isa<MCConstantExpr>(Op.Mem.Disp) &&
|
|
|
|
cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
|
|
|
|
Op.Mem.BaseReg == basereg && Op.Mem.IndexReg == 0;
|
|
|
|
}
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2012-01-13 02:03:40 +08:00
|
|
|
bool X86AsmParser::ParseRegister(unsigned &RegNo,
|
|
|
|
SMLoc &StartLoc, SMLoc &EndLoc) {
|
2010-01-16 02:27:19 +08:00
|
|
|
RegNo = 0;
|
2012-09-07 22:51:35 +08:00
|
|
|
const AsmToken &PercentTok = Parser.getTok();
|
|
|
|
StartLoc = PercentTok.getLoc();
|
|
|
|
|
|
|
|
// If we encounter a %, ignore it. This code handles registers with and
|
|
|
|
// without the prefix, unprefixed registers can occur in cfi directives.
|
|
|
|
if (!isParsingIntelSyntax() && PercentTok.is(AsmToken::Percent))
|
2012-01-18 02:00:18 +08:00
|
|
|
Parser.Lex(); // Eat percent token.
|
2009-09-04 01:15:07 +08:00
|
|
|
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2013-01-08 03:00:49 +08:00
|
|
|
EndLoc = Tok.getEndLoc();
|
|
|
|
|
2012-01-21 06:32:05 +08:00
|
|
|
if (Tok.isNot(AsmToken::Identifier)) {
|
2012-01-31 04:02:42 +08:00
|
|
|
if (isParsingIntelSyntax()) return true;
|
2011-10-16 20:10:27 +08:00
|
|
|
return Error(StartLoc, "invalid register name",
|
2013-01-08 03:00:49 +08:00
|
|
|
SMRange(StartLoc, EndLoc));
|
2012-01-21 06:32:05 +08:00
|
|
|
}
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2009-09-04 01:15:07 +08:00
|
|
|
RegNo = MatchRegisterName(Tok.getString());
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-09-22 12:11:10 +08:00
|
|
|
// If the match failed, try the register name as lowercase.
|
|
|
|
if (RegNo == 0)
|
2011-11-07 04:37:06 +08:00
|
|
|
RegNo = MatchRegisterName(Tok.getString().lower());
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2011-07-28 07:22:03 +08:00
|
|
|
if (!is64BitMode()) {
|
2013-12-20 10:04:49 +08:00
|
|
|
// FIXME: This should be done using Requires<Not64BitMode> and
|
2011-07-28 07:22:03 +08:00
|
|
|
// Requires<In64BitMode> so "eiz" usage in 64-bit instructions can be also
|
|
|
|
// checked.
|
|
|
|
// FIXME: Check AH, CH, DH, BH cannot be used in an instruction requiring a
|
|
|
|
// REX prefix.
|
|
|
|
if (RegNo == X86::RIZ ||
|
|
|
|
X86MCRegisterClasses[X86::GR64RegClassID].contains(RegNo) ||
|
|
|
|
X86II::isX86_64NonExtLowByteReg(RegNo) ||
|
|
|
|
X86II::isX86_64ExtendedReg(RegNo))
|
2011-10-16 20:10:27 +08:00
|
|
|
return Error(StartLoc, "register %"
|
|
|
|
+ Tok.getString() + " is only available in 64-bit mode",
|
2013-01-08 03:00:49 +08:00
|
|
|
SMRange(StartLoc, EndLoc));
|
2011-07-28 07:22:03 +08:00
|
|
|
}
|
2010-07-24 08:06:39 +08:00
|
|
|
|
2010-09-22 12:11:10 +08:00
|
|
|
// Parse "%st" as "%st(0)" and "%st(1)", which is multiple tokens.
|
|
|
|
if (RegNo == 0 && (Tok.getString() == "st" || Tok.getString() == "ST")) {
|
2010-02-09 08:49:22 +08:00
|
|
|
RegNo = X86::ST0;
|
|
|
|
Parser.Lex(); // Eat 'st'
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-02-09 08:49:22 +08:00
|
|
|
// Check to see if we have '(4)' after %st.
|
|
|
|
if (getLexer().isNot(AsmToken::LParen))
|
|
|
|
return false;
|
|
|
|
// Lex the paren.
|
|
|
|
getParser().Lex();
|
|
|
|
|
|
|
|
const AsmToken &IntTok = Parser.getTok();
|
|
|
|
if (IntTok.isNot(AsmToken::Integer))
|
|
|
|
return Error(IntTok.getLoc(), "expected stack index");
|
|
|
|
switch (IntTok.getIntVal()) {
|
|
|
|
case 0: RegNo = X86::ST0; break;
|
|
|
|
case 1: RegNo = X86::ST1; break;
|
|
|
|
case 2: RegNo = X86::ST2; break;
|
|
|
|
case 3: RegNo = X86::ST3; break;
|
|
|
|
case 4: RegNo = X86::ST4; break;
|
|
|
|
case 5: RegNo = X86::ST5; break;
|
|
|
|
case 6: RegNo = X86::ST6; break;
|
|
|
|
case 7: RegNo = X86::ST7; break;
|
|
|
|
default: return Error(IntTok.getLoc(), "invalid stack index");
|
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-02-09 08:49:22 +08:00
|
|
|
if (getParser().Lex().isNot(AsmToken::RParen))
|
|
|
|
return Error(Parser.getTok().getLoc(), "expected ')'");
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2013-01-08 03:00:49 +08:00
|
|
|
EndLoc = Parser.getTok().getEndLoc();
|
2010-02-09 08:49:22 +08:00
|
|
|
Parser.Lex(); // Eat ')'
|
|
|
|
return false;
|
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2013-01-08 03:00:49 +08:00
|
|
|
EndLoc = Parser.getTok().getEndLoc();
|
|
|
|
|
2010-06-24 15:29:18 +08:00
|
|
|
// If this is "db[0-7]", match it as an alias
|
|
|
|
// for dr[0-7].
|
|
|
|
if (RegNo == 0 && Tok.getString().size() == 3 &&
|
|
|
|
Tok.getString().startswith("db")) {
|
|
|
|
switch (Tok.getString()[2]) {
|
|
|
|
case '0': RegNo = X86::DR0; break;
|
|
|
|
case '1': RegNo = X86::DR1; break;
|
|
|
|
case '2': RegNo = X86::DR2; break;
|
|
|
|
case '3': RegNo = X86::DR3; break;
|
|
|
|
case '4': RegNo = X86::DR4; break;
|
|
|
|
case '5': RegNo = X86::DR5; break;
|
|
|
|
case '6': RegNo = X86::DR6; break;
|
|
|
|
case '7': RegNo = X86::DR7; break;
|
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-06-24 15:29:18 +08:00
|
|
|
if (RegNo != 0) {
|
2013-01-08 03:00:49 +08:00
|
|
|
EndLoc = Parser.getTok().getEndLoc();
|
2010-06-24 15:29:18 +08:00
|
|
|
Parser.Lex(); // Eat it.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2012-01-21 06:32:05 +08:00
|
|
|
if (RegNo == 0) {
|
2012-01-31 04:02:42 +08:00
|
|
|
if (isParsingIntelSyntax()) return true;
|
2011-10-16 20:10:27 +08:00
|
|
|
return Error(StartLoc, "invalid register name",
|
2013-01-08 03:00:49 +08:00
|
|
|
SMRange(StartLoc, EndLoc));
|
2012-01-21 06:32:05 +08:00
|
|
|
}
|
2009-07-29 08:02:19 +08:00
|
|
|
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat identifier token.
|
2009-07-29 06:40:46 +08:00
|
|
|
return false;
|
2009-07-18 04:42:00 +08:00
|
|
|
}
|
|
|
|
|
2012-01-13 02:03:40 +08:00
|
|
|
X86Operand *X86AsmParser::ParseOperand() {
|
2012-01-31 04:02:42 +08:00
|
|
|
if (isParsingIntelSyntax())
|
2012-01-12 09:36:43 +08:00
|
|
|
return ParseIntelOperand();
|
|
|
|
return ParseATTOperand();
|
|
|
|
}
|
|
|
|
|
2012-01-18 02:00:18 +08:00
|
|
|
/// getIntelMemOperandSize - Return intel memory operand size.
|
|
|
|
static unsigned getIntelMemOperandSize(StringRef OpStr) {
|
2012-09-12 05:10:25 +08:00
|
|
|
unsigned Size = StringSwitch<unsigned>(OpStr)
|
2012-09-13 02:24:26 +08:00
|
|
|
.Cases("BYTE", "byte", 8)
|
|
|
|
.Cases("WORD", "word", 16)
|
|
|
|
.Cases("DWORD", "dword", 32)
|
|
|
|
.Cases("QWORD", "qword", 64)
|
|
|
|
.Cases("XWORD", "xword", 80)
|
|
|
|
.Cases("XMMWORD", "xmmword", 128)
|
|
|
|
.Cases("YMMWORD", "ymmword", 256)
|
2012-09-12 05:10:25 +08:00
|
|
|
.Default(0);
|
|
|
|
return Size;
|
2012-01-12 09:36:43 +08:00
|
|
|
}
|
|
|
|
|
2013-04-13 02:21:18 +08:00
|
|
|
X86Operand *
|
|
|
|
X86AsmParser::CreateMemForInlineAsm(unsigned SegReg, const MCExpr *Disp,
|
|
|
|
unsigned BaseReg, unsigned IndexReg,
|
|
|
|
unsigned Scale, SMLoc Start, SMLoc End,
|
2013-04-23 03:42:15 +08:00
|
|
|
unsigned Size, StringRef Identifier,
|
|
|
|
InlineAsmIdentifierInfo &Info){
|
2013-04-23 06:38:35 +08:00
|
|
|
if (isa<MCSymbolRefExpr>(Disp)) {
|
2013-04-13 02:21:18 +08:00
|
|
|
// If this is not a VarDecl then assume it is a FuncDecl or some other label
|
|
|
|
// reference. We need an 'r' constraint here, so we need to create register
|
|
|
|
// operand to ensure proper matching. Just pick a GPR based on the size of
|
|
|
|
// a pointer.
|
2013-04-23 01:01:46 +08:00
|
|
|
if (!Info.IsVarDecl) {
|
2014-01-06 12:55:54 +08:00
|
|
|
unsigned RegNo =
|
|
|
|
is64BitMode() ? X86::RBX : (is32BitMode() ? X86::EBX : X86::BX);
|
2013-04-13 02:21:18 +08:00
|
|
|
return X86Operand::CreateReg(RegNo, Start, End, /*AddressOf=*/true,
|
2013-04-23 06:04:25 +08:00
|
|
|
SMLoc(), Identifier, Info.OpDecl);
|
2013-04-13 02:21:18 +08:00
|
|
|
}
|
2013-04-23 03:42:15 +08:00
|
|
|
if (!Size) {
|
|
|
|
Size = Info.Type * 8; // Size is in terms of bits in this context.
|
|
|
|
if (Size)
|
|
|
|
InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_SizeDirective, Start,
|
|
|
|
/*Len=*/0, Size));
|
|
|
|
}
|
2013-03-20 05:11:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// When parsing inline assembly we set the base register to a non-zero value
|
2013-04-13 02:21:18 +08:00
|
|
|
// if we don't know the actual value at this time. This is necessary to
|
2013-03-20 05:11:56 +08:00
|
|
|
// get the matching correct in some cases.
|
2013-04-13 02:21:18 +08:00
|
|
|
BaseReg = BaseReg ? BaseReg : 1;
|
|
|
|
return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
|
2013-04-23 06:04:25 +08:00
|
|
|
End, Size, Identifier, Info.OpDecl);
|
2013-03-20 05:11:56 +08:00
|
|
|
}
|
|
|
|
|
2013-04-13 04:20:54 +08:00
|
|
|
static void
|
|
|
|
RewriteIntelBracExpression(SmallVectorImpl<AsmRewrite> *AsmRewrites,
|
|
|
|
StringRef SymName, int64_t ImmDisp,
|
|
|
|
int64_t FinalImmDisp, SMLoc &BracLoc,
|
|
|
|
SMLoc &StartInBrac, SMLoc &End) {
|
|
|
|
// Remove the '[' and ']' from the IR string.
|
|
|
|
AsmRewrites->push_back(AsmRewrite(AOK_Skip, BracLoc, 1));
|
|
|
|
AsmRewrites->push_back(AsmRewrite(AOK_Skip, End, 1));
|
|
|
|
|
|
|
|
// If ImmDisp is non-zero, then we parsed a displacement before the
|
|
|
|
// bracketed expression (i.e., ImmDisp [ BaseReg + Scale*IndexReg + Disp])
|
|
|
|
// If ImmDisp doesn't match the displacement computed by the state machine
|
|
|
|
// then we have an additional displacement in the bracketed expression.
|
|
|
|
if (ImmDisp != FinalImmDisp) {
|
|
|
|
if (ImmDisp) {
|
|
|
|
// We have an immediate displacement before the bracketed expression.
|
|
|
|
// Adjust this to match the final immediate displacement.
|
|
|
|
bool Found = false;
|
|
|
|
for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
|
|
|
|
E = AsmRewrites->end(); I != E; ++I) {
|
|
|
|
if ((*I).Loc.getPointer() > BracLoc.getPointer())
|
|
|
|
continue;
|
2013-04-17 08:11:46 +08:00
|
|
|
if ((*I).Kind == AOK_ImmPrefix || (*I).Kind == AOK_Imm) {
|
|
|
|
assert (!Found && "ImmDisp already rewritten.");
|
2013-04-13 04:20:54 +08:00
|
|
|
(*I).Kind = AOK_Imm;
|
|
|
|
(*I).Len = BracLoc.getPointer() - (*I).Loc.getPointer();
|
|
|
|
(*I).Val = FinalImmDisp;
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert (Found && "Unable to rewrite ImmDisp.");
|
2013-05-13 15:50:47 +08:00
|
|
|
(void)Found;
|
2013-04-13 04:20:54 +08:00
|
|
|
} else {
|
|
|
|
// We have a symbolic and an immediate displacement, but no displacement
|
2013-04-17 08:11:46 +08:00
|
|
|
// before the bracketed expression. Put the immediate displacement
|
2013-04-13 04:20:54 +08:00
|
|
|
// before the bracketed expression.
|
2013-04-17 08:11:46 +08:00
|
|
|
AsmRewrites->push_back(AsmRewrite(AOK_Imm, BracLoc, 0, FinalImmDisp));
|
2013-04-13 04:20:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Remove all the ImmPrefix rewrites within the brackets.
|
|
|
|
for (SmallVectorImpl<AsmRewrite>::iterator I = AsmRewrites->begin(),
|
|
|
|
E = AsmRewrites->end(); I != E; ++I) {
|
|
|
|
if ((*I).Loc.getPointer() < StartInBrac.getPointer())
|
|
|
|
continue;
|
|
|
|
if ((*I).Kind == AOK_ImmPrefix)
|
|
|
|
(*I).Kind = AOK_Delete;
|
|
|
|
}
|
|
|
|
const char *SymLocPtr = SymName.data();
|
|
|
|
// Skip everything before the symbol.
|
|
|
|
if (unsigned Len = SymLocPtr - StartInBrac.getPointer()) {
|
|
|
|
assert(Len > 0 && "Expected a non-negative length.");
|
|
|
|
AsmRewrites->push_back(AsmRewrite(AOK_Skip, StartInBrac, Len));
|
|
|
|
}
|
|
|
|
// Skip everything after the symbol.
|
|
|
|
if (unsigned Len = End.getPointer() - (SymLocPtr + SymName.size())) {
|
|
|
|
SMLoc Loc = SMLoc::getFromPointer(SymLocPtr + SymName.size());
|
|
|
|
assert(Len > 0 && "Expected a non-negative length.");
|
|
|
|
AsmRewrites->push_back(AsmRewrite(AOK_Skip, Loc, Len));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-01 19:47:42 +08:00
|
|
|
bool X86AsmParser::ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End) {
|
2012-10-25 06:13:37 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2013-01-15 06:31:35 +08:00
|
|
|
bool Done = false;
|
|
|
|
while (!Done) {
|
|
|
|
bool UpdateLocLex = true;
|
|
|
|
|
|
|
|
// The period in the dot operator (e.g., [ebx].foo.bar) is parsed as an
|
|
|
|
// identifier. Don't try an parse it as a register.
|
|
|
|
if (Tok.getString().startswith("."))
|
|
|
|
break;
|
2013-04-17 08:11:46 +08:00
|
|
|
|
|
|
|
// If we're parsing an immediate expression, we don't expect a '['.
|
|
|
|
if (SM.getStopOnLBrac() && getLexer().getKind() == AsmToken::LBrac)
|
|
|
|
break;
|
2013-01-15 06:31:35 +08:00
|
|
|
|
|
|
|
switch (getLexer().getKind()) {
|
|
|
|
default: {
|
|
|
|
if (SM.isValidEndState()) {
|
|
|
|
Done = true;
|
|
|
|
break;
|
|
|
|
}
|
2013-12-01 19:47:42 +08:00
|
|
|
return Error(Tok.getLoc(), "unknown token in expression");
|
2013-01-15 06:31:35 +08:00
|
|
|
}
|
2013-04-17 08:11:46 +08:00
|
|
|
case AsmToken::EndOfStatement: {
|
|
|
|
Done = true;
|
|
|
|
break;
|
|
|
|
}
|
2013-01-15 06:31:35 +08:00
|
|
|
case AsmToken::Identifier: {
|
2013-04-13 02:21:18 +08:00
|
|
|
// This could be a register or a symbolic displacement.
|
|
|
|
unsigned TmpReg;
|
2013-04-20 02:39:50 +08:00
|
|
|
const MCExpr *Val;
|
2013-04-13 02:54:20 +08:00
|
|
|
SMLoc IdentLoc = Tok.getLoc();
|
|
|
|
StringRef Identifier = Tok.getString();
|
2013-04-13 02:21:18 +08:00
|
|
|
if(!ParseRegister(TmpReg, IdentLoc, End)) {
|
2013-01-15 06:31:35 +08:00
|
|
|
SM.onRegister(TmpReg);
|
|
|
|
UpdateLocLex = false;
|
|
|
|
break;
|
2013-04-20 02:39:50 +08:00
|
|
|
} else {
|
|
|
|
if (!isParsingInlineAsm()) {
|
|
|
|
if (getParser().parsePrimaryExpr(Val, End))
|
2013-12-01 19:47:42 +08:00
|
|
|
return Error(Tok.getLoc(), "Unexpected identifier!");
|
2013-04-20 02:39:50 +08:00
|
|
|
} else {
|
2013-04-23 03:42:15 +08:00
|
|
|
InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
|
2013-12-01 19:47:42 +08:00
|
|
|
if (ParseIntelIdentifier(Val, Identifier, Info,
|
|
|
|
/*Unevaluated=*/false, End))
|
|
|
|
return true;
|
2013-04-20 02:39:50 +08:00
|
|
|
}
|
|
|
|
SM.onIdentifierExpr(Val, Identifier);
|
2013-01-15 06:31:35 +08:00
|
|
|
UpdateLocLex = false;
|
|
|
|
break;
|
|
|
|
}
|
2013-12-01 19:47:42 +08:00
|
|
|
return Error(Tok.getLoc(), "Unexpected identifier!");
|
2013-01-15 06:31:35 +08:00
|
|
|
}
|
2013-12-20 07:16:14 +08:00
|
|
|
case AsmToken::Integer: {
|
2013-04-17 08:11:46 +08:00
|
|
|
if (isParsingInlineAsm() && SM.getAddImmPrefix())
|
2013-04-06 00:28:55 +08:00
|
|
|
InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix,
|
|
|
|
Tok.getLoc()));
|
2013-12-20 07:16:14 +08:00
|
|
|
// Look for 'b' or 'f' following an Integer as a directional label
|
|
|
|
SMLoc Loc = getTok().getLoc();
|
|
|
|
int64_t IntVal = getTok().getIntVal();
|
|
|
|
End = consumeToken();
|
|
|
|
UpdateLocLex = false;
|
|
|
|
if (getLexer().getKind() == AsmToken::Identifier) {
|
|
|
|
StringRef IDVal = getTok().getString();
|
|
|
|
if (IDVal == "f" || IDVal == "b") {
|
|
|
|
MCSymbol *Sym =
|
|
|
|
getContext().GetDirectionalLocalSymbol(IntVal,
|
|
|
|
IDVal == "f" ? 1 : 0);
|
|
|
|
MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
|
|
|
|
const MCExpr *Val =
|
|
|
|
MCSymbolRefExpr::Create(Sym, Variant, getContext());
|
|
|
|
if (IDVal == "b" && Sym->isUndefined())
|
|
|
|
return Error(Loc, "invalid reference to undefined symbol");
|
|
|
|
StringRef Identifier = Sym->getName();
|
|
|
|
SM.onIdentifierExpr(Val, Identifier);
|
|
|
|
End = consumeToken();
|
|
|
|
} else {
|
|
|
|
SM.onInteger(IntVal);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SM.onInteger(IntVal);
|
|
|
|
}
|
2013-01-15 06:31:35 +08:00
|
|
|
break;
|
2013-12-20 07:16:14 +08:00
|
|
|
}
|
2013-01-15 06:31:35 +08:00
|
|
|
case AsmToken::Plus: SM.onPlus(); break;
|
|
|
|
case AsmToken::Minus: SM.onMinus(); break;
|
|
|
|
case AsmToken::Star: SM.onStar(); break;
|
2013-04-06 00:28:55 +08:00
|
|
|
case AsmToken::Slash: SM.onDivide(); break;
|
2014-01-16 03:05:24 +08:00
|
|
|
case AsmToken::Pipe: SM.onOr(); break;
|
|
|
|
case AsmToken::Amp: SM.onAnd(); break;
|
2013-01-15 06:31:35 +08:00
|
|
|
case AsmToken::LBrac: SM.onLBrac(); break;
|
|
|
|
case AsmToken::RBrac: SM.onRBrac(); break;
|
2013-04-06 00:28:55 +08:00
|
|
|
case AsmToken::LParen: SM.onLParen(); break;
|
|
|
|
case AsmToken::RParen: SM.onRParen(); break;
|
2013-01-15 06:31:35 +08:00
|
|
|
}
|
2013-04-18 05:01:45 +08:00
|
|
|
if (SM.hadError())
|
2013-12-01 19:47:42 +08:00
|
|
|
return Error(Tok.getLoc(), "unknown token in expression");
|
2013-04-18 05:01:45 +08:00
|
|
|
|
2013-12-03 00:06:06 +08:00
|
|
|
if (!Done && UpdateLocLex)
|
|
|
|
End = consumeToken();
|
2012-10-30 02:01:54 +08:00
|
|
|
}
|
2013-12-01 19:47:42 +08:00
|
|
|
return false;
|
2013-04-17 02:15:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
X86Operand *X86AsmParser::ParseIntelBracExpression(unsigned SegReg, SMLoc Start,
|
2013-04-18 05:14:38 +08:00
|
|
|
int64_t ImmDisp,
|
2013-04-17 02:15:40 +08:00
|
|
|
unsigned Size) {
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
SMLoc BracLoc = Tok.getLoc(), End = Tok.getEndLoc();
|
|
|
|
if (getLexer().isNot(AsmToken::LBrac))
|
|
|
|
return ErrorOperand(BracLoc, "Expected '[' token!");
|
|
|
|
Parser.Lex(); // Eat '['
|
|
|
|
|
|
|
|
SMLoc StartInBrac = Tok.getLoc();
|
|
|
|
// Parse [ Symbol + ImmDisp ] and [ BaseReg + Scale*IndexReg + ImmDisp ]. We
|
|
|
|
// may have already parsed an immediate displacement before the bracketed
|
|
|
|
// expression.
|
2013-04-17 08:11:46 +08:00
|
|
|
IntelExprStateMachine SM(ImmDisp, /*StopOnLBrac=*/false, /*AddImmPrefix=*/true);
|
2013-12-01 19:47:42 +08:00
|
|
|
if (ParseIntelExpression(SM, End))
|
|
|
|
return 0;
|
2012-01-14 03:12:18 +08:00
|
|
|
|
2013-04-13 02:21:18 +08:00
|
|
|
const MCExpr *Disp;
|
|
|
|
if (const MCExpr *Sym = SM.getSym()) {
|
2013-04-13 04:20:54 +08:00
|
|
|
// A symbolic displacement.
|
2013-04-13 02:21:18 +08:00
|
|
|
Disp = Sym;
|
2013-04-13 04:20:54 +08:00
|
|
|
if (isParsingInlineAsm())
|
|
|
|
RewriteIntelBracExpression(InstInfo->AsmRewrites, SM.getSymName(),
|
2013-04-17 02:15:40 +08:00
|
|
|
ImmDisp, SM.getImm(), BracLoc, StartInBrac,
|
2013-04-13 04:20:54 +08:00
|
|
|
End);
|
2013-04-13 02:21:18 +08:00
|
|
|
} else {
|
2013-04-18 05:01:45 +08:00
|
|
|
// An immediate displacement only.
|
2013-04-17 02:15:40 +08:00
|
|
|
Disp = MCConstantExpr::Create(SM.getImm(), getContext());
|
2013-04-13 02:21:18 +08:00
|
|
|
}
|
2012-01-21 05:21:01 +08:00
|
|
|
|
2012-10-27 06:01:25 +08:00
|
|
|
// Parse the dot operator (e.g., [ebx].foo.bar).
|
2012-10-26 01:37:43 +08:00
|
|
|
if (Tok.getString().startswith(".")) {
|
|
|
|
const MCExpr *NewDisp;
|
2013-12-01 19:47:42 +08:00
|
|
|
if (ParseIntelDotOperator(Disp, NewDisp))
|
|
|
|
return 0;
|
2012-10-26 01:37:43 +08:00
|
|
|
|
2013-04-11 04:07:47 +08:00
|
|
|
End = Tok.getEndLoc();
|
2012-10-26 01:37:43 +08:00
|
|
|
Parser.Lex(); // Eat the field.
|
|
|
|
Disp = NewDisp;
|
|
|
|
}
|
2012-10-25 06:21:50 +08:00
|
|
|
|
2013-01-15 06:31:35 +08:00
|
|
|
int BaseReg = SM.getBaseReg();
|
|
|
|
int IndexReg = SM.getIndexReg();
|
2013-04-13 02:21:18 +08:00
|
|
|
int Scale = SM.getScale();
|
2013-04-20 03:29:50 +08:00
|
|
|
if (!isParsingInlineAsm()) {
|
|
|
|
// handle [-42]
|
|
|
|
if (!BaseReg && !IndexReg) {
|
|
|
|
if (!SegReg)
|
|
|
|
return X86Operand::CreateMem(Disp, Start, End, Size);
|
|
|
|
else
|
|
|
|
return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, Start, End, Size);
|
|
|
|
}
|
|
|
|
return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
|
|
|
|
End, Size);
|
2013-01-15 06:31:35 +08:00
|
|
|
}
|
2013-04-20 03:29:50 +08:00
|
|
|
|
2013-04-23 03:42:15 +08:00
|
|
|
InlineAsmIdentifierInfo &Info = SM.getIdentifierInfo();
|
2013-04-20 03:29:50 +08:00
|
|
|
return CreateMemForInlineAsm(SegReg, Disp, BaseReg, IndexReg, Scale, Start,
|
2013-04-23 03:42:15 +08:00
|
|
|
End, Size, SM.getSymName(), Info);
|
2012-01-18 02:00:18 +08:00
|
|
|
}
|
|
|
|
|
2013-04-03 04:02:33 +08:00
|
|
|
// Inline assembly may use variable names with namespace alias qualifiers.
|
2013-12-01 19:47:42 +08:00
|
|
|
bool X86AsmParser::ParseIntelIdentifier(const MCExpr *&Val,
|
|
|
|
StringRef &Identifier,
|
|
|
|
InlineAsmIdentifierInfo &Info,
|
|
|
|
bool IsUnevaluatedOperand, SMLoc &End) {
|
2013-04-20 02:39:50 +08:00
|
|
|
assert (isParsingInlineAsm() && "Expected to be parsing inline assembly.");
|
|
|
|
Val = 0;
|
2013-04-03 04:02:33 +08:00
|
|
|
|
2013-04-23 03:42:15 +08:00
|
|
|
StringRef LineBuf(Identifier.data());
|
2013-05-03 08:15:41 +08:00
|
|
|
SemaCallback->LookupInlineAsmIdentifier(LineBuf, Info, IsUnevaluatedOperand);
|
2013-04-23 03:42:15 +08:00
|
|
|
|
2013-04-03 04:02:33 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2013-05-03 08:15:41 +08:00
|
|
|
|
|
|
|
// Advance the token stream until the end of the current token is
|
|
|
|
// after the end of what the frontend claimed.
|
|
|
|
const char *EndPtr = Tok.getLoc().getPointer() + LineBuf.size();
|
|
|
|
while (true) {
|
|
|
|
End = Tok.getEndLoc();
|
|
|
|
getLexer().Lex();
|
|
|
|
|
|
|
|
assert(End.getPointer() <= EndPtr && "frontend claimed part of a token?");
|
|
|
|
if (End.getPointer() == EndPtr) break;
|
2013-04-23 03:42:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the symbol reference.
|
|
|
|
Identifier = LineBuf;
|
2013-04-03 04:02:33 +08:00
|
|
|
MCSymbol *Sym = getContext().GetOrCreateSymbol(Identifier);
|
|
|
|
MCSymbolRefExpr::VariantKind Variant = MCSymbolRefExpr::VK_None;
|
2013-04-20 02:39:50 +08:00
|
|
|
Val = MCSymbolRefExpr::Create(Sym, Variant, getParser().getContext());
|
2013-12-01 19:47:42 +08:00
|
|
|
return false;
|
2013-04-03 04:02:33 +08:00
|
|
|
}
|
|
|
|
|
2013-08-28 05:56:17 +08:00
|
|
|
/// \brief Parse intel style segment override.
|
|
|
|
X86Operand *X86AsmParser::ParseIntelSegmentOverride(unsigned SegReg,
|
|
|
|
SMLoc Start,
|
|
|
|
unsigned Size) {
|
|
|
|
assert(SegReg != 0 && "Tried to parse a segment override without a segment!");
|
|
|
|
const AsmToken &Tok = Parser.getTok(); // Eat colon.
|
|
|
|
if (Tok.isNot(AsmToken::Colon))
|
|
|
|
return ErrorOperand(Tok.getLoc(), "Expected ':' token!");
|
|
|
|
Parser.Lex(); // Eat ':'
|
|
|
|
|
|
|
|
int64_t ImmDisp = 0;
|
2013-03-28 05:49:56 +08:00
|
|
|
if (getLexer().is(AsmToken::Integer)) {
|
2013-08-28 05:56:17 +08:00
|
|
|
ImmDisp = Tok.getIntVal();
|
|
|
|
AsmToken ImmDispToken = Parser.Lex(); // Eat the integer.
|
|
|
|
|
2013-03-28 05:49:56 +08:00
|
|
|
if (isParsingInlineAsm())
|
2013-08-28 05:56:17 +08:00
|
|
|
InstInfo->AsmRewrites->push_back(
|
|
|
|
AsmRewrite(AOK_ImmPrefix, ImmDispToken.getLoc()));
|
|
|
|
|
|
|
|
if (getLexer().isNot(AsmToken::LBrac)) {
|
|
|
|
// An immediate following a 'segment register', 'colon' token sequence can
|
|
|
|
// be followed by a bracketed expression. If it isn't we know we have our
|
|
|
|
// final segment override.
|
|
|
|
const MCExpr *Disp = MCConstantExpr::Create(ImmDisp, getContext());
|
|
|
|
return X86Operand::CreateMem(SegReg, Disp, /*BaseReg=*/0, /*IndexReg=*/0,
|
|
|
|
/*Scale=*/1, Start, ImmDispToken.getEndLoc(),
|
|
|
|
Size);
|
|
|
|
}
|
2013-03-28 05:49:56 +08:00
|
|
|
}
|
|
|
|
|
2012-10-25 01:22:29 +08:00
|
|
|
if (getLexer().is(AsmToken::LBrac))
|
2013-04-09 01:43:47 +08:00
|
|
|
return ParseIntelBracExpression(SegReg, Start, ImmDisp, Size);
|
2012-01-24 02:31:58 +08:00
|
|
|
|
2013-08-28 05:56:17 +08:00
|
|
|
const MCExpr *Val;
|
|
|
|
SMLoc End;
|
|
|
|
if (!isParsingInlineAsm()) {
|
|
|
|
if (getParser().parsePrimaryExpr(Val, End))
|
2013-12-01 19:47:42 +08:00
|
|
|
return ErrorOperand(Tok.getLoc(), "unknown token in expression");
|
2013-08-28 05:56:17 +08:00
|
|
|
|
|
|
|
return X86Operand::CreateMem(Val, Start, End, Size);
|
2012-01-24 02:31:58 +08:00
|
|
|
}
|
2012-01-18 02:00:18 +08:00
|
|
|
|
2013-08-28 05:56:17 +08:00
|
|
|
InlineAsmIdentifierInfo Info;
|
|
|
|
StringRef Identifier = Tok.getString();
|
2013-12-01 19:47:42 +08:00
|
|
|
if (ParseIntelIdentifier(Val, Identifier, Info,
|
|
|
|
/*Unevaluated=*/false, End))
|
|
|
|
return 0;
|
2013-08-28 05:56:17 +08:00
|
|
|
return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0,/*IndexReg=*/0,
|
|
|
|
/*Scale=*/1, Start, End, Size, Identifier, Info);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ParseIntelMemOperand - Parse intel style memory operand.
|
|
|
|
X86Operand *X86AsmParser::ParseIntelMemOperand(int64_t ImmDisp, SMLoc Start,
|
|
|
|
unsigned Size) {
|
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
SMLoc End;
|
|
|
|
|
|
|
|
// Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
|
|
|
|
if (getLexer().is(AsmToken::LBrac))
|
|
|
|
return ParseIntelBracExpression(/*SegReg=*/0, Start, ImmDisp, Size);
|
|
|
|
|
2013-04-20 02:39:50 +08:00
|
|
|
const MCExpr *Val;
|
|
|
|
if (!isParsingInlineAsm()) {
|
|
|
|
if (getParser().parsePrimaryExpr(Val, End))
|
2013-12-01 19:47:42 +08:00
|
|
|
return ErrorOperand(Tok.getLoc(), "unknown token in expression");
|
2012-10-20 04:57:14 +08:00
|
|
|
|
2013-04-20 02:39:50 +08:00
|
|
|
return X86Operand::CreateMem(Val, Start, End, Size);
|
|
|
|
}
|
2013-04-03 04:02:33 +08:00
|
|
|
|
2013-04-23 03:42:15 +08:00
|
|
|
InlineAsmIdentifierInfo Info;
|
2013-04-20 02:39:50 +08:00
|
|
|
StringRef Identifier = Tok.getString();
|
2013-12-01 19:47:42 +08:00
|
|
|
if (ParseIntelIdentifier(Val, Identifier, Info,
|
|
|
|
/*Unevaluated=*/false, End))
|
|
|
|
return 0;
|
2013-08-28 05:56:17 +08:00
|
|
|
return CreateMemForInlineAsm(/*SegReg=*/0, Val, /*BaseReg=*/0, /*IndexReg=*/0,
|
2013-04-23 03:42:15 +08:00
|
|
|
/*Scale=*/1, Start, End, Size, Identifier, Info);
|
2012-10-25 01:22:29 +08:00
|
|
|
}
|
|
|
|
|
2012-10-25 06:21:50 +08:00
|
|
|
/// Parse the '.' operator.
|
2013-12-01 19:47:42 +08:00
|
|
|
bool X86AsmParser::ParseIntelDotOperator(const MCExpr *Disp,
|
2013-04-19 23:57:00 +08:00
|
|
|
const MCExpr *&NewDisp) {
|
2013-04-11 04:07:47 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2013-04-18 05:14:38 +08:00
|
|
|
int64_t OrigDispVal, DotDispVal;
|
2012-10-26 01:37:43 +08:00
|
|
|
|
|
|
|
// FIXME: Handle non-constant expressions.
|
2013-04-19 23:57:00 +08:00
|
|
|
if (const MCConstantExpr *OrigDisp = dyn_cast<MCConstantExpr>(Disp))
|
2012-10-26 01:37:43 +08:00
|
|
|
OrigDispVal = OrigDisp->getValue();
|
2013-04-19 23:57:00 +08:00
|
|
|
else
|
2013-12-01 19:47:42 +08:00
|
|
|
return Error(Tok.getLoc(), "Non-constant offsets are not supported!");
|
2012-10-25 06:21:50 +08:00
|
|
|
|
|
|
|
// Drop the '.'.
|
|
|
|
StringRef DotDispStr = Tok.getString().drop_front(1);
|
|
|
|
|
|
|
|
// .Imm gets lexed as a real.
|
|
|
|
if (Tok.is(AsmToken::Real)) {
|
|
|
|
APInt DotDisp;
|
|
|
|
DotDispStr.getAsInteger(10, DotDisp);
|
2012-10-26 01:37:43 +08:00
|
|
|
DotDispVal = DotDisp.getZExtValue();
|
2013-04-19 23:57:00 +08:00
|
|
|
} else if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
|
2012-10-26 05:51:10 +08:00
|
|
|
unsigned DotDisp;
|
|
|
|
std::pair<StringRef, StringRef> BaseMember = DotDispStr.split('.');
|
|
|
|
if (SemaCallback->LookupInlineAsmField(BaseMember.first, BaseMember.second,
|
2013-04-19 23:57:00 +08:00
|
|
|
DotDisp))
|
2013-12-01 19:47:42 +08:00
|
|
|
return Error(Tok.getLoc(), "Unable to lookup field reference!");
|
2012-10-26 05:51:10 +08:00
|
|
|
DotDispVal = DotDisp;
|
2013-04-19 23:57:00 +08:00
|
|
|
} else
|
2013-12-01 19:47:42 +08:00
|
|
|
return Error(Tok.getLoc(), "Unexpected token type!");
|
2012-10-25 06:21:50 +08:00
|
|
|
|
2012-10-26 05:51:10 +08:00
|
|
|
if (isParsingInlineAsm() && Tok.is(AsmToken::Identifier)) {
|
|
|
|
SMLoc Loc = SMLoc::getFromPointer(DotDispStr.data());
|
|
|
|
unsigned Len = DotDispStr.size();
|
|
|
|
unsigned Val = OrigDispVal + DotDispVal;
|
|
|
|
InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_DotOperator, Loc, Len,
|
|
|
|
Val));
|
2012-10-25 06:21:50 +08:00
|
|
|
}
|
2012-10-26 01:37:43 +08:00
|
|
|
|
2013-04-19 23:57:00 +08:00
|
|
|
NewDisp = MCConstantExpr::Create(OrigDispVal + DotDispVal, getContext());
|
2013-12-01 19:47:42 +08:00
|
|
|
return false;
|
2012-10-25 06:21:50 +08:00
|
|
|
}
|
|
|
|
|
2012-10-25 01:22:29 +08:00
|
|
|
/// Parse the 'offset' operator. This operator is used to specify the
|
|
|
|
/// location rather then the content of a variable.
|
2013-04-10 04:44:09 +08:00
|
|
|
X86Operand *X86AsmParser::ParseIntelOffsetOfOperator() {
|
2013-04-10 04:58:48 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2013-04-10 04:44:09 +08:00
|
|
|
SMLoc OffsetOfLoc = Tok.getLoc();
|
2012-10-25 01:22:29 +08:00
|
|
|
Parser.Lex(); // Eat offset.
|
|
|
|
|
|
|
|
const MCExpr *Val;
|
2013-04-23 03:42:15 +08:00
|
|
|
InlineAsmIdentifierInfo Info;
|
2013-04-10 04:58:48 +08:00
|
|
|
SMLoc Start = Tok.getLoc(), End;
|
2013-04-12 07:37:34 +08:00
|
|
|
StringRef Identifier = Tok.getString();
|
2013-12-01 19:47:42 +08:00
|
|
|
if (ParseIntelIdentifier(Val, Identifier, Info,
|
|
|
|
/*Unevaluated=*/false, End))
|
|
|
|
return 0;
|
2013-04-12 07:37:34 +08:00
|
|
|
|
2012-10-27 00:09:20 +08:00
|
|
|
// Don't emit the offset operator.
|
|
|
|
InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Skip, OffsetOfLoc, 7));
|
|
|
|
|
2012-10-25 01:22:29 +08:00
|
|
|
// The offset operator will have an 'r' constraint, thus we need to create
|
|
|
|
// register operand to ensure proper matching. Just pick a GPR based on
|
|
|
|
// the size of a pointer.
|
2014-01-06 12:55:54 +08:00
|
|
|
unsigned RegNo =
|
|
|
|
is64BitMode() ? X86::RBX : (is32BitMode() ? X86::EBX : X86::BX);
|
2013-01-11 06:10:27 +08:00
|
|
|
return X86Operand::CreateReg(RegNo, Start, End, /*GetAddress=*/true,
|
2013-04-23 06:04:25 +08:00
|
|
|
OffsetOfLoc, Identifier, Info.OpDecl);
|
2012-01-18 02:00:18 +08:00
|
|
|
}
|
|
|
|
|
2013-01-18 03:21:48 +08:00
|
|
|
enum IntelOperatorKind {
|
|
|
|
IOK_LENGTH,
|
|
|
|
IOK_SIZE,
|
|
|
|
IOK_TYPE
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Parse the 'LENGTH', 'TYPE' and 'SIZE' operators. The LENGTH operator
|
|
|
|
/// returns the number of elements in an array. It returns the value 1 for
|
|
|
|
/// non-array variables. The SIZE operator returns the size of a C or C++
|
|
|
|
/// variable. A variable's size is the product of its LENGTH and TYPE. The
|
|
|
|
/// TYPE operator returns the size of a C or C++ type or variable. If the
|
|
|
|
/// variable is an array, TYPE returns the size of a single element.
|
2013-04-10 04:44:09 +08:00
|
|
|
X86Operand *X86AsmParser::ParseIntelOperator(unsigned OpKind) {
|
2013-04-10 04:58:48 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2013-04-10 04:44:09 +08:00
|
|
|
SMLoc TypeLoc = Tok.getLoc();
|
|
|
|
Parser.Lex(); // Eat operator.
|
2012-10-27 02:04:20 +08:00
|
|
|
|
2013-04-20 02:39:50 +08:00
|
|
|
const MCExpr *Val = 0;
|
2013-04-23 03:42:15 +08:00
|
|
|
InlineAsmIdentifierInfo Info;
|
2013-04-10 04:58:48 +08:00
|
|
|
SMLoc Start = Tok.getLoc(), End;
|
2013-04-12 07:57:04 +08:00
|
|
|
StringRef Identifier = Tok.getString();
|
2013-12-01 19:47:42 +08:00
|
|
|
if (ParseIntelIdentifier(Val, Identifier, Info,
|
|
|
|
/*Unevaluated=*/true, End))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!Info.OpDecl)
|
|
|
|
return ErrorOperand(Start, "unable to lookup expression");
|
2012-10-27 02:04:20 +08:00
|
|
|
|
2013-04-23 01:01:46 +08:00
|
|
|
unsigned CVal = 0;
|
2013-04-23 03:42:15 +08:00
|
|
|
switch(OpKind) {
|
|
|
|
default: llvm_unreachable("Unexpected operand kind!");
|
|
|
|
case IOK_LENGTH: CVal = Info.Length; break;
|
|
|
|
case IOK_SIZE: CVal = Info.Size; break;
|
|
|
|
case IOK_TYPE: CVal = Info.Type; break;
|
|
|
|
}
|
2012-10-27 02:04:20 +08:00
|
|
|
|
|
|
|
// Rewrite the type operator and the C or C++ type or variable in terms of an
|
|
|
|
// immediate. E.g. TYPE foo -> $$4
|
|
|
|
unsigned Len = End.getPointer() - TypeLoc.getPointer();
|
2013-01-18 03:21:48 +08:00
|
|
|
InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, TypeLoc, Len, CVal));
|
2012-10-27 02:04:20 +08:00
|
|
|
|
2013-01-18 03:21:48 +08:00
|
|
|
const MCExpr *Imm = MCConstantExpr::Create(CVal, getContext());
|
2013-03-20 05:58:18 +08:00
|
|
|
return X86Operand::CreateImm(Imm, Start, End);
|
2012-10-27 02:04:20 +08:00
|
|
|
}
|
|
|
|
|
2012-01-18 02:00:18 +08:00
|
|
|
X86Operand *X86AsmParser::ParseIntelOperand() {
|
2013-04-11 04:07:47 +08:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
2013-08-28 05:56:17 +08:00
|
|
|
SMLoc Start, End;
|
2013-01-18 03:21:48 +08:00
|
|
|
|
|
|
|
// Offset, length, type and size operators.
|
|
|
|
if (isParsingInlineAsm()) {
|
2013-04-20 01:32:29 +08:00
|
|
|
StringRef AsmTokStr = Tok.getString();
|
2013-01-18 03:21:48 +08:00
|
|
|
if (AsmTokStr == "offset" || AsmTokStr == "OFFSET")
|
2013-04-10 04:44:09 +08:00
|
|
|
return ParseIntelOffsetOfOperator();
|
2013-01-18 03:21:48 +08:00
|
|
|
if (AsmTokStr == "length" || AsmTokStr == "LENGTH")
|
2013-04-10 04:44:09 +08:00
|
|
|
return ParseIntelOperator(IOK_LENGTH);
|
2013-01-18 03:21:48 +08:00
|
|
|
if (AsmTokStr == "size" || AsmTokStr == "SIZE")
|
2013-04-10 04:44:09 +08:00
|
|
|
return ParseIntelOperator(IOK_SIZE);
|
2013-01-18 03:21:48 +08:00
|
|
|
if (AsmTokStr == "type" || AsmTokStr == "TYPE")
|
2013-04-10 04:44:09 +08:00
|
|
|
return ParseIntelOperator(IOK_TYPE);
|
2013-01-18 03:21:48 +08:00
|
|
|
}
|
|
|
|
|
2013-08-28 05:56:17 +08:00
|
|
|
unsigned Size = getIntelMemOperandSize(Tok.getString());
|
|
|
|
if (Size) {
|
|
|
|
Parser.Lex(); // Eat operand size (e.g., byte, word).
|
|
|
|
if (Tok.getString() != "PTR" && Tok.getString() != "ptr")
|
|
|
|
return ErrorOperand(Start, "Expected 'PTR' or 'ptr' token!");
|
|
|
|
Parser.Lex(); // Eat ptr.
|
|
|
|
}
|
|
|
|
Start = Tok.getLoc();
|
|
|
|
|
2013-01-18 03:21:48 +08:00
|
|
|
// Immediate.
|
2013-04-17 08:11:46 +08:00
|
|
|
if (getLexer().is(AsmToken::Integer) || getLexer().is(AsmToken::Minus) ||
|
|
|
|
getLexer().is(AsmToken::LParen)) {
|
|
|
|
AsmToken StartTok = Tok;
|
|
|
|
IntelExprStateMachine SM(/*Imm=*/0, /*StopOnLBrac=*/true,
|
|
|
|
/*AddImmPrefix=*/false);
|
2013-12-01 19:47:42 +08:00
|
|
|
if (ParseIntelExpression(SM, End))
|
|
|
|
return 0;
|
2013-04-17 08:11:46 +08:00
|
|
|
|
|
|
|
int64_t Imm = SM.getImm();
|
|
|
|
if (isParsingInlineAsm()) {
|
|
|
|
unsigned Len = Tok.getLoc().getPointer() - Start.getPointer();
|
|
|
|
if (StartTok.getString().size() == Len)
|
|
|
|
// Just add a prefix if this wasn't a complex immediate expression.
|
2013-03-20 05:58:18 +08:00
|
|
|
InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_ImmPrefix, Start));
|
2013-04-17 08:11:46 +08:00
|
|
|
else
|
|
|
|
// Otherwise, rewrite the complex expression as a single immediate.
|
|
|
|
InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, Start, Len, Imm));
|
|
|
|
}
|
2013-03-28 05:49:56 +08:00
|
|
|
|
2013-04-17 08:11:46 +08:00
|
|
|
if (getLexer().isNot(AsmToken::LBrac)) {
|
2013-12-20 07:16:14 +08:00
|
|
|
// If a directional label (ie. 1f or 2b) was parsed above from
|
|
|
|
// ParseIntelExpression() then SM.getSym() was set to a pointer to
|
|
|
|
// to the MCExpr with the directional local symbol and this is a
|
|
|
|
// memory operand not an immediate operand.
|
|
|
|
if (SM.getSym())
|
|
|
|
return X86Operand::CreateMem(SM.getSym(), Start, End, Size);
|
|
|
|
|
2013-04-17 08:11:46 +08:00
|
|
|
const MCExpr *ImmExpr = MCConstantExpr::Create(Imm, getContext());
|
|
|
|
return X86Operand::CreateImm(ImmExpr, Start, End);
|
2012-01-18 02:00:18 +08:00
|
|
|
}
|
2013-04-17 08:11:46 +08:00
|
|
|
|
|
|
|
// Only positive immediates are valid.
|
|
|
|
if (Imm < 0)
|
|
|
|
return ErrorOperand(Start, "expected a positive immediate displacement "
|
|
|
|
"before bracketed expr.");
|
|
|
|
|
|
|
|
// Parse ImmDisp [ BaseReg + Scale*IndexReg + Disp ].
|
2013-08-28 05:56:17 +08:00
|
|
|
return ParseIntelMemOperand(Imm, Start, Size);
|
2012-01-18 02:00:18 +08:00
|
|
|
}
|
|
|
|
|
2013-01-18 03:21:48 +08:00
|
|
|
// Register.
|
2012-01-21 06:32:05 +08:00
|
|
|
unsigned RegNo = 0;
|
|
|
|
if (!ParseRegister(RegNo, Start, End)) {
|
2012-10-05 07:59:38 +08:00
|
|
|
// If this is a segment register followed by a ':', then this is the start
|
2013-08-28 05:56:17 +08:00
|
|
|
// of a segment override, otherwise this is a normal register reference.
|
2012-10-05 07:59:38 +08:00
|
|
|
if (getLexer().isNot(AsmToken::Colon))
|
2013-01-08 03:00:49 +08:00
|
|
|
return X86Operand::CreateReg(RegNo, Start, End);
|
2012-10-05 07:59:38 +08:00
|
|
|
|
2013-08-28 05:56:17 +08:00
|
|
|
return ParseIntelSegmentOverride(/*SegReg=*/RegNo, Start, Size);
|
2012-01-12 09:36:43 +08:00
|
|
|
}
|
|
|
|
|
2013-01-18 03:21:48 +08:00
|
|
|
// Memory operand.
|
2013-08-28 05:56:17 +08:00
|
|
|
return ParseIntelMemOperand(/*Disp=*/0, Start, Size);
|
2012-01-12 09:36:43 +08:00
|
|
|
}
|
|
|
|
|
2012-01-13 02:03:40 +08:00
|
|
|
X86Operand *X86AsmParser::ParseATTOperand() {
|
2009-07-29 06:40:46 +08:00
|
|
|
switch (getLexer().getKind()) {
|
|
|
|
default:
|
2010-04-18 02:56:34 +08:00
|
|
|
// Parse a memory operand with no segment register.
|
|
|
|
return ParseMemOperand(0, Parser.getTok().getLoc());
|
2010-01-16 02:27:19 +08:00
|
|
|
case AsmToken::Percent: {
|
2010-04-18 02:56:34 +08:00
|
|
|
// Read the register.
|
2010-01-16 02:27:19 +08:00
|
|
|
unsigned RegNo;
|
2010-01-16 02:51:29 +08:00
|
|
|
SMLoc Start, End;
|
|
|
|
if (ParseRegister(RegNo, Start, End)) return 0;
|
2010-07-24 08:06:39 +08:00
|
|
|
if (RegNo == X86::EIZ || RegNo == X86::RIZ) {
|
2011-10-16 20:10:27 +08:00
|
|
|
Error(Start, "%eiz and %riz can only be used as index registers",
|
|
|
|
SMRange(Start, End));
|
2010-07-24 08:06:39 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-04-18 02:56:34 +08:00
|
|
|
// If this is a segment register followed by a ':', then this is the start
|
|
|
|
// of a memory reference, otherwise this is a normal register reference.
|
|
|
|
if (getLexer().isNot(AsmToken::Colon))
|
|
|
|
return X86Operand::CreateReg(RegNo, Start, End);
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-04-18 02:56:34 +08:00
|
|
|
getParser().Lex(); // Eat the colon.
|
|
|
|
return ParseMemOperand(RegNo, Start);
|
2010-01-16 02:27:19 +08:00
|
|
|
}
|
2009-07-29 06:40:46 +08:00
|
|
|
case AsmToken::Dollar: {
|
|
|
|
// $42 -> immediate.
|
2010-01-20 05:44:56 +08:00
|
|
|
SMLoc Start = Parser.getTok().getLoc(), End;
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-08-31 16:08:38 +08:00
|
|
|
const MCExpr *Val;
|
2013-02-21 06:21:35 +08:00
|
|
|
if (getParser().parseExpression(Val, End))
|
2010-01-16 02:44:13 +08:00
|
|
|
return 0;
|
2010-01-16 03:28:38 +08:00
|
|
|
return X86Operand::CreateImm(Val, Start, End);
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-18 02:56:34 +08:00
|
|
|
/// ParseMemOperand: segment: disp(basereg, indexreg, scale). The '%ds:' prefix
|
|
|
|
/// has already been parsed if present.
|
2012-01-13 02:03:40 +08:00
|
|
|
X86Operand *X86AsmParser::ParseMemOperand(unsigned SegReg, SMLoc MemStart) {
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// We have to disambiguate a parenthesized expression "(4+5)" from the start
|
|
|
|
// of a memory operand with a missing displacement "(%ebx)" or "(,%eax)". The
|
2010-01-24 09:07:33 +08:00
|
|
|
// only way to do this without lookahead is to eat the '(' and see what is
|
|
|
|
// after it.
|
2009-08-31 16:08:38 +08:00
|
|
|
const MCExpr *Disp = MCConstantExpr::Create(0, getParser().getContext());
|
2009-07-29 06:40:46 +08:00
|
|
|
if (getLexer().isNot(AsmToken::LParen)) {
|
2010-01-16 03:39:23 +08:00
|
|
|
SMLoc ExprEnd;
|
2013-02-21 06:21:35 +08:00
|
|
|
if (getParser().parseExpression(Disp, ExprEnd)) return 0;
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// After parsing the base expression we could either have a parenthesized
|
|
|
|
// memory address or not. If not, return now. If so, eat the (.
|
|
|
|
if (getLexer().isNot(AsmToken::LParen)) {
|
2009-08-01 06:22:54 +08:00
|
|
|
// Unless we have a segment register, treat this as an immediate.
|
2010-01-16 02:44:13 +08:00
|
|
|
if (SegReg == 0)
|
2010-01-30 09:02:48 +08:00
|
|
|
return X86Operand::CreateMem(Disp, MemStart, ExprEnd);
|
2010-01-16 03:33:43 +08:00
|
|
|
return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// Eat the '('.
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-07-29 06:40:46 +08:00
|
|
|
} else {
|
|
|
|
// Okay, we have a '('. We don't know if this is an expression or not, but
|
|
|
|
// so we have to eat the ( to see beyond it.
|
2010-01-20 05:44:56 +08:00
|
|
|
SMLoc LParenLoc = Parser.getTok().getLoc();
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat the '('.
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-09-04 01:15:07 +08:00
|
|
|
if (getLexer().is(AsmToken::Percent) || getLexer().is(AsmToken::Comma)) {
|
2009-07-29 06:40:46 +08:00
|
|
|
// Nothing to do here, fall into the code below with the '(' part of the
|
|
|
|
// memory operand consumed.
|
|
|
|
} else {
|
2010-01-16 03:28:38 +08:00
|
|
|
SMLoc ExprEnd;
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// It must be an parenthesized expression, parse it now.
|
2013-02-21 06:21:35 +08:00
|
|
|
if (getParser().parseParenExpression(Disp, ExprEnd))
|
2010-01-16 02:44:13 +08:00
|
|
|
return 0;
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// After parsing the base expression we could either have a parenthesized
|
|
|
|
// memory address or not. If not, return now. If so, eat the (.
|
|
|
|
if (getLexer().isNot(AsmToken::LParen)) {
|
2009-08-01 06:22:54 +08:00
|
|
|
// Unless we have a segment register, treat this as an immediate.
|
2010-01-16 02:44:13 +08:00
|
|
|
if (SegReg == 0)
|
2010-01-30 09:02:48 +08:00
|
|
|
return X86Operand::CreateMem(Disp, LParenLoc, ExprEnd);
|
2010-01-16 03:33:43 +08:00
|
|
|
return X86Operand::CreateMem(SegReg, Disp, 0, 0, 1, MemStart, ExprEnd);
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// Eat the '('.
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// If we reached here, then we just ate the ( of the memory operand. Process
|
|
|
|
// the rest of the memory operand.
|
2009-08-01 04:53:16 +08:00
|
|
|
unsigned BaseReg = 0, IndexReg = 0, Scale = 1;
|
2014-01-08 20:58:28 +08:00
|
|
|
SMLoc IndexLoc, BaseLoc;
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-01-16 02:51:29 +08:00
|
|
|
if (getLexer().is(AsmToken::Percent)) {
|
2011-10-16 20:10:27 +08:00
|
|
|
SMLoc StartLoc, EndLoc;
|
2014-01-08 20:58:28 +08:00
|
|
|
BaseLoc = Parser.getTok().getLoc();
|
2011-10-16 20:10:27 +08:00
|
|
|
if (ParseRegister(BaseReg, StartLoc, EndLoc)) return 0;
|
2010-07-24 08:06:39 +08:00
|
|
|
if (BaseReg == X86::EIZ || BaseReg == X86::RIZ) {
|
2011-10-16 20:10:27 +08:00
|
|
|
Error(StartLoc, "eiz and riz can only be used as index registers",
|
|
|
|
SMRange(StartLoc, EndLoc));
|
2010-07-24 08:06:39 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2010-01-16 02:51:29 +08:00
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
if (getLexer().is(AsmToken::Comma)) {
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat the comma.
|
2012-03-13 05:32:09 +08:00
|
|
|
IndexLoc = Parser.getTok().getLoc();
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
// Following the comma we should have either an index register, or a scale
|
|
|
|
// value. We don't support the later form, but we want to parse it
|
|
|
|
// correctly.
|
|
|
|
//
|
|
|
|
// Not that even though it would be completely consistent to support syntax
|
2010-07-24 08:06:39 +08:00
|
|
|
// like "1(%eax,,1)", the assembler doesn't. Use "eiz" or "riz" for this.
|
2009-09-04 01:15:07 +08:00
|
|
|
if (getLexer().is(AsmToken::Percent)) {
|
2010-01-16 02:51:29 +08:00
|
|
|
SMLoc L;
|
|
|
|
if (ParseRegister(IndexReg, L, L)) return 0;
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
if (getLexer().isNot(AsmToken::RParen)) {
|
|
|
|
// Parse the scale amount:
|
|
|
|
// ::= ',' [scale-expression]
|
2010-01-16 02:44:13 +08:00
|
|
|
if (getLexer().isNot(AsmToken::Comma)) {
|
2010-01-20 05:44:56 +08:00
|
|
|
Error(Parser.getTok().getLoc(),
|
2010-01-16 02:44:13 +08:00
|
|
|
"expected comma in scale expression");
|
|
|
|
return 0;
|
|
|
|
}
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat the comma.
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
if (getLexer().isNot(AsmToken::RParen)) {
|
2010-01-20 05:44:56 +08:00
|
|
|
SMLoc Loc = Parser.getTok().getLoc();
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
int64_t ScaleVal;
|
2013-02-21 06:21:35 +08:00
|
|
|
if (getParser().parseAbsoluteExpression(ScaleVal)){
|
2012-03-10 06:24:10 +08:00
|
|
|
Error(Loc, "expected scale expression");
|
2010-01-16 02:44:13 +08:00
|
|
|
return 0;
|
2012-07-18 12:59:16 +08:00
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// Validate the scale amount.
|
2014-01-08 20:58:28 +08:00
|
|
|
if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
|
|
|
|
ScaleVal != 1) {
|
|
|
|
Error(Loc, "scale factor in 16-bit address must be 1");
|
|
|
|
return 0;
|
|
|
|
}
|
2010-01-16 02:44:13 +08:00
|
|
|
if (ScaleVal != 1 && ScaleVal != 2 && ScaleVal != 4 && ScaleVal != 8){
|
|
|
|
Error(Loc, "scale factor in address must be 1, 2, 4 or 8");
|
|
|
|
return 0;
|
|
|
|
}
|
2009-07-29 06:40:46 +08:00
|
|
|
Scale = (unsigned)ScaleVal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (getLexer().isNot(AsmToken::RParen)) {
|
2010-08-25 03:13:38 +08:00
|
|
|
// A scale amount without an index is ignored.
|
2009-07-29 06:40:46 +08:00
|
|
|
// index.
|
2010-01-20 05:44:56 +08:00
|
|
|
SMLoc Loc = Parser.getTok().getLoc();
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
int64_t Value;
|
2013-02-21 06:21:35 +08:00
|
|
|
if (getParser().parseAbsoluteExpression(Value))
|
2010-01-16 02:44:13 +08:00
|
|
|
return 0;
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2010-08-25 03:13:38 +08:00
|
|
|
if (Value != 1)
|
|
|
|
Warning(Loc, "scale factor without index register is ignored");
|
|
|
|
Scale = 1;
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
|
|
|
}
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// Ok, we've eaten the memory operand, verify we have a ')' and eat it too.
|
2010-01-16 02:44:13 +08:00
|
|
|
if (getLexer().isNot(AsmToken::RParen)) {
|
2010-01-20 05:44:56 +08:00
|
|
|
Error(Parser.getTok().getLoc(), "unexpected token in memory operand");
|
2010-01-16 02:44:13 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2013-01-08 03:00:49 +08:00
|
|
|
SMLoc MemEnd = Parser.getTok().getEndLoc();
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat the ')'.
|
2010-07-24 06:15:26 +08:00
|
|
|
|
2014-01-08 20:58:28 +08:00
|
|
|
// Check for use of invalid 16-bit registers. Only BX/BP/SI/DI are allowed,
|
|
|
|
// and then only in non-64-bit modes. Except for DX, which is a special case
|
|
|
|
// because an unofficial form of in/out instructions uses it.
|
|
|
|
if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg) &&
|
|
|
|
(is64BitMode() || (BaseReg != X86::BX && BaseReg != X86::BP &&
|
|
|
|
BaseReg != X86::SI && BaseReg != X86::DI)) &&
|
|
|
|
BaseReg != X86::DX) {
|
|
|
|
Error(BaseLoc, "invalid 16-bit base register");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (BaseReg == 0 &&
|
|
|
|
X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg)) {
|
|
|
|
Error(IndexLoc, "16-bit memory operand may not include only index register");
|
|
|
|
return 0;
|
|
|
|
}
|
2012-03-13 05:32:09 +08:00
|
|
|
// If we have both a base register and an index register make sure they are
|
|
|
|
// both 64-bit or 32-bit registers.
|
2012-06-27 03:47:59 +08:00
|
|
|
// To support VSIB, IndexReg can be 128-bit or 256-bit registers.
|
2012-03-13 05:32:09 +08:00
|
|
|
if (BaseReg != 0 && IndexReg != 0) {
|
|
|
|
if (X86MCRegisterClasses[X86::GR64RegClassID].contains(BaseReg) &&
|
2012-06-27 03:47:59 +08:00
|
|
|
(X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
|
|
|
|
X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg)) &&
|
2012-03-13 05:32:09 +08:00
|
|
|
IndexReg != X86::RIZ) {
|
2014-01-08 20:58:28 +08:00
|
|
|
Error(BaseLoc, "base register is 64-bit, but index register is not");
|
2012-03-13 05:32:09 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (X86MCRegisterClasses[X86::GR32RegClassID].contains(BaseReg) &&
|
2012-06-27 03:47:59 +08:00
|
|
|
(X86MCRegisterClasses[X86::GR16RegClassID].contains(IndexReg) ||
|
|
|
|
X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) &&
|
2012-03-13 05:32:09 +08:00
|
|
|
IndexReg != X86::EIZ){
|
2014-01-08 20:58:28 +08:00
|
|
|
Error(BaseLoc, "base register is 32-bit, but index register is not");
|
2012-03-13 05:32:09 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2014-01-08 20:58:28 +08:00
|
|
|
if (X86MCRegisterClasses[X86::GR16RegClassID].contains(BaseReg)) {
|
|
|
|
if (X86MCRegisterClasses[X86::GR32RegClassID].contains(IndexReg) ||
|
|
|
|
X86MCRegisterClasses[X86::GR64RegClassID].contains(IndexReg)) {
|
|
|
|
Error(BaseLoc, "base register is 16-bit, but index register is not");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (((BaseReg == X86::BX || BaseReg == X86::BP) &&
|
|
|
|
IndexReg != X86::SI && IndexReg != X86::DI) ||
|
|
|
|
((BaseReg == X86::SI || BaseReg == X86::DI) &&
|
|
|
|
IndexReg != X86::BX && IndexReg != X86::BP)) {
|
|
|
|
Error(BaseLoc, "invalid 16-bit base/index register combination");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2012-03-13 05:32:09 +08:00
|
|
|
}
|
|
|
|
|
2010-01-16 03:33:43 +08:00
|
|
|
return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale,
|
|
|
|
MemStart, MemEnd);
|
2009-07-21 04:01:54 +08:00
|
|
|
}
|
|
|
|
|
2012-01-13 02:03:40 +08:00
|
|
|
bool X86AsmParser::
|
2012-10-26 04:41:34 +08:00
|
|
|
ParseInstruction(ParseInstructionInfo &Info, StringRef Name, SMLoc NameLoc,
|
2010-01-15 06:21:20 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2012-10-26 04:41:34 +08:00
|
|
|
InstInfo = &Info;
|
2010-10-31 03:23:13 +08:00
|
|
|
StringRef PatchedName = Name;
|
2010-05-26 03:49:32 +08:00
|
|
|
|
2010-11-29 04:23:50 +08:00
|
|
|
// FIXME: Hack to recognize setneb as setne.
|
|
|
|
if (PatchedName.startswith("set") && PatchedName.endswith("b") &&
|
|
|
|
PatchedName != "setb" && PatchedName != "setnb")
|
|
|
|
PatchedName = PatchedName.substr(0, Name.size()-1);
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2010-05-26 03:49:32 +08:00
|
|
|
// FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
|
|
|
|
const MCExpr *ExtraImmOp = 0;
|
2010-06-24 05:10:57 +08:00
|
|
|
if ((PatchedName.startswith("cmp") || PatchedName.startswith("vcmp")) &&
|
2010-05-26 03:49:32 +08:00
|
|
|
(PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
|
|
|
|
PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
|
2012-03-29 15:11:23 +08:00
|
|
|
bool IsVCMP = PatchedName[0] == 'v';
|
2010-06-24 05:10:57 +08:00
|
|
|
unsigned SSECCIdx = IsVCMP ? 4 : 3;
|
2010-05-26 03:49:32 +08:00
|
|
|
unsigned SSEComparisonCode = StringSwitch<unsigned>(
|
2010-06-24 05:10:57 +08:00
|
|
|
PatchedName.slice(SSECCIdx, PatchedName.size() - 2))
|
2012-03-29 15:11:23 +08:00
|
|
|
.Case("eq", 0x00)
|
|
|
|
.Case("lt", 0x01)
|
|
|
|
.Case("le", 0x02)
|
|
|
|
.Case("unord", 0x03)
|
|
|
|
.Case("neq", 0x04)
|
|
|
|
.Case("nlt", 0x05)
|
|
|
|
.Case("nle", 0x06)
|
|
|
|
.Case("ord", 0x07)
|
|
|
|
/* AVX only from here */
|
|
|
|
.Case("eq_uq", 0x08)
|
|
|
|
.Case("nge", 0x09)
|
2010-07-08 06:24:03 +08:00
|
|
|
.Case("ngt", 0x0A)
|
|
|
|
.Case("false", 0x0B)
|
|
|
|
.Case("neq_oq", 0x0C)
|
|
|
|
.Case("ge", 0x0D)
|
|
|
|
.Case("gt", 0x0E)
|
|
|
|
.Case("true", 0x0F)
|
|
|
|
.Case("eq_os", 0x10)
|
|
|
|
.Case("lt_oq", 0x11)
|
|
|
|
.Case("le_oq", 0x12)
|
|
|
|
.Case("unord_s", 0x13)
|
|
|
|
.Case("neq_us", 0x14)
|
|
|
|
.Case("nlt_uq", 0x15)
|
|
|
|
.Case("nle_uq", 0x16)
|
|
|
|
.Case("ord_s", 0x17)
|
|
|
|
.Case("eq_us", 0x18)
|
|
|
|
.Case("nge_uq", 0x19)
|
|
|
|
.Case("ngt_uq", 0x1A)
|
|
|
|
.Case("false_os", 0x1B)
|
|
|
|
.Case("neq_os", 0x1C)
|
|
|
|
.Case("ge_oq", 0x1D)
|
|
|
|
.Case("gt_oq", 0x1E)
|
|
|
|
.Case("true_us", 0x1F)
|
2010-05-26 03:49:32 +08:00
|
|
|
.Default(~0U);
|
2012-03-29 15:11:23 +08:00
|
|
|
if (SSEComparisonCode != ~0U && (IsVCMP || SSEComparisonCode < 8)) {
|
2010-05-26 03:49:32 +08:00
|
|
|
ExtraImmOp = MCConstantExpr::Create(SSEComparisonCode,
|
|
|
|
getParser().getContext());
|
|
|
|
if (PatchedName.endswith("ss")) {
|
2010-06-24 05:10:57 +08:00
|
|
|
PatchedName = IsVCMP ? "vcmpss" : "cmpss";
|
2010-05-26 03:49:32 +08:00
|
|
|
} else if (PatchedName.endswith("sd")) {
|
2010-06-24 05:10:57 +08:00
|
|
|
PatchedName = IsVCMP ? "vcmpsd" : "cmpsd";
|
2010-05-26 03:49:32 +08:00
|
|
|
} else if (PatchedName.endswith("ps")) {
|
2010-06-24 05:10:57 +08:00
|
|
|
PatchedName = IsVCMP ? "vcmpps" : "cmpps";
|
2010-05-26 03:49:32 +08:00
|
|
|
} else {
|
|
|
|
assert(PatchedName.endswith("pd") && "Unexpected mnemonic!");
|
2010-06-24 05:10:57 +08:00
|
|
|
PatchedName = IsVCMP ? "vcmppd" : "cmppd";
|
2010-05-26 03:49:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-07-24 02:41:12 +08:00
|
|
|
|
2010-02-11 05:19:28 +08:00
|
|
|
Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2012-01-31 06:47:12 +08:00
|
|
|
if (ExtraImmOp && !isParsingIntelSyntax())
|
2010-05-26 03:49:32 +08:00
|
|
|
Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-08 13:17:37 +08:00
|
|
|
// Determine whether this is an instruction prefix.
|
|
|
|
bool isPrefix =
|
2010-10-31 03:23:13 +08:00
|
|
|
Name == "lock" || Name == "rep" ||
|
|
|
|
Name == "repe" || Name == "repz" ||
|
2010-11-23 19:23:24 +08:00
|
|
|
Name == "repne" || Name == "repnz" ||
|
2010-11-28 04:29:45 +08:00
|
|
|
Name == "rex64" || Name == "data16";
|
2010-10-09 19:00:50 +08:00
|
|
|
|
|
|
|
|
2010-09-08 13:17:37 +08:00
|
|
|
// This does the actual operand parsing. Don't parse any more if we have a
|
|
|
|
// prefix juxtaposed with an operation like "lock incl 4(%rax)", because we
|
|
|
|
// just want to parse the "lock" as the first instruction and the "incl" as
|
|
|
|
// the next one.
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement) && !isPrefix) {
|
2009-08-11 13:00:25 +08:00
|
|
|
|
|
|
|
// Parse '*' modifier.
|
2013-12-03 00:06:06 +08:00
|
|
|
if (getLexer().is(AsmToken::Star))
|
|
|
|
Operands.push_back(X86Operand::CreateToken("*", consumeToken()));
|
2009-08-11 13:00:25 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// Read the first operand.
|
2010-01-16 02:44:13 +08:00
|
|
|
if (X86Operand *Op = ParseOperand())
|
|
|
|
Operands.push_back(Op);
|
2010-09-12 00:18:25 +08:00
|
|
|
else {
|
2013-02-21 06:21:35 +08:00
|
|
|
Parser.eatToEndOfStatement();
|
2009-07-29 06:40:46 +08:00
|
|
|
return true;
|
2010-09-12 00:18:25 +08:00
|
|
|
}
|
2010-05-26 03:49:32 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
while (getLexer().is(AsmToken::Comma)) {
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat the comma.
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
// Parse and remember the operand.
|
2010-01-16 02:44:13 +08:00
|
|
|
if (X86Operand *Op = ParseOperand())
|
|
|
|
Operands.push_back(Op);
|
2010-09-12 00:18:25 +08:00
|
|
|
else {
|
2013-02-21 06:21:35 +08:00
|
|
|
Parser.eatToEndOfStatement();
|
2009-07-29 06:40:46 +08:00
|
|
|
return true;
|
2010-09-12 00:18:25 +08:00
|
|
|
}
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2013-09-12 16:55:00 +08:00
|
|
|
if (STI.getFeatureBits() & X86::FeatureAVX512) {
|
|
|
|
// Parse mask register {%k1}
|
|
|
|
if (getLexer().is(AsmToken::LCurly)) {
|
2013-12-03 00:06:06 +08:00
|
|
|
Operands.push_back(X86Operand::CreateToken("{", consumeToken()));
|
2013-09-12 16:55:00 +08:00
|
|
|
if (X86Operand *Op = ParseOperand()) {
|
|
|
|
Operands.push_back(Op);
|
|
|
|
if (!getLexer().is(AsmToken::RCurly)) {
|
|
|
|
SMLoc Loc = getLexer().getLoc();
|
|
|
|
Parser.eatToEndOfStatement();
|
|
|
|
return Error(Loc, "Expected } at this point");
|
|
|
|
}
|
2013-12-03 00:06:06 +08:00
|
|
|
Operands.push_back(X86Operand::CreateToken("}", consumeToken()));
|
2013-09-12 16:55:00 +08:00
|
|
|
} else {
|
|
|
|
Parser.eatToEndOfStatement();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2013-12-25 19:40:51 +08:00
|
|
|
// TODO: add parsing of broadcasts {1to8}, {1to16}
|
2013-09-12 16:55:00 +08:00
|
|
|
// Parse "zeroing non-masked" semantic {z}
|
|
|
|
if (getLexer().is(AsmToken::LCurly)) {
|
2013-12-03 00:06:06 +08:00
|
|
|
Operands.push_back(X86Operand::CreateToken("{z}", consumeToken()));
|
2013-09-12 16:55:00 +08:00
|
|
|
if (!getLexer().is(AsmToken::Identifier) || getLexer().getTok().getIdentifier() != "z") {
|
|
|
|
SMLoc Loc = getLexer().getLoc();
|
|
|
|
Parser.eatToEndOfStatement();
|
|
|
|
return Error(Loc, "Expected z at this point");
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat the z
|
|
|
|
if (!getLexer().is(AsmToken::RCurly)) {
|
|
|
|
SMLoc Loc = getLexer().getLoc();
|
|
|
|
Parser.eatToEndOfStatement();
|
|
|
|
return Error(Loc, "Expected } at this point");
|
|
|
|
}
|
|
|
|
Parser.Lex(); // Eat the }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-12 00:18:25 +08:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
2010-11-18 10:53:02 +08:00
|
|
|
SMLoc Loc = getLexer().getLoc();
|
2013-02-21 06:21:35 +08:00
|
|
|
Parser.eatToEndOfStatement();
|
2010-11-18 10:53:02 +08:00
|
|
|
return Error(Loc, "unexpected token in argument list");
|
2010-09-12 00:18:25 +08:00
|
|
|
}
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-08 13:17:37 +08:00
|
|
|
if (getLexer().is(AsmToken::EndOfStatement))
|
|
|
|
Parser.Lex(); // Consume the EndOfStatement
|
2010-12-09 07:57:59 +08:00
|
|
|
else if (isPrefix && getLexer().is(AsmToken::Slash))
|
|
|
|
Parser.Lex(); // Consume the prefix separator Slash
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2012-01-31 06:47:12 +08:00
|
|
|
if (ExtraImmOp && isParsingIntelSyntax())
|
|
|
|
Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
|
|
|
|
|
2010-11-07 03:25:43 +08:00
|
|
|
// This is a terrible hack to handle "out[bwl]? %al, (%dx)" ->
|
|
|
|
// "outb %al, %dx". Out doesn't take a memory form, but this is a widely
|
|
|
|
// documented form in various unofficial manuals, so a lot of code uses it.
|
|
|
|
if ((Name == "outb" || Name == "outw" || Name == "outl" || Name == "out") &&
|
|
|
|
Operands.size() == 3) {
|
|
|
|
X86Operand &Op = *(X86Operand*)Operands.back();
|
|
|
|
if (Op.isMem() && Op.Mem.SegReg == 0 &&
|
|
|
|
isa<MCConstantExpr>(Op.Mem.Disp) &&
|
|
|
|
cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
|
|
|
|
Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
|
|
|
|
SMLoc Loc = Op.getEndLoc();
|
|
|
|
Operands.back() = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
|
|
|
|
delete &Op;
|
|
|
|
}
|
|
|
|
}
|
2011-02-23 04:40:09 +08:00
|
|
|
// Same hack for "in[bwl]? (%dx), %al" -> "inb %dx, %al".
|
|
|
|
if ((Name == "inb" || Name == "inw" || Name == "inl" || Name == "in") &&
|
|
|
|
Operands.size() == 3) {
|
|
|
|
X86Operand &Op = *(X86Operand*)Operands.begin()[1];
|
|
|
|
if (Op.isMem() && Op.Mem.SegReg == 0 &&
|
|
|
|
isa<MCConstantExpr>(Op.Mem.Disp) &&
|
|
|
|
cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &&
|
|
|
|
Op.Mem.BaseReg == MatchRegisterName("dx") && Op.Mem.IndexReg == 0) {
|
|
|
|
SMLoc Loc = Op.getEndLoc();
|
|
|
|
Operands.begin()[1] = X86Operand::CreateReg(Op.Mem.BaseReg, Loc, Loc);
|
|
|
|
delete &Op;
|
|
|
|
}
|
|
|
|
}
|
2011-03-18 19:59:40 +08:00
|
|
|
// Transform "ins[bwl] %dx, %es:(%edi)" into "ins[bwl]"
|
|
|
|
if (Name.startswith("ins") && Operands.size() == 3 &&
|
|
|
|
(Name == "insb" || Name == "insw" || Name == "insl")) {
|
|
|
|
X86Operand &Op = *(X86Operand*)Operands.begin()[1];
|
|
|
|
X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
|
|
|
|
if (Op.isReg() && Op.getReg() == X86::DX && isDstOp(Op2)) {
|
|
|
|
Operands.pop_back();
|
|
|
|
Operands.pop_back();
|
|
|
|
delete &Op;
|
|
|
|
delete &Op2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Transform "outs[bwl] %ds:(%esi), %dx" into "out[bwl]"
|
|
|
|
if (Name.startswith("outs") && Operands.size() == 3 &&
|
|
|
|
(Name == "outsb" || Name == "outsw" || Name == "outsl")) {
|
|
|
|
X86Operand &Op = *(X86Operand*)Operands.begin()[1];
|
|
|
|
X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
|
|
|
|
if (isSrcOp(Op) && Op2.isReg() && Op2.getReg() == X86::DX) {
|
|
|
|
Operands.pop_back();
|
|
|
|
Operands.pop_back();
|
|
|
|
delete &Op;
|
|
|
|
delete &Op2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Transform "movs[bwl] %ds:(%esi), %es:(%edi)" into "movs[bwl]"
|
|
|
|
if (Name.startswith("movs") && Operands.size() == 3 &&
|
|
|
|
(Name == "movsb" || Name == "movsw" || Name == "movsl" ||
|
2011-07-11 11:57:24 +08:00
|
|
|
(is64BitMode() && Name == "movsq"))) {
|
2011-03-18 19:59:40 +08:00
|
|
|
X86Operand &Op = *(X86Operand*)Operands.begin()[1];
|
|
|
|
X86Operand &Op2 = *(X86Operand*)Operands.begin()[2];
|
|
|
|
if (isSrcOp(Op) && isDstOp(Op2)) {
|
|
|
|
Operands.pop_back();
|
|
|
|
Operands.pop_back();
|
|
|
|
delete &Op;
|
|
|
|
delete &Op2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Transform "lods[bwl] %ds:(%esi),{%al,%ax,%eax,%rax}" into "lods[bwl]"
|
|
|
|
if (Name.startswith("lods") && Operands.size() == 3 &&
|
|
|
|
(Name == "lods" || Name == "lodsb" || Name == "lodsw" ||
|
2011-07-11 11:57:24 +08:00
|
|
|
Name == "lodsl" || (is64BitMode() && Name == "lodsq"))) {
|
2011-03-18 19:59:40 +08:00
|
|
|
X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
|
|
|
|
X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
|
|
|
|
if (isSrcOp(*Op1) && Op2->isReg()) {
|
|
|
|
const char *ins;
|
|
|
|
unsigned reg = Op2->getReg();
|
|
|
|
bool isLods = Name == "lods";
|
|
|
|
if (reg == X86::AL && (isLods || Name == "lodsb"))
|
|
|
|
ins = "lodsb";
|
|
|
|
else if (reg == X86::AX && (isLods || Name == "lodsw"))
|
|
|
|
ins = "lodsw";
|
|
|
|
else if (reg == X86::EAX && (isLods || Name == "lodsl"))
|
|
|
|
ins = "lodsl";
|
|
|
|
else if (reg == X86::RAX && (isLods || Name == "lodsq"))
|
|
|
|
ins = "lodsq";
|
|
|
|
else
|
|
|
|
ins = NULL;
|
|
|
|
if (ins != NULL) {
|
|
|
|
Operands.pop_back();
|
|
|
|
Operands.pop_back();
|
|
|
|
delete Op1;
|
|
|
|
delete Op2;
|
|
|
|
if (Name != ins)
|
|
|
|
static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Transform "stos[bwl] {%al,%ax,%eax,%rax},%es:(%edi)" into "stos[bwl]"
|
|
|
|
if (Name.startswith("stos") && Operands.size() == 3 &&
|
|
|
|
(Name == "stos" || Name == "stosb" || Name == "stosw" ||
|
2011-07-11 11:57:24 +08:00
|
|
|
Name == "stosl" || (is64BitMode() && Name == "stosq"))) {
|
2011-03-18 19:59:40 +08:00
|
|
|
X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
|
|
|
|
X86Operand *Op2 = static_cast<X86Operand*>(Operands[2]);
|
|
|
|
if (isDstOp(*Op2) && Op1->isReg()) {
|
|
|
|
const char *ins;
|
|
|
|
unsigned reg = Op1->getReg();
|
|
|
|
bool isStos = Name == "stos";
|
|
|
|
if (reg == X86::AL && (isStos || Name == "stosb"))
|
|
|
|
ins = "stosb";
|
|
|
|
else if (reg == X86::AX && (isStos || Name == "stosw"))
|
|
|
|
ins = "stosw";
|
|
|
|
else if (reg == X86::EAX && (isStos || Name == "stosl"))
|
|
|
|
ins = "stosl";
|
|
|
|
else if (reg == X86::RAX && (isStos || Name == "stosq"))
|
|
|
|
ins = "stosq";
|
|
|
|
else
|
|
|
|
ins = NULL;
|
|
|
|
if (ins != NULL) {
|
|
|
|
Operands.pop_back();
|
|
|
|
Operands.pop_back();
|
|
|
|
delete Op1;
|
|
|
|
delete Op2;
|
|
|
|
if (Name != ins)
|
|
|
|
static_cast<X86Operand*>(Operands[0])->setTokenValue(ins);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-15 12:33:27 +08:00
|
|
|
// FIXME: Hack to handle recognize s{hr,ar,hl} $1, <op>. Canonicalize to
|
2010-09-12 00:32:12 +08:00
|
|
|
// "shift <op>".
|
2010-03-13 08:47:29 +08:00
|
|
|
if ((Name.startswith("shr") || Name.startswith("sar") ||
|
2010-11-07 05:23:40 +08:00
|
|
|
Name.startswith("shl") || Name.startswith("sal") ||
|
|
|
|
Name.startswith("rcl") || Name.startswith("rcr") ||
|
|
|
|
Name.startswith("rol") || Name.startswith("ror")) &&
|
2010-09-07 02:32:06 +08:00
|
|
|
Operands.size() == 3) {
|
2012-01-31 04:02:42 +08:00
|
|
|
if (isParsingIntelSyntax()) {
|
2012-01-25 05:43:36 +08:00
|
|
|
// Intel syntax
|
|
|
|
X86Operand *Op1 = static_cast<X86Operand*>(Operands[2]);
|
|
|
|
if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
|
2012-07-18 12:59:16 +08:00
|
|
|
cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
|
|
|
|
delete Operands[2];
|
|
|
|
Operands.pop_back();
|
2012-01-25 05:43:36 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
|
|
|
|
if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
|
2012-07-18 12:59:16 +08:00
|
|
|
cast<MCConstantExpr>(Op1->getImm())->getValue() == 1) {
|
|
|
|
delete Operands[1];
|
|
|
|
Operands.erase(Operands.begin() + 1);
|
2012-01-25 05:43:36 +08:00
|
|
|
}
|
2010-09-07 02:32:06 +08:00
|
|
|
}
|
2010-03-21 06:36:38 +08:00
|
|
|
}
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2011-04-10 03:41:05 +08:00
|
|
|
// Transforms "int $3" into "int3" as a size optimization. We can't write an
|
|
|
|
// instalias with an immediate operand yet.
|
|
|
|
if (Name == "int" && Operands.size() == 2) {
|
|
|
|
X86Operand *Op1 = static_cast<X86Operand*>(Operands[1]);
|
|
|
|
if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
|
|
|
|
cast<MCConstantExpr>(Op1->getImm())->getValue() == 3) {
|
|
|
|
delete Operands[1];
|
|
|
|
Operands.erase(Operands.begin() + 1);
|
|
|
|
static_cast<X86Operand*>(Operands[0])->setTokenValue("int3");
|
|
|
|
}
|
|
|
|
}
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-01-15 06:21:20 +08:00
|
|
|
return false;
|
2009-07-21 02:55:04 +08:00
|
|
|
}
|
|
|
|
|
2013-03-18 10:53:34 +08:00
|
|
|
static bool convertToSExti8(MCInst &Inst, unsigned Opcode, unsigned Reg,
|
|
|
|
bool isCmp) {
|
|
|
|
MCInst TmpInst;
|
|
|
|
TmpInst.setOpcode(Opcode);
|
|
|
|
if (!isCmp)
|
|
|
|
TmpInst.addOperand(MCOperand::CreateReg(Reg));
|
|
|
|
TmpInst.addOperand(MCOperand::CreateReg(Reg));
|
|
|
|
TmpInst.addOperand(Inst.getOperand(0));
|
|
|
|
Inst = TmpInst;
|
|
|
|
return true;
|
|
|
|
}
|
2012-01-20 01:53:25 +08:00
|
|
|
|
2013-03-18 10:53:34 +08:00
|
|
|
static bool convert16i16to16ri8(MCInst &Inst, unsigned Opcode,
|
|
|
|
bool isCmp = false) {
|
|
|
|
if (!Inst.getOperand(0).isImm() ||
|
|
|
|
!isImmSExti16i8Value(Inst.getOperand(0).getImm()))
|
|
|
|
return false;
|
2012-01-20 02:40:55 +08:00
|
|
|
|
2013-03-18 10:53:34 +08:00
|
|
|
return convertToSExti8(Inst, Opcode, X86::AX, isCmp);
|
|
|
|
}
|
2012-01-20 02:40:55 +08:00
|
|
|
|
2013-03-18 10:53:34 +08:00
|
|
|
static bool convert32i32to32ri8(MCInst &Inst, unsigned Opcode,
|
|
|
|
bool isCmp = false) {
|
|
|
|
if (!Inst.getOperand(0).isImm() ||
|
|
|
|
!isImmSExti32i8Value(Inst.getOperand(0).getImm()))
|
|
|
|
return false;
|
2012-01-20 02:40:55 +08:00
|
|
|
|
2013-03-18 10:53:34 +08:00
|
|
|
return convertToSExti8(Inst, Opcode, X86::EAX, isCmp);
|
|
|
|
}
|
2012-01-20 02:40:55 +08:00
|
|
|
|
2013-03-18 10:53:34 +08:00
|
|
|
static bool convert64i32to64ri8(MCInst &Inst, unsigned Opcode,
|
|
|
|
bool isCmp = false) {
|
|
|
|
if (!Inst.getOperand(0).isImm() ||
|
|
|
|
!isImmSExti64i8Value(Inst.getOperand(0).getImm()))
|
|
|
|
return false;
|
2012-01-20 02:40:55 +08:00
|
|
|
|
2013-03-18 10:53:34 +08:00
|
|
|
return convertToSExti8(Inst, Opcode, X86::RAX, isCmp);
|
|
|
|
}
|
2012-01-20 02:40:55 +08:00
|
|
|
|
2013-03-18 10:53:34 +08:00
|
|
|
bool X86AsmParser::
|
|
|
|
processInstruction(MCInst &Inst,
|
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Ops) {
|
|
|
|
switch (Inst.getOpcode()) {
|
|
|
|
default: return false;
|
|
|
|
case X86::AND16i16: return convert16i16to16ri8(Inst, X86::AND16ri8);
|
|
|
|
case X86::AND32i32: return convert32i32to32ri8(Inst, X86::AND32ri8);
|
|
|
|
case X86::AND64i32: return convert64i32to64ri8(Inst, X86::AND64ri8);
|
|
|
|
case X86::XOR16i16: return convert16i16to16ri8(Inst, X86::XOR16ri8);
|
|
|
|
case X86::XOR32i32: return convert32i32to32ri8(Inst, X86::XOR32ri8);
|
|
|
|
case X86::XOR64i32: return convert64i32to64ri8(Inst, X86::XOR64ri8);
|
|
|
|
case X86::OR16i16: return convert16i16to16ri8(Inst, X86::OR16ri8);
|
|
|
|
case X86::OR32i32: return convert32i32to32ri8(Inst, X86::OR32ri8);
|
|
|
|
case X86::OR64i32: return convert64i32to64ri8(Inst, X86::OR64ri8);
|
|
|
|
case X86::CMP16i16: return convert16i16to16ri8(Inst, X86::CMP16ri8, true);
|
|
|
|
case X86::CMP32i32: return convert32i32to32ri8(Inst, X86::CMP32ri8, true);
|
|
|
|
case X86::CMP64i32: return convert64i32to64ri8(Inst, X86::CMP64ri8, true);
|
|
|
|
case X86::ADD16i16: return convert16i16to16ri8(Inst, X86::ADD16ri8);
|
|
|
|
case X86::ADD32i32: return convert32i32to32ri8(Inst, X86::ADD32ri8);
|
|
|
|
case X86::ADD64i32: return convert64i32to64ri8(Inst, X86::ADD64ri8);
|
|
|
|
case X86::SUB16i16: return convert16i16to16ri8(Inst, X86::SUB16ri8);
|
|
|
|
case X86::SUB32i32: return convert32i32to32ri8(Inst, X86::SUB32ri8);
|
|
|
|
case X86::SUB64i32: return convert64i32to64ri8(Inst, X86::SUB64ri8);
|
2013-03-18 11:34:55 +08:00
|
|
|
case X86::ADC16i16: return convert16i16to16ri8(Inst, X86::ADC16ri8);
|
|
|
|
case X86::ADC32i32: return convert32i32to32ri8(Inst, X86::ADC32ri8);
|
|
|
|
case X86::ADC64i32: return convert64i32to64ri8(Inst, X86::ADC64ri8);
|
|
|
|
case X86::SBB16i16: return convert16i16to16ri8(Inst, X86::SBB16ri8);
|
|
|
|
case X86::SBB32i32: return convert32i32to32ri8(Inst, X86::SBB32ri8);
|
|
|
|
case X86::SBB64i32: return convert64i32to64ri8(Inst, X86::SBB64ri8);
|
2013-10-07 13:42:48 +08:00
|
|
|
case X86::VMOVAPDrr:
|
|
|
|
case X86::VMOVAPDYrr:
|
|
|
|
case X86::VMOVAPSrr:
|
|
|
|
case X86::VMOVAPSYrr:
|
|
|
|
case X86::VMOVDQArr:
|
|
|
|
case X86::VMOVDQAYrr:
|
|
|
|
case X86::VMOVDQUrr:
|
|
|
|
case X86::VMOVDQUYrr:
|
|
|
|
case X86::VMOVUPDrr:
|
|
|
|
case X86::VMOVUPDYrr:
|
|
|
|
case X86::VMOVUPSrr:
|
|
|
|
case X86::VMOVUPSYrr: {
|
|
|
|
if (X86II::isX86_64ExtendedReg(Inst.getOperand(0).getReg()) ||
|
|
|
|
!X86II::isX86_64ExtendedReg(Inst.getOperand(1).getReg()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
unsigned NewOpc;
|
|
|
|
switch (Inst.getOpcode()) {
|
|
|
|
default: llvm_unreachable("Invalid opcode");
|
|
|
|
case X86::VMOVAPDrr: NewOpc = X86::VMOVAPDrr_REV; break;
|
|
|
|
case X86::VMOVAPDYrr: NewOpc = X86::VMOVAPDYrr_REV; break;
|
|
|
|
case X86::VMOVAPSrr: NewOpc = X86::VMOVAPSrr_REV; break;
|
|
|
|
case X86::VMOVAPSYrr: NewOpc = X86::VMOVAPSYrr_REV; break;
|
|
|
|
case X86::VMOVDQArr: NewOpc = X86::VMOVDQArr_REV; break;
|
|
|
|
case X86::VMOVDQAYrr: NewOpc = X86::VMOVDQAYrr_REV; break;
|
|
|
|
case X86::VMOVDQUrr: NewOpc = X86::VMOVDQUrr_REV; break;
|
|
|
|
case X86::VMOVDQUYrr: NewOpc = X86::VMOVDQUYrr_REV; break;
|
|
|
|
case X86::VMOVUPDrr: NewOpc = X86::VMOVUPDrr_REV; break;
|
|
|
|
case X86::VMOVUPDYrr: NewOpc = X86::VMOVUPDYrr_REV; break;
|
|
|
|
case X86::VMOVUPSrr: NewOpc = X86::VMOVUPSrr_REV; break;
|
|
|
|
case X86::VMOVUPSYrr: NewOpc = X86::VMOVUPSYrr_REV; break;
|
|
|
|
}
|
|
|
|
Inst.setOpcode(NewOpc);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
case X86::VMOVSDrr:
|
|
|
|
case X86::VMOVSSrr: {
|
|
|
|
if (X86II::isX86_64ExtendedReg(Inst.getOperand(0).getReg()) ||
|
|
|
|
!X86II::isX86_64ExtendedReg(Inst.getOperand(2).getReg()))
|
|
|
|
return false;
|
|
|
|
unsigned NewOpc;
|
|
|
|
switch (Inst.getOpcode()) {
|
|
|
|
default: llvm_unreachable("Invalid opcode");
|
|
|
|
case X86::VMOVSDrr: NewOpc = X86::VMOVSDrr_REV; break;
|
|
|
|
case X86::VMOVSSrr: NewOpc = X86::VMOVSSrr_REV; break;
|
|
|
|
}
|
|
|
|
Inst.setOpcode(NewOpc);
|
|
|
|
return true;
|
|
|
|
}
|
2012-01-19 06:42:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-15 02:04:47 +08:00
|
|
|
static const char *getSubtargetFeatureName(unsigned Val);
|
2012-01-13 02:03:40 +08:00
|
|
|
bool X86AsmParser::
|
2012-10-13 08:26:04 +08:00
|
|
|
MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
|
2010-09-29 09:50:45 +08:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2012-10-13 08:26:04 +08:00
|
|
|
MCStreamer &Out, unsigned &ErrorInfo,
|
|
|
|
bool MatchingInlineAsm) {
|
2010-08-12 08:55:38 +08:00
|
|
|
assert(!Operands.empty() && "Unexpect empty operand list!");
|
2010-09-29 09:50:45 +08:00
|
|
|
X86Operand *Op = static_cast<X86Operand*>(Operands[0]);
|
|
|
|
assert(Op->isToken() && "Leading operand should always be a mnemonic!");
|
2013-05-05 08:40:33 +08:00
|
|
|
ArrayRef<SMRange> EmptyRanges = None;
|
2010-09-29 09:50:45 +08:00
|
|
|
|
|
|
|
// First, handle aliases that expand to multiple instructions.
|
|
|
|
// FIXME: This should be replaced with a real .td file alias mechanism.
|
2012-08-29 07:57:47 +08:00
|
|
|
// Also, MatchInstructionImpl should actually *do* the EmitInstruction
|
2010-11-07 03:57:21 +08:00
|
|
|
// call.
|
2010-10-22 11:58:29 +08:00
|
|
|
if (Op->getToken() == "fstsw" || Op->getToken() == "fstcw" ||
|
2010-10-31 02:07:17 +08:00
|
|
|
Op->getToken() == "fstsww" || Op->getToken() == "fstcww" ||
|
2010-10-01 01:11:29 +08:00
|
|
|
Op->getToken() == "finit" || Op->getToken() == "fsave" ||
|
2010-10-27 10:53:04 +08:00
|
|
|
Op->getToken() == "fstenv" || Op->getToken() == "fclex") {
|
2010-09-29 09:50:45 +08:00
|
|
|
MCInst Inst;
|
|
|
|
Inst.setOpcode(X86::WAIT);
|
2012-01-27 08:51:27 +08:00
|
|
|
Inst.setLoc(IDLoc);
|
2012-10-13 07:09:25 +08:00
|
|
|
if (!MatchingInlineAsm)
|
2012-10-02 07:45:51 +08:00
|
|
|
Out.EmitInstruction(Inst);
|
2010-08-12 08:55:38 +08:00
|
|
|
|
2010-10-01 00:39:29 +08:00
|
|
|
const char *Repl =
|
|
|
|
StringSwitch<const char*>(Op->getToken())
|
2010-10-31 02:07:17 +08:00
|
|
|
.Case("finit", "fninit")
|
|
|
|
.Case("fsave", "fnsave")
|
|
|
|
.Case("fstcw", "fnstcw")
|
|
|
|
.Case("fstcww", "fnstcw")
|
2010-10-01 01:11:29 +08:00
|
|
|
.Case("fstenv", "fnstenv")
|
2010-10-31 02:07:17 +08:00
|
|
|
.Case("fstsw", "fnstsw")
|
|
|
|
.Case("fstsww", "fnstsw")
|
|
|
|
.Case("fclex", "fnclex")
|
2010-10-01 00:39:29 +08:00
|
|
|
.Default(0);
|
|
|
|
assert(Repl && "Unknown wait-prefixed instruction");
|
2010-10-01 20:25:27 +08:00
|
|
|
delete Operands[0];
|
2010-10-01 00:39:29 +08:00
|
|
|
Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
|
2010-09-29 09:50:45 +08:00
|
|
|
}
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-07 05:54:15 +08:00
|
|
|
bool WasOriginallyInvalidOperand = false;
|
2010-09-29 09:42:58 +08:00
|
|
|
MCInst Inst;
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-05-05 00:12:42 +08:00
|
|
|
// First, try a direct match.
|
2012-10-13 06:53:36 +08:00
|
|
|
switch (MatchInstructionImpl(Operands, Inst,
|
2012-10-13 08:26:04 +08:00
|
|
|
ErrorInfo, MatchingInlineAsm,
|
2012-01-31 04:02:42 +08:00
|
|
|
isParsingIntelSyntax())) {
|
2011-08-16 07:03:29 +08:00
|
|
|
default: break;
|
2010-09-07 04:08:02 +08:00
|
|
|
case Match_Success:
|
2012-01-19 06:42:29 +08:00
|
|
|
// Some instructions need post-processing to, for example, tweak which
|
|
|
|
// encoding is selected. Loop on it while changes happen so the
|
2012-06-28 06:34:28 +08:00
|
|
|
// individual transformations can chain off each other.
|
2012-10-13 07:09:25 +08:00
|
|
|
if (!MatchingInlineAsm)
|
2012-10-02 07:45:51 +08:00
|
|
|
while (processInstruction(Inst, Operands))
|
|
|
|
;
|
2012-01-19 06:42:29 +08:00
|
|
|
|
2012-01-27 08:51:27 +08:00
|
|
|
Inst.setLoc(IDLoc);
|
2012-10-13 07:09:25 +08:00
|
|
|
if (!MatchingInlineAsm)
|
2012-10-02 07:45:51 +08:00
|
|
|
Out.EmitInstruction(Inst);
|
|
|
|
Opcode = Inst.getOpcode();
|
2010-05-05 00:12:42 +08:00
|
|
|
return false;
|
2012-11-15 02:04:47 +08:00
|
|
|
case Match_MissingFeature: {
|
|
|
|
assert(ErrorInfo && "Unknown missing feature!");
|
|
|
|
// Special case the error message for the very common case where only
|
|
|
|
// a single subtarget feature is missing.
|
|
|
|
std::string Msg = "instruction requires:";
|
|
|
|
unsigned Mask = 1;
|
|
|
|
for (unsigned i = 0; i < (sizeof(ErrorInfo)*8-1); ++i) {
|
|
|
|
if (ErrorInfo & Mask) {
|
|
|
|
Msg += " ";
|
|
|
|
Msg += getSubtargetFeatureName(ErrorInfo & Mask);
|
|
|
|
}
|
|
|
|
Mask <<= 1;
|
|
|
|
}
|
|
|
|
return Error(IDLoc, Msg, EmptyRanges, MatchingInlineAsm);
|
|
|
|
}
|
2010-09-07 05:54:15 +08:00
|
|
|
case Match_InvalidOperand:
|
|
|
|
WasOriginallyInvalidOperand = true;
|
|
|
|
break;
|
|
|
|
case Match_MnemonicFail:
|
2010-09-07 04:08:02 +08:00
|
|
|
break;
|
|
|
|
}
|
2010-05-05 00:12:42 +08:00
|
|
|
|
|
|
|
// FIXME: Ideally, we would only attempt suffix matches for things which are
|
|
|
|
// valid prefixes, and we could just infer the right unambiguous
|
|
|
|
// type. However, that requires substantially more matcher support than the
|
|
|
|
// following hack.
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-05-05 00:12:42 +08:00
|
|
|
// Change the operand to point to a temporary token.
|
|
|
|
StringRef Base = Op->getToken();
|
2010-08-12 08:55:38 +08:00
|
|
|
SmallString<16> Tmp;
|
|
|
|
Tmp += Base;
|
|
|
|
Tmp += ' ';
|
|
|
|
Op->setTokenValue(Tmp.str());
|
2010-05-05 00:12:42 +08:00
|
|
|
|
2010-11-07 02:28:02 +08:00
|
|
|
// If this instruction starts with an 'f', then it is a floating point stack
|
|
|
|
// instruction. These come in up to three forms for 32-bit, 64-bit, and
|
|
|
|
// 80-bit floating point, which use the suffixes s,l,t respectively.
|
|
|
|
//
|
|
|
|
// Otherwise, we assume that this may be an integer instruction, which comes
|
|
|
|
// in 8/16/32/64-bit forms using the b,w,l,q suffixes respectively.
|
|
|
|
const char *Suffixes = Base[0] != 'f' ? "bwlq" : "slt\0";
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2010-05-05 00:12:42 +08:00
|
|
|
// Check for the various suffix matches.
|
2010-11-07 02:28:02 +08:00
|
|
|
Tmp[Base.size()] = Suffixes[0];
|
|
|
|
unsigned ErrorInfoIgnore;
|
2013-03-01 17:46:03 +08:00
|
|
|
unsigned ErrorInfoMissingFeature = 0; // Init suppresses compiler warnings.
|
2011-08-16 07:03:29 +08:00
|
|
|
unsigned Match1, Match2, Match3, Match4;
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2012-10-13 06:53:36 +08:00
|
|
|
Match1 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
|
2013-05-11 02:24:17 +08:00
|
|
|
MatchingInlineAsm, isParsingIntelSyntax());
|
2012-11-15 02:04:47 +08:00
|
|
|
// If this returned as a missing feature failure, remember that.
|
|
|
|
if (Match1 == Match_MissingFeature)
|
|
|
|
ErrorInfoMissingFeature = ErrorInfoIgnore;
|
2010-11-07 02:28:02 +08:00
|
|
|
Tmp[Base.size()] = Suffixes[1];
|
2012-10-13 06:53:36 +08:00
|
|
|
Match2 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
|
2013-05-11 02:24:17 +08:00
|
|
|
MatchingInlineAsm, isParsingIntelSyntax());
|
2012-11-15 02:04:47 +08:00
|
|
|
// If this returned as a missing feature failure, remember that.
|
|
|
|
if (Match2 == Match_MissingFeature)
|
|
|
|
ErrorInfoMissingFeature = ErrorInfoIgnore;
|
2010-11-07 02:28:02 +08:00
|
|
|
Tmp[Base.size()] = Suffixes[2];
|
2012-10-13 06:53:36 +08:00
|
|
|
Match3 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
|
2013-05-11 02:24:17 +08:00
|
|
|
MatchingInlineAsm, isParsingIntelSyntax());
|
2012-11-15 02:04:47 +08:00
|
|
|
// If this returned as a missing feature failure, remember that.
|
|
|
|
if (Match3 == Match_MissingFeature)
|
|
|
|
ErrorInfoMissingFeature = ErrorInfoIgnore;
|
2010-11-07 02:28:02 +08:00
|
|
|
Tmp[Base.size()] = Suffixes[3];
|
2012-10-13 06:53:36 +08:00
|
|
|
Match4 = MatchInstructionImpl(Operands, Inst, ErrorInfoIgnore,
|
2013-05-11 02:24:17 +08:00
|
|
|
MatchingInlineAsm, isParsingIntelSyntax());
|
2012-11-15 02:04:47 +08:00
|
|
|
// If this returned as a missing feature failure, remember that.
|
|
|
|
if (Match4 == Match_MissingFeature)
|
|
|
|
ErrorInfoMissingFeature = ErrorInfoIgnore;
|
2010-05-05 00:12:42 +08:00
|
|
|
|
|
|
|
// Restore the old token.
|
|
|
|
Op->setTokenValue(Base);
|
|
|
|
|
|
|
|
// If exactly one matched, then we treat that as a successful match (and the
|
|
|
|
// instruction will already have been filled in correctly, since the failing
|
|
|
|
// matches won't have modified it).
|
2010-09-07 04:08:02 +08:00
|
|
|
unsigned NumSuccessfulMatches =
|
2010-11-07 02:28:02 +08:00
|
|
|
(Match1 == Match_Success) + (Match2 == Match_Success) +
|
|
|
|
(Match3 == Match_Success) + (Match4 == Match_Success);
|
2010-09-29 09:42:58 +08:00
|
|
|
if (NumSuccessfulMatches == 1) {
|
2012-01-27 08:51:27 +08:00
|
|
|
Inst.setLoc(IDLoc);
|
2012-10-13 07:09:25 +08:00
|
|
|
if (!MatchingInlineAsm)
|
2012-10-02 07:45:51 +08:00
|
|
|
Out.EmitInstruction(Inst);
|
|
|
|
Opcode = Inst.getOpcode();
|
2010-05-05 00:12:42 +08:00
|
|
|
return false;
|
2010-09-29 09:42:58 +08:00
|
|
|
}
|
2010-05-05 00:12:42 +08:00
|
|
|
|
2010-09-07 04:08:02 +08:00
|
|
|
// Otherwise, the match failed, try to produce a decent error message.
|
2010-08-12 08:55:38 +08:00
|
|
|
|
2010-08-12 08:55:42 +08:00
|
|
|
// If we had multiple suffix matches, then identify this as an ambiguous
|
|
|
|
// match.
|
2010-09-07 04:08:02 +08:00
|
|
|
if (NumSuccessfulMatches > 1) {
|
2010-08-12 08:55:42 +08:00
|
|
|
char MatchChars[4];
|
|
|
|
unsigned NumMatches = 0;
|
2010-11-07 02:28:02 +08:00
|
|
|
if (Match1 == Match_Success) MatchChars[NumMatches++] = Suffixes[0];
|
|
|
|
if (Match2 == Match_Success) MatchChars[NumMatches++] = Suffixes[1];
|
|
|
|
if (Match3 == Match_Success) MatchChars[NumMatches++] = Suffixes[2];
|
|
|
|
if (Match4 == Match_Success) MatchChars[NumMatches++] = Suffixes[3];
|
2010-08-12 08:55:42 +08:00
|
|
|
|
|
|
|
SmallString<126> Msg;
|
|
|
|
raw_svector_ostream OS(Msg);
|
|
|
|
OS << "ambiguous instructions require an explicit suffix (could be ";
|
|
|
|
for (unsigned i = 0; i != NumMatches; ++i) {
|
|
|
|
if (i != 0)
|
|
|
|
OS << ", ";
|
|
|
|
if (i + 1 == NumMatches)
|
|
|
|
OS << "or ";
|
|
|
|
OS << "'" << Base << MatchChars[i] << "'";
|
|
|
|
}
|
|
|
|
OS << ")";
|
2012-10-13 07:09:25 +08:00
|
|
|
Error(IDLoc, OS.str(), EmptyRanges, MatchingInlineAsm);
|
2010-09-07 04:08:02 +08:00
|
|
|
return true;
|
2010-08-12 08:55:42 +08:00
|
|
|
}
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-07 05:54:15 +08:00
|
|
|
// Okay, we know that none of the variants matched successfully.
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-07 05:54:15 +08:00
|
|
|
// If all of the instructions reported an invalid mnemonic, then the original
|
|
|
|
// mnemonic was invalid.
|
2010-11-07 02:28:02 +08:00
|
|
|
if ((Match1 == Match_MnemonicFail) && (Match2 == Match_MnemonicFail) &&
|
|
|
|
(Match3 == Match_MnemonicFail) && (Match4 == Match_MnemonicFail)) {
|
2010-09-07 06:11:18 +08:00
|
|
|
if (!WasOriginallyInvalidOperand) {
|
2012-10-13 07:09:25 +08:00
|
|
|
ArrayRef<SMRange> Ranges = MatchingInlineAsm ? EmptyRanges :
|
2012-08-23 03:14:29 +08:00
|
|
|
Op->getLocRange();
|
2011-10-16 19:28:29 +08:00
|
|
|
return Error(IDLoc, "invalid instruction mnemonic '" + Base + "'",
|
2012-10-13 07:09:25 +08:00
|
|
|
Ranges, MatchingInlineAsm);
|
2010-09-07 06:11:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Recover location info for the operand if we know which was the problem.
|
2012-10-13 08:26:04 +08:00
|
|
|
if (ErrorInfo != ~0U) {
|
|
|
|
if (ErrorInfo >= Operands.size())
|
2012-08-22 03:36:59 +08:00
|
|
|
return Error(IDLoc, "too few operands for instruction",
|
2012-10-13 07:09:25 +08:00
|
|
|
EmptyRanges, MatchingInlineAsm);
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2012-10-13 08:26:04 +08:00
|
|
|
X86Operand *Operand = (X86Operand*)Operands[ErrorInfo];
|
2011-10-16 12:47:35 +08:00
|
|
|
if (Operand->getStartLoc().isValid()) {
|
|
|
|
SMRange OperandRange = Operand->getLocRange();
|
|
|
|
return Error(Operand->getStartLoc(), "invalid operand for instruction",
|
2012-10-13 07:09:25 +08:00
|
|
|
OperandRange, MatchingInlineAsm);
|
2011-10-16 12:47:35 +08:00
|
|
|
}
|
2010-09-07 06:11:18 +08:00
|
|
|
}
|
|
|
|
|
2012-08-22 03:36:59 +08:00
|
|
|
return Error(IDLoc, "invalid operand for instruction", EmptyRanges,
|
2012-10-13 07:09:25 +08:00
|
|
|
MatchingInlineAsm);
|
2010-09-07 05:54:15 +08:00
|
|
|
}
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-07 04:08:02 +08:00
|
|
|
// If one instruction matched with a missing feature, report this as a
|
|
|
|
// missing feature.
|
2010-11-07 02:28:02 +08:00
|
|
|
if ((Match1 == Match_MissingFeature) + (Match2 == Match_MissingFeature) +
|
|
|
|
(Match3 == Match_MissingFeature) + (Match4 == Match_MissingFeature) == 1){
|
2012-11-15 02:04:47 +08:00
|
|
|
std::string Msg = "instruction requires:";
|
|
|
|
unsigned Mask = 1;
|
|
|
|
for (unsigned i = 0; i < (sizeof(ErrorInfoMissingFeature)*8-1); ++i) {
|
|
|
|
if (ErrorInfoMissingFeature & Mask) {
|
|
|
|
Msg += " ";
|
|
|
|
Msg += getSubtargetFeatureName(ErrorInfoMissingFeature & Mask);
|
|
|
|
}
|
|
|
|
Mask <<= 1;
|
|
|
|
}
|
|
|
|
return Error(IDLoc, Msg, EmptyRanges, MatchingInlineAsm);
|
2010-09-07 04:08:02 +08:00
|
|
|
}
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-07 05:54:15 +08:00
|
|
|
// If one instruction matched with an invalid operand, report this as an
|
|
|
|
// operand failure.
|
2010-11-07 02:28:02 +08:00
|
|
|
if ((Match1 == Match_InvalidOperand) + (Match2 == Match_InvalidOperand) +
|
|
|
|
(Match3 == Match_InvalidOperand) + (Match4 == Match_InvalidOperand) == 1){
|
2012-08-22 03:36:59 +08:00
|
|
|
Error(IDLoc, "invalid operand for instruction", EmptyRanges,
|
2012-10-13 07:09:25 +08:00
|
|
|
MatchingInlineAsm);
|
2010-09-07 05:54:15 +08:00
|
|
|
return true;
|
|
|
|
}
|
2010-10-09 19:00:50 +08:00
|
|
|
|
2010-09-07 04:08:02 +08:00
|
|
|
// If all of these were an outright failure, report it in a useless way.
|
2012-08-22 03:36:59 +08:00
|
|
|
Error(IDLoc, "unknown use of instruction mnemonic without a size suffix",
|
2012-10-13 07:09:25 +08:00
|
|
|
EmptyRanges, MatchingInlineAsm);
|
2010-05-05 00:12:42 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-13 02:03:40 +08:00
|
|
|
bool X86AsmParser::ParseDirective(AsmToken DirectiveID) {
|
2010-10-31 01:38:55 +08:00
|
|
|
StringRef IDVal = DirectiveID.getIdentifier();
|
|
|
|
if (IDVal == ".word")
|
|
|
|
return ParseDirectiveWord(2, DirectiveID.getLoc());
|
2011-07-27 08:38:12 +08:00
|
|
|
else if (IDVal.startswith(".code"))
|
|
|
|
return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
|
2012-09-11 04:54:39 +08:00
|
|
|
else if (IDVal.startswith(".att_syntax")) {
|
|
|
|
getParser().setAssemblerDialect(0);
|
|
|
|
return false;
|
|
|
|
} else if (IDVal.startswith(".intel_syntax")) {
|
2012-02-01 02:14:05 +08:00
|
|
|
getParser().setAssemblerDialect(1);
|
2012-01-31 04:02:42 +08:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
2014-01-13 09:15:39 +08:00
|
|
|
// FIXME: Handle noprefix
|
|
|
|
if (Parser.getTok().getString() == "noprefix")
|
2012-07-18 12:59:16 +08:00
|
|
|
Parser.Lex();
|
2012-01-31 04:02:42 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2010-10-31 01:38:55 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ParseDirectiveWord
|
|
|
|
/// ::= .word [ expression (, expression)* ]
|
2012-01-13 02:03:40 +08:00
|
|
|
bool X86AsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
|
2010-10-31 01:38:55 +08:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
for (;;) {
|
|
|
|
const MCExpr *Value;
|
2013-02-21 06:21:35 +08:00
|
|
|
if (getParser().parseExpression(Value))
|
2014-01-13 09:15:39 +08:00
|
|
|
return false;
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2013-01-09 11:52:05 +08:00
|
|
|
getParser().getStreamer().EmitValue(Value, Size);
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2010-10-31 01:38:55 +08:00
|
|
|
if (getLexer().is(AsmToken::EndOfStatement))
|
|
|
|
break;
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2010-10-31 01:38:55 +08:00
|
|
|
// FIXME: Improve diagnostic.
|
2014-01-13 09:15:39 +08:00
|
|
|
if (getLexer().isNot(AsmToken::Comma)) {
|
|
|
|
Error(L, "unexpected token in directive");
|
|
|
|
return false;
|
|
|
|
}
|
2010-10-31 01:38:55 +08:00
|
|
|
Parser.Lex();
|
|
|
|
}
|
|
|
|
}
|
2012-06-28 06:34:28 +08:00
|
|
|
|
2010-10-31 01:38:55 +08:00
|
|
|
Parser.Lex();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-27 08:38:12 +08:00
|
|
|
/// ParseDirectiveCode
|
2014-01-06 12:55:54 +08:00
|
|
|
/// ::= .code16 | .code32 | .code64
|
2012-01-13 02:03:40 +08:00
|
|
|
bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
|
2014-01-06 12:55:54 +08:00
|
|
|
if (IDVal == ".code16") {
|
|
|
|
Parser.Lex();
|
|
|
|
if (!is16BitMode()) {
|
|
|
|
SwitchMode(X86::Mode16Bit);
|
|
|
|
getParser().getStreamer().EmitAssemblerFlag(MCAF_Code16);
|
|
|
|
}
|
2014-01-13 09:15:39 +08:00
|
|
|
} else if (IDVal == ".code32") {
|
2011-07-27 08:38:12 +08:00
|
|
|
Parser.Lex();
|
2014-01-06 12:55:54 +08:00
|
|
|
if (!is32BitMode()) {
|
|
|
|
SwitchMode(X86::Mode32Bit);
|
2011-07-27 08:38:12 +08:00
|
|
|
getParser().getStreamer().EmitAssemblerFlag(MCAF_Code32);
|
|
|
|
}
|
|
|
|
} else if (IDVal == ".code64") {
|
|
|
|
Parser.Lex();
|
|
|
|
if (!is64BitMode()) {
|
2014-01-06 12:55:54 +08:00
|
|
|
SwitchMode(X86::Mode64Bit);
|
2011-07-27 08:38:12 +08:00
|
|
|
getParser().getStreamer().EmitAssemblerFlag(MCAF_Code64);
|
|
|
|
}
|
|
|
|
} else {
|
2014-01-13 09:15:39 +08:00
|
|
|
Error(L, "unknown directive " + IDVal);
|
|
|
|
return false;
|
2011-07-27 08:38:12 +08:00
|
|
|
}
|
2010-10-31 01:38:55 +08:00
|
|
|
|
2011-07-27 08:38:12 +08:00
|
|
|
return false;
|
|
|
|
}
|
2010-10-31 01:38:55 +08:00
|
|
|
|
2009-07-18 04:42:00 +08:00
|
|
|
// Force static initialization.
|
|
|
|
extern "C" void LLVMInitializeX86AsmParser() {
|
2012-01-13 02:03:40 +08:00
|
|
|
RegisterMCAsmParser<X86AsmParser> X(TheX86_32Target);
|
|
|
|
RegisterMCAsmParser<X86AsmParser> Y(TheX86_64Target);
|
2009-07-18 04:42:00 +08:00
|
|
|
}
|
2009-07-29 08:02:19 +08:00
|
|
|
|
2010-09-07 03:11:01 +08:00
|
|
|
#define GET_REGISTER_MATCHER
|
|
|
|
#define GET_MATCHER_IMPLEMENTATION
|
2012-11-15 02:04:47 +08:00
|
|
|
#define GET_SUBTARGET_FEATURE_NAME
|
2009-07-29 08:02:19 +08:00
|
|
|
#include "X86GenAsmMatcher.inc"
|