mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 00:20:25 +00:00
[mips][microMIPS] Implement LBU16, LHU16, LW16, SB16, SH16 and SW16 instructions
Differential Revision: http://reviews.llvm.org/D5122 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222653 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -765,6 +765,15 @@ public:
|
||||
addExpr(Inst, Expr);
|
||||
}
|
||||
|
||||
void addMicroMipsMemOperands(MCInst &Inst, unsigned N) const {
|
||||
assert(N == 2 && "Invalid number of operands!");
|
||||
|
||||
Inst.addOperand(MCOperand::CreateReg(getMemBase()->getGPRMM16Reg()));
|
||||
|
||||
const MCExpr *Expr = getMemOff();
|
||||
addExpr(Inst, Expr);
|
||||
}
|
||||
|
||||
void addRegListOperands(MCInst &Inst, unsigned N) const {
|
||||
assert(N == 1 && "Invalid number of operands!");
|
||||
|
||||
@@ -797,6 +806,9 @@ public:
|
||||
template <unsigned Bits> bool isMemWithSimmOffset() const {
|
||||
return isMem() && isConstantMemOff() && isInt<Bits>(getConstantMemOff());
|
||||
}
|
||||
bool isMemWithGRPMM16Base() const {
|
||||
return isMem() && getMemBase()->isMM16AsmReg();
|
||||
}
|
||||
bool isInvNum() const { return Kind == k_Immediate; }
|
||||
bool isLSAImm() const {
|
||||
if (!isConstantImm())
|
||||
@@ -1272,6 +1284,40 @@ bool MipsAsmParser::processInstruction(MCInst &Inst, SMLoc IDLoc,
|
||||
Imm == 64 || Imm == 255 || Imm == 32768 || Imm == 65535))
|
||||
return Error(IDLoc, "immediate operand value out of range");
|
||||
break;
|
||||
case Mips::LBU16_MM:
|
||||
Opnd = Inst.getOperand(2);
|
||||
if (!Opnd.isImm())
|
||||
return Error(IDLoc, "expected immediate operand kind");
|
||||
Imm = Opnd.getImm();
|
||||
if (Imm < -1 || Imm > 14)
|
||||
return Error(IDLoc, "immediate operand value out of range");
|
||||
break;
|
||||
case Mips::SB16_MM:
|
||||
Opnd = Inst.getOperand(2);
|
||||
if (!Opnd.isImm())
|
||||
return Error(IDLoc, "expected immediate operand kind");
|
||||
Imm = Opnd.getImm();
|
||||
if (Imm < 0 || Imm > 15)
|
||||
return Error(IDLoc, "immediate operand value out of range");
|
||||
break;
|
||||
case Mips::LHU16_MM:
|
||||
case Mips::SH16_MM:
|
||||
Opnd = Inst.getOperand(2);
|
||||
if (!Opnd.isImm())
|
||||
return Error(IDLoc, "expected immediate operand kind");
|
||||
Imm = Opnd.getImm();
|
||||
if (Imm < 0 || Imm > 30 || (Imm % 2 != 0))
|
||||
return Error(IDLoc, "immediate operand value out of range");
|
||||
break;
|
||||
case Mips::LW16_MM:
|
||||
case Mips::SW16_MM:
|
||||
Opnd = Inst.getOperand(2);
|
||||
if (!Opnd.isImm())
|
||||
return Error(IDLoc, "expected immediate operand kind");
|
||||
Imm = Opnd.getImm();
|
||||
if (Imm < 0 || Imm > 60 || (Imm % 4 != 0))
|
||||
return Error(IDLoc, "immediate operand value out of range");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -634,6 +634,48 @@ MipsMCCodeEmitter::getMemEncoding(const MCInst &MI, unsigned OpNo,
|
||||
return (OffBits & 0xFFFF) | RegBits;
|
||||
}
|
||||
|
||||
unsigned MipsMCCodeEmitter::
|
||||
getMemEncodingMMImm4(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const {
|
||||
// Base register is encoded in bits 6-4, offset is encoded in bits 3-0.
|
||||
assert(MI.getOperand(OpNo).isReg());
|
||||
unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),
|
||||
Fixups, STI) << 4;
|
||||
unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1),
|
||||
Fixups, STI);
|
||||
|
||||
return (OffBits & 0xF) | RegBits;
|
||||
}
|
||||
|
||||
unsigned MipsMCCodeEmitter::
|
||||
getMemEncodingMMImm4Lsl1(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const {
|
||||
// Base register is encoded in bits 6-4, offset is encoded in bits 3-0.
|
||||
assert(MI.getOperand(OpNo).isReg());
|
||||
unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),
|
||||
Fixups, STI) << 4;
|
||||
unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1),
|
||||
Fixups, STI) >> 1;
|
||||
|
||||
return (OffBits & 0xF) | RegBits;
|
||||
}
|
||||
|
||||
unsigned MipsMCCodeEmitter::
|
||||
getMemEncodingMMImm4Lsl2(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const {
|
||||
// Base register is encoded in bits 6-4, offset is encoded in bits 3-0.
|
||||
assert(MI.getOperand(OpNo).isReg());
|
||||
unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),
|
||||
Fixups, STI) << 4;
|
||||
unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1),
|
||||
Fixups, STI) >> 2;
|
||||
|
||||
return (OffBits & 0xF) | RegBits;
|
||||
}
|
||||
|
||||
unsigned MipsMCCodeEmitter::
|
||||
getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
|
||||
@@ -142,6 +142,15 @@ public:
|
||||
unsigned getMemEncoding(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
unsigned getMemEncodingMMImm4(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
unsigned getMemEncodingMMImm4Lsl1(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
unsigned getMemEncodingMMImm4Lsl2(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
unsigned getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
|
||||
@@ -108,6 +108,18 @@ class ADDIUR2_FM_MM16 {
|
||||
let Inst{0} = 0;
|
||||
}
|
||||
|
||||
class LOAD_STORE_FM_MM16<bits<6> op> {
|
||||
bits<3> rt;
|
||||
bits<7> addr;
|
||||
|
||||
bits<16> Inst;
|
||||
|
||||
let Inst{15-10} = op;
|
||||
let Inst{9-7} = rt;
|
||||
let Inst{6-4} = addr{6-4};
|
||||
let Inst{3-0} = addr{3-0};
|
||||
}
|
||||
|
||||
class ADDIUS5_FM_MM16 {
|
||||
bits<5> rd;
|
||||
bits<4> imm;
|
||||
|
||||
@@ -46,6 +46,32 @@ def immZExt2Shift : ImmLeaf<i32, [{return Imm >= 1 && Imm <= 8;}]>;
|
||||
|
||||
def immLi16 : ImmLeaf<i32, [{return Imm >= -1 && Imm <= 126;}]>;
|
||||
|
||||
def MicroMipsMemGPRMM16AsmOperand : AsmOperandClass {
|
||||
let Name = "MicroMipsMem";
|
||||
let RenderMethod = "addMicroMipsMemOperands";
|
||||
let ParserMethod = "parseMemOperand";
|
||||
let PredicateMethod = "isMemWithGRPMM16Base";
|
||||
}
|
||||
|
||||
class mem_mm_4_generic : Operand<i32> {
|
||||
let PrintMethod = "printMemOperand";
|
||||
let MIOperandInfo = (ops ptr_rc, simm4);
|
||||
let OperandType = "OPERAND_MEMORY";
|
||||
let ParserMatchClass = MicroMipsMemGPRMM16AsmOperand;
|
||||
}
|
||||
|
||||
def mem_mm_4 : mem_mm_4_generic {
|
||||
let EncoderMethod = "getMemEncodingMMImm4";
|
||||
}
|
||||
|
||||
def mem_mm_4_lsl1 : mem_mm_4_generic {
|
||||
let EncoderMethod = "getMemEncodingMMImm4Lsl1";
|
||||
}
|
||||
|
||||
def mem_mm_4_lsl2 : mem_mm_4_generic {
|
||||
let EncoderMethod = "getMemEncodingMMImm4Lsl2";
|
||||
}
|
||||
|
||||
def mem_mm_12 : Operand<i32> {
|
||||
let PrintMethod = "printMemOperand";
|
||||
let MIOperandInfo = (ops GPR32, simm12);
|
||||
@@ -156,6 +182,22 @@ class ShiftIMM16<string opstr, Operand ImmOpnd, RegisterOperand RO,
|
||||
MicroMipsInst16<(outs RO:$rd), (ins RO:$rt, ImmOpnd:$shamt),
|
||||
!strconcat(opstr, "\t$rd, $rt, $shamt"), [], Itin, FrmR>;
|
||||
|
||||
class LoadMM16<string opstr, DAGOperand RO, SDPatternOperator OpNode,
|
||||
InstrItinClass Itin, Operand MemOpnd> :
|
||||
MicroMipsInst16<(outs RO:$rt), (ins MemOpnd:$addr),
|
||||
!strconcat(opstr, "\t$rt, $addr"), [], Itin, FrmI> {
|
||||
let canFoldAsLoad = 1;
|
||||
let mayLoad = 1;
|
||||
}
|
||||
|
||||
class StoreMM16<string opstr, DAGOperand RTOpnd, DAGOperand RO,
|
||||
SDPatternOperator OpNode, InstrItinClass Itin,
|
||||
Operand MemOpnd> :
|
||||
MicroMipsInst16<(outs), (ins RTOpnd:$rt, MemOpnd:$addr),
|
||||
!strconcat(opstr, "\t$rt, $addr"), [], Itin, FrmI> {
|
||||
let mayStore = 1;
|
||||
}
|
||||
|
||||
class AddImmUR2<string opstr, RegisterOperand RO> :
|
||||
MicroMipsInst16<(outs RO:$rd), (ins RO:$rs, simm3_lsa2:$imm),
|
||||
!strconcat(opstr, "\t$rd, $rs, $imm"),
|
||||
@@ -316,6 +358,19 @@ def SLL16_MM : ShiftIMM16<"sll16", uimm3_shift, GPRMM16Opnd, II_SLL>,
|
||||
SHIFT_FM_MM16<0>;
|
||||
def SRL16_MM : ShiftIMM16<"srl16", uimm3_shift, GPRMM16Opnd, II_SRL>,
|
||||
SHIFT_FM_MM16<1>;
|
||||
def LBU16_MM : LoadMM16<"lbu16", GPRMM16Opnd, zextloadi8, II_LBU,
|
||||
mem_mm_4>, LOAD_STORE_FM_MM16<0x02>;
|
||||
def LHU16_MM : LoadMM16<"lhu16", GPRMM16Opnd, zextloadi16, II_LHU,
|
||||
mem_mm_4_lsl1>, LOAD_STORE_FM_MM16<0x0a>;
|
||||
def LW16_MM : LoadMM16<"lw16", GPRMM16Opnd, load, II_LW, mem_mm_4_lsl2>,
|
||||
LOAD_STORE_FM_MM16<0x1a>;
|
||||
def SB16_MM : StoreMM16<"sb16", GPRMM16OpndZero, GPRMM16Opnd, truncstorei8,
|
||||
II_SB, mem_mm_4>, LOAD_STORE_FM_MM16<0x22>;
|
||||
def SH16_MM : StoreMM16<"sh16", GPRMM16OpndZero, GPRMM16Opnd, truncstorei16,
|
||||
II_SH, mem_mm_4_lsl1>,
|
||||
LOAD_STORE_FM_MM16<0x2a>;
|
||||
def SW16_MM : StoreMM16<"sw16", GPRMM16OpndZero, GPRMM16Opnd, store, II_SW,
|
||||
mem_mm_4_lsl2>, LOAD_STORE_FM_MM16<0x3a>;
|
||||
def ADDIUR1SP_MM : AddImmUR1SP<"addiur1sp", GPRMM16Opnd>, ADDIUR1SP_FM_MM16;
|
||||
def ADDIUR2_MM : AddImmUR2<"addiur2", GPRMM16Opnd>, ADDIUR2_FM_MM16;
|
||||
def ADDIUS5_MM : AddImmUS5<"addius5", GPR32Opnd>, ADDIUS5_FM_MM16;
|
||||
|
||||
Reference in New Issue
Block a user