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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-01-15 06:21:20 +08:00
|
|
|
#include "llvm/Target/TargetAsmParser.h"
|
2009-07-19 07:03:22 +08:00
|
|
|
#include "X86.h"
|
2009-07-21 04:01:54 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2010-02-11 05:19:28 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2009-07-29 06:40:46 +08:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2009-09-11 04:51:44 +08:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2009-08-31 16:08:38 +08:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2009-07-31 10:32:59 +08:00
|
|
|
#include "llvm/MC/MCInst.h"
|
2010-01-22 09:44:57 +08:00
|
|
|
#include "llvm/MC/MCParser/MCAsmLexer.h"
|
|
|
|
#include "llvm/MC/MCParser/MCAsmParser.h"
|
|
|
|
#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
|
2009-07-29 06:40:46 +08:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2009-07-18 04:42:00 +08:00
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
|
|
#include "llvm/Target/TargetAsmParser.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
2009-07-31 19:35:26 +08:00
|
|
|
struct X86Operand;
|
2009-07-18 04:42:00 +08:00
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
class X86ATTAsmParser : public TargetAsmParser {
|
|
|
|
MCAsmParser &Parser;
|
2009-07-29 04:47:52 +08:00
|
|
|
|
2010-03-19 04:06:02 +08:00
|
|
|
protected:
|
|
|
|
unsigned Is64Bit : 1;
|
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
private:
|
|
|
|
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(); }
|
|
|
|
|
|
|
|
void Warning(SMLoc L, const Twine &Msg) { Parser.Warning(L, Msg); }
|
|
|
|
|
|
|
|
bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
|
|
|
|
|
2010-01-16 02:51:29 +08:00
|
|
|
bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2010-01-16 02:44:13 +08:00
|
|
|
X86Operand *ParseOperand();
|
2010-04-18 02:56:34 +08:00
|
|
|
X86Operand *ParseMemOperand(unsigned SegReg, SMLoc StartLoc);
|
2009-09-11 04:51:44 +08:00
|
|
|
|
|
|
|
bool ParseDirectiveWord(unsigned Size, SMLoc L);
|
|
|
|
|
2010-03-19 04:06:02 +08:00
|
|
|
void InstructionCleanup(MCInst &Inst);
|
|
|
|
|
2009-07-29 08:02:19 +08:00
|
|
|
/// @name Auto-generated Match Functions
|
2010-05-05 00:12:42 +08:00
|
|
|
/// {
|
2009-07-29 08:02:19 +08:00
|
|
|
|
2010-01-15 06:21:20 +08:00
|
|
|
bool MatchInstruction(const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2009-08-07 16:26:05 +08:00
|
|
|
MCInst &Inst);
|
|
|
|
|
2010-05-05 00:12:42 +08:00
|
|
|
bool MatchInstructionImpl(
|
|
|
|
const SmallVectorImpl<MCParsedAsmOperand*> &Operands, MCInst &Inst);
|
|
|
|
|
2009-07-29 08:02:19 +08:00
|
|
|
/// }
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
X86ATTAsmParser(const Target &T, MCAsmParser &_Parser)
|
|
|
|
: TargetAsmParser(T), Parser(_Parser) {}
|
|
|
|
|
2010-01-15 05:32:45 +08:00
|
|
|
virtual bool ParseInstruction(const 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
|
|
|
};
|
2010-03-19 04:06:02 +08:00
|
|
|
|
|
|
|
class X86_32ATTAsmParser : public X86ATTAsmParser {
|
|
|
|
public:
|
|
|
|
X86_32ATTAsmParser(const Target &T, MCAsmParser &_Parser)
|
|
|
|
: X86ATTAsmParser(T, _Parser) {
|
|
|
|
Is64Bit = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class X86_64ATTAsmParser : public X86ATTAsmParser {
|
|
|
|
public:
|
|
|
|
X86_64ATTAsmParser(const Target &T, MCAsmParser &_Parser)
|
|
|
|
: X86ATTAsmParser(T, _Parser) {
|
|
|
|
Is64Bit = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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-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
|
|
|
|
|
|
|
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,
|
|
|
|
Memory
|
|
|
|
} Kind;
|
|
|
|
|
2010-01-16 02:51:29 +08:00
|
|
|
SMLoc StartLoc, EndLoc;
|
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
union {
|
2009-08-07 16:26:05 +08:00
|
|
|
struct {
|
|
|
|
const char *Data;
|
|
|
|
unsigned Length;
|
|
|
|
} Tok;
|
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
struct {
|
|
|
|
unsigned RegNo;
|
|
|
|
} Reg;
|
|
|
|
|
|
|
|
struct {
|
2009-08-31 16:08:38 +08:00
|
|
|
const MCExpr *Val;
|
2009-07-29 06:40:46 +08:00
|
|
|
} Imm;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
unsigned SegReg;
|
2009-08-31 16:08:38 +08:00
|
|
|
const MCExpr *Disp;
|
2009-07-29 06:40:46 +08:00
|
|
|
unsigned BaseReg;
|
|
|
|
unsigned IndexReg;
|
|
|
|
unsigned Scale;
|
|
|
|
} 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
|
|
|
|
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; }
|
|
|
|
|
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-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.
|
|
|
|
uint64_t Value = CE->getValue();
|
|
|
|
return (( Value <= 0x000000000000007FULL)||
|
|
|
|
(0x000000000000FF80ULL <= Value && Value <= 0x000000000000FFFFULL)||
|
|
|
|
(0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
|
|
|
|
}
|
|
|
|
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.
|
|
|
|
uint64_t Value = CE->getValue();
|
|
|
|
return (( Value <= 0x000000000000007FULL)||
|
|
|
|
(0x00000000FFFFFF80ULL <= Value && Value <= 0x00000000FFFFFFFFULL)||
|
|
|
|
(0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
|
2009-08-09 15:20:21 +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.
|
|
|
|
uint64_t Value = CE->getValue();
|
|
|
|
return (( Value <= 0x000000000000007FULL)||
|
|
|
|
(0xFFFFFFFFFFFFFF80ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
|
|
|
|
}
|
|
|
|
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.
|
|
|
|
uint64_t Value = CE->getValue();
|
|
|
|
return (( Value <= 0x000000007FFFFFFFULL)||
|
|
|
|
(0xFFFFFFFF80000000ULL <= Value && Value <= 0xFFFFFFFFFFFFFFFFULL));
|
2010-05-21 04:20:39 +08:00
|
|
|
}
|
|
|
|
|
2009-08-07 16:26:05 +08:00
|
|
|
bool isMem() const { return Kind == Memory; }
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-01-30 08:24:00 +08:00
|
|
|
bool isNoSegMem() const {
|
|
|
|
return Kind == Memory && !getMemSegReg();
|
|
|
|
}
|
|
|
|
|
2009-08-07 16:26:05 +08:00
|
|
|
bool isReg() const { return Kind == Register; }
|
|
|
|
|
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()));
|
|
|
|
}
|
|
|
|
|
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!");
|
|
|
|
Inst.addOperand(MCOperand::CreateExpr(getMemDisp()));
|
|
|
|
}
|
|
|
|
|
2010-01-30 08:24:00 +08:00
|
|
|
void addNoSegMemOperands(MCInst &Inst, unsigned N) const {
|
|
|
|
assert((N == 4) && "Invalid number of operands!");
|
|
|
|
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());
|
2009-08-07 16:26:05 +08:00
|
|
|
}
|
|
|
|
|
2010-01-16 03:28:38 +08:00
|
|
|
static X86Operand *CreateToken(StringRef Str, SMLoc Loc) {
|
|
|
|
X86Operand *Res = new X86Operand(Token, Loc, Loc);
|
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;
|
|
|
|
}
|
|
|
|
|
2010-01-16 02:51:29 +08:00
|
|
|
static X86Operand *CreateReg(unsigned RegNo, SMLoc StartLoc, SMLoc EndLoc) {
|
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;
|
|
|
|
return Res;
|
2009-07-29 06:40:46 +08:00
|
|
|
}
|
2009-08-07 16:26:05 +08:00
|
|
|
|
2010-01-16 03:28:38 +08:00
|
|
|
static X86Operand *CreateImm(const MCExpr *Val, SMLoc StartLoc, SMLoc EndLoc){
|
|
|
|
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.
|
|
|
|
static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc,
|
|
|
|
SMLoc EndLoc) {
|
|
|
|
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;
|
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,
|
2010-01-16 03:33:43 +08:00
|
|
|
unsigned Scale, SMLoc StartLoc, SMLoc EndLoc) {
|
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;
|
|
|
|
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
|
|
|
|
|
|
|
|
2010-01-16 02:51:29 +08:00
|
|
|
bool X86ATTAsmParser::ParseRegister(unsigned &RegNo,
|
|
|
|
SMLoc &StartLoc, SMLoc &EndLoc) {
|
2010-01-16 02:27:19 +08:00
|
|
|
RegNo = 0;
|
2010-01-20 05:44:56 +08:00
|
|
|
const AsmToken &TokPercent = Parser.getTok();
|
2009-09-04 01:15:07 +08:00
|
|
|
assert(TokPercent.is(AsmToken::Percent) && "Invalid token kind!");
|
2010-01-16 02:51:29 +08:00
|
|
|
StartLoc = TokPercent.getLoc();
|
2010-01-20 04:27:46 +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();
|
2009-09-17 01:18:29 +08:00
|
|
|
if (Tok.isNot(AsmToken::Identifier))
|
|
|
|
return Error(Tok.getLoc(), "invalid register name");
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2009-07-29 08:02:19 +08:00
|
|
|
// FIXME: Validate register for the current architecture; we have to do
|
|
|
|
// validation later, so maybe there is no need for this here.
|
2009-09-04 01:15:07 +08:00
|
|
|
RegNo = MatchRegisterName(Tok.getString());
|
2010-02-09 08:34:28 +08:00
|
|
|
|
2010-02-09 08:49:22 +08:00
|
|
|
// Parse %st(1) and "%st" as "%st(0)"
|
|
|
|
if (RegNo == 0 && Tok.getString() == "st") {
|
|
|
|
RegNo = X86::ST0;
|
|
|
|
EndLoc = Tok.getLoc();
|
|
|
|
Parser.Lex(); // Eat 'st'
|
|
|
|
|
|
|
|
// 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");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (getParser().Lex().isNot(AsmToken::RParen))
|
|
|
|
return Error(Parser.getTok().getLoc(), "expected ')'");
|
|
|
|
|
|
|
|
EndLoc = Tok.getLoc();
|
|
|
|
Parser.Lex(); // Eat ')'
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-09 05:22:41 +08:00
|
|
|
if (RegNo == 0)
|
2009-07-29 08:02:19 +08:00
|
|
|
return Error(Tok.getLoc(), "invalid register name");
|
|
|
|
|
2010-01-16 02:51:29 +08:00
|
|
|
EndLoc = Tok.getLoc();
|
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
|
|
|
}
|
|
|
|
|
2010-01-16 02:44:13 +08:00
|
|
|
X86Operand *X86ATTAsmParser::ParseOperand() {
|
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-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);
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
2010-01-16 03:39:23 +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.
|
|
|
|
X86Operand *X86ATTAsmParser::ParseMemOperand(unsigned SegReg, SMLoc MemStart) {
|
|
|
|
|
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;
|
|
|
|
if (getParser().ParseExpression(Disp, ExprEnd)) return 0;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// 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 '('.
|
2009-07-29 06:40:46 +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;
|
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
// It must be an parenthesized expression, parse it now.
|
2010-01-16 03:28:38 +08:00
|
|
|
if (getParser().ParseParenExpression(Disp, ExprEnd))
|
2010-01-16 02:44:13 +08:00
|
|
|
return 0;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// Eat the '('.
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
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;
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2010-01-16 02:51:29 +08:00
|
|
|
if (getLexer().is(AsmToken::Percent)) {
|
|
|
|
SMLoc L;
|
|
|
|
if (ParseRegister(BaseReg, L, L)) return 0;
|
|
|
|
}
|
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.
|
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
|
|
|
|
// like "1(%eax,,1)", the assembler doesn't.
|
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;
|
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;
|
|
|
|
if (getParser().ParseAbsoluteExpression(ScaleVal))
|
2010-01-16 02:44:13 +08:00
|
|
|
return 0;
|
2009-07-29 06:40:46 +08:00
|
|
|
|
|
|
|
// Validate the scale amount.
|
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)) {
|
|
|
|
// Otherwise we have the unsupported form of a scale amount without an
|
|
|
|
// 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;
|
|
|
|
if (getParser().ParseAbsoluteExpression(Value))
|
2010-01-16 02:44:13 +08:00
|
|
|
return 0;
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2010-01-16 02:44:13 +08:00
|
|
|
Error(Loc, "cannot have scale factor without index register");
|
|
|
|
return 0;
|
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;
|
|
|
|
}
|
2010-01-20 05:44:56 +08:00
|
|
|
SMLoc MemEnd = Parser.getTok().getLoc();
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat the ')'.
|
2009-07-29 06:40:46 +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
|
|
|
}
|
|
|
|
|
2010-01-15 06:21:20 +08:00
|
|
|
bool X86ATTAsmParser::
|
|
|
|
ParseInstruction(const StringRef &Name, SMLoc NameLoc,
|
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2010-05-21 00:16:00 +08:00
|
|
|
// The various flavors of pushf and popf use Requires<In32BitMode> and
|
|
|
|
// Requires<In64BitMode>, but the assembler doesn't yet implement that.
|
|
|
|
// For now, just do a manual check to prevent silent misencoding.
|
|
|
|
if (Is64Bit) {
|
|
|
|
if (Name == "popfl")
|
|
|
|
return Error(NameLoc, "popfl cannot be encoded in 64-bit mode");
|
|
|
|
else if (Name == "pushfl")
|
|
|
|
return Error(NameLoc, "pushfl cannot be encoded in 64-bit mode");
|
|
|
|
} else {
|
|
|
|
if (Name == "popfq")
|
|
|
|
return Error(NameLoc, "popfq cannot be encoded in 32-bit mode");
|
|
|
|
else if (Name == "pushfq")
|
|
|
|
return Error(NameLoc, "pushfq cannot be encoded in 32-bit mode");
|
|
|
|
}
|
|
|
|
|
2010-02-11 05:19:28 +08:00
|
|
|
// FIXME: Hack to recognize "sal..." and "rep..." for now. We need a way to
|
|
|
|
// represent alternative syntaxes in the .td file, without requiring
|
|
|
|
// instruction duplication.
|
|
|
|
StringRef PatchedName = StringSwitch<StringRef>(Name)
|
|
|
|
.Case("sal", "shl")
|
|
|
|
.Case("salb", "shlb")
|
|
|
|
.Case("sall", "shll")
|
|
|
|
.Case("salq", "shlq")
|
|
|
|
.Case("salw", "shlw")
|
|
|
|
.Case("repe", "rep")
|
|
|
|
.Case("repz", "rep")
|
|
|
|
.Case("repnz", "repne")
|
2010-05-21 00:16:00 +08:00
|
|
|
.Case("pushf", Is64Bit ? "pushfq" : "pushfl")
|
|
|
|
.Case("popf", Is64Bit ? "popfq" : "popfl")
|
2010-05-22 07:01:38 +08:00
|
|
|
.Case("retl", Is64Bit ? "retl" : "ret")
|
|
|
|
.Case("retq", Is64Bit ? "ret" : "retq")
|
2010-05-22 14:37:33 +08:00
|
|
|
.Case("setz", "sete")
|
|
|
|
.Case("setnz", "setne")
|
|
|
|
.Case("jz", "je")
|
|
|
|
.Case("jnz", "jne")
|
2010-05-25 04:32:23 +08:00
|
|
|
.Case("cmovcl", "cmovbl")
|
|
|
|
.Case("cmovcl", "cmovbl")
|
|
|
|
.Case("cmovnal", "cmovbel")
|
|
|
|
.Case("cmovnbl", "cmovael")
|
|
|
|
.Case("cmovnbel", "cmoval")
|
|
|
|
.Case("cmovncl", "cmovael")
|
|
|
|
.Case("cmovngl", "cmovlel")
|
|
|
|
.Case("cmovnl", "cmovgel")
|
|
|
|
.Case("cmovngl", "cmovlel")
|
|
|
|
.Case("cmovngel", "cmovll")
|
|
|
|
.Case("cmovnll", "cmovgel")
|
|
|
|
.Case("cmovnlel", "cmovgl")
|
|
|
|
.Case("cmovnzl", "cmovnel")
|
|
|
|
.Case("cmovzl", "cmovel")
|
2010-02-11 05:19:28 +08:00
|
|
|
.Default(Name);
|
2010-05-26 03:49:32 +08:00
|
|
|
|
|
|
|
// FIXME: Hack to recognize cmp<comparison code>{ss,sd,ps,pd}.
|
|
|
|
const MCExpr *ExtraImmOp = 0;
|
|
|
|
if (PatchedName.startswith("cmp") &&
|
|
|
|
(PatchedName.endswith("ss") || PatchedName.endswith("sd") ||
|
|
|
|
PatchedName.endswith("ps") || PatchedName.endswith("pd"))) {
|
|
|
|
unsigned SSEComparisonCode = StringSwitch<unsigned>(
|
|
|
|
PatchedName.slice(3, PatchedName.size() - 2))
|
|
|
|
.Case("eq", 0)
|
|
|
|
.Case("lt", 1)
|
|
|
|
.Case("le", 2)
|
|
|
|
.Case("unord", 3)
|
|
|
|
.Case("neq", 4)
|
|
|
|
.Case("nlt", 5)
|
|
|
|
.Case("nle", 6)
|
|
|
|
.Case("ord", 7)
|
|
|
|
.Default(~0U);
|
|
|
|
if (SSEComparisonCode != ~0U) {
|
|
|
|
ExtraImmOp = MCConstantExpr::Create(SSEComparisonCode,
|
|
|
|
getParser().getContext());
|
|
|
|
if (PatchedName.endswith("ss")) {
|
|
|
|
PatchedName = "cmpss";
|
|
|
|
} else if (PatchedName.endswith("sd")) {
|
|
|
|
PatchedName = "cmpsd";
|
|
|
|
} else if (PatchedName.endswith("ps")) {
|
|
|
|
PatchedName = "cmpps";
|
|
|
|
} else {
|
|
|
|
assert(PatchedName.endswith("pd") && "Unexpected mnemonic!");
|
|
|
|
PatchedName = "cmppd";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-02-11 05:19:28 +08:00
|
|
|
Operands.push_back(X86Operand::CreateToken(PatchedName, NameLoc));
|
2009-07-29 06:40:46 +08:00
|
|
|
|
2010-05-26 03:49:32 +08:00
|
|
|
if (ExtraImmOp)
|
|
|
|
Operands.push_back(X86Operand::CreateImm(ExtraImmOp, NameLoc, NameLoc));
|
|
|
|
|
2009-07-29 06:40:46 +08:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
2009-08-11 13:00:25 +08:00
|
|
|
|
|
|
|
// Parse '*' modifier.
|
|
|
|
if (getLexer().is(AsmToken::Star)) {
|
2010-01-20 05:44:56 +08:00
|
|
|
SMLoc Loc = Parser.getTok().getLoc();
|
2010-01-16 03:28:38 +08:00
|
|
|
Operands.push_back(X86Operand::CreateToken("*", Loc));
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex(); // Eat the star.
|
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);
|
|
|
|
else
|
2009-07-29 06:40:46 +08:00
|
|
|
return true;
|
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);
|
|
|
|
else
|
2009-07-29 06:40:46 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-13 08:47:29 +08:00
|
|
|
// FIXME: Hack to handle recognizing s{hr,ar,hl}? $1.
|
|
|
|
if ((Name.startswith("shr") || Name.startswith("sar") ||
|
|
|
|
Name.startswith("shl")) &&
|
|
|
|
Operands.size() == 3 &&
|
|
|
|
static_cast<X86Operand*>(Operands[1])->isImm() &&
|
|
|
|
isa<MCConstantExpr>(static_cast<X86Operand*>(Operands[1])->getImm()) &&
|
2010-03-21 06:36:38 +08:00
|
|
|
cast<MCConstantExpr>(static_cast<X86Operand*>(Operands[1])->getImm())->getValue() == 1) {
|
|
|
|
delete Operands[1];
|
2010-03-13 08:47:29 +08:00
|
|
|
Operands.erase(Operands.begin() + 1);
|
2010-03-21 06:36:38 +08:00
|
|
|
}
|
2010-03-13 08:47:29 +08:00
|
|
|
|
2010-01-15 06:21:20 +08:00
|
|
|
return false;
|
2009-07-21 02:55:04 +08:00
|
|
|
}
|
|
|
|
|
2009-09-11 04:51:44 +08:00
|
|
|
bool X86ATTAsmParser::ParseDirective(AsmToken DirectiveID) {
|
|
|
|
StringRef IDVal = DirectiveID.getIdentifier();
|
|
|
|
if (IDVal == ".word")
|
|
|
|
return ParseDirectiveWord(2, DirectiveID.getLoc());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ParseDirectiveWord
|
|
|
|
/// ::= .word [ expression (, expression)* ]
|
|
|
|
bool X86ATTAsmParser::ParseDirectiveWord(unsigned Size, SMLoc L) {
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
for (;;) {
|
|
|
|
const MCExpr *Value;
|
|
|
|
if (getParser().ParseExpression(Value))
|
|
|
|
return true;
|
|
|
|
|
2010-01-20 03:46:13 +08:00
|
|
|
getParser().getStreamer().EmitValue(Value, Size, 0 /*addrspace*/);
|
2009-09-11 04:51:44 +08:00
|
|
|
|
|
|
|
if (getLexer().is(AsmToken::EndOfStatement))
|
|
|
|
break;
|
|
|
|
|
|
|
|
// FIXME: Improve diagnostic.
|
|
|
|
if (getLexer().isNot(AsmToken::Comma))
|
|
|
|
return Error(L, "unexpected token in directive");
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-09-11 04:51:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-20 04:27:46 +08:00
|
|
|
Parser.Lex();
|
2009-09-11 04:51:44 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-05-13 08:02:47 +08:00
|
|
|
/// LowerMOffset - Lower an 'moffset' form of an instruction, which just has a
|
|
|
|
/// imm operand, to having "rm" or "mr" operands with the offset in the disp
|
|
|
|
/// field.
|
|
|
|
static void LowerMOffset(MCInst &Inst, unsigned Opc, unsigned RegNo,
|
|
|
|
bool isMR) {
|
|
|
|
MCOperand Disp = Inst.getOperand(0);
|
|
|
|
|
|
|
|
// Start over with an empty instruction.
|
|
|
|
Inst = MCInst();
|
|
|
|
Inst.setOpcode(Opc);
|
|
|
|
|
|
|
|
if (!isMR)
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(RegNo));
|
|
|
|
|
|
|
|
// Add the mem operand.
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(0)); // Segment
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(1)); // Scale
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(0)); // IndexReg
|
|
|
|
Inst.addOperand(Disp); // Displacement
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(0)); // BaseReg
|
|
|
|
|
|
|
|
if (isMR)
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(RegNo));
|
|
|
|
}
|
|
|
|
|
2010-03-19 04:06:02 +08:00
|
|
|
// FIXME: Custom X86 cleanup function to implement a temporary hack to handle
|
|
|
|
// matching INCL/DECL correctly for x86_64. This needs to be replaced by a
|
|
|
|
// proper mechanism for supporting (ambiguous) feature dependent instructions.
|
|
|
|
void X86ATTAsmParser::InstructionCleanup(MCInst &Inst) {
|
|
|
|
if (!Is64Bit) return;
|
|
|
|
|
|
|
|
switch (Inst.getOpcode()) {
|
|
|
|
case X86::DEC16r: Inst.setOpcode(X86::DEC64_16r); break;
|
|
|
|
case X86::DEC16m: Inst.setOpcode(X86::DEC64_16m); break;
|
|
|
|
case X86::DEC32r: Inst.setOpcode(X86::DEC64_32r); break;
|
|
|
|
case X86::DEC32m: Inst.setOpcode(X86::DEC64_32m); break;
|
|
|
|
case X86::INC16r: Inst.setOpcode(X86::INC64_16r); break;
|
|
|
|
case X86::INC16m: Inst.setOpcode(X86::INC64_16m); break;
|
|
|
|
case X86::INC32r: Inst.setOpcode(X86::INC64_32r); break;
|
|
|
|
case X86::INC32m: Inst.setOpcode(X86::INC64_32m); break;
|
2010-05-13 08:02:47 +08:00
|
|
|
|
|
|
|
// moffset instructions are x86-32 only.
|
|
|
|
case X86::MOV8o8a: LowerMOffset(Inst, X86::MOV8rm , X86::AL , false); break;
|
|
|
|
case X86::MOV16o16a: LowerMOffset(Inst, X86::MOV16rm, X86::AX , false); break;
|
|
|
|
case X86::MOV32o32a: LowerMOffset(Inst, X86::MOV32rm, X86::EAX, false); break;
|
|
|
|
case X86::MOV8ao8: LowerMOffset(Inst, X86::MOV8mr , X86::AL , true); break;
|
|
|
|
case X86::MOV16ao16: LowerMOffset(Inst, X86::MOV16mr, X86::AX , true); break;
|
|
|
|
case X86::MOV32ao32: LowerMOffset(Inst, X86::MOV32mr, X86::EAX, true); break;
|
2010-03-19 04:06:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-05 00:12:42 +08:00
|
|
|
bool
|
|
|
|
X86ATTAsmParser::MatchInstruction(const SmallVectorImpl<MCParsedAsmOperand*>
|
|
|
|
&Operands,
|
|
|
|
MCInst &Inst) {
|
|
|
|
// First, try a direct match.
|
|
|
|
if (!MatchInstructionImpl(Operands, Inst))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Ignore anything which is obviously not a suffix match.
|
|
|
|
if (Operands.size() == 0)
|
|
|
|
return true;
|
|
|
|
X86Operand *Op = static_cast<X86Operand*>(Operands[0]);
|
|
|
|
if (!Op->isToken() || Op->getToken().size() > 15)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Change the operand to point to a temporary token.
|
|
|
|
char Tmp[16];
|
|
|
|
StringRef Base = Op->getToken();
|
|
|
|
memcpy(Tmp, Base.data(), Base.size());
|
|
|
|
Op->setTokenValue(StringRef(Tmp, Base.size() + 1));
|
|
|
|
|
|
|
|
// Check for the various suffix matches.
|
|
|
|
Tmp[Base.size()] = 'b';
|
|
|
|
bool MatchB = MatchInstructionImpl(Operands, Inst);
|
|
|
|
Tmp[Base.size()] = 'w';
|
|
|
|
bool MatchW = MatchInstructionImpl(Operands, Inst);
|
|
|
|
Tmp[Base.size()] = 'l';
|
|
|
|
bool MatchL = MatchInstructionImpl(Operands, Inst);
|
2010-05-12 08:54:20 +08:00
|
|
|
Tmp[Base.size()] = 'q';
|
|
|
|
bool MatchQ = MatchInstructionImpl(Operands, Inst);
|
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-05-12 08:54:20 +08:00
|
|
|
if (MatchB + MatchW + MatchL + MatchQ == 3)
|
2010-05-05 00:12:42 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// Otherwise, the match failed.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-23 10:43:15 +08:00
|
|
|
extern "C" void LLVMInitializeX86AsmLexer();
|
|
|
|
|
2009-07-18 04:42:00 +08:00
|
|
|
// Force static initialization.
|
|
|
|
extern "C" void LLVMInitializeX86AsmParser() {
|
2010-03-19 04:06:02 +08:00
|
|
|
RegisterAsmParser<X86_32ATTAsmParser> X(TheX86_32Target);
|
|
|
|
RegisterAsmParser<X86_64ATTAsmParser> Y(TheX86_64Target);
|
2010-01-23 10:43:15 +08:00
|
|
|
LLVMInitializeX86AsmLexer();
|
2009-07-18 04:42:00 +08:00
|
|
|
}
|
2009-07-29 08:02:19 +08:00
|
|
|
|
|
|
|
#include "X86GenAsmMatcher.inc"
|