mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-08 04:11:27 +00:00
[mips][microMIPS] Implement LLE and SCE instructions
Differential Revision: http://reviews.llvm.org/D11630 llvm-svn: 250379
This commit is contained in:
parent
d0abe7e77c
commit
14f985bea0
@ -1411,6 +1411,9 @@ static DecodeStatus DecodeMemMMImm9(MCInst &Inst,
|
||||
Reg = getReg(Decoder, Mips::GPR32RegClassID, Reg);
|
||||
Base = getReg(Decoder, Mips::GPR32RegClassID, Base);
|
||||
|
||||
if (Inst.getOpcode() == Mips::SCE_MM)
|
||||
Inst.addOperand(MCOperand::createReg(Reg));
|
||||
|
||||
Inst.addOperand(MCOperand::createReg(Reg));
|
||||
Inst.addOperand(MCOperand::createReg(Base));
|
||||
Inst.addOperand(MCOperand::createImm(Offset));
|
||||
|
@ -687,6 +687,22 @@ class LL_FM_MM<bits<4> funct> {
|
||||
let Inst{11-0} = addr{11-0};
|
||||
}
|
||||
|
||||
class LLE_FM_MM<bits<4> funct> {
|
||||
bits<5> rt;
|
||||
bits<21> addr;
|
||||
bits<5> base = addr{20-16};
|
||||
bits<9> offset = addr{8-0};
|
||||
|
||||
bits<32> Inst;
|
||||
|
||||
let Inst{31-26} = 0x18;
|
||||
let Inst{25-21} = rt;
|
||||
let Inst{20-16} = base;
|
||||
let Inst{15-12} = funct;
|
||||
let Inst{11-9} = 0x6;
|
||||
let Inst{8-0} = offset;
|
||||
}
|
||||
|
||||
class ADDS_FM_MM<bits<2> fmt, bits<8> funct> : MMArch {
|
||||
bits<5> ft;
|
||||
bits<5> fs;
|
||||
|
@ -268,6 +268,13 @@ class LLBaseMM<string opstr, RegisterOperand RO> :
|
||||
let mayLoad = 1;
|
||||
}
|
||||
|
||||
class LLEBaseMM<string opstr, RegisterOperand RO> :
|
||||
InstSE<(outs RO:$rt), (ins mem_mm_12:$addr),
|
||||
!strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> {
|
||||
let DecoderMethod = "DecodeMemMMImm9";
|
||||
let mayLoad = 1;
|
||||
}
|
||||
|
||||
class SCBaseMM<string opstr, RegisterOperand RO> :
|
||||
InstSE<(outs RO:$dst), (ins RO:$rt, mem_mm_12:$addr),
|
||||
!strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> {
|
||||
@ -276,6 +283,14 @@ class SCBaseMM<string opstr, RegisterOperand RO> :
|
||||
let Constraints = "$rt = $dst";
|
||||
}
|
||||
|
||||
class SCEBaseMM<string opstr, RegisterOperand RO> :
|
||||
InstSE<(outs RO:$dst), (ins RO:$rt, mem_mm_12:$addr),
|
||||
!strconcat(opstr, "\t$rt, $addr"), [], NoItinerary, FrmI> {
|
||||
let DecoderMethod = "DecodeMemMMImm9";
|
||||
let mayStore = 1;
|
||||
let Constraints = "$rt = $dst";
|
||||
}
|
||||
|
||||
class LoadMM<string opstr, DAGOperand RO, SDPatternOperator OpNode = null_frag,
|
||||
InstrItinClass Itin = NoItinerary> :
|
||||
InstSE<(outs RO:$rt), (ins mem_mm_12:$addr),
|
||||
@ -901,6 +916,9 @@ let DecoderNamespace = "MicroMips", Predicates = [InMicroMips] in {
|
||||
def LL_MM : LLBaseMM<"ll", GPR32Opnd>, LL_FM_MM<0x3>;
|
||||
def SC_MM : SCBaseMM<"sc", GPR32Opnd>, LL_FM_MM<0xb>;
|
||||
|
||||
def LLE_MM : LLEBaseMM<"lle", GPR32Opnd>, LLE_FM_MM<0x6>;
|
||||
def SCE_MM : SCEBaseMM<"sce", GPR32Opnd>, LLE_FM_MM<0xA>;
|
||||
|
||||
let DecoderMethod = "DecodeCacheOpMM" in {
|
||||
def CACHE_MM : MMRel, CacheOp<"cache", mem_mm_12>,
|
||||
CACHE_PREF_FM_MM<0x08, 0x6>;
|
||||
|
@ -187,3 +187,5 @@
|
||||
0x03 0x63 0x05 0xa0 # CHECK: swle $24, 5($3)
|
||||
0x03 0x63 0x05 0x66 # CHECK: lwre $24, 5($3)
|
||||
0x04 0x63 0x02 0x64 # CHECK: lwle $24, 2($4)
|
||||
0x44 0x60 0x08 0x6c # CHECK: lle $2, 8($4)
|
||||
0x44 0x60 0x08 0xac # CHECK: sce $2, 8($4)
|
||||
|
@ -187,3 +187,5 @@
|
||||
0x63 0x03 0xa0 0x05 # CHECK: swle $24, 5($3)
|
||||
0x63 0x03 0x66 0x05 # CHECK: lwre $24, 5($3)
|
||||
0x63 0x04 0x64 0x02 # CHECK: lwle $24, 2($4)
|
||||
0x60 0x44 0x6c 0x08 # CHECK: lle $2, 8($4)
|
||||
0x60 0x44 0xac 0x08 # CHECK: sce $2, 8($4)
|
||||
|
@ -46,6 +46,8 @@
|
||||
# CHECK-EL: swle $24, 5($3) # encoding: [0x03,0x63,0x05,0xa0]
|
||||
# CHECK-EL: lwre $24, 5($3) # encoding: [0x03,0x63,0x05,0x66]
|
||||
# CHECK-EL: lwle $24, 2($4) # encoding: [0x04,0x63,0x02,0x64]
|
||||
# CHECK-EL: lle $2, 8($4) # encoding: [0x44,0x60,0x08,0x6c]
|
||||
# CHECK-EL: sce $2, 8($4) # encoding: [0x44,0x60,0x08,0xac]
|
||||
#------------------------------------------------------------------------------
|
||||
# Big endian
|
||||
#------------------------------------------------------------------------------
|
||||
@ -86,6 +88,8 @@
|
||||
# CHECK-EB: swle $24, 5($3) # encoding: [0x63,0x03,0xa0,0x05]
|
||||
# CHECK-EB: lwre $24, 5($3) # encoding: [0x63,0x03,0x66,0x05]
|
||||
# CHECK-EB: lwle $24, 2($4) # encoding: [0x63,0x04,0x64,0x02]
|
||||
# CHECK-EB: lle $2, 8($4) # encoding: [0x60,0x44,0x6c,0x08]
|
||||
# CHECK-EB: sce $2, 8($4) # encoding: [0x60,0x44,0xac,0x08]
|
||||
|
||||
sdbbp
|
||||
sdbbp 34
|
||||
@ -121,3 +125,5 @@
|
||||
swle $24, 5($3)
|
||||
lwre $24, 5($3)
|
||||
lwle $24, 2($4)
|
||||
lle $2, 8($4)
|
||||
sce $2, 8($4)
|
||||
|
Loading…
Reference in New Issue
Block a user