2012-02-17 08:55:11 +00:00
|
|
|
//===-- MipsAsmParser.cpp - Parse Mips assembly to MCInst instructions ----===//
|
2012-01-11 03:56:41 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "MCTargetDesc/MipsMCTargetDesc.h"
|
2012-09-05 23:34:03 +00:00
|
|
|
#include "MipsRegisterInfo.h"
|
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/MC/MCParser/MCAsmLexer.h"
|
|
|
|
#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
|
2012-09-05 23:34:03 +00:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2012-08-17 20:16:42 +00:00
|
|
|
#include "llvm/MC/MCTargetAsmParser.h"
|
2012-09-05 23:34:03 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2013-05-28 22:21:05 +00:00
|
|
|
#include "llvm/ADT/APInt.h"
|
2012-01-11 03:56:41 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
2012-10-04 02:29:46 +00:00
|
|
|
class MipsAssemblerOptions {
|
|
|
|
public:
|
|
|
|
MipsAssemblerOptions():
|
|
|
|
aTReg(1), reorder(true), macro(true) {
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned getATRegNum() {return aTReg;}
|
|
|
|
bool setATReg(unsigned Reg);
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2012-10-04 02:29:46 +00:00
|
|
|
bool isReorder() {return reorder;}
|
|
|
|
void setReorder() {reorder = true;}
|
|
|
|
void setNoreorder() {reorder = false;}
|
|
|
|
|
|
|
|
bool isMacro() {return macro;}
|
|
|
|
void setMacro() {macro = true;}
|
|
|
|
void setNomacro() {macro = false;}
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned aTReg;
|
|
|
|
bool reorder;
|
|
|
|
bool macro;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2012-01-11 03:56:41 +00:00
|
|
|
class MipsAsmParser : public MCTargetAsmParser {
|
2012-08-17 20:16:42 +00:00
|
|
|
|
2012-09-07 00:23:42 +00:00
|
|
|
enum FpFormatTy {
|
|
|
|
FP_FORMAT_NONE = -1,
|
|
|
|
FP_FORMAT_S,
|
|
|
|
FP_FORMAT_D,
|
|
|
|
FP_FORMAT_L,
|
|
|
|
FP_FORMAT_W
|
|
|
|
} FpFormat;
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
MCSubtargetInfo &STI;
|
|
|
|
MCAsmParser &Parser;
|
2012-10-05 23:55:28 +00:00
|
|
|
MipsAssemblerOptions Options;
|
2012-10-04 02:29:46 +00:00
|
|
|
|
2012-08-17 20:16:42 +00:00
|
|
|
#define GET_ASSEMBLER_HEADER
|
|
|
|
#include "MipsGenAsmMatcher.inc"
|
|
|
|
|
2012-10-13 00:26:04 +00:00
|
|
|
bool MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
|
2012-01-11 03:56:41 +00:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2012-10-13 00:26:04 +00:00
|
|
|
MCStreamer &Out, unsigned &ErrorInfo,
|
|
|
|
bool MatchingInlineAsm);
|
2012-01-11 03:56:41 +00:00
|
|
|
|
|
|
|
bool ParseRegister(unsigned &RegNo, SMLoc &StartLoc, SMLoc &EndLoc);
|
|
|
|
|
2012-10-25 20:41:34 +00:00
|
|
|
bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
|
|
|
|
SMLoc NameLoc,
|
2012-08-17 20:16:42 +00:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
2012-01-11 03:56:41 +00:00
|
|
|
|
|
|
|
bool ParseDirective(AsmToken DirectiveID);
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
2013-06-20 11:21:49 +00:00
|
|
|
parseRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
|
|
|
int RegKind);
|
2013-07-16 10:07:14 +00:00
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
2013-01-12 01:03:14 +00:00
|
|
|
parseMemOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
2013-08-06 23:08:38 +00:00
|
|
|
parseGPR32(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
2013-01-12 01:03:14 +00:00
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
2013-08-06 23:08:38 +00:00
|
|
|
parseGPR64(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
2013-01-12 01:03:14 +00:00
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
parseHWRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
parseCCRRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
2012-09-03 18:47:45 +00:00
|
|
|
|
2013-06-24 10:05:34 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
parseAFGR64Regs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
parseFGR64Regs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
parseFGR32Regs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
|
|
|
|
2013-07-30 10:12:14 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
parseFCCRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
|
|
|
|
2013-08-06 22:20:40 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
parseACRegsDSP(SmallVectorImpl<MCParsedAsmOperand*> &Operands);
|
|
|
|
|
2013-03-21 21:44:16 +00:00
|
|
|
bool searchSymbolAlias(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2013-06-20 11:21:49 +00:00
|
|
|
unsigned RegKind);
|
2013-03-21 21:44:16 +00:00
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
bool ParseOperand(SmallVectorImpl<MCParsedAsmOperand*> &,
|
|
|
|
StringRef Mnemonic);
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
int tryParseRegister(bool is64BitReg);
|
2012-09-05 23:34:03 +00:00
|
|
|
|
|
|
|
bool tryParseRegisterOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2013-01-12 01:03:14 +00:00
|
|
|
bool is64BitReg);
|
2012-09-05 23:34:03 +00:00
|
|
|
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
bool needsExpansion(MCInst &Inst);
|
|
|
|
|
|
|
|
void expandInstruction(MCInst &Inst, SMLoc IDLoc,
|
2012-10-06 00:53:28 +00:00
|
|
|
SmallVectorImpl<MCInst> &Instructions);
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
void expandLoadImm(MCInst &Inst, SMLoc IDLoc,
|
2012-10-06 00:53:28 +00:00
|
|
|
SmallVectorImpl<MCInst> &Instructions);
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
void expandLoadAddressImm(MCInst &Inst, SMLoc IDLoc,
|
|
|
|
SmallVectorImpl<MCInst> &Instructions);
|
|
|
|
void expandLoadAddressReg(MCInst &Inst, SMLoc IDLoc,
|
|
|
|
SmallVectorImpl<MCInst> &Instructions);
|
2013-03-22 00:05:30 +00:00
|
|
|
void expandMemInst(MCInst &Inst, SMLoc IDLoc,
|
|
|
|
SmallVectorImpl<MCInst> &Instructions,
|
|
|
|
bool isLoad,bool isImmOpnd);
|
2012-10-04 02:29:46 +00:00
|
|
|
bool reportParseError(StringRef ErrorMsg);
|
|
|
|
|
2013-04-17 00:18:04 +00:00
|
|
|
bool parseMemOffset(const MCExpr *&Res, bool isParenExpr);
|
2013-01-12 01:03:14 +00:00
|
|
|
bool parseRelocOperand(const MCExpr *&Res);
|
2012-10-04 02:29:46 +00:00
|
|
|
|
2013-04-17 00:18:04 +00:00
|
|
|
const MCExpr* evaluateRelocExpr(const MCExpr *Expr, StringRef RelocStr);
|
|
|
|
|
|
|
|
bool isEvaluated(const MCExpr *Expr);
|
2012-10-04 02:29:46 +00:00
|
|
|
bool parseDirectiveSet();
|
|
|
|
|
|
|
|
bool parseSetAtDirective();
|
|
|
|
bool parseSetNoAtDirective();
|
|
|
|
bool parseSetMacroDirective();
|
|
|
|
bool parseSetNoMacroDirective();
|
|
|
|
bool parseSetReorderDirective();
|
|
|
|
bool parseSetNoReorderDirective();
|
|
|
|
|
2013-03-21 21:44:16 +00:00
|
|
|
bool parseSetAssignment();
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
bool parseDirectiveWord(unsigned Size, SMLoc L);
|
|
|
|
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
MCSymbolRefExpr::VariantKind getVariantKind(StringRef Symbol);
|
2012-09-07 00:23:42 +00:00
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
bool isMips64() const {
|
|
|
|
return (STI.getFeatureBits() & Mips::FeatureMips64) != 0;
|
|
|
|
}
|
|
|
|
|
2012-09-07 00:23:42 +00:00
|
|
|
bool isFP64() const {
|
|
|
|
return (STI.getFeatureBits() & Mips::FeatureFP64Bit) != 0;
|
|
|
|
}
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
int matchRegisterName(StringRef Symbol, bool is64BitReg);
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2013-02-20 23:11:17 +00:00
|
|
|
int matchCPURegisterName(StringRef Symbol);
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
int matchRegisterByNumber(unsigned RegNum, unsigned RegClass);
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2013-06-20 11:21:49 +00:00
|
|
|
int matchFPURegisterName(StringRef Name, FpFormatTy Format);
|
|
|
|
|
2012-09-07 00:23:42 +00:00
|
|
|
void setFpFormat(FpFormatTy Format) {
|
|
|
|
FpFormat = Format;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setDefaultFpFormat();
|
|
|
|
|
|
|
|
void setFpFormat(StringRef Format);
|
|
|
|
|
|
|
|
FpFormatTy getFpFormat() {return FpFormat;}
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
unsigned getReg(int RC, int RegNo);
|
2012-09-03 18:47:45 +00:00
|
|
|
|
2013-02-20 23:11:17 +00:00
|
|
|
int getATReg();
|
2013-03-22 00:05:30 +00:00
|
|
|
|
|
|
|
bool processInstruction(MCInst &Inst, SMLoc IDLoc,
|
|
|
|
SmallVectorImpl<MCInst> &Instructions);
|
2012-01-11 03:56:41 +00:00
|
|
|
public:
|
|
|
|
MipsAsmParser(MCSubtargetInfo &sti, MCAsmParser &parser)
|
2012-09-05 23:34:03 +00:00
|
|
|
: MCTargetAsmParser(), STI(sti), Parser(parser) {
|
|
|
|
// Initialize the set of available features.
|
|
|
|
setAvailableFeatures(ComputeAvailableFeatures(STI.getFeatureBits()));
|
2012-01-11 03:56:41 +00:00
|
|
|
}
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
MCAsmParser &getParser() const { return Parser; }
|
|
|
|
MCAsmLexer &getLexer() const { return Parser.getLexer(); }
|
|
|
|
|
2012-01-11 03:56:41 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-08-17 20:16:42 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
/// MipsOperand - Instances of this class represent a parsed Mips machine
|
|
|
|
/// instruction.
|
|
|
|
class MipsOperand : public MCParsedAsmOperand {
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
public:
|
|
|
|
enum RegisterKind {
|
|
|
|
Kind_None,
|
2013-08-06 23:08:38 +00:00
|
|
|
Kind_GPR32,
|
|
|
|
Kind_GPR64,
|
2013-01-12 01:03:14 +00:00
|
|
|
Kind_HWRegs,
|
|
|
|
Kind_FGR32Regs,
|
|
|
|
Kind_FGR64Regs,
|
2013-02-20 23:11:17 +00:00
|
|
|
Kind_AFGR64Regs,
|
2013-07-30 10:12:14 +00:00
|
|
|
Kind_CCRRegs,
|
2013-08-06 22:20:40 +00:00
|
|
|
Kind_FCCRegs,
|
|
|
|
Kind_ACRegsDSP
|
2013-01-12 01:03:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2012-08-17 20:16:42 +00:00
|
|
|
enum KindTy {
|
|
|
|
k_CondCode,
|
|
|
|
k_CoprocNum,
|
|
|
|
k_Immediate,
|
|
|
|
k_Memory,
|
|
|
|
k_PostIndexRegister,
|
|
|
|
k_Register,
|
|
|
|
k_Token
|
|
|
|
} Kind;
|
|
|
|
|
|
|
|
MipsOperand(KindTy K) : MCParsedAsmOperand(), Kind(K) {}
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2013-03-15 00:42:55 +00:00
|
|
|
struct Token {
|
|
|
|
const char *Data;
|
|
|
|
unsigned Length;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RegOp {
|
|
|
|
unsigned RegNum;
|
|
|
|
RegisterKind Kind;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ImmOp {
|
|
|
|
const MCExpr *Val;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MemOp {
|
|
|
|
unsigned Base;
|
|
|
|
const MCExpr *Off;
|
|
|
|
};
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
union {
|
2013-03-15 00:42:55 +00:00
|
|
|
struct Token Tok;
|
|
|
|
struct RegOp Reg;
|
|
|
|
struct ImmOp Imm;
|
|
|
|
struct MemOp Mem;
|
2012-09-05 23:34:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
SMLoc StartLoc, EndLoc;
|
|
|
|
|
2012-08-17 20:16:42 +00:00
|
|
|
public:
|
|
|
|
void addRegOperands(MCInst &Inst, unsigned N) const {
|
2012-09-05 23:34:03 +00:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getReg()));
|
2012-08-17 20:16:42 +00:00
|
|
|
}
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2012-08-17 20:16:42 +00:00
|
|
|
void addExpr(MCInst &Inst, const MCExpr *Expr) const{
|
2012-09-05 23:34:03 +00:00
|
|
|
// Add as immediate when possible. Null MCExpr = 0.
|
|
|
|
if (Expr == 0)
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(0));
|
|
|
|
else if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr))
|
|
|
|
Inst.addOperand(MCOperand::CreateImm(CE->getValue()));
|
|
|
|
else
|
|
|
|
Inst.addOperand(MCOperand::CreateExpr(Expr));
|
2012-08-17 20:16:42 +00:00
|
|
|
}
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2012-08-17 20:16:42 +00:00
|
|
|
void addImmOperands(MCInst &Inst, unsigned N) const {
|
2012-09-05 23:34:03 +00:00
|
|
|
assert(N == 1 && "Invalid number of operands!");
|
|
|
|
const MCExpr *Expr = getImm();
|
2013-04-18 00:41:53 +00:00
|
|
|
addExpr(Inst, Expr);
|
2012-08-17 20:16:42 +00:00
|
|
|
}
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2012-08-17 20:16:42 +00:00
|
|
|
void addMemOperands(MCInst &Inst, unsigned N) const {
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
assert(N == 2 && "Invalid number of operands!");
|
|
|
|
|
|
|
|
Inst.addOperand(MCOperand::CreateReg(getMemBase()));
|
|
|
|
|
|
|
|
const MCExpr *Expr = getMemOff();
|
2013-04-18 00:41:53 +00:00
|
|
|
addExpr(Inst, Expr);
|
2012-08-17 20:16:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isReg() const { return Kind == k_Register; }
|
|
|
|
bool isImm() const { return Kind == k_Immediate; }
|
|
|
|
bool isToken() const { return Kind == k_Token; }
|
|
|
|
bool isMem() const { return Kind == k_Memory; }
|
|
|
|
|
|
|
|
StringRef getToken() const {
|
|
|
|
assert(Kind == k_Token && "Invalid access!");
|
2012-09-05 23:34:03 +00:00
|
|
|
return StringRef(Tok.Data, Tok.Length);
|
2012-08-17 20:16:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned getReg() const {
|
|
|
|
assert((Kind == k_Register) && "Invalid access!");
|
2012-09-05 23:34:03 +00:00
|
|
|
return Reg.RegNum;
|
|
|
|
}
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
void setRegKind(RegisterKind RegKind) {
|
|
|
|
assert((Kind == k_Register) && "Invalid access!");
|
|
|
|
Reg.Kind = RegKind;
|
|
|
|
}
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
const MCExpr *getImm() const {
|
|
|
|
assert((Kind == k_Immediate) && "Invalid access!");
|
|
|
|
return Imm.Val;
|
|
|
|
}
|
|
|
|
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
unsigned getMemBase() const {
|
|
|
|
assert((Kind == k_Memory) && "Invalid access!");
|
|
|
|
return Mem.Base;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MCExpr *getMemOff() const {
|
|
|
|
assert((Kind == k_Memory) && "Invalid access!");
|
|
|
|
return Mem.Off;
|
|
|
|
}
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
static MipsOperand *CreateToken(StringRef Str, SMLoc S) {
|
|
|
|
MipsOperand *Op = new MipsOperand(k_Token);
|
|
|
|
Op->Tok.Data = Str.data();
|
|
|
|
Op->Tok.Length = Str.size();
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = S;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
|
|
|
static MipsOperand *CreateReg(unsigned RegNum, SMLoc S, SMLoc E) {
|
|
|
|
MipsOperand *Op = new MipsOperand(k_Register);
|
|
|
|
Op->Reg.RegNum = RegNum;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
|
|
|
static MipsOperand *CreateImm(const MCExpr *Val, SMLoc S, SMLoc E) {
|
|
|
|
MipsOperand *Op = new MipsOperand(k_Immediate);
|
|
|
|
Op->Imm.Val = Val;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
|
|
|
return Op;
|
2012-08-17 20:16:42 +00:00
|
|
|
}
|
|
|
|
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
static MipsOperand *CreateMem(unsigned Base, const MCExpr *Off,
|
|
|
|
SMLoc S, SMLoc E) {
|
|
|
|
MipsOperand *Op = new MipsOperand(k_Memory);
|
|
|
|
Op->Mem.Base = Base;
|
|
|
|
Op->Mem.Off = Off;
|
|
|
|
Op->StartLoc = S;
|
|
|
|
Op->EndLoc = E;
|
|
|
|
return Op;
|
|
|
|
}
|
|
|
|
|
2013-08-06 23:08:38 +00:00
|
|
|
bool isGPR32Asm() const {
|
|
|
|
return Kind == k_Register && Reg.Kind == Kind_GPR32;
|
2013-01-12 01:03:14 +00:00
|
|
|
}
|
2013-06-19 10:14:36 +00:00
|
|
|
void addRegAsmOperands(MCInst &Inst, unsigned N) const {
|
2013-01-12 01:03:14 +00:00
|
|
|
Inst.addOperand(MCOperand::CreateReg(Reg.RegNum));
|
|
|
|
}
|
|
|
|
|
2013-08-06 23:08:38 +00:00
|
|
|
bool isGPR64Asm() const {
|
|
|
|
return Kind == k_Register && Reg.Kind == Kind_GPR64;
|
2013-01-12 01:03:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isHWRegsAsm() const {
|
|
|
|
assert((Kind == k_Register) && "Invalid access!");
|
|
|
|
return Reg.Kind == Kind_HWRegs;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isCCRAsm() const {
|
|
|
|
assert((Kind == k_Register) && "Invalid access!");
|
|
|
|
return Reg.Kind == Kind_CCRRegs;
|
|
|
|
}
|
|
|
|
|
2013-06-24 10:05:34 +00:00
|
|
|
bool isAFGR64Asm() const {
|
|
|
|
return Kind == k_Register && Reg.Kind == Kind_AFGR64Regs;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isFGR64Asm() const {
|
|
|
|
return Kind == k_Register && Reg.Kind == Kind_FGR64Regs;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isFGR32Asm() const {
|
|
|
|
return (Kind == k_Register) && Reg.Kind == Kind_FGR32Regs;
|
|
|
|
}
|
|
|
|
|
2013-07-30 10:12:14 +00:00
|
|
|
bool isFCCRegsAsm() const {
|
|
|
|
return (Kind == k_Register) && Reg.Kind == Kind_FCCRegs;
|
|
|
|
}
|
|
|
|
|
2013-08-06 22:20:40 +00:00
|
|
|
bool isACRegsDSPAsm() const {
|
|
|
|
return Kind == k_Register && Reg.Kind == Kind_ACRegsDSP;
|
|
|
|
}
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
/// getStartLoc - Get the location of the first token of this operand.
|
2013-04-18 00:41:53 +00:00
|
|
|
SMLoc getStartLoc() const {
|
|
|
|
return StartLoc;
|
|
|
|
}
|
2012-09-05 23:34:03 +00:00
|
|
|
/// getEndLoc - Get the location of the last token of this operand.
|
2013-04-18 00:41:53 +00:00
|
|
|
SMLoc getEndLoc() const {
|
|
|
|
return EndLoc;
|
|
|
|
}
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2012-08-17 20:16:42 +00:00
|
|
|
virtual void print(raw_ostream &OS) const {
|
|
|
|
llvm_unreachable("unimplemented!");
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
}; // class MipsOperand
|
|
|
|
} // namespace
|
2012-08-17 20:16:42 +00:00
|
|
|
|
2013-03-22 00:05:30 +00:00
|
|
|
namespace llvm {
|
|
|
|
extern const MCInstrDesc MipsInsts[];
|
|
|
|
}
|
|
|
|
static const MCInstrDesc &getInstDesc(unsigned Opcode) {
|
|
|
|
return MipsInsts[Opcode];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MipsAsmParser::processInstruction(MCInst &Inst, SMLoc IDLoc,
|
2013-04-17 00:18:04 +00:00
|
|
|
SmallVectorImpl<MCInst> &Instructions) {
|
2013-03-22 00:05:30 +00:00
|
|
|
const MCInstrDesc &MCID = getInstDesc(Inst.getOpcode());
|
|
|
|
Inst.setLoc(IDLoc);
|
2013-04-25 23:31:35 +00:00
|
|
|
if (MCID.hasDelaySlot() && Options.isReorder()) {
|
|
|
|
// If this instruction has a delay slot and .set reorder is active,
|
|
|
|
// emit a NOP after it.
|
|
|
|
Instructions.push_back(Inst);
|
|
|
|
MCInst NopInst;
|
|
|
|
NopInst.setOpcode(Mips::SLL);
|
|
|
|
NopInst.addOperand(MCOperand::CreateReg(Mips::ZERO));
|
|
|
|
NopInst.addOperand(MCOperand::CreateReg(Mips::ZERO));
|
|
|
|
NopInst.addOperand(MCOperand::CreateImm(0));
|
|
|
|
Instructions.push_back(NopInst);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-03-22 00:05:30 +00:00
|
|
|
if (MCID.mayLoad() || MCID.mayStore()) {
|
|
|
|
// Check the offset of memory operand, if it is a symbol
|
2013-04-18 00:41:53 +00:00
|
|
|
// reference or immediate we may have to expand instructions.
|
|
|
|
for (unsigned i = 0; i < MCID.getNumOperands(); i++) {
|
2013-03-22 00:05:30 +00:00
|
|
|
const MCOperandInfo &OpInfo = MCID.OpInfo[i];
|
2013-04-18 00:41:53 +00:00
|
|
|
if ((OpInfo.OperandType == MCOI::OPERAND_MEMORY)
|
|
|
|
|| (OpInfo.OperandType == MCOI::OPERAND_UNKNOWN)) {
|
2013-03-22 00:05:30 +00:00
|
|
|
MCOperand &Op = Inst.getOperand(i);
|
|
|
|
if (Op.isImm()) {
|
|
|
|
int MemOffset = Op.getImm();
|
|
|
|
if (MemOffset < -32768 || MemOffset > 32767) {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Offset can't exceed 16bit value.
|
|
|
|
expandMemInst(Inst, IDLoc, Instructions, MCID.mayLoad(), true);
|
2013-03-22 00:05:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (Op.isExpr()) {
|
|
|
|
const MCExpr *Expr = Op.getExpr();
|
2013-04-18 00:41:53 +00:00
|
|
|
if (Expr->getKind() == MCExpr::SymbolRef) {
|
2013-03-22 00:05:30 +00:00
|
|
|
const MCSymbolRefExpr *SR =
|
2013-04-17 00:18:04 +00:00
|
|
|
static_cast<const MCSymbolRefExpr*>(Expr);
|
2013-03-22 00:05:30 +00:00
|
|
|
if (SR->getKind() == MCSymbolRefExpr::VK_None) {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Expand symbol.
|
|
|
|
expandMemInst(Inst, IDLoc, Instructions, MCID.mayLoad(), false);
|
2013-03-22 00:05:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-04-17 00:18:04 +00:00
|
|
|
} else if (!isEvaluated(Expr)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
expandMemInst(Inst, IDLoc, Instructions, MCID.mayLoad(), false);
|
2013-04-17 00:18:04 +00:00
|
|
|
return false;
|
2013-03-22 00:05:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
} // for
|
|
|
|
} // if load/store
|
2013-03-22 00:05:30 +00:00
|
|
|
|
|
|
|
if (needsExpansion(Inst))
|
|
|
|
expandInstruction(Inst, IDLoc, Instructions);
|
|
|
|
else
|
|
|
|
Instructions.push_back(Inst);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
bool MipsAsmParser::needsExpansion(MCInst &Inst) {
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
switch (Inst.getOpcode()) {
|
|
|
|
case Mips::LoadImm32Reg:
|
|
|
|
case Mips::LoadAddr32Imm:
|
|
|
|
case Mips::LoadAddr32Reg:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
}
|
|
|
|
}
|
2012-10-06 00:53:28 +00:00
|
|
|
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
void MipsAsmParser::expandInstruction(MCInst &Inst, SMLoc IDLoc,
|
2013-04-18 00:41:53 +00:00
|
|
|
SmallVectorImpl<MCInst> &Instructions) {
|
|
|
|
switch (Inst.getOpcode()) {
|
|
|
|
case Mips::LoadImm32Reg:
|
|
|
|
return expandLoadImm(Inst, IDLoc, Instructions);
|
|
|
|
case Mips::LoadAddr32Imm:
|
|
|
|
return expandLoadAddressImm(Inst, IDLoc, Instructions);
|
|
|
|
case Mips::LoadAddr32Reg:
|
|
|
|
return expandLoadAddressReg(Inst, IDLoc, Instructions);
|
|
|
|
}
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
}
|
2012-10-06 00:53:28 +00:00
|
|
|
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
void MipsAsmParser::expandLoadImm(MCInst &Inst, SMLoc IDLoc,
|
2013-04-18 00:41:53 +00:00
|
|
|
SmallVectorImpl<MCInst> &Instructions) {
|
2012-10-06 00:53:28 +00:00
|
|
|
MCInst tmpInst;
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
const MCOperand &ImmOp = Inst.getOperand(1);
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
assert(ImmOp.isImm() && "expected immediate operand kind");
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
const MCOperand &RegOp = Inst.getOperand(0);
|
|
|
|
assert(RegOp.isReg() && "expected register operand kind");
|
|
|
|
|
|
|
|
int ImmValue = ImmOp.getImm();
|
2012-10-06 00:53:28 +00:00
|
|
|
tmpInst.setLoc(IDLoc);
|
2013-04-18 00:41:53 +00:00
|
|
|
if (0 <= ImmValue && ImmValue <= 65535) {
|
|
|
|
// For 0 <= j <= 65535.
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
// li d,j => ori d,$zero,j
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::ORi);
|
2012-10-06 00:53:28 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
2013-04-18 00:41:53 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(Mips::ZERO));
|
2012-10-06 00:53:28 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateImm(ImmValue));
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
Instructions.push_back(tmpInst);
|
2013-04-18 00:41:53 +00:00
|
|
|
} else if (ImmValue < 0 && ImmValue >= -32768) {
|
|
|
|
// For -32768 <= j < 0.
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
// li d,j => addiu d,$zero,j
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::ADDiu);
|
2012-10-06 00:53:28 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
2013-04-18 00:41:53 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(Mips::ZERO));
|
2012-10-06 00:53:28 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateImm(ImmValue));
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
} else {
|
2013-04-18 00:41:53 +00:00
|
|
|
// For any other value of j that is representable as a 32-bit integer.
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
// li d,j => lui d,hi16(j)
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
// ori d,d,lo16(j)
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::LUi);
|
2012-10-06 00:53:28 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateImm((ImmValue & 0xffff0000) >> 16));
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
Instructions.push_back(tmpInst);
|
2012-10-06 00:53:28 +00:00
|
|
|
tmpInst.clear();
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::ORi);
|
2012-10-06 00:53:28 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateImm(ImmValue & 0xffff));
|
|
|
|
tmpInst.setLoc(IDLoc);
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
}
|
|
|
|
}
|
2012-10-06 00:53:28 +00:00
|
|
|
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
void MipsAsmParser::expandLoadAddressReg(MCInst &Inst, SMLoc IDLoc,
|
2013-04-18 00:41:53 +00:00
|
|
|
SmallVectorImpl<MCInst> &Instructions) {
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
MCInst tmpInst;
|
|
|
|
const MCOperand &ImmOp = Inst.getOperand(2);
|
|
|
|
assert(ImmOp.isImm() && "expected immediate operand kind");
|
|
|
|
const MCOperand &SrcRegOp = Inst.getOperand(1);
|
|
|
|
assert(SrcRegOp.isReg() && "expected register operand kind");
|
|
|
|
const MCOperand &DstRegOp = Inst.getOperand(0);
|
|
|
|
assert(DstRegOp.isReg() && "expected register operand kind");
|
|
|
|
int ImmValue = ImmOp.getImm();
|
2013-04-18 00:41:53 +00:00
|
|
|
if (-32768 <= ImmValue && ImmValue <= 65535) {
|
|
|
|
// For -32768 <= j <= 65535.
|
|
|
|
// la d,j(s) => addiu d,s,j
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::ADDiu);
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(DstRegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(SrcRegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateImm(ImmValue));
|
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
} else {
|
2013-04-18 00:41:53 +00:00
|
|
|
// For any other value of j that is representable as a 32-bit integer.
|
|
|
|
// la d,j(s) => lui d,hi16(j)
|
|
|
|
// ori d,d,lo16(j)
|
|
|
|
// addu d,d,s
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::LUi);
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(DstRegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateImm((ImmValue & 0xffff0000) >> 16));
|
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
tmpInst.clear();
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::ORi);
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(DstRegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(DstRegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateImm(ImmValue & 0xffff));
|
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
tmpInst.clear();
|
|
|
|
tmpInst.setOpcode(Mips::ADDu);
|
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(DstRegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(DstRegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(SrcRegOp.getReg()));
|
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MipsAsmParser::expandLoadAddressImm(MCInst &Inst, SMLoc IDLoc,
|
2013-04-18 00:41:53 +00:00
|
|
|
SmallVectorImpl<MCInst> &Instructions) {
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
MCInst tmpInst;
|
|
|
|
const MCOperand &ImmOp = Inst.getOperand(1);
|
|
|
|
assert(ImmOp.isImm() && "expected immediate operand kind");
|
|
|
|
const MCOperand &RegOp = Inst.getOperand(0);
|
|
|
|
assert(RegOp.isReg() && "expected register operand kind");
|
|
|
|
int ImmValue = ImmOp.getImm();
|
2013-04-18 00:41:53 +00:00
|
|
|
if (-32768 <= ImmValue && ImmValue <= 65535) {
|
|
|
|
// For -32768 <= j <= 65535.
|
|
|
|
// la d,j => addiu d,$zero,j
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
tmpInst.setOpcode(Mips::ADDiu);
|
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
2013-04-18 00:41:53 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(Mips::ZERO));
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateImm(ImmValue));
|
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
} else {
|
2013-04-18 00:41:53 +00:00
|
|
|
// For any other value of j that is representable as a 32-bit integer.
|
|
|
|
// la d,j => lui d,hi16(j)
|
|
|
|
// ori d,d,lo16(j)
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::LUi);
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateImm((ImmValue & 0xffff0000) >> 16));
|
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
tmpInst.clear();
|
2013-01-12 01:03:14 +00:00
|
|
|
tmpInst.setOpcode(Mips::ORi);
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateReg(RegOp.getReg()));
|
|
|
|
tmpInst.addOperand(MCOperand::CreateImm(ImmValue & 0xffff));
|
|
|
|
Instructions.push_back(tmpInst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-22 00:05:30 +00:00
|
|
|
void MipsAsmParser::expandMemInst(MCInst &Inst, SMLoc IDLoc,
|
2013-04-18 00:41:53 +00:00
|
|
|
SmallVectorImpl<MCInst> &Instructions, bool isLoad, bool isImmOpnd) {
|
2013-03-22 00:05:30 +00:00
|
|
|
const MCSymbolRefExpr *SR;
|
|
|
|
MCInst TempInst;
|
2013-04-18 00:41:53 +00:00
|
|
|
unsigned ImmOffset, HiOffset, LoOffset;
|
2013-03-22 00:05:30 +00:00
|
|
|
const MCExpr *ExprOffset;
|
|
|
|
unsigned TmpRegNum;
|
2013-08-06 23:08:38 +00:00
|
|
|
unsigned AtRegNum = getReg((isMips64()) ? Mips::GPR64RegClassID
|
|
|
|
: Mips::GPR32RegClassID, getATReg());
|
2013-04-18 00:41:53 +00:00
|
|
|
// 1st operand is either the source or destination register.
|
2013-03-22 00:05:30 +00:00
|
|
|
assert(Inst.getOperand(0).isReg() && "expected register operand kind");
|
|
|
|
unsigned RegOpNum = Inst.getOperand(0).getReg();
|
2013-04-18 00:41:53 +00:00
|
|
|
// 2nd operand is the base register.
|
2013-03-22 00:05:30 +00:00
|
|
|
assert(Inst.getOperand(1).isReg() && "expected register operand kind");
|
|
|
|
unsigned BaseRegNum = Inst.getOperand(1).getReg();
|
2013-04-18 00:41:53 +00:00
|
|
|
// 3rd operand is either an immediate or expression.
|
2013-03-22 00:05:30 +00:00
|
|
|
if (isImmOpnd) {
|
|
|
|
assert(Inst.getOperand(2).isImm() && "expected immediate operand kind");
|
|
|
|
ImmOffset = Inst.getOperand(2).getImm();
|
|
|
|
LoOffset = ImmOffset & 0x0000ffff;
|
|
|
|
HiOffset = (ImmOffset & 0xffff0000) >> 16;
|
2013-04-18 00:41:53 +00:00
|
|
|
// If msb of LoOffset is 1(negative number) we must increment HiOffset.
|
2013-03-22 00:05:30 +00:00
|
|
|
if (LoOffset & 0x8000)
|
|
|
|
HiOffset++;
|
2013-04-18 00:41:53 +00:00
|
|
|
} else
|
2013-03-22 00:05:30 +00:00
|
|
|
ExprOffset = Inst.getOperand(2).getExpr();
|
2013-04-18 00:41:53 +00:00
|
|
|
// All instructions will have the same location.
|
2013-03-22 00:05:30 +00:00
|
|
|
TempInst.setLoc(IDLoc);
|
|
|
|
// 1st instruction in expansion is LUi. For load instruction we can use
|
|
|
|
// the dst register as a temporary if base and dst are different,
|
2013-04-18 00:41:53 +00:00
|
|
|
// but for stores we must use $at.
|
|
|
|
TmpRegNum = (isLoad && (BaseRegNum != RegOpNum)) ? RegOpNum : AtRegNum;
|
2013-03-22 00:05:30 +00:00
|
|
|
TempInst.setOpcode(Mips::LUi);
|
|
|
|
TempInst.addOperand(MCOperand::CreateReg(TmpRegNum));
|
|
|
|
if (isImmOpnd)
|
|
|
|
TempInst.addOperand(MCOperand::CreateImm(HiOffset));
|
|
|
|
else {
|
|
|
|
if (ExprOffset->getKind() == MCExpr::SymbolRef) {
|
|
|
|
SR = static_cast<const MCSymbolRefExpr*>(ExprOffset);
|
2013-04-18 00:41:53 +00:00
|
|
|
const MCSymbolRefExpr *HiExpr = MCSymbolRefExpr::Create(
|
|
|
|
SR->getSymbol().getName(), MCSymbolRefExpr::VK_Mips_ABS_HI,
|
|
|
|
getContext());
|
2013-03-22 00:05:30 +00:00
|
|
|
TempInst.addOperand(MCOperand::CreateExpr(HiExpr));
|
2013-04-17 00:18:04 +00:00
|
|
|
} else {
|
2013-04-18 00:41:53 +00:00
|
|
|
const MCExpr *HiExpr = evaluateRelocExpr(ExprOffset, "hi");
|
2013-04-17 00:18:04 +00:00
|
|
|
TempInst.addOperand(MCOperand::CreateExpr(HiExpr));
|
2013-03-22 00:05:30 +00:00
|
|
|
}
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
// Add the instruction to the list.
|
2013-03-22 00:05:30 +00:00
|
|
|
Instructions.push_back(TempInst);
|
2013-04-18 00:41:53 +00:00
|
|
|
// Prepare TempInst for next instruction.
|
2013-03-22 00:05:30 +00:00
|
|
|
TempInst.clear();
|
2013-04-18 00:41:53 +00:00
|
|
|
// Add temp register to base.
|
2013-03-22 00:05:30 +00:00
|
|
|
TempInst.setOpcode(Mips::ADDu);
|
|
|
|
TempInst.addOperand(MCOperand::CreateReg(TmpRegNum));
|
|
|
|
TempInst.addOperand(MCOperand::CreateReg(TmpRegNum));
|
|
|
|
TempInst.addOperand(MCOperand::CreateReg(BaseRegNum));
|
|
|
|
Instructions.push_back(TempInst);
|
|
|
|
TempInst.clear();
|
2013-04-17 00:18:04 +00:00
|
|
|
// And finaly, create original instruction with low part
|
2013-04-18 00:41:53 +00:00
|
|
|
// of offset and new base.
|
2013-03-22 00:05:30 +00:00
|
|
|
TempInst.setOpcode(Inst.getOpcode());
|
|
|
|
TempInst.addOperand(MCOperand::CreateReg(RegOpNum));
|
|
|
|
TempInst.addOperand(MCOperand::CreateReg(TmpRegNum));
|
|
|
|
if (isImmOpnd)
|
|
|
|
TempInst.addOperand(MCOperand::CreateImm(LoOffset));
|
|
|
|
else {
|
|
|
|
if (ExprOffset->getKind() == MCExpr::SymbolRef) {
|
2013-04-18 00:41:53 +00:00
|
|
|
const MCSymbolRefExpr *LoExpr = MCSymbolRefExpr::Create(
|
|
|
|
SR->getSymbol().getName(), MCSymbolRefExpr::VK_Mips_ABS_LO,
|
|
|
|
getContext());
|
2013-03-22 00:05:30 +00:00
|
|
|
TempInst.addOperand(MCOperand::CreateExpr(LoExpr));
|
2013-04-17 00:18:04 +00:00
|
|
|
} else {
|
2013-04-18 00:41:53 +00:00
|
|
|
const MCExpr *LoExpr = evaluateRelocExpr(ExprOffset, "lo");
|
2013-04-17 00:18:04 +00:00
|
|
|
TempInst.addOperand(MCOperand::CreateExpr(LoExpr));
|
2013-03-22 00:05:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Instructions.push_back(TempInst);
|
|
|
|
TempInst.clear();
|
|
|
|
}
|
|
|
|
|
2012-01-11 03:56:41 +00:00
|
|
|
bool MipsAsmParser::
|
2012-10-13 00:26:04 +00:00
|
|
|
MatchAndEmitInstruction(SMLoc IDLoc, unsigned &Opcode,
|
2012-01-11 03:56:41 +00:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2012-10-13 00:26:04 +00:00
|
|
|
MCStreamer &Out, unsigned &ErrorInfo,
|
|
|
|
bool MatchingInlineAsm) {
|
2012-09-05 23:34:03 +00:00
|
|
|
MCInst Inst;
|
2013-03-22 00:05:30 +00:00
|
|
|
SmallVector<MCInst, 8> Instructions;
|
2012-10-12 22:53:36 +00:00
|
|
|
unsigned MatchResult = MatchInstructionImpl(Operands, Inst, ErrorInfo,
|
2012-10-13 00:26:04 +00:00
|
|
|
MatchingInlineAsm);
|
2012-09-05 23:34:03 +00:00
|
|
|
|
|
|
|
switch (MatchResult) {
|
2013-04-18 00:41:53 +00:00
|
|
|
default:
|
|
|
|
break;
|
2012-09-05 23:34:03 +00:00
|
|
|
case Match_Success: {
|
2013-04-18 00:41:53 +00:00
|
|
|
if (processInstruction(Inst, IDLoc, Instructions))
|
2013-03-22 00:05:30 +00:00
|
|
|
return true;
|
2013-04-18 00:41:53 +00:00
|
|
|
for (unsigned i = 0; i < Instructions.size(); i++)
|
2013-03-22 00:05:30 +00:00
|
|
|
Out.EmitInstruction(Instructions[i]);
|
2012-09-05 23:34:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
case Match_MissingFeature:
|
|
|
|
Error(IDLoc, "instruction requires a CPU feature not currently enabled");
|
|
|
|
return true;
|
|
|
|
case Match_InvalidOperand: {
|
|
|
|
SMLoc ErrorLoc = IDLoc;
|
|
|
|
if (ErrorInfo != ~0U) {
|
|
|
|
if (ErrorInfo >= Operands.size())
|
|
|
|
return Error(IDLoc, "too few operands for instruction");
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
ErrorLoc = ((MipsOperand*) Operands[ErrorInfo])->getStartLoc();
|
|
|
|
if (ErrorLoc == SMLoc())
|
|
|
|
ErrorLoc = IDLoc;
|
2012-09-05 23:34:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Error(ErrorLoc, "invalid operand for instruction");
|
|
|
|
}
|
|
|
|
case Match_MnemonicFail:
|
|
|
|
return Error(IDLoc, "invalid instruction");
|
|
|
|
}
|
2012-01-11 03:56:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-20 23:11:17 +00:00
|
|
|
int MipsAsmParser::matchCPURegisterName(StringRef Name) {
|
2012-10-09 16:27:43 +00:00
|
|
|
int CC;
|
2013-02-20 23:11:17 +00:00
|
|
|
|
|
|
|
if (Name == "at")
|
|
|
|
return getATReg();
|
|
|
|
|
2012-10-09 16:27:43 +00:00
|
|
|
CC = StringSwitch<unsigned>(Name)
|
2013-02-20 23:11:17 +00:00
|
|
|
.Case("zero", 0)
|
|
|
|
.Case("a0", 4)
|
|
|
|
.Case("a1", 5)
|
|
|
|
.Case("a2", 6)
|
|
|
|
.Case("a3", 7)
|
|
|
|
.Case("v0", 2)
|
|
|
|
.Case("v1", 3)
|
|
|
|
.Case("s0", 16)
|
|
|
|
.Case("s1", 17)
|
|
|
|
.Case("s2", 18)
|
|
|
|
.Case("s3", 19)
|
|
|
|
.Case("s4", 20)
|
|
|
|
.Case("s5", 21)
|
|
|
|
.Case("s6", 22)
|
|
|
|
.Case("s7", 23)
|
|
|
|
.Case("k0", 26)
|
|
|
|
.Case("k1", 27)
|
|
|
|
.Case("sp", 29)
|
|
|
|
.Case("fp", 30)
|
|
|
|
.Case("gp", 28)
|
|
|
|
.Case("ra", 31)
|
|
|
|
.Case("t0", 8)
|
|
|
|
.Case("t1", 9)
|
|
|
|
.Case("t2", 10)
|
|
|
|
.Case("t3", 11)
|
|
|
|
.Case("t4", 12)
|
|
|
|
.Case("t5", 13)
|
|
|
|
.Case("t6", 14)
|
|
|
|
.Case("t7", 15)
|
|
|
|
.Case("t8", 24)
|
|
|
|
.Case("t9", 25)
|
|
|
|
.Default(-1);
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
// Although SGI documentation just cuts out t0-t3 for n32/n64,
|
2013-02-20 23:11:17 +00:00
|
|
|
// GNU pushes the values of t0-t3 to override the o32/o64 values for t4-t7
|
|
|
|
// We are supporting both cases, so for t0-t3 we'll just push them to t4-t7.
|
2013-04-18 00:41:53 +00:00
|
|
|
if (isMips64() && 8 <= CC && CC <= 11)
|
2013-02-20 23:11:17 +00:00
|
|
|
CC += 4;
|
|
|
|
|
|
|
|
if (CC == -1 && isMips64())
|
2012-10-09 16:27:43 +00:00
|
|
|
CC = StringSwitch<unsigned>(Name)
|
2013-02-20 23:11:17 +00:00
|
|
|
.Case("a4", 8)
|
|
|
|
.Case("a5", 9)
|
|
|
|
.Case("a6", 10)
|
|
|
|
.Case("a7", 11)
|
|
|
|
.Case("kt0", 26)
|
|
|
|
.Case("kt1", 27)
|
|
|
|
.Case("s8", 30)
|
2012-10-09 16:27:43 +00:00
|
|
|
.Default(-1);
|
|
|
|
|
2013-02-20 23:11:17 +00:00
|
|
|
return CC;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
|
2013-06-20 11:21:49 +00:00
|
|
|
int MipsAsmParser::matchFPURegisterName(StringRef Name, FpFormatTy Format) {
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2012-09-07 00:23:42 +00:00
|
|
|
if (Name[0] == 'f') {
|
|
|
|
StringRef NumString = Name.substr(1);
|
|
|
|
unsigned IntVal;
|
2013-04-18 00:41:53 +00:00
|
|
|
if (NumString.getAsInteger(10, IntVal))
|
|
|
|
return -1; // This is not an integer.
|
2012-09-07 00:23:42 +00:00
|
|
|
if (IntVal > 31)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (Format == FP_FORMAT_S || Format == FP_FORMAT_W)
|
|
|
|
return getReg(Mips::FGR32RegClassID, IntVal);
|
|
|
|
if (Format == FP_FORMAT_D) {
|
2013-04-18 00:41:53 +00:00
|
|
|
if (isFP64()) {
|
2012-09-07 00:23:42 +00:00
|
|
|
return getReg(Mips::FGR64RegClassID, IntVal);
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
// Only even numbers available as register pairs.
|
|
|
|
if ((IntVal > 31) || (IntVal % 2 != 0))
|
2012-09-07 00:23:42 +00:00
|
|
|
return -1;
|
2013-04-18 00:41:53 +00:00
|
|
|
return getReg(Mips::AFGR64RegClassID, IntVal / 2);
|
2012-09-07 00:23:42 +00:00
|
|
|
}
|
|
|
|
}
|
2012-09-05 23:34:03 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
|
2013-06-20 11:21:49 +00:00
|
|
|
int MipsAsmParser::matchRegisterName(StringRef Name, bool is64BitReg) {
|
|
|
|
|
|
|
|
if (Name.equals("fcc0"))
|
|
|
|
return Mips::FCC0;
|
|
|
|
|
|
|
|
int CC;
|
|
|
|
CC = matchCPURegisterName(Name);
|
|
|
|
if (CC != -1)
|
2013-08-06 23:08:38 +00:00
|
|
|
return matchRegisterByNumber(CC, is64BitReg ? Mips::GPR64RegClassID
|
|
|
|
: Mips::GPR32RegClassID);
|
2013-06-20 11:21:49 +00:00
|
|
|
return matchFPURegisterName(Name, getFpFormat());
|
|
|
|
}
|
|
|
|
|
2012-09-07 00:23:42 +00:00
|
|
|
void MipsAsmParser::setDefaultFpFormat() {
|
|
|
|
|
|
|
|
if (isMips64() || isFP64())
|
|
|
|
FpFormat = FP_FORMAT_D;
|
|
|
|
else
|
|
|
|
FpFormat = FP_FORMAT_S;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MipsAsmParser::setFpFormat(StringRef Format) {
|
|
|
|
|
|
|
|
FpFormat = StringSwitch<FpFormatTy>(Format.lower())
|
|
|
|
.Case(".s", FP_FORMAT_S)
|
|
|
|
.Case(".d", FP_FORMAT_D)
|
|
|
|
.Case(".l", FP_FORMAT_L)
|
|
|
|
.Case(".w", FP_FORMAT_W)
|
|
|
|
.Default(FP_FORMAT_NONE);
|
|
|
|
}
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2012-10-04 02:29:46 +00:00
|
|
|
bool MipsAssemblerOptions::setATReg(unsigned Reg) {
|
|
|
|
if (Reg > 31)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
aTReg = Reg;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-20 23:11:17 +00:00
|
|
|
int MipsAsmParser::getATReg() {
|
|
|
|
return Options.getATRegNum();
|
2012-10-04 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
unsigned MipsAsmParser::getReg(int RC, int RegNo) {
|
2013-06-18 07:20:20 +00:00
|
|
|
return *(getContext().getRegisterInfo()->getRegClass(RC).begin() + RegNo);
|
2012-09-05 23:34:03 +00:00
|
|
|
}
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
int MipsAsmParser::matchRegisterByNumber(unsigned RegNum, unsigned RegClass) {
|
2012-09-05 23:34:03 +00:00
|
|
|
|
|
|
|
if (RegNum > 31)
|
|
|
|
return -1;
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
return getReg(RegClass, RegNum);
|
2012-09-05 23:34:03 +00:00
|
|
|
}
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
int MipsAsmParser::tryParseRegister(bool is64BitReg) {
|
2012-09-05 23:34:03 +00:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
int RegNum = -1;
|
|
|
|
|
|
|
|
if (Tok.is(AsmToken::Identifier)) {
|
|
|
|
std::string lowerCase = Tok.getString().lower();
|
2013-01-12 01:03:14 +00:00
|
|
|
RegNum = matchRegisterName(lowerCase, is64BitReg);
|
2012-09-05 23:34:03 +00:00
|
|
|
} else if (Tok.is(AsmToken::Integer))
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
RegNum = matchRegisterByNumber(static_cast<unsigned>(Tok.getIntVal()),
|
2013-08-06 23:08:38 +00:00
|
|
|
is64BitReg ? Mips::GPR64RegClassID : Mips::GPR32RegClassID);
|
2012-09-05 23:34:03 +00:00
|
|
|
return RegNum;
|
|
|
|
}
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
bool MipsAsmParser::tryParseRegisterOperand(
|
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands, bool is64BitReg) {
|
2012-09-05 23:34:03 +00:00
|
|
|
|
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
int RegNo = -1;
|
2012-09-07 00:23:42 +00:00
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
RegNo = tryParseRegister(is64BitReg);
|
2012-09-05 23:34:03 +00:00
|
|
|
if (RegNo == -1)
|
|
|
|
return true;
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
Operands.push_back(MipsOperand::CreateReg(RegNo, S,
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.getTok().getLoc()));
|
2012-09-05 23:34:03 +00:00
|
|
|
Parser.Lex(); // Eat register token.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MipsAsmParser::ParseOperand(SmallVectorImpl<MCParsedAsmOperand*>&Operands,
|
|
|
|
StringRef Mnemonic) {
|
Implement methods that enable expansion of load immediate
macro instruction (li) in the assembler.
We have identified three possible expansions depending on
the size of immediate operand:
1) for 0 ≤ j ≤ 65535.
li d,j =>
ori d,$zero,j
2) for −32768 ≤ j < 0.
li d,j =>
addiu d,$zero,j
3) for any other value of j that is representable as a 32-bit integer.
li d,j =>
lui d,hi16(j)
ori d,d,lo16(j)
All of the above have been implemented in ths patch.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165199 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-04 04:03:53 +00:00
|
|
|
// Check if the current operand has a custom associated parser, if so, try to
|
|
|
|
// custom parse the operand, or fallback to the general approach.
|
2012-09-05 23:34:03 +00:00
|
|
|
OperandMatchResultTy ResTy = MatchOperandParserImpl(Operands, Mnemonic);
|
|
|
|
if (ResTy == MatchOperand_Success)
|
|
|
|
return false;
|
|
|
|
// If there wasn't a custom match, try the generic matcher below. Otherwise,
|
|
|
|
// there was a match, but an error occurred, in which case, just return that
|
|
|
|
// the operand parsing failed.
|
|
|
|
if (ResTy == MatchOperand_ParseFail)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
switch (getLexer().getKind()) {
|
|
|
|
default:
|
|
|
|
Error(Parser.getTok().getLoc(), "unexpected token in operand");
|
|
|
|
return true;
|
|
|
|
case AsmToken::Dollar: {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Parse the register.
|
2012-09-05 23:34:03 +00:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
Parser.Lex(); // Eat dollar token.
|
2013-04-18 00:41:53 +00:00
|
|
|
// Parse the register operand.
|
2013-01-12 01:03:14 +00:00
|
|
|
if (!tryParseRegisterOperand(Operands, isMips64())) {
|
2012-09-05 23:34:03 +00:00
|
|
|
if (getLexer().is(AsmToken::LParen)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Check if it is indexed addressing operand.
|
2012-09-05 23:34:03 +00:00
|
|
|
Operands.push_back(MipsOperand::CreateToken("(", S));
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the parenthesis.
|
2012-09-05 23:34:03 +00:00
|
|
|
if (getLexer().isNot(AsmToken::Dollar))
|
|
|
|
return true;
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the dollar
|
2013-01-12 01:03:14 +00:00
|
|
|
if (tryParseRegisterOperand(Operands, isMips64()))
|
2012-09-05 23:34:03 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!getLexer().is(AsmToken::RParen))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
S = Parser.getTok().getLoc();
|
|
|
|
Operands.push_back(MipsOperand::CreateToken(")", S));
|
|
|
|
Parser.Lex();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
// Maybe it is a symbol reference.
|
2012-09-05 23:34:03 +00:00
|
|
|
StringRef Identifier;
|
2013-02-20 22:21:35 +00:00
|
|
|
if (Parser.parseIdentifier(Identifier))
|
2012-09-05 23:34:03 +00:00
|
|
|
return true;
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2012-09-07 09:47:42 +00:00
|
|
|
MCSymbol *Sym = getContext().GetOrCreateSymbol("$" + Identifier);
|
2012-09-05 23:34:03 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
// Otherwise create a symbol reference.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
const MCExpr *Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
|
2012-09-05 23:34:03 +00:00
|
|
|
getContext());
|
|
|
|
|
|
|
|
Operands.push_back(MipsOperand::CreateImm(Res, S, E));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
case AsmToken::Identifier:
|
2013-03-21 21:44:16 +00:00
|
|
|
// Look for the existing symbol, we should check if
|
2013-04-18 00:41:53 +00:00
|
|
|
// we need to assigne the propper RegisterKind.
|
|
|
|
if (searchSymbolAlias(Operands, MipsOperand::Kind_None))
|
|
|
|
return false;
|
|
|
|
// Else drop to expression parsing.
|
2012-09-05 23:34:03 +00:00
|
|
|
case AsmToken::LParen:
|
|
|
|
case AsmToken::Minus:
|
|
|
|
case AsmToken::Plus:
|
|
|
|
case AsmToken::Integer:
|
|
|
|
case AsmToken::String: {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Quoted label names.
|
2012-09-05 23:34:03 +00:00
|
|
|
const MCExpr *IdVal;
|
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
2013-02-20 22:21:35 +00:00
|
|
|
if (getParser().parseExpression(IdVal))
|
2012-09-05 23:34:03 +00:00
|
|
|
return true;
|
2013-01-12 01:03:14 +00:00
|
|
|
SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
|
2012-09-05 23:34:03 +00:00
|
|
|
Operands.push_back(MipsOperand::CreateImm(IdVal, S, E));
|
|
|
|
return false;
|
|
|
|
}
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
case AsmToken::Percent: {
|
2013-04-18 00:41:53 +00:00
|
|
|
// It is a symbol reference or constant expression.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
const MCExpr *IdVal;
|
2013-04-18 00:41:53 +00:00
|
|
|
SMLoc S = Parser.getTok().getLoc(); // Start location of the operand.
|
2013-01-12 01:03:14 +00:00
|
|
|
if (parseRelocOperand(IdVal))
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
return true;
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
|
|
|
|
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
Operands.push_back(MipsOperand::CreateImm(IdVal, S, E));
|
|
|
|
return false;
|
2012-10-04 02:29:46 +00:00
|
|
|
} // case AsmToken::Percent
|
|
|
|
} // switch(getLexer().getKind())
|
2012-01-11 03:56:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-04-17 00:18:04 +00:00
|
|
|
const MCExpr* MipsAsmParser::evaluateRelocExpr(const MCExpr *Expr,
|
|
|
|
StringRef RelocStr) {
|
|
|
|
const MCExpr *Res;
|
2013-04-18 00:41:53 +00:00
|
|
|
// Check the type of the expression.
|
2013-04-17 00:18:04 +00:00
|
|
|
if (const MCConstantExpr *MCE = dyn_cast<MCConstantExpr>(Expr)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
// It's a constant, evaluate lo or hi value.
|
2013-04-17 00:18:04 +00:00
|
|
|
if (RelocStr == "lo") {
|
|
|
|
short Val = MCE->getValue();
|
|
|
|
Res = MCConstantExpr::Create(Val, getContext());
|
|
|
|
} else if (RelocStr == "hi") {
|
|
|
|
int Val = MCE->getValue();
|
|
|
|
int LoSign = Val & 0x8000;
|
|
|
|
Val = (Val & 0xffff0000) >> 16;
|
|
|
|
// Lower part is treated as a signed int, so if it is negative
|
2013-04-18 00:41:53 +00:00
|
|
|
// we must add 1 to the hi part to compensate.
|
2013-04-17 00:18:04 +00:00
|
|
|
if (LoSign)
|
|
|
|
Val++;
|
|
|
|
Res = MCConstantExpr::Create(Val, getContext());
|
2013-04-17 06:45:11 +00:00
|
|
|
} else {
|
|
|
|
llvm_unreachable("Invalid RelocStr value");
|
2013-04-17 00:18:04 +00:00
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
return Res;
|
2013-04-17 00:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (const MCSymbolRefExpr *MSRE = dyn_cast<MCSymbolRefExpr>(Expr)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
// It's a symbol, create a symbolic expression from the symbol.
|
2013-04-17 00:18:04 +00:00
|
|
|
StringRef Symbol = MSRE->getSymbol().getName();
|
|
|
|
MCSymbolRefExpr::VariantKind VK = getVariantKind(RelocStr);
|
2013-04-18 00:41:53 +00:00
|
|
|
Res = MCSymbolRefExpr::Create(Symbol, VK, getContext());
|
2013-04-17 00:18:04 +00:00
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(Expr)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
const MCExpr *LExp = evaluateRelocExpr(BE->getLHS(), RelocStr);
|
|
|
|
const MCExpr *RExp = evaluateRelocExpr(BE->getRHS(), RelocStr);
|
2013-04-17 00:18:04 +00:00
|
|
|
Res = MCBinaryExpr::Create(BE->getOpcode(), LExp, RExp, getContext());
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (const MCUnaryExpr *UN = dyn_cast<MCUnaryExpr>(Expr)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
const MCExpr *UnExp = evaluateRelocExpr(UN->getSubExpr(), RelocStr);
|
|
|
|
Res = MCUnaryExpr::Create(UN->getOpcode(), UnExp, getContext());
|
|
|
|
return Res;
|
2013-04-17 00:18:04 +00:00
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
// Just return the original expression.
|
2013-04-17 00:18:04 +00:00
|
|
|
return Expr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MipsAsmParser::isEvaluated(const MCExpr *Expr) {
|
|
|
|
|
|
|
|
switch (Expr->getKind()) {
|
|
|
|
case MCExpr::Constant:
|
|
|
|
return true;
|
|
|
|
case MCExpr::SymbolRef:
|
|
|
|
return (cast<MCSymbolRefExpr>(Expr)->getKind() != MCSymbolRefExpr::VK_None);
|
|
|
|
case MCExpr::Binary:
|
|
|
|
if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(Expr)) {
|
|
|
|
if (!isEvaluated(BE->getLHS()))
|
|
|
|
return false;
|
|
|
|
return isEvaluated(BE->getRHS());
|
|
|
|
}
|
|
|
|
case MCExpr::Unary:
|
|
|
|
return isEvaluated(cast<MCUnaryExpr>(Expr)->getSubExpr());
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
bool MipsAsmParser::parseRelocOperand(const MCExpr *&Res) {
|
|
|
|
Parser.Lex(); // Eat the % token.
|
|
|
|
const AsmToken &Tok = Parser.getTok(); // Get next token, operation.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
if (Tok.isNot(AsmToken::Identifier))
|
|
|
|
return true;
|
|
|
|
|
2012-09-07 09:47:42 +00:00
|
|
|
std::string Str = Tok.getIdentifier().str();
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the identifier.
|
|
|
|
// Now make an expression from the rest of the operand.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
const MCExpr *IdVal;
|
2013-01-12 01:03:14 +00:00
|
|
|
SMLoc EndLoc;
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
|
|
|
if (getLexer().getKind() == AsmToken::LParen) {
|
|
|
|
while (1) {
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the '(' token.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
if (getLexer().getKind() == AsmToken::Percent) {
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the % token.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
const AsmToken &nextTok = Parser.getTok();
|
|
|
|
if (nextTok.isNot(AsmToken::Identifier))
|
|
|
|
return true;
|
2012-09-07 09:47:42 +00:00
|
|
|
Str += "(%";
|
|
|
|
Str += nextTok.getIdentifier();
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the identifier.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
if (getLexer().getKind() != AsmToken::LParen)
|
|
|
|
return true;
|
|
|
|
} else
|
|
|
|
break;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
if (getParser().parseParenExpression(IdVal, EndLoc))
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
return true;
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
while (getLexer().getKind() == AsmToken::RParen)
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the ')' token.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
|
|
|
} else
|
2013-04-18 00:41:53 +00:00
|
|
|
return true; // Parenthesis must follow the relocation operand.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
Res = evaluateRelocExpr(IdVal, Str);
|
2013-04-17 00:18:04 +00:00
|
|
|
return false;
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
}
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
bool MipsAsmParser::ParseRegister(unsigned &RegNo, SMLoc &StartLoc,
|
|
|
|
SMLoc &EndLoc) {
|
|
|
|
StartLoc = Parser.getTok().getLoc();
|
2013-01-12 01:03:14 +00:00
|
|
|
RegNo = tryParseRegister(isMips64());
|
|
|
|
EndLoc = Parser.getTok().getLoc();
|
2013-04-18 00:41:53 +00:00
|
|
|
return (RegNo == (unsigned) -1);
|
2012-09-05 23:34:03 +00:00
|
|
|
}
|
|
|
|
|
2013-04-17 00:18:04 +00:00
|
|
|
bool MipsAsmParser::parseMemOffset(const MCExpr *&Res, bool isParenExpr) {
|
2013-01-12 01:03:14 +00:00
|
|
|
SMLoc S;
|
2013-04-17 00:18:04 +00:00
|
|
|
bool Result = true;
|
|
|
|
|
|
|
|
while (getLexer().getKind() == AsmToken::LParen)
|
|
|
|
Parser.Lex();
|
2013-01-12 01:03:14 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
switch (getLexer().getKind()) {
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
default:
|
|
|
|
return true;
|
2013-03-22 00:05:30 +00:00
|
|
|
case AsmToken::Identifier:
|
2013-04-17 00:18:04 +00:00
|
|
|
case AsmToken::LParen:
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
case AsmToken::Integer:
|
|
|
|
case AsmToken::Minus:
|
|
|
|
case AsmToken::Plus:
|
2013-04-17 00:18:04 +00:00
|
|
|
if (isParenExpr)
|
2013-04-18 00:41:53 +00:00
|
|
|
Result = getParser().parseParenExpression(Res, S);
|
2013-04-17 00:18:04 +00:00
|
|
|
else
|
|
|
|
Result = (getParser().parseExpression(Res));
|
2013-04-18 00:41:53 +00:00
|
|
|
while (getLexer().getKind() == AsmToken::RParen)
|
2013-04-17 00:18:04 +00:00
|
|
|
Parser.Lex();
|
2013-04-18 00:41:53 +00:00
|
|
|
break;
|
2013-01-12 01:03:14 +00:00
|
|
|
case AsmToken::Percent:
|
2013-04-17 00:18:04 +00:00
|
|
|
Result = parseRelocOperand(Res);
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
}
|
2013-04-17 00:18:04 +00:00
|
|
|
return Result;
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
}
|
|
|
|
|
2012-09-05 23:34:03 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy MipsAsmParser::parseMemOperand(
|
2013-04-18 00:41:53 +00:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*>&Operands) {
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
|
|
|
const MCExpr *IdVal = 0;
|
2013-01-12 01:03:14 +00:00
|
|
|
SMLoc S;
|
2013-04-17 00:18:04 +00:00
|
|
|
bool isParenExpr = false;
|
2013-04-18 00:41:53 +00:00
|
|
|
// First operand is the offset.
|
2013-01-12 01:03:14 +00:00
|
|
|
S = Parser.getTok().getLoc();
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
2013-04-17 00:18:04 +00:00
|
|
|
if (getLexer().getKind() == AsmToken::LParen) {
|
|
|
|
Parser.Lex();
|
|
|
|
isParenExpr = true;
|
|
|
|
}
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
2013-04-17 00:18:04 +00:00
|
|
|
if (getLexer().getKind() != AsmToken::Dollar) {
|
2013-04-18 00:41:53 +00:00
|
|
|
if (parseMemOffset(IdVal, isParenExpr))
|
2013-04-17 00:18:04 +00:00
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
const AsmToken &Tok = Parser.getTok(); // Get the next token.
|
2013-04-17 00:18:04 +00:00
|
|
|
if (Tok.isNot(AsmToken::LParen)) {
|
|
|
|
MipsOperand *Mnemonic = static_cast<MipsOperand*>(Operands[0]);
|
|
|
|
if (Mnemonic->getToken() == "la") {
|
|
|
|
SMLoc E = SMLoc::getFromPointer(
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.getTok().getLoc().getPointer() - 1);
|
2013-04-17 00:18:04 +00:00
|
|
|
Operands.push_back(MipsOperand::CreateImm(IdVal, S, E));
|
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
if (Tok.is(AsmToken::EndOfStatement)) {
|
|
|
|
SMLoc E = SMLoc::getFromPointer(
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.getTok().getLoc().getPointer() - 1);
|
2013-04-17 00:18:04 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
// Zero register assumed, add a memory operand with ZERO as its base.
|
|
|
|
Operands.push_back(MipsOperand::CreateMem(isMips64() ? Mips::ZERO_64
|
|
|
|
: Mips::ZERO,
|
|
|
|
IdVal, S, E));
|
2013-04-17 00:18:04 +00:00
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
Error(Parser.getTok().getLoc(), "'(' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
Initial assembler implementation of Mips load address macro
This patch provides initial implementation of load address
macro instruction for Mips. We have implemented two kinds
of expansions with their variations depending on the size
of immediate operand:
1) load address with immediate value directly:
* la d,j => addiu d,$zero,j (for -32768 <= j <= 65535)
* la d,j => lui d,hi16(j)
ori d,d,lo16(j) (for any other 32 bit value of j)
2) load load address with register offset value
* la d,j(s) => addiu d,s,j (for -32768 <= j <= 65535)
* la d,j(s) => lui d,hi16(j) (for any other 32 bit value of j)
ori d,d,lo16(j)
addu d,d,s
This patch does not cover the case when the address is loaded
from the value of the label or function.
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165561 91177308-0d34-0410-b5e6-96231b3b80d8
2012-10-09 23:29:45 +00:00
|
|
|
}
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the '(' token.
|
2013-04-17 00:18:04 +00:00
|
|
|
}
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
2013-04-17 00:18:04 +00:00
|
|
|
const AsmToken &Tok1 = Parser.getTok(); // Get next token
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
if (Tok1.is(AsmToken::Dollar)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the '$' token.
|
2013-01-12 01:03:14 +00:00
|
|
|
if (tryParseRegisterOperand(Operands, isMips64())) {
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
Error(Parser.getTok().getLoc(), "unexpected token in operand");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2012-10-04 02:29:46 +00:00
|
|
|
Error(Parser.getTok().getLoc(), "unexpected token in operand");
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
const AsmToken &Tok2 = Parser.getTok(); // Get next token.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
if (Tok2.isNot(AsmToken::RParen)) {
|
|
|
|
Error(Parser.getTok().getLoc(), "')' expected");
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
}
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the ')' token.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
|
|
|
|
if (IdVal == 0)
|
|
|
|
IdVal = MCConstantExpr::Create(0, getContext());
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
// Replace the register operand with the memory operand.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
MipsOperand* op = static_cast<MipsOperand*>(Operands.back());
|
|
|
|
int RegNo = op->getReg();
|
2013-04-18 00:41:53 +00:00
|
|
|
// Remove the register from the operands.
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
Operands.pop_back();
|
2013-04-18 00:41:53 +00:00
|
|
|
// Add the memory operand.
|
2013-04-17 00:18:04 +00:00
|
|
|
if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(IdVal)) {
|
|
|
|
int64_t Imm;
|
|
|
|
if (IdVal->EvaluateAsAbsolute(Imm))
|
|
|
|
IdVal = MCConstantExpr::Create(Imm, getContext());
|
|
|
|
else if (BE->getLHS()->getKind() != MCExpr::SymbolRef)
|
|
|
|
IdVal = MCBinaryExpr::Create(BE->getOpcode(), BE->getRHS(), BE->getLHS(),
|
|
|
|
getContext());
|
|
|
|
}
|
|
|
|
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
Operands.push_back(MipsOperand::CreateMem(RegNo, IdVal, S, E));
|
|
|
|
delete op;
|
2012-09-05 23:34:03 +00:00
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
2013-06-20 11:21:49 +00:00
|
|
|
MipsAsmParser::parseRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
|
|
|
int RegKind) {
|
|
|
|
MipsOperand::RegisterKind Kind = (MipsOperand::RegisterKind)RegKind;
|
2013-03-21 21:44:16 +00:00
|
|
|
if (getLexer().getKind() == AsmToken::Identifier) {
|
2013-06-20 11:21:49 +00:00
|
|
|
if (searchSymbolAlias(Operands, Kind))
|
2013-03-21 21:44:16 +00:00
|
|
|
return MatchOperand_Success;
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
// If the first token is not '$', we have an error.
|
2013-01-12 01:03:14 +00:00
|
|
|
if (Parser.getTok().isNot(AsmToken::Dollar))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
Parser.Lex(); // Eat $
|
2013-08-06 22:20:40 +00:00
|
|
|
if (!tryParseRegisterOperand(Operands,
|
2013-08-06 23:08:38 +00:00
|
|
|
RegKind == MipsOperand::Kind_GPR64)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Set the proper register kind.
|
2013-01-12 01:03:14 +00:00
|
|
|
MipsOperand* op = static_cast<MipsOperand*>(Operands.back());
|
2013-06-20 11:21:49 +00:00
|
|
|
op->setRegKind(Kind);
|
2013-08-06 23:08:38 +00:00
|
|
|
if ((Kind == MipsOperand::Kind_GPR32)
|
2013-07-18 09:28:35 +00:00
|
|
|
&& (getLexer().is(AsmToken::LParen))) {
|
|
|
|
// Check if it is indexed addressing operand.
|
|
|
|
Operands.push_back(MipsOperand::CreateToken("(", getLexer().getLoc()));
|
|
|
|
Parser.Lex(); // Eat the parenthesis.
|
|
|
|
if (parseRegs(Operands,RegKind) != MatchOperand_Success)
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
if (getLexer().isNot(AsmToken::RParen))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
Operands.push_back(MipsOperand::CreateToken(")", getLexer().getLoc()));
|
|
|
|
Parser.Lex();
|
|
|
|
}
|
2013-01-12 01:03:14 +00:00
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
}
|
2013-07-16 10:07:14 +00:00
|
|
|
|
2013-06-20 11:21:49 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
2013-08-06 23:08:38 +00:00
|
|
|
MipsAsmParser::parseGPR64(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2013-06-20 11:21:49 +00:00
|
|
|
|
|
|
|
if (!isMips64())
|
|
|
|
return MatchOperand_NoMatch;
|
2013-08-06 23:08:38 +00:00
|
|
|
return parseRegs(Operands, (int) MipsOperand::Kind_GPR64);
|
2013-06-20 11:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
2013-08-06 23:08:38 +00:00
|
|
|
MipsAsmParser::parseGPR32(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
return parseRegs(Operands, (int) MipsOperand::Kind_GPR32);
|
2013-06-20 11:21:49 +00:00
|
|
|
}
|
2013-01-12 01:03:14 +00:00
|
|
|
|
2013-06-24 10:05:34 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
MipsAsmParser::parseAFGR64Regs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
|
|
|
|
if (isFP64())
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
// Double operand is expected, set appropriate format
|
|
|
|
setFpFormat(FP_FORMAT_D);
|
|
|
|
|
|
|
|
return parseRegs(Operands, (int) MipsOperand::Kind_AFGR64Regs);
|
|
|
|
}
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
MipsAsmParser::parseFGR64Regs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
if (!isFP64())
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
// Double operand is expected, set appropriate format
|
|
|
|
setFpFormat(FP_FORMAT_D);
|
|
|
|
|
|
|
|
return parseRegs(Operands, (int) MipsOperand::Kind_FGR64Regs);
|
|
|
|
}
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
MipsAsmParser::parseFGR32Regs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
// Single operand is expected, set appropriate format
|
|
|
|
setFpFormat(FP_FORMAT_S);
|
|
|
|
return parseRegs(Operands, (int) MipsOperand::Kind_FGR32Regs);
|
|
|
|
}
|
|
|
|
|
2013-07-30 10:12:14 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
MipsAsmParser::parseFCCRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
// If the first token is not '$' we have an error.
|
|
|
|
if (Parser.getTok().isNot(AsmToken::Dollar))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
Parser.Lex(); // Eat the '$'
|
|
|
|
|
|
|
|
const AsmToken &Tok = Parser.getTok(); // Get next token.
|
|
|
|
|
|
|
|
if (Tok.isNot(AsmToken::Identifier))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
if (!Tok.getIdentifier().startswith("fcc"))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
StringRef NumString = Tok.getIdentifier().substr(3);
|
|
|
|
|
|
|
|
unsigned IntVal;
|
|
|
|
if (NumString.getAsInteger(10, IntVal))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
unsigned Reg = matchRegisterByNumber(IntVal, Mips::FCCRegClassID);
|
|
|
|
|
|
|
|
MipsOperand *Op = MipsOperand::CreateReg(Reg, S, Parser.getTok().getLoc());
|
|
|
|
Op->setRegKind(MipsOperand::Kind_FCCRegs);
|
|
|
|
Operands.push_back(Op);
|
|
|
|
|
|
|
|
Parser.Lex(); // Eat the register number.
|
2013-08-06 22:20:40 +00:00
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
MipsAsmParser::parseACRegsDSP(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
// If the first token is not '$' we have an error.
|
|
|
|
if (Parser.getTok().isNot(AsmToken::Dollar))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
Parser.Lex(); // Eat the '$'
|
|
|
|
|
|
|
|
const AsmToken &Tok = Parser.getTok(); // Get next token.
|
|
|
|
|
|
|
|
if (Tok.isNot(AsmToken::Identifier))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
if (!Tok.getIdentifier().startswith("acc"))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
StringRef NumString = Tok.getIdentifier().substr(3);
|
|
|
|
|
|
|
|
unsigned IntVal;
|
|
|
|
if (NumString.getAsInteger(10, IntVal))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
unsigned Reg = matchRegisterByNumber(IntVal, Mips::ACRegsDSPRegClassID);
|
|
|
|
|
|
|
|
MipsOperand *Op = MipsOperand::CreateReg(Reg, S, Parser.getTok().getLoc());
|
|
|
|
Op->setRegKind(MipsOperand::Kind_ACRegsDSP);
|
|
|
|
Operands.push_back(Op);
|
|
|
|
|
|
|
|
Parser.Lex(); // Eat the register number.
|
2013-07-30 10:12:14 +00:00
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
bool MipsAsmParser::searchSymbolAlias(
|
2013-06-20 11:21:49 +00:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands, unsigned RegKind) {
|
2013-03-21 21:44:16 +00:00
|
|
|
|
|
|
|
MCSymbol *Sym = getContext().LookupSymbol(Parser.getTok().getIdentifier());
|
|
|
|
if (Sym) {
|
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
|
|
|
const MCExpr *Expr;
|
|
|
|
if (Sym->isVariable())
|
|
|
|
Expr = Sym->getVariableValue();
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
if (Expr->getKind() == MCExpr::SymbolRef) {
|
2013-06-20 11:21:49 +00:00
|
|
|
MipsOperand::RegisterKind Kind = (MipsOperand::RegisterKind) RegKind;
|
2013-03-21 21:44:16 +00:00
|
|
|
const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Expr);
|
|
|
|
const StringRef DefSymbol = Ref->getSymbol().getName();
|
|
|
|
if (DefSymbol.startswith("$")) {
|
2013-05-28 22:21:05 +00:00
|
|
|
int RegNum = -1;
|
|
|
|
APInt IntVal(32, -1);
|
|
|
|
if (!DefSymbol.substr(1).getAsInteger(10, IntVal))
|
|
|
|
RegNum = matchRegisterByNumber(IntVal.getZExtValue(),
|
2013-07-16 10:07:14 +00:00
|
|
|
isMips64()
|
2013-08-06 23:08:38 +00:00
|
|
|
? Mips::GPR64RegClassID
|
|
|
|
: Mips::GPR32RegClassID);
|
2013-06-20 11:21:49 +00:00
|
|
|
else {
|
|
|
|
// Lookup for the register with the corresponding name.
|
|
|
|
switch (Kind) {
|
|
|
|
case MipsOperand::Kind_AFGR64Regs:
|
|
|
|
case MipsOperand::Kind_FGR64Regs:
|
|
|
|
RegNum = matchFPURegisterName(DefSymbol.substr(1), FP_FORMAT_D);
|
|
|
|
break;
|
|
|
|
case MipsOperand::Kind_FGR32Regs:
|
|
|
|
RegNum = matchFPURegisterName(DefSymbol.substr(1), FP_FORMAT_S);
|
|
|
|
break;
|
2013-08-06 23:08:38 +00:00
|
|
|
case MipsOperand::Kind_GPR64:
|
|
|
|
case MipsOperand::Kind_GPR32:
|
2013-06-20 11:21:49 +00:00
|
|
|
default:
|
|
|
|
RegNum = matchRegisterName(DefSymbol.substr(1), isMips64());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-03-21 21:44:16 +00:00
|
|
|
if (RegNum > -1) {
|
|
|
|
Parser.Lex();
|
2013-04-18 00:41:53 +00:00
|
|
|
MipsOperand *op = MipsOperand::CreateReg(RegNum, S,
|
|
|
|
Parser.getTok().getLoc());
|
2013-06-20 11:21:49 +00:00
|
|
|
op->setRegKind(Kind);
|
2013-03-21 21:44:16 +00:00
|
|
|
Operands.push_back(op);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (Expr->getKind() == MCExpr::Constant) {
|
|
|
|
Parser.Lex();
|
|
|
|
const MCConstantExpr *Const = static_cast<const MCConstantExpr*>(Expr);
|
2013-04-18 00:41:53 +00:00
|
|
|
MipsOperand *op = MipsOperand::CreateImm(Const, S,
|
2013-07-16 10:07:14 +00:00
|
|
|
Parser.getTok().getLoc());
|
2013-03-21 21:44:16 +00:00
|
|
|
Operands.push_back(op);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
MipsAsmParser::parseHWRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
// If the first token is not '$' we have error.
|
2013-01-12 01:03:14 +00:00
|
|
|
if (Parser.getTok().isNot(AsmToken::Dollar))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the '$'.
|
2013-01-12 01:03:14 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
const AsmToken &Tok = Parser.getTok(); // Get the next token.
|
2013-01-12 01:03:14 +00:00
|
|
|
if (Tok.isNot(AsmToken::Integer))
|
|
|
|
return MatchOperand_NoMatch;
|
|
|
|
|
|
|
|
unsigned RegNum = Tok.getIntVal();
|
2013-04-18 00:41:53 +00:00
|
|
|
// At the moment only hwreg29 is supported.
|
2013-01-12 01:03:14 +00:00
|
|
|
if (RegNum != 29)
|
|
|
|
return MatchOperand_ParseFail;
|
|
|
|
|
|
|
|
MipsOperand *op = MipsOperand::CreateReg(Mips::HWR29, S,
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.getTok().getLoc());
|
2013-01-12 01:03:14 +00:00
|
|
|
op->setRegKind(MipsOperand::Kind_HWRegs);
|
|
|
|
Operands.push_back(op);
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the register number.
|
2013-01-12 01:03:14 +00:00
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
MipsAsmParser::OperandMatchResultTy
|
|
|
|
MipsAsmParser::parseCCRRegs(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2013-04-18 00:41:53 +00:00
|
|
|
// If the first token is not '$' we have an error.
|
2013-01-12 01:03:14 +00:00
|
|
|
if (Parser.getTok().isNot(AsmToken::Dollar))
|
2013-07-24 18:43:52 +00:00
|
|
|
return MatchOperand_NoMatch;
|
2013-07-22 19:30:38 +00:00
|
|
|
|
2013-01-12 01:03:14 +00:00
|
|
|
SMLoc S = Parser.getTok().getLoc();
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the '$'
|
2013-01-12 01:03:14 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
const AsmToken &Tok = Parser.getTok(); // Get next token.
|
2013-01-12 01:03:14 +00:00
|
|
|
|
2013-07-22 19:30:38 +00:00
|
|
|
if (Tok.isNot(AsmToken::Integer))
|
2013-07-24 18:43:52 +00:00
|
|
|
return MatchOperand_NoMatch;
|
2013-07-22 19:30:38 +00:00
|
|
|
|
|
|
|
unsigned Reg = matchRegisterByNumber(Tok.getIntVal(), Mips::CCRRegClassID);
|
|
|
|
|
|
|
|
MipsOperand *Op = MipsOperand::CreateReg(Reg, S, Parser.getTok().getLoc());
|
|
|
|
Op->setRegKind(MipsOperand::Kind_CCRRegs);
|
|
|
|
Operands.push_back(Op);
|
2013-01-12 01:03:14 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the register number.
|
2013-01-12 01:03:14 +00:00
|
|
|
return MatchOperand_Success;
|
|
|
|
}
|
|
|
|
|
The Mips standalone assembler memory instruction support.
This includes sb,sc,sh,sw,lb,lw,lbu,lh,lhu,ll,lw
Test case included
Contributer: Vladimir Medic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163346 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-06 20:00:02 +00:00
|
|
|
MCSymbolRefExpr::VariantKind MipsAsmParser::getVariantKind(StringRef Symbol) {
|
|
|
|
|
|
|
|
MCSymbolRefExpr::VariantKind VK
|
|
|
|
= StringSwitch<MCSymbolRefExpr::VariantKind>(Symbol)
|
|
|
|
.Case("hi", MCSymbolRefExpr::VK_Mips_ABS_HI)
|
|
|
|
.Case("lo", MCSymbolRefExpr::VK_Mips_ABS_LO)
|
|
|
|
.Case("gp_rel", MCSymbolRefExpr::VK_Mips_GPREL)
|
|
|
|
.Case("call16", MCSymbolRefExpr::VK_Mips_GOT_CALL)
|
|
|
|
.Case("got", MCSymbolRefExpr::VK_Mips_GOT)
|
|
|
|
.Case("tlsgd", MCSymbolRefExpr::VK_Mips_TLSGD)
|
|
|
|
.Case("tlsldm", MCSymbolRefExpr::VK_Mips_TLSLDM)
|
|
|
|
.Case("dtprel_hi", MCSymbolRefExpr::VK_Mips_DTPREL_HI)
|
|
|
|
.Case("dtprel_lo", MCSymbolRefExpr::VK_Mips_DTPREL_LO)
|
|
|
|
.Case("gottprel", MCSymbolRefExpr::VK_Mips_GOTTPREL)
|
|
|
|
.Case("tprel_hi", MCSymbolRefExpr::VK_Mips_TPREL_HI)
|
|
|
|
.Case("tprel_lo", MCSymbolRefExpr::VK_Mips_TPREL_LO)
|
|
|
|
.Case("got_disp", MCSymbolRefExpr::VK_Mips_GOT_DISP)
|
|
|
|
.Case("got_page", MCSymbolRefExpr::VK_Mips_GOT_PAGE)
|
|
|
|
.Case("got_ofst", MCSymbolRefExpr::VK_Mips_GOT_OFST)
|
|
|
|
.Case("hi(%neg(%gp_rel", MCSymbolRefExpr::VK_Mips_GPOFF_HI)
|
|
|
|
.Case("lo(%neg(%gp_rel", MCSymbolRefExpr::VK_Mips_GPOFF_LO)
|
|
|
|
.Default(MCSymbolRefExpr::VK_None);
|
|
|
|
|
|
|
|
return VK;
|
|
|
|
}
|
2012-09-07 00:23:42 +00:00
|
|
|
|
2012-01-11 03:56:41 +00:00
|
|
|
bool MipsAsmParser::
|
2012-10-25 20:41:34 +00:00
|
|
|
ParseInstruction(ParseInstructionInfo &Info, StringRef Name, SMLoc NameLoc,
|
2012-01-11 03:56:41 +00:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
2013-07-17 15:00:42 +00:00
|
|
|
// Check if we have valid mnemonic
|
2013-07-24 07:33:14 +00:00
|
|
|
if (!mnemonicIsValid(Name, 0)) {
|
2013-07-17 15:00:42 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
|
|
|
return Error(NameLoc, "Unknown instruction");
|
|
|
|
}
|
2013-07-16 10:07:14 +00:00
|
|
|
// First operand in MCInst is instruction mnemonic.
|
|
|
|
Operands.push_back(MipsOperand::CreateToken(Name, NameLoc));
|
2012-09-05 23:34:03 +00:00
|
|
|
|
|
|
|
// Read the remaining operands.
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
// Read the first operand.
|
2013-07-16 10:07:14 +00:00
|
|
|
if (ParseOperand(Operands, Name)) {
|
2012-09-05 23:34:03 +00:00
|
|
|
SMLoc Loc = getLexer().getLoc();
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-09-05 23:34:03 +00:00
|
|
|
return Error(Loc, "unexpected token in argument list");
|
|
|
|
}
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
while (getLexer().is(AsmToken::Comma)) {
|
|
|
|
Parser.Lex(); // Eat the comma.
|
2012-09-05 23:34:03 +00:00
|
|
|
// Parse and remember the operand.
|
|
|
|
if (ParseOperand(Operands, Name)) {
|
|
|
|
SMLoc Loc = getLexer().getLoc();
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-09-05 23:34:03 +00:00
|
|
|
return Error(Loc, "unexpected token in argument list");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
SMLoc Loc = getLexer().getLoc();
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-09-05 23:34:03 +00:00
|
|
|
return Error(Loc, "unexpected token in argument list");
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Consume the EndOfStatement.
|
2012-09-05 23:34:03 +00:00
|
|
|
return false;
|
2012-01-11 03:56:41 +00:00
|
|
|
}
|
|
|
|
|
2012-10-04 02:29:46 +00:00
|
|
|
bool MipsAsmParser::reportParseError(StringRef ErrorMsg) {
|
2013-04-18 00:41:53 +00:00
|
|
|
SMLoc Loc = getLexer().getLoc();
|
|
|
|
Parser.eatToEndOfStatement();
|
|
|
|
return Error(Loc, ErrorMsg);
|
2012-10-04 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MipsAsmParser::parseSetNoAtDirective() {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Line should look like: ".set noat".
|
|
|
|
// set at reg to 0.
|
2012-10-05 23:55:28 +00:00
|
|
|
Options.setATReg(0);
|
2012-10-04 02:29:46 +00:00
|
|
|
// eat noat
|
|
|
|
Parser.Lex();
|
2013-04-18 00:41:53 +00:00
|
|
|
// If this is not the end of the statement, report an error.
|
2012-10-04 02:29:46 +00:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Consume the EndOfStatement.
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
|
2012-10-04 02:29:46 +00:00
|
|
|
bool MipsAsmParser::parseSetAtDirective() {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Line can be .set at - defaults to $1
|
2012-10-04 02:29:46 +00:00
|
|
|
// or .set at=$reg
|
2013-02-20 23:11:17 +00:00
|
|
|
int AtRegNo;
|
2012-10-04 02:29:46 +00:00
|
|
|
getParser().Lex();
|
|
|
|
if (getLexer().is(AsmToken::EndOfStatement)) {
|
2012-10-05 23:55:28 +00:00
|
|
|
Options.setATReg(1);
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Consume the EndOfStatement.
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
|
|
|
} else if (getLexer().is(AsmToken::Equal)) {
|
2013-04-18 00:41:53 +00:00
|
|
|
getParser().Lex(); // Eat the '='.
|
2012-10-04 02:29:46 +00:00
|
|
|
if (getLexer().isNot(AsmToken::Dollar)) {
|
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Eat the '$'.
|
2013-02-20 23:11:17 +00:00
|
|
|
const AsmToken &Reg = Parser.getTok();
|
|
|
|
if (Reg.is(AsmToken::Identifier)) {
|
|
|
|
AtRegNo = matchCPURegisterName(Reg.getIdentifier());
|
|
|
|
} else if (Reg.is(AsmToken::Integer)) {
|
|
|
|
AtRegNo = Reg.getIntVal();
|
|
|
|
} else {
|
2012-10-04 02:29:46 +00:00
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
|
|
|
}
|
2013-02-20 23:11:17 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
if (AtRegNo < 1 || AtRegNo > 31) {
|
2013-02-20 23:11:17 +00:00
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Options.setATReg(AtRegNo)) {
|
2012-10-04 02:29:46 +00:00
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
getParser().Lex(); // Eat the register.
|
2012-10-04 02:29:46 +00:00
|
|
|
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
2013-04-18 00:41:53 +00:00
|
|
|
}
|
|
|
|
Parser.Lex(); // Consume the EndOfStatement.
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MipsAsmParser::parseSetReorderDirective() {
|
|
|
|
Parser.Lex();
|
2013-04-18 00:41:53 +00:00
|
|
|
// If this is not the end of the statement, report an error.
|
2012-10-04 02:29:46 +00:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-05 23:55:28 +00:00
|
|
|
Options.setReorder();
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Consume the EndOfStatement.
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MipsAsmParser::parseSetNoReorderDirective() {
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex();
|
|
|
|
// If this is not the end of the statement, report an error.
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
reportParseError("unexpected token in statement");
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
2013-04-18 00:41:53 +00:00
|
|
|
}
|
|
|
|
Options.setNoreorder();
|
|
|
|
Parser.Lex(); // Consume the EndOfStatement.
|
|
|
|
return false;
|
2012-10-04 02:29:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MipsAsmParser::parseSetMacroDirective() {
|
|
|
|
Parser.Lex();
|
2013-04-18 00:41:53 +00:00
|
|
|
// If this is not the end of the statement, report an error.
|
2012-10-04 02:29:46 +00:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
reportParseError("unexpected token in statement");
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-05 23:55:28 +00:00
|
|
|
Options.setMacro();
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Consume the EndOfStatement.
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MipsAsmParser::parseSetNoMacroDirective() {
|
|
|
|
Parser.Lex();
|
2013-04-18 00:41:53 +00:00
|
|
|
// If this is not the end of the statement, report an error.
|
2012-10-04 02:29:46 +00:00
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
reportParseError("`noreorder' must be set before `nomacro'");
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-05 23:55:28 +00:00
|
|
|
if (Options.isReorder()) {
|
2012-10-04 02:29:46 +00:00
|
|
|
reportParseError("`noreorder' must be set before `nomacro'");
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-05 23:55:28 +00:00
|
|
|
Options.setNomacro();
|
2013-04-18 00:41:53 +00:00
|
|
|
Parser.Lex(); // Consume the EndOfStatement.
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-03-21 21:44:16 +00:00
|
|
|
|
|
|
|
bool MipsAsmParser::parseSetAssignment() {
|
|
|
|
StringRef Name;
|
|
|
|
const MCExpr *Value;
|
|
|
|
|
|
|
|
if (Parser.parseIdentifier(Name))
|
|
|
|
reportParseError("expected identifier after .set");
|
|
|
|
|
|
|
|
if (getLexer().isNot(AsmToken::Comma))
|
|
|
|
return reportParseError("unexpected token in .set directive");
|
2013-04-17 00:18:04 +00:00
|
|
|
Lex(); // Eat comma
|
2013-03-21 21:44:16 +00:00
|
|
|
|
2013-05-28 22:21:05 +00:00
|
|
|
if (getLexer().is(AsmToken::Dollar)) {
|
|
|
|
MCSymbol *Symbol;
|
|
|
|
SMLoc DollarLoc = getLexer().getLoc();
|
|
|
|
// Consume the dollar sign, and check for a following identifier.
|
|
|
|
Parser.Lex();
|
|
|
|
// We have a '$' followed by something, make sure they are adjacent.
|
|
|
|
if (DollarLoc.getPointer() + 1 != getTok().getLoc().getPointer())
|
|
|
|
return true;
|
|
|
|
StringRef Res = StringRef(DollarLoc.getPointer(),
|
|
|
|
getTok().getEndLoc().getPointer() - DollarLoc.getPointer());
|
|
|
|
Symbol = getContext().GetOrCreateSymbol(Res);
|
|
|
|
Parser.Lex();
|
|
|
|
Value = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None,
|
|
|
|
getContext());
|
|
|
|
} else if (Parser.parseExpression(Value))
|
|
|
|
return reportParseError("expected valid expression after comma");
|
2013-03-21 21:44:16 +00:00
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
// Check if the Name already exists as a symbol.
|
2013-03-21 21:44:16 +00:00
|
|
|
MCSymbol *Sym = getContext().LookupSymbol(Name);
|
2013-04-18 00:41:53 +00:00
|
|
|
if (Sym)
|
2013-03-21 21:44:16 +00:00
|
|
|
return reportParseError("symbol already defined");
|
|
|
|
Sym = getContext().GetOrCreateSymbol(Name);
|
|
|
|
Sym->setVariableValue(Value);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-18 00:41:53 +00:00
|
|
|
|
2012-10-04 02:29:46 +00:00
|
|
|
bool MipsAsmParser::parseDirectiveSet() {
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
// Get the next token.
|
2012-10-04 02:29:46 +00:00
|
|
|
const AsmToken &Tok = Parser.getTok();
|
|
|
|
|
|
|
|
if (Tok.getString() == "noat") {
|
|
|
|
return parseSetNoAtDirective();
|
|
|
|
} else if (Tok.getString() == "at") {
|
|
|
|
return parseSetAtDirective();
|
|
|
|
} else if (Tok.getString() == "reorder") {
|
|
|
|
return parseSetReorderDirective();
|
|
|
|
} else if (Tok.getString() == "noreorder") {
|
|
|
|
return parseSetNoReorderDirective();
|
|
|
|
} else if (Tok.getString() == "macro") {
|
|
|
|
return parseSetMacroDirective();
|
|
|
|
} else if (Tok.getString() == "nomacro") {
|
|
|
|
return parseSetNoMacroDirective();
|
|
|
|
} else if (Tok.getString() == "nomips16") {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Ignore this directive for now.
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
|
|
|
} else if (Tok.getString() == "nomicromips") {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Ignore this directive for now.
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-10-04 02:29:46 +00:00
|
|
|
return false;
|
2013-03-21 21:44:16 +00:00
|
|
|
} else {
|
2013-04-18 00:41:53 +00:00
|
|
|
// It is just an identifier, look for an assignment.
|
2013-03-21 21:44:16 +00:00
|
|
|
parseSetAssignment();
|
|
|
|
return false;
|
2012-10-04 02:29:46 +00:00
|
|
|
}
|
2013-01-25 01:31:34 +00:00
|
|
|
|
2012-10-04 02:29:46 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
/// parseDirectiveWord
|
|
|
|
/// ::= .word [ expression (, expression)* ]
|
|
|
|
bool MipsAsmParser::parseDirectiveWord(unsigned Size, SMLoc L) {
|
|
|
|
if (getLexer().isNot(AsmToken::EndOfStatement)) {
|
|
|
|
for (;;) {
|
|
|
|
const MCExpr *Value;
|
2013-02-20 22:21:35 +00:00
|
|
|
if (getParser().parseExpression(Value))
|
2013-01-25 01:31:34 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
getParser().getStreamer().EmitValue(Value, Size);
|
|
|
|
|
|
|
|
if (getLexer().is(AsmToken::EndOfStatement))
|
|
|
|
break;
|
|
|
|
|
|
|
|
// FIXME: Improve diagnostic.
|
|
|
|
if (getLexer().isNot(AsmToken::Comma))
|
|
|
|
return Error(L, "unexpected token in directive");
|
|
|
|
Parser.Lex();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Parser.Lex();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-10-04 02:29:46 +00:00
|
|
|
bool MipsAsmParser::ParseDirective(AsmToken DirectiveID) {
|
2012-09-07 00:48:02 +00:00
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
StringRef IDVal = DirectiveID.getString();
|
|
|
|
|
2013-04-18 00:41:53 +00:00
|
|
|
if (IDVal == ".ent") {
|
|
|
|
// Ignore this directive for now.
|
2012-09-07 00:48:02 +00:00
|
|
|
Parser.Lex();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
if (IDVal == ".end") {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Ignore this directive for now.
|
2012-09-07 00:48:02 +00:00
|
|
|
Parser.Lex();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
if (IDVal == ".frame") {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Ignore this directive for now.
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-09-07 00:48:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
if (IDVal == ".set") {
|
2012-10-04 02:29:46 +00:00
|
|
|
return parseDirectiveSet();
|
2012-09-07 00:48:02 +00:00
|
|
|
}
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
if (IDVal == ".fmask") {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Ignore this directive for now.
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-09-07 00:48:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
if (IDVal == ".mask") {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Ignore this directive for now.
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-09-07 00:48:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
if (IDVal == ".gpword") {
|
2013-04-18 00:41:53 +00:00
|
|
|
// Ignore this directive for now.
|
2013-02-20 22:21:35 +00:00
|
|
|
Parser.eatToEndOfStatement();
|
2012-09-07 00:48:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-25 01:31:34 +00:00
|
|
|
if (IDVal == ".word") {
|
|
|
|
parseDirectiveWord(4, DirectiveID.getLoc());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-01-11 03:56:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void LLVMInitializeMipsAsmParser() {
|
|
|
|
RegisterMCAsmParser<MipsAsmParser> X(TheMipsTarget);
|
|
|
|
RegisterMCAsmParser<MipsAsmParser> Y(TheMipselTarget);
|
|
|
|
RegisterMCAsmParser<MipsAsmParser> A(TheMips64Target);
|
|
|
|
RegisterMCAsmParser<MipsAsmParser> B(TheMips64elTarget);
|
|
|
|
}
|
2012-09-05 23:34:03 +00:00
|
|
|
|
|
|
|
#define GET_REGISTER_MATCHER
|
|
|
|
#define GET_MATCHER_IMPLEMENTATION
|
|
|
|
#include "MipsGenAsmMatcher.inc"
|