mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-30 23:20:54 +00:00
Revert "[mips][microMIPS] Implement CFC*, CTC* and LDC* instructions"
This reverts commit r269176 as it caused test-suite failure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@269287 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
26020e6ce8
commit
6c8d6522ab
@ -341,10 +341,6 @@ static DecodeStatus DecodeFMem(MCInst &Inst, unsigned Insn,
|
|||||||
uint64_t Address,
|
uint64_t Address,
|
||||||
const void *Decoder);
|
const void *Decoder);
|
||||||
|
|
||||||
static DecodeStatus DecodeFMemMMR6(MCInst &Inst, unsigned Insn,
|
|
||||||
uint64_t Address,
|
|
||||||
const void *Decoder);
|
|
||||||
|
|
||||||
static DecodeStatus DecodeFMem2(MCInst &Inst, unsigned Insn,
|
static DecodeStatus DecodeFMem2(MCInst &Inst, unsigned Insn,
|
||||||
uint64_t Address,
|
uint64_t Address,
|
||||||
const void *Decoder);
|
const void *Decoder);
|
||||||
@ -357,10 +353,6 @@ static DecodeStatus DecodeFMemCop2R6(MCInst &Inst, unsigned Insn,
|
|||||||
uint64_t Address,
|
uint64_t Address,
|
||||||
const void *Decoder);
|
const void *Decoder);
|
||||||
|
|
||||||
static DecodeStatus DecodeFMemCop2MMR6(MCInst &Inst, unsigned Insn,
|
|
||||||
uint64_t Address,
|
|
||||||
const void *Decoder);
|
|
||||||
|
|
||||||
static DecodeStatus DecodeSpecial3LlSc(MCInst &Inst,
|
static DecodeStatus DecodeSpecial3LlSc(MCInst &Inst,
|
||||||
unsigned Insn,
|
unsigned Insn,
|
||||||
uint64_t Address,
|
uint64_t Address,
|
||||||
@ -1607,22 +1599,6 @@ static DecodeStatus DecodeFMem(MCInst &Inst,
|
|||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
static DecodeStatus DecodeFMemMMR6(MCInst &Inst, unsigned Insn,
|
|
||||||
uint64_t Address, const void *Decoder) {
|
|
||||||
int Offset = SignExtend32<16>(Insn & 0xffff);
|
|
||||||
unsigned Base = fieldFromInstruction(Insn, 16, 5);
|
|
||||||
unsigned Reg = fieldFromInstruction(Insn, 21, 5);
|
|
||||||
|
|
||||||
Reg = getReg(Decoder, Mips::FGR64RegClassID, Reg);
|
|
||||||
Base = getReg(Decoder, Mips::GPR32RegClassID, Base);
|
|
||||||
|
|
||||||
Inst.addOperand(MCOperand::createReg(Reg));
|
|
||||||
Inst.addOperand(MCOperand::createReg(Base));
|
|
||||||
Inst.addOperand(MCOperand::createImm(Offset));
|
|
||||||
|
|
||||||
return MCDisassembler::Success;
|
|
||||||
}
|
|
||||||
|
|
||||||
static DecodeStatus DecodeFMem2(MCInst &Inst,
|
static DecodeStatus DecodeFMem2(MCInst &Inst,
|
||||||
unsigned Insn,
|
unsigned Insn,
|
||||||
uint64_t Address,
|
uint64_t Address,
|
||||||
@ -1676,22 +1652,6 @@ static DecodeStatus DecodeFMemCop2R6(MCInst &Inst,
|
|||||||
|
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
static DecodeStatus DecodeFMemCop2MMR6(MCInst &Inst, unsigned Insn,
|
|
||||||
uint64_t Address, const void *Decoder) {
|
|
||||||
int Offset = SignExtend32<11>(Insn & 0x07ff);
|
|
||||||
unsigned Reg = fieldFromInstruction(Insn, 21, 5);
|
|
||||||
unsigned Base = fieldFromInstruction(Insn, 16, 5);
|
|
||||||
|
|
||||||
Reg = getReg(Decoder, Mips::COP2RegClassID, Reg);
|
|
||||||
Base = getReg(Decoder, Mips::GPR32RegClassID, Base);
|
|
||||||
|
|
||||||
Inst.addOperand(MCOperand::createReg(Reg));
|
|
||||||
Inst.addOperand(MCOperand::createReg(Base));
|
|
||||||
Inst.addOperand(MCOperand::createImm(Offset));
|
|
||||||
|
|
||||||
return MCDisassembler::Success;
|
|
||||||
}
|
|
||||||
static DecodeStatus DecodeSpecial3LlSc(MCInst &Inst,
|
static DecodeStatus DecodeSpecial3LlSc(MCInst &Inst,
|
||||||
unsigned Insn,
|
unsigned Insn,
|
||||||
uint64_t Address,
|
uint64_t Address,
|
||||||
|
@ -752,19 +752,6 @@ getMemEncodingMMImm9(const MCInst &MI, unsigned OpNo,
|
|||||||
return (OffBits & 0x1FF) | RegBits;
|
return (OffBits & 0x1FF) | RegBits;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned MipsMCCodeEmitter::
|
|
||||||
getMemEncodingMMImm11(const MCInst &MI, unsigned OpNo,
|
|
||||||
SmallVectorImpl<MCFixup> &Fixups,
|
|
||||||
const MCSubtargetInfo &STI) const {
|
|
||||||
// Base register is encoded in bits 20-16, offset is encoded in bits 10-0.
|
|
||||||
assert(MI.getOperand(OpNo).isReg());
|
|
||||||
unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups,
|
|
||||||
STI) << 16;
|
|
||||||
unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups, STI);
|
|
||||||
|
|
||||||
return (OffBits & 0x07FF) | RegBits;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned MipsMCCodeEmitter::
|
unsigned MipsMCCodeEmitter::
|
||||||
getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo,
|
getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo,
|
||||||
SmallVectorImpl<MCFixup> &Fixups,
|
SmallVectorImpl<MCFixup> &Fixups,
|
||||||
|
@ -183,9 +183,6 @@ public:
|
|||||||
unsigned getMemEncodingMMImm9(const MCInst &MI, unsigned OpNo,
|
unsigned getMemEncodingMMImm9(const MCInst &MI, unsigned OpNo,
|
||||||
SmallVectorImpl<MCFixup> &Fixups,
|
SmallVectorImpl<MCFixup> &Fixups,
|
||||||
const MCSubtargetInfo &STI) const;
|
const MCSubtargetInfo &STI) const;
|
||||||
unsigned getMemEncodingMMImm11(const MCInst &MI, unsigned OpNo,
|
|
||||||
SmallVectorImpl<MCFixup> &Fixups,
|
|
||||||
const MCSubtargetInfo &STI) const;
|
|
||||||
unsigned getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo,
|
unsigned getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo,
|
||||||
SmallVectorImpl<MCFixup> &Fixups,
|
SmallVectorImpl<MCFixup> &Fixups,
|
||||||
const MCSubtargetInfo &STI) const;
|
const MCSubtargetInfo &STI) const;
|
||||||
|
@ -993,35 +993,3 @@ class POOL32B_LWP_SWP_FM_MMR6<bits<4> funct> : MipsR6Inst {
|
|||||||
let Inst{15-12} = funct;
|
let Inst{15-12} = funct;
|
||||||
let Inst{11-0} = offset;
|
let Inst{11-0} = offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
class LDWC1_SDWC1_FM_MMR6<string instr_asm, bits<6> funct>
|
|
||||||
: MMR6Arch<instr_asm> {
|
|
||||||
bits<5> ft;
|
|
||||||
bits<21> addr;
|
|
||||||
bits<5> base = addr{20-16};
|
|
||||||
bits<16> offset = addr{15-0};
|
|
||||||
|
|
||||||
bits<32> Inst;
|
|
||||||
|
|
||||||
let Inst{31-26} = funct;
|
|
||||||
let Inst{25-21} = ft;
|
|
||||||
let Inst{20-16} = base;
|
|
||||||
let Inst{15-0} = offset;
|
|
||||||
}
|
|
||||||
|
|
||||||
class POOL32B_LDWC2_SDWC2_FM_MMR6<string instr_asm, bits<4> funct>
|
|
||||||
: MMR6Arch<instr_asm>, MipsR6Inst {
|
|
||||||
bits<5> rt;
|
|
||||||
bits<21> addr;
|
|
||||||
bits<5> base = addr{20-16};
|
|
||||||
bits<11> offset = addr{10-0};
|
|
||||||
|
|
||||||
bits<32> Inst;
|
|
||||||
|
|
||||||
let Inst{31-26} = 0b001000;
|
|
||||||
let Inst{25-21} = rt;
|
|
||||||
let Inst{20-16} = base;
|
|
||||||
let Inst{15-12} = funct;
|
|
||||||
let Inst{11} = 0;
|
|
||||||
let Inst{10-0} = offset;
|
|
||||||
}
|
|
||||||
|
@ -59,10 +59,6 @@ class BGEZALC_MMR6_ENC : CMP_BRANCH_1R_BOTH_OFF16_FM_MMR6<"bgezalc", 0b110000>,
|
|||||||
class BLEZALC_MMR6_ENC : CMP_BRANCH_1R_RT_OFF16_FM_MMR6<"blezalc", 0b110000>,
|
class BLEZALC_MMR6_ENC : CMP_BRANCH_1R_RT_OFF16_FM_MMR6<"blezalc", 0b110000>,
|
||||||
MMDecodeDisambiguatedBy<"BlezGroupBranchMMR6">;
|
MMDecodeDisambiguatedBy<"BlezGroupBranchMMR6">;
|
||||||
class CACHE_MMR6_ENC : CACHE_PREF_FM_MMR6<0b001000, 0b0110>;
|
class CACHE_MMR6_ENC : CACHE_PREF_FM_MMR6<0b001000, 0b0110>;
|
||||||
class CFC1_MMR6_ENC : POOL32F_MFTC1_FM_MMR6<"cfc1", 0b01000000>;
|
|
||||||
class CFC2_MMR6_ENC : POOL32A_MFTC2_FM_MMR6<"cfc2", 0b1100110100>;
|
|
||||||
class CTC1_MMR6_ENC : POOL32F_MFTC1_FM_MMR6<"ctc1", 0b01100000>;
|
|
||||||
class CTC2_MMR6_ENC : POOL32A_MFTC2_FM_MMR6<"ctc2", 0b1101110100>;
|
|
||||||
class CLO_MMR6_ENC : POOL32A_2R_FM_MMR6<0b0100101100>;
|
class CLO_MMR6_ENC : POOL32A_2R_FM_MMR6<0b0100101100>;
|
||||||
class CLZ_MMR6_ENC : SPECIAL_2R_FM_MMR6<0b010000>;
|
class CLZ_MMR6_ENC : SPECIAL_2R_FM_MMR6<0b010000>;
|
||||||
class DIV_MMR6_ENC : ARITH_FM_MMR6<"div", 0x118>;
|
class DIV_MMR6_ENC : ARITH_FM_MMR6<"div", 0x118>;
|
||||||
@ -78,8 +74,6 @@ class JIALC_MMR6_ENC : JMP_IDX_COMPACT_FM<0b100000>;
|
|||||||
class JIC_MMR6_ENC : JMP_IDX_COMPACT_FM<0b101000>;
|
class JIC_MMR6_ENC : JMP_IDX_COMPACT_FM<0b101000>;
|
||||||
class JRC16_MMR6_ENC: POOL16C_JALRC_FM_MM16R6<0x3>;
|
class JRC16_MMR6_ENC: POOL16C_JALRC_FM_MM16R6<0x3>;
|
||||||
class JRCADDIUSP_MMR6_ENC : POOL16C_JRCADDIUSP_FM_MM16R6<0x13>;
|
class JRCADDIUSP_MMR6_ENC : POOL16C_JRCADDIUSP_FM_MM16R6<0x13>;
|
||||||
class LDC1_MMR6_ENC : LDWC1_SDWC1_FM_MMR6<"ldc1", 0b101111>;
|
|
||||||
class LDC2_MMR6_ENC : POOL32B_LDWC2_SDWC2_FM_MMR6<"ldc2", 0b0010>;
|
|
||||||
class LSA_MMR6_ENC : POOL32A_LSA_FM<0b001111>;
|
class LSA_MMR6_ENC : POOL32A_LSA_FM<0b001111>;
|
||||||
class LWP_MMR6_ENC : POOL32B_LWP_SWP_FM_MMR6<0x1>;
|
class LWP_MMR6_ENC : POOL32B_LWP_SWP_FM_MMR6<0x1>;
|
||||||
class LWPC_MMR6_ENC : PCREL19_FM_MMR6<0b01>;
|
class LWPC_MMR6_ENC : PCREL19_FM_MMR6<0b01>;
|
||||||
@ -681,15 +675,6 @@ class MTC2_MMR6_DESC_BASE<string opstr, RegisterOperand DstRC,
|
|||||||
Format f = FrmFR;
|
Format f = FrmFR;
|
||||||
string BaseOpcode = opstr;
|
string BaseOpcode = opstr;
|
||||||
}
|
}
|
||||||
class CFC2_MMR6_DESC_BASE<string opstr, RegisterOperand DstRC,
|
|
||||||
RegisterOperand SrcRC, SDPatternOperator OpNode = null_frag> {
|
|
||||||
dag InOperandList = (ins SrcRC:$impl);
|
|
||||||
dag OutOperandList = (outs DstRC:$rt);
|
|
||||||
string AsmString = !strconcat(opstr, "\t$rt, $impl");
|
|
||||||
list<dag> Pattern = [(set DstRC:$rt, (OpNode SrcRC:$impl))];
|
|
||||||
Format f = FrmFR;
|
|
||||||
string BaseOpcode = opstr;
|
|
||||||
}
|
|
||||||
|
|
||||||
class MTC0_MMR6_DESC : MTC0_MMR6_DESC_BASE<"mtc0", COP0Opnd, GPR32Opnd>;
|
class MTC0_MMR6_DESC : MTC0_MMR6_DESC_BASE<"mtc0", COP0Opnd, GPR32Opnd>;
|
||||||
class MTC1_MMR6_DESC : MTC1_MMR6_DESC_BASE<"mtc1", FGR32Opnd, GPR32Opnd,
|
class MTC1_MMR6_DESC : MTC1_MMR6_DESC_BASE<"mtc1", FGR32Opnd, GPR32Opnd,
|
||||||
@ -743,48 +728,6 @@ class MFHC1_D64_MMR6_DESC : MFC1_MMR6_DESC_BASE<"mfhc1", GPR32Opnd, FGR64Opnd,
|
|||||||
II_MFHC1>, HARDFLOAT, FGR_64;
|
II_MFHC1>, HARDFLOAT, FGR_64;
|
||||||
class MFHC2_MMR6_DESC : MFC2_MMR6_DESC_BASE<"mfhc2", GPR32Opnd, COP2Opnd>;
|
class MFHC2_MMR6_DESC : MFC2_MMR6_DESC_BASE<"mfhc2", GPR32Opnd, COP2Opnd>;
|
||||||
|
|
||||||
class CFC1_MMR6_DESC : MTC1_MMR6_DESC_BASE<"cfc1", GPR32Opnd, CCROpnd, II_CFC1>,
|
|
||||||
HARDFLOAT;
|
|
||||||
class CFC2_MMR6_DESC : CFC2_MMR6_DESC_BASE<"cfc2", GPR32Opnd, COP2Opnd>;
|
|
||||||
class CTC1_MMR6_DESC : MTC1_MMR6_DESC_BASE<"ctc1", CCROpnd, GPR32Opnd, II_CTC1>,
|
|
||||||
HARDFLOAT;
|
|
||||||
class CTC2_MMR6_DESC : MTC2_MMR6_DESC_BASE<"ctc2", COP2Opnd, GPR32Opnd>;
|
|
||||||
|
|
||||||
class LDWC1_DESC_BASE<string opstr, RegisterOperand RC, InstrItinClass Itin,
|
|
||||||
SDPatternOperator OpNode = null_frag> : MipsR6Inst,
|
|
||||||
HARDFLOAT {
|
|
||||||
dag InOperandList = (ins mem_mm_16:$addr);
|
|
||||||
dag OutOperandList = (outs RC:$ft);
|
|
||||||
string AsmString = !strconcat(opstr, "\t$ft, $addr");
|
|
||||||
list<dag> Pattern = [(set RC:$ft, (OpNode addrDefault:$addr))];
|
|
||||||
Format f = FrmFI;
|
|
||||||
InstrItinClass Itinerary = Itin;
|
|
||||||
string BaseOpcode = opstr;
|
|
||||||
bit mayLoad = 1;
|
|
||||||
let DecoderMethod = "DecodeFMemMMR6";
|
|
||||||
}
|
|
||||||
class LDC1_D32_MMR6_DESC : LDWC1_DESC_BASE<"ldc1", AFGR64Opnd, II_LDC1, load>,
|
|
||||||
FGR_32;
|
|
||||||
class LDC1_D64_MMR6_DESC : LDWC1_DESC_BASE<"ldc1", FGR64Opnd, II_LDC1, load>,
|
|
||||||
FGR_64;
|
|
||||||
|
|
||||||
class COP2LD_MMR6_DESC_BASE<string opstr, RegisterOperand COPOpnd,
|
|
||||||
InstrItinClass Itin,
|
|
||||||
SDPatternOperator OpNode = null_frag> {
|
|
||||||
dag OutOperandList = (outs COPOpnd:$rt);
|
|
||||||
dag InOperandList = (ins mem_mm_11:$addr);
|
|
||||||
string AsmString = !strconcat(opstr, "\t$rt, $addr");
|
|
||||||
list<dag> Pattern = [(set COPOpnd:$rt, (OpNode addrDefault:$addr))];
|
|
||||||
Format f = FrmFI;
|
|
||||||
InstrItinClass Itinerary = Itin;
|
|
||||||
string BaseOpcode = opstr;
|
|
||||||
bit mayLoad = 1;
|
|
||||||
string DecoderMethod = "DecodeFMemCop2MMR6";
|
|
||||||
}
|
|
||||||
|
|
||||||
class LDC2_MMR6_DESC : COP2LD_MMR6_DESC_BASE<"ldc2", COP2Opnd, NoItinerary,
|
|
||||||
load>;
|
|
||||||
|
|
||||||
/// Floating Point Instructions
|
/// Floating Point Instructions
|
||||||
class FARITH_MMR6_DESC_BASE<string instr_asm, RegisterOperand RC,
|
class FARITH_MMR6_DESC_BASE<string instr_asm, RegisterOperand RC,
|
||||||
InstrItinClass Itin, bit isComm,
|
InstrItinClass Itin, bit isComm,
|
||||||
@ -1240,10 +1183,6 @@ def BNEZALC_MMR6 : R6MMR6Rel, BNEZALC_MMR6_ENC, BNEZALC_MMR6_DESC,
|
|||||||
ISA_MICROMIPS32R6;
|
ISA_MICROMIPS32R6;
|
||||||
def BREAK_MMR6 : StdMMR6Rel, BRK_MMR6_DESC, BRK_MMR6_ENC, ISA_MICROMIPS32R6;
|
def BREAK_MMR6 : StdMMR6Rel, BRK_MMR6_DESC, BRK_MMR6_ENC, ISA_MICROMIPS32R6;
|
||||||
def CACHE_MMR6 : R6MMR6Rel, CACHE_MMR6_ENC, CACHE_MMR6_DESC, ISA_MICROMIPS32R6;
|
def CACHE_MMR6 : R6MMR6Rel, CACHE_MMR6_ENC, CACHE_MMR6_DESC, ISA_MICROMIPS32R6;
|
||||||
def CFC1_MMR6 : StdMMR6Rel, CFC1_MMR6_DESC, CFC1_MMR6_ENC, ISA_MICROMIPS32R6;
|
|
||||||
def CFC2_MMR6 : StdMMR6Rel, CFC2_MMR6_ENC, CFC2_MMR6_DESC, ISA_MICROMIPS32R6;
|
|
||||||
def CTC1_MMR6 : StdMMR6Rel, CTC1_MMR6_DESC, CTC1_MMR6_ENC, ISA_MICROMIPS32R6;
|
|
||||||
def CTC2_MMR6 : StdMMR6Rel, CTC2_MMR6_ENC, CTC2_MMR6_DESC, ISA_MICROMIPS32R6;
|
|
||||||
def CLO_MMR6 : R6MMR6Rel, CLO_MMR6_ENC, CLO_MMR6_DESC, ISA_MICROMIPS32R6;
|
def CLO_MMR6 : R6MMR6Rel, CLO_MMR6_ENC, CLO_MMR6_DESC, ISA_MICROMIPS32R6;
|
||||||
def CLZ_MMR6 : R6MMR6Rel, CLZ_MMR6_ENC, CLZ_MMR6_DESC, ISA_MICROMIPS32R6;
|
def CLZ_MMR6 : R6MMR6Rel, CLZ_MMR6_ENC, CLZ_MMR6_DESC, ISA_MICROMIPS32R6;
|
||||||
def DIV_MMR6 : R6MMR6Rel, DIV_MMR6_DESC, DIV_MMR6_ENC, ISA_MICROMIPS32R6;
|
def DIV_MMR6 : R6MMR6Rel, DIV_MMR6_DESC, DIV_MMR6_ENC, ISA_MICROMIPS32R6;
|
||||||
@ -1262,15 +1201,6 @@ def JIC_MMR6 : R6MMR6Rel, JIC_MMR6_ENC, JIC_MMR6_DESC, ISA_MICROMIPS32R6;
|
|||||||
def JRC16_MMR6 : R6MMR6Rel, JRC16_MMR6_DESC, JRC16_MMR6_ENC, ISA_MICROMIPS32R6;
|
def JRC16_MMR6 : R6MMR6Rel, JRC16_MMR6_DESC, JRC16_MMR6_ENC, ISA_MICROMIPS32R6;
|
||||||
def JRCADDIUSP_MMR6 : R6MMR6Rel, JRCADDIUSP_MMR6_DESC, JRCADDIUSP_MMR6_ENC,
|
def JRCADDIUSP_MMR6 : R6MMR6Rel, JRCADDIUSP_MMR6_DESC, JRCADDIUSP_MMR6_ENC,
|
||||||
ISA_MICROMIPS32R6;
|
ISA_MICROMIPS32R6;
|
||||||
def LDC1_D32_MMR6 : StdMMR6Rel, LDC1_D32_MMR6_DESC, LDC1_MMR6_ENC,
|
|
||||||
ISA_MICROMIPS32R6;
|
|
||||||
let DecoderNamespace = "MicroMips32r6FP64" in {
|
|
||||||
def LDC1_D64_MMR6 : StdMMR6Rel, LDC1_D64_MMR6_DESC, LDC1_MMR6_ENC,
|
|
||||||
ISA_MICROMIPS32R6 {
|
|
||||||
let BaseOpcode = "LDC164";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
def LDC2_MMR6 : StdMMR6Rel, LDC2_MMR6_ENC, LDC2_MMR6_DESC, ISA_MICROMIPS32R6;
|
|
||||||
def LSA_MMR6 : R6MMR6Rel, LSA_MMR6_ENC, LSA_MMR6_DESC, ISA_MICROMIPS32R6;
|
def LSA_MMR6 : R6MMR6Rel, LSA_MMR6_ENC, LSA_MMR6_DESC, ISA_MICROMIPS32R6;
|
||||||
def LWP_MMR6 : StdMMR6Rel, LWP_MMR6_ENC, LWP_MMR6_DESC, ISA_MICROMIPS32R6;
|
def LWP_MMR6 : StdMMR6Rel, LWP_MMR6_ENC, LWP_MMR6_DESC, ISA_MICROMIPS32R6;
|
||||||
def LWPC_MMR6 : R6MMR6Rel, LWPC_MMR6_ENC, LWPC_MMR6_DESC, ISA_MICROMIPS32R6;
|
def LWPC_MMR6 : R6MMR6Rel, LWPC_MMR6_ENC, LWPC_MMR6_DESC, ISA_MICROMIPS32R6;
|
||||||
@ -1582,9 +1512,3 @@ def : MipsPat<(store GPRMM16:$src, addrimm4lsl2:$addr),
|
|||||||
(SW16_MMR6 GPRMM16:$src, addrimm4lsl2:$addr)>, ISA_MICROMIPS32R6;
|
(SW16_MMR6 GPRMM16:$src, addrimm4lsl2:$addr)>, ISA_MICROMIPS32R6;
|
||||||
def : MipsPat<(subc GPR32:$lhs, GPR32:$rhs),
|
def : MipsPat<(subc GPR32:$lhs, GPR32:$rhs),
|
||||||
(SUBU_MMR6 GPR32:$lhs, GPR32:$rhs)>, ISA_MICROMIPS32R6;
|
(SUBU_MMR6 GPR32:$lhs, GPR32:$rhs)>, ISA_MICROMIPS32R6;
|
||||||
|
|
||||||
// Patterns for load with a reg+imm operand.
|
|
||||||
let AddedComplexity = 41 in {
|
|
||||||
def : LoadRegImmPat<LDC1_D64_MMR6, f64, load>, FGR_64;
|
|
||||||
def : LoadRegImmPat<LDC1_D32_MMR6, f64, load>, FGR_32;
|
|
||||||
}
|
|
||||||
|
@ -20,6 +20,7 @@ def FSUB_MM : MMRel, ADDS_FT<"sub.d", AFGR64Opnd, II_SUB_D, 0, fsub>,
|
|||||||
def LWC1_MM : MMRel, LW_FT<"lwc1", FGR32Opnd, II_LWC1, load>, LW_FM_MM<0x27>;
|
def LWC1_MM : MMRel, LW_FT<"lwc1", FGR32Opnd, II_LWC1, load>, LW_FM_MM<0x27>;
|
||||||
def SWC1_MM : MMRel, SW_FT<"swc1", FGR32Opnd, II_SWC1, store>,
|
def SWC1_MM : MMRel, SW_FT<"swc1", FGR32Opnd, II_SWC1, store>,
|
||||||
LW_FM_MM<0x26>;
|
LW_FM_MM<0x26>;
|
||||||
|
def LDC1_MM : MMRel, LW_FT<"ldc1", AFGR64Opnd, II_LDC1, load>, LW_FM_MM<0x2f>;
|
||||||
def SDC1_MM : MMRel, SW_FT<"sdc1", AFGR64Opnd, II_SDC1, store>,
|
def SDC1_MM : MMRel, SW_FT<"sdc1", AFGR64Opnd, II_SDC1, store>,
|
||||||
LW_FM_MM<0x2e>;
|
LW_FM_MM<0x2e>;
|
||||||
def LWXC1_MM : MMRel, LWXC1_FT<"lwxc1", FGR32Opnd, II_LWXC1, load>,
|
def LWXC1_MM : MMRel, LWXC1_FT<"lwxc1", FGR32Opnd, II_LWXC1, load>,
|
||||||
@ -146,10 +147,4 @@ let AdditionalPredicates = [InMicroMips] in {
|
|||||||
MFC1_FM_MM<0xe0>, ISA_MIPS32R2, FGR_32;
|
MFC1_FM_MM<0xe0>, ISA_MIPS32R2, FGR_32;
|
||||||
def MFHC1_MM : MMRel, MFC1_FT<"mfhc1", GPR32Opnd, AFGR64Opnd, II_MFHC1>,
|
def MFHC1_MM : MMRel, MFC1_FT<"mfhc1", GPR32Opnd, AFGR64Opnd, II_MFHC1>,
|
||||||
MFC1_FM_MM<0xc0>, ISA_MIPS32R2, FGR_32;
|
MFC1_FM_MM<0xc0>, ISA_MIPS32R2, FGR_32;
|
||||||
def LDC1_MM : MMRel, LW_FT<"ldc1", AFGR64Opnd, II_LDC1, load>,
|
|
||||||
LW_FM_MM<0x2f>, FGR_32 {
|
|
||||||
let DecoderNamespace = "MicroMips";
|
|
||||||
let DecoderMethod = "DecodeFMemMMR6";
|
|
||||||
let BaseOpcode = "LDC132";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -110,14 +110,6 @@ def mem_mm_9 : Operand<i32> {
|
|||||||
let OperandType = "OPERAND_MEMORY";
|
let OperandType = "OPERAND_MEMORY";
|
||||||
}
|
}
|
||||||
|
|
||||||
def mem_mm_11 : Operand<i32> {
|
|
||||||
let PrintMethod = "printMemOperand";
|
|
||||||
let MIOperandInfo = (ops ptr_rc, simm11);
|
|
||||||
let EncoderMethod = "getMemEncodingMMImm11";
|
|
||||||
let ParserMatchClass = MipsMemSimm11AsmOperand;
|
|
||||||
let OperandType = "OPERAND_MEMORY";
|
|
||||||
}
|
|
||||||
|
|
||||||
def mem_mm_12 : Operand<i32> {
|
def mem_mm_12 : Operand<i32> {
|
||||||
let PrintMethod = "printMemOperand";
|
let PrintMethod = "printMemOperand";
|
||||||
let MIOperandInfo = (ops ptr_rc, simm12);
|
let MIOperandInfo = (ops ptr_rc, simm12);
|
||||||
|
@ -756,9 +756,9 @@ let AdditionalPredicates = [NotInMicroMips] in {
|
|||||||
def JIALC : R6MMR6Rel, JIALC_ENC, JIALC_DESC, ISA_MIPS32R6;
|
def JIALC : R6MMR6Rel, JIALC_ENC, JIALC_DESC, ISA_MIPS32R6;
|
||||||
def JIC : R6MMR6Rel, JIC_ENC, JIC_DESC, ISA_MIPS32R6;
|
def JIC : R6MMR6Rel, JIC_ENC, JIC_DESC, ISA_MIPS32R6;
|
||||||
def JR_HB_R6 : JR_HB_R6_ENC, JR_HB_R6_DESC, ISA_MIPS32R6;
|
def JR_HB_R6 : JR_HB_R6_ENC, JR_HB_R6_DESC, ISA_MIPS32R6;
|
||||||
|
def LDC2_R6 : LDC2_R6_ENC, LDC2_R6_DESC, ISA_MIPS32R6;
|
||||||
let AdditionalPredicates = [NotInMicroMips] in {
|
let AdditionalPredicates = [NotInMicroMips] in {
|
||||||
def LL_R6 : LL_R6_ENC, LL_R6_DESC, ISA_MIPS32R6;
|
def LL_R6 : LL_R6_ENC, LL_R6_DESC, ISA_MIPS32R6;
|
||||||
def LDC2_R6 : LDC2_R6_ENC, LDC2_R6_DESC, ISA_MIPS32R6;
|
|
||||||
}
|
}
|
||||||
def LSA_R6 : R6MMR6Rel, LSA_R6_ENC, LSA_R6_DESC, ISA_MIPS32R6;
|
def LSA_R6 : R6MMR6Rel, LSA_R6_ENC, LSA_R6_DESC, ISA_MIPS32R6;
|
||||||
def LWC2_R6 : LWC2_R6_ENC, LWC2_R6_DESC, ISA_MIPS32R6;
|
def LWC2_R6 : LWC2_R6_ENC, LWC2_R6_DESC, ISA_MIPS32R6;
|
||||||
|
@ -404,19 +404,14 @@ def LWC1 : MMRel, LW_FT<"lwc1", FGR32Opnd, II_LWC1, load>, LW_FM<0x31>;
|
|||||||
def SWC1 : MMRel, SW_FT<"swc1", FGR32Opnd, II_SWC1, store>, LW_FM<0x39>;
|
def SWC1 : MMRel, SW_FT<"swc1", FGR32Opnd, II_SWC1, store>, LW_FM<0x39>;
|
||||||
|
|
||||||
let DecoderNamespace = "Mips64" in {
|
let DecoderNamespace = "Mips64" in {
|
||||||
let AdditionalPredicates = [NotInMicroMips] in {
|
def LDC164 : LW_FT<"ldc1", FGR64Opnd, II_LDC1, load>, LW_FM<0x35>, ISA_MIPS2,
|
||||||
def LDC164 : StdMMR6Rel, LW_FT<"ldc1", FGR64Opnd, II_LDC1, load>,
|
FGR_64;
|
||||||
LW_FM<0x35>, ISA_MIPS2, FGR_64 {
|
|
||||||
let BaseOpcode = "LDC164";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
def SDC164 : SW_FT<"sdc1", FGR64Opnd, II_SDC1, store>, LW_FM<0x3d>, ISA_MIPS2,
|
def SDC164 : SW_FT<"sdc1", FGR64Opnd, II_SDC1, store>, LW_FM<0x3d>, ISA_MIPS2,
|
||||||
FGR_64;
|
FGR_64;
|
||||||
}
|
}
|
||||||
def LDC1 : MMRel, StdMMR6Rel, LW_FT<"ldc1", AFGR64Opnd, II_LDC1, load>,
|
|
||||||
LW_FM<0x35>, ISA_MIPS2, FGR_32 {
|
def LDC1 : MMRel, LW_FT<"ldc1", AFGR64Opnd, II_LDC1, load>, LW_FM<0x35>,
|
||||||
let BaseOpcode = "LDC132";
|
ISA_MIPS2, FGR_32;
|
||||||
}
|
|
||||||
def SDC1 : MMRel, SW_FT<"sdc1", AFGR64Opnd, II_SDC1, store>, LW_FM<0x3d>,
|
def SDC1 : MMRel, SW_FT<"sdc1", AFGR64Opnd, II_SDC1, store>, LW_FM<0x3d>,
|
||||||
ISA_MIPS2, FGR_32;
|
ISA_MIPS2, FGR_32;
|
||||||
|
|
||||||
|
@ -1742,7 +1742,7 @@ def LWC2 : LW_FT2<"lwc2", COP2Opnd, NoItinerary, load>, LW_FM<0x32>,
|
|||||||
ISA_MIPS1_NOT_32R6_64R6;
|
ISA_MIPS1_NOT_32R6_64R6;
|
||||||
def SWC2 : SW_FT2<"swc2", COP2Opnd, NoItinerary, store>, LW_FM<0x3a>,
|
def SWC2 : SW_FT2<"swc2", COP2Opnd, NoItinerary, store>, LW_FM<0x3a>,
|
||||||
ISA_MIPS1_NOT_32R6_64R6;
|
ISA_MIPS1_NOT_32R6_64R6;
|
||||||
def LDC2 : StdMMR6Rel, LW_FT2<"ldc2", COP2Opnd, NoItinerary, load>, LW_FM<0x36>,
|
def LDC2 : LW_FT2<"ldc2", COP2Opnd, NoItinerary, load>, LW_FM<0x36>,
|
||||||
ISA_MIPS2_NOT_32R6_64R6;
|
ISA_MIPS2_NOT_32R6_64R6;
|
||||||
def SDC2 : SW_FT2<"sdc2", COP2Opnd, NoItinerary, store>, LW_FM<0x3e>,
|
def SDC2 : SW_FT2<"sdc2", COP2Opnd, NoItinerary, store>, LW_FM<0x3e>,
|
||||||
ISA_MIPS2_NOT_32R6_64R6;
|
ISA_MIPS2_NOT_32R6_64R6;
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
; RUN: llc -march=mips64el -target-abi n64 < %s | FileCheck --check-prefix=ALL --check-prefix=N64 %s
|
; RUN: llc -march=mips64el -target-abi n64 < %s | FileCheck --check-prefix=ALL --check-prefix=N64 %s
|
||||||
; RUN: llc -march=mips64 -target-abi n64 < %s | FileCheck --check-prefix=ALL --check-prefix=ALL-INV --check-prefix=N64-INV %s
|
; RUN: llc -march=mips64 -target-abi n64 < %s | FileCheck --check-prefix=ALL --check-prefix=ALL-INV --check-prefix=N64-INV %s
|
||||||
; RUN: llc -march=mips64el -target-abi n64 < %s | FileCheck --check-prefix=ALL --check-prefix=ALL-INV --check-prefix=N64-INV %s
|
; RUN: llc -march=mips64el -target-abi n64 < %s | FileCheck --check-prefix=ALL --check-prefix=ALL-INV --check-prefix=N64-INV %s
|
||||||
; RUN: llc -march=mips -mcpu=mips32r6 -mattr=micromips -filetype=obj < %s -o - | llvm-objdump -no-show-raw-insn -arch mips -mcpu=mips32r6 -mattr=micromips -d - | FileCheck --check-prefix=MM32R6 %s
|
|
||||||
|
|
||||||
; Test the the callee-saved registers are callee-saved as specified by section
|
; Test the the callee-saved registers are callee-saved as specified by section
|
||||||
; 2 of the MIPSpro N32 Handbook and section 3 of the SYSV ABI spec.
|
; 2 of the MIPSpro N32 Handbook and section 3 of the SYSV ABI spec.
|
||||||
@ -110,6 +109,3 @@ entry:
|
|||||||
; N64-DAG: ldc1 [[F30]], [[OFF30]]($sp)
|
; N64-DAG: ldc1 [[F30]], [[OFF30]]($sp)
|
||||||
; N64-DAG: ldc1 [[F31]], [[OFF31]]($sp)
|
; N64-DAG: ldc1 [[F31]], [[OFF31]]($sp)
|
||||||
; N64: addiu $sp, $sp, 64
|
; N64: addiu $sp, $sp, 64
|
||||||
|
|
||||||
; Check the mapping between LDC164 and LDC1_64_MMR6.
|
|
||||||
; MM32R6: ldc1
|
|
||||||
|
@ -60,10 +60,6 @@
|
|||||||
0x20 0x25 0x60 0x08 # CHECK: cache 1, 8($5)
|
0x20 0x25 0x60 0x08 # CHECK: cache 1, 8($5)
|
||||||
0x01 0x65 0x4b 0x3c # CHECK: clo $11, $5
|
0x01 0x65 0x4b 0x3c # CHECK: clo $11, $5
|
||||||
0x03 0x80 0xe8 0x50 # CHECK: clz $sp, $gp
|
0x03 0x80 0xe8 0x50 # CHECK: clz $sp, $gp
|
||||||
0x54 0x22 0x10 0x3b # CHECK: cfc1 $1, $2
|
|
||||||
0x00 0x64 0xcd 0x3c # CHECK: cfc2 $3, $4
|
|
||||||
0x54 0xa6 0x18 0x3b # CHECK: ctc1 $5, $6
|
|
||||||
0x00 0xe8 0xdd 0x3c # CHECK: ctc2 $7, $8
|
|
||||||
0x00 0x00 0xe3 0x7c # CHECK: deret
|
0x00 0x00 0xe3 0x7c # CHECK: deret
|
||||||
0x00 0xa4 0x19 0x18 # CHECK: div $3, $4, $5
|
0x00 0xa4 0x19 0x18 # CHECK: div $3, $4, $5
|
||||||
0x00 0xa4 0x19 0x98 # CHECK: divu $3, $4, $5
|
0x00 0xa4 0x19 0x98 # CHECK: divu $3, $4, $5
|
||||||
@ -83,8 +79,6 @@
|
|||||||
0x20 0x44 0xd0 0x08 # CHECK: swm32 $16, $17, 8($4)
|
0x20 0x44 0xd0 0x08 # CHECK: swm32 $16, $17, 8($4)
|
||||||
0x00 0x00 0x8b 0x7c # CHECK: syscall
|
0x00 0x00 0x8b 0x7c # CHECK: syscall
|
||||||
0x01 0x8c 0x8b 0x7c # CHECK: syscall 396
|
0x01 0x8c 0x8b 0x7c # CHECK: syscall 396
|
||||||
0xbd 0x0a 0x01 0x2c # CHECK: ldc1 $f8, 300($10)
|
|
||||||
0x21 0x6c 0x23 0xff # CHECK: ldc2 $11, 1023($12)
|
|
||||||
0x78 0x48 0x00 0x43 # CHECK: lwpc $2, 268
|
0x78 0x48 0x00 0x43 # CHECK: lwpc $2, 268
|
||||||
0x00 0x43 0x26 0x0f # CHECK: lsa $2, $3, $4, 4
|
0x00 0x43 0x26 0x0f # CHECK: lsa $2, $3, $4, 4
|
||||||
0x00 0xa4 0x19 0x58 # CHECK: mod $3, $4, $5
|
0x00 0xa4 0x19 0x58 # CHECK: mod $3, $4, $5
|
||||||
|
@ -7,8 +7,6 @@
|
|||||||
# the diagnostic for the 10-bit form. This isn't exactly wrong but it is
|
# the diagnostic for the 10-bit form. This isn't exactly wrong but it is
|
||||||
# misleading. Ideally, we'd emit every way to achieve a valid match instead
|
# misleading. Ideally, we'd emit every way to achieve a valid match instead
|
||||||
# of picking only one.
|
# of picking only one.
|
||||||
ldc2 $11, -1025($12) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
|
||||||
ldc2 $11, 1024($12) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
|
||||||
teq $8, $9, $2 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
teq $8, $9, $2 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
||||||
teq $8, $9, -1 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
teq $8, $9, -1 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
||||||
teq $8, $9, 16 # CHECK: :[[@LINE]]:3: error: instruction requires a CPU feature not currently enabled
|
teq $8, $9, 16 # CHECK: :[[@LINE]]:3: error: instruction requires a CPU feature not currently enabled
|
||||||
|
@ -45,10 +45,6 @@
|
|||||||
cache 1, 8($5) # CHECK: cache 1, 8($5) # encoding: [0x20,0x25,0x60,0x08]
|
cache 1, 8($5) # CHECK: cache 1, 8($5) # encoding: [0x20,0x25,0x60,0x08]
|
||||||
clo $11, $a1 # CHECK: clo $11, $5 # encoding: [0x01,0x65,0x4b,0x3c]
|
clo $11, $a1 # CHECK: clo $11, $5 # encoding: [0x01,0x65,0x4b,0x3c]
|
||||||
clz $sp, $gp # CHECK: clz $sp, $gp # encoding: [0x03,0x80,0xe8,0x50]
|
clz $sp, $gp # CHECK: clz $sp, $gp # encoding: [0x03,0x80,0xe8,0x50]
|
||||||
cfc1 $1, $2 # CHECK: cfc1 $1, $2 # encoding: [0x54,0x22,0x10,0x3b]
|
|
||||||
cfc2 $3, $4 # CHECK: cfc2 $3, $4 # encoding: [0x00,0x64,0xcd,0x3c]
|
|
||||||
ctc1 $5, $6 # CHECK: ctc1 $5, $6 # encoding: [0x54,0xa6,0x18,0x3b]
|
|
||||||
ctc2 $7, $8 # CHECK: ctc2 $7, $8 # encoding: [0x00,0xe8,0xdd,0x3c]
|
|
||||||
div $3, $4, $5 # CHECK: div $3, $4, $5 # encoding: [0x00,0xa4,0x19,0x18]
|
div $3, $4, $5 # CHECK: div $3, $4, $5 # encoding: [0x00,0xa4,0x19,0x18]
|
||||||
divu $3, $4, $5 # CHECK: divu $3, $4, $5 # encoding: [0x00,0xa4,0x19,0x98]
|
divu $3, $4, $5 # CHECK: divu $3, $4, $5 # encoding: [0x00,0xa4,0x19,0x98]
|
||||||
ehb # CHECK: ehb # encoding: [0x00,0x00,0x18,0x00]
|
ehb # CHECK: ehb # encoding: [0x00,0x00,0x18,0x00]
|
||||||
@ -65,8 +61,6 @@
|
|||||||
jic $5, 256 # CHECK: jic $5, 256 # encoding: [0xa0,0x05,0x01,0x00]
|
jic $5, 256 # CHECK: jic $5, 256 # encoding: [0xa0,0x05,0x01,0x00]
|
||||||
jrc16 $9 # CHECK: jrc16 $9 # encoding: [0x45,0x23]
|
jrc16 $9 # CHECK: jrc16 $9 # encoding: [0x45,0x23]
|
||||||
jrcaddiusp 20 # CHECK: jrcaddiusp 20 # encoding: [0x44,0xb3]
|
jrcaddiusp 20 # CHECK: jrcaddiusp 20 # encoding: [0x44,0xb3]
|
||||||
ldc1 $f8, 300($10) # CHECK: ldc1 $f8, 300($10) # encoding: [0xbd,0x0a,0x01,0x2c]
|
|
||||||
ldc2 $11, 1023($12) # CHECK: ldc2 $11, 1023($12) # encoding: [0x21,0x6c,0x23,0xff]
|
|
||||||
lsa $2, $3, $4, 3 # CHECK: lsa $2, $3, $4, 3 # encoding: [0x00,0x43,0x24,0x0f]
|
lsa $2, $3, $4, 3 # CHECK: lsa $2, $3, $4, 3 # encoding: [0x00,0x43,0x24,0x0f]
|
||||||
lwpc $2,268 # CHECK: lwpc $2, 268 # encoding: [0x78,0x48,0x00,0x43]
|
lwpc $2,268 # CHECK: lwpc $2, 268 # encoding: [0x78,0x48,0x00,0x43]
|
||||||
lwm $16, $17, $ra, 8($sp) # CHECK: lwm16 $16, $17, $ra, 8($sp) # encoding: [0x45,0x22]
|
lwm $16, $17, $ra, 8($sp) # CHECK: lwm16 $16, $17, $ra, 8($sp) # encoding: [0x45,0x22]
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
cache 32, 255($7) # CHECK: :[[@LINE]]:15: error: expected 5-bit unsigned immediate
|
cache 32, 255($7) # CHECK: :[[@LINE]]:15: error: expected 5-bit unsigned immediate
|
||||||
jalr.hb $31 # CHECK: :[[@LINE]]:9: error: source and destination must be different
|
jalr.hb $31 # CHECK: :[[@LINE]]:9: error: source and destination must be different
|
||||||
jalr.hb $31, $31 # CHECK: :[[@LINE]]:9: error: source and destination must be different
|
jalr.hb $31, $31 # CHECK: :[[@LINE]]:9: error: source and destination must be different
|
||||||
ldc2 $11, -32769($12) # CHECK: :[[@LINE]]:19: error: expected memory with 16-bit signed offset
|
pref -1, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
||||||
ldc2 $11, 32768($12) # CHECK: :[[@LINE]]:19: error: expected memory with 16-bit signed offset
|
pref 32, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
||||||
mtc0 $4, $3, -1 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
mtc0 $4, $3, -1 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
||||||
mtc0 $4, $3, 8 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
mtc0 $4, $3, 8 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
||||||
mtc2 $4, $3, -1 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
mtc2 $4, $3, -1 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
||||||
@ -20,5 +20,3 @@
|
|||||||
mfc0 $4, $3, 8 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
mfc0 $4, $3, 8 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
||||||
mfc2 $4, $3, -1 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
mfc2 $4, $3, -1 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
||||||
mfc2 $4, $3, 8 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
mfc2 $4, $3, 8 # CHECK: :[[@LINE]]:23: error: expected 3-bit unsigned immediate
|
||||||
pref -1, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
|
||||||
pref 32, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
|
||||||
|
@ -10,13 +10,11 @@
|
|||||||
cache 32, 255($7) # CHECK: :[[@LINE]]:15: error: expected 5-bit unsigned immediate
|
cache 32, 255($7) # CHECK: :[[@LINE]]:15: error: expected 5-bit unsigned immediate
|
||||||
drotr32 $2, $3, -1 # CHECK: :[[@LINE]]:25: error: expected 5-bit unsigned immediate
|
drotr32 $2, $3, -1 # CHECK: :[[@LINE]]:25: error: expected 5-bit unsigned immediate
|
||||||
drotr32 $2, $3, 32 # CHECK: :[[@LINE]]:25: error: expected 5-bit unsigned immediate
|
drotr32 $2, $3, 32 # CHECK: :[[@LINE]]:25: error: expected 5-bit unsigned immediate
|
||||||
|
jalr.hb $31 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: source and destination must be different
|
||||||
|
jalr.hb $31, $31 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: source and destination must be different
|
||||||
|
pref -1, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
||||||
|
pref 32, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
||||||
dmtc0 $4, $3, -1 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate
|
dmtc0 $4, $3, -1 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate
|
||||||
dmtc0 $4, $3, 8 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate
|
dmtc0 $4, $3, 8 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate
|
||||||
dmfc0 $4, $3, -1 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate
|
dmfc0 $4, $3, -1 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate
|
||||||
dmfc0 $4, $3, 8 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate
|
dmfc0 $4, $3, 8 # CHECK: :[[@LINE]]:24: error: expected 3-bit unsigned immediate
|
||||||
jalr.hb $31 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: source and destination must be different
|
|
||||||
jalr.hb $31, $31 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: source and destination must be different
|
|
||||||
ldc2 $11, -32769($12) # CHECK: :[[@LINE]]:19: error: expected memory with 16-bit signed offset
|
|
||||||
ldc2 $11, 32768($12) # CHECK: :[[@LINE]]:19: error: expected memory with 16-bit signed offset
|
|
||||||
pref -1, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
|
||||||
pref 32, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
|
||||||
|
@ -12,6 +12,7 @@ local_label:
|
|||||||
align $4, $2, $3, 4 # CHECK: :[[@LINE]]:29: error: expected 2-bit unsigned immediate
|
align $4, $2, $3, 4 # CHECK: :[[@LINE]]:29: error: expected 2-bit unsigned immediate
|
||||||
jalr.hb $31 # CHECK: :[[@LINE]]:9: error: source and destination must be different
|
jalr.hb $31 # CHECK: :[[@LINE]]:9: error: source and destination must be different
|
||||||
jalr.hb $31, $31 # CHECK: :[[@LINE]]:9: error: source and destination must be different
|
jalr.hb $31, $31 # CHECK: :[[@LINE]]:9: error: source and destination must be different
|
||||||
|
ldc2 $8,-21181($at) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
||||||
break -1 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
break -1 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
||||||
break 1024 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
break 1024 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
||||||
break -1, 5 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
break -1, 5 # CHECK: :[[@LINE]]:15: error: expected 10-bit unsigned immediate
|
||||||
@ -38,8 +39,6 @@ local_label:
|
|||||||
drotr32 $2, $3, 32 # CHECK: :[[@LINE]]:25: error: expected 5-bit unsigned immediate
|
drotr32 $2, $3, 32 # CHECK: :[[@LINE]]:25: error: expected 5-bit unsigned immediate
|
||||||
jalr.hb $31 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: source and destination must be different
|
jalr.hb $31 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: source and destination must be different
|
||||||
jalr.hb $31, $31 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: source and destination must be different
|
jalr.hb $31, $31 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: source and destination must be different
|
||||||
ldc2 $8,-21181($at) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
|
||||||
ldc2 $11, 1024($12) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
|
|
||||||
lsa $2, $3, $4, 0 # CHECK: :[[@LINE]]:29: error: expected immediate in range 1 .. 4
|
lsa $2, $3, $4, 0 # CHECK: :[[@LINE]]:29: error: expected immediate in range 1 .. 4
|
||||||
lsa $2, $3, $4, 5 # CHECK: :[[@LINE]]:29: error: expected immediate in range 1 .. 4
|
lsa $2, $3, $4, 5 # CHECK: :[[@LINE]]:29: error: expected immediate in range 1 .. 4
|
||||||
pref -1, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
pref -1, 255($7) # CHECK: :[[@LINE]]:14: error: expected 5-bit unsigned immediate
|
||||||
|
Loading…
Reference in New Issue
Block a user