mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 02:58:10 +00:00
[mips][microMIPS] Implement BGEZALS and BLTZALS instructions
Differential Revision: http://reviews.llvm.org/D5004 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217678 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cf6da9bed3
commit
7fd9d5636a
@ -985,6 +985,8 @@ static bool hasShortDelaySlot(unsigned Opcode) {
|
|||||||
switch (Opcode) {
|
switch (Opcode) {
|
||||||
case Mips::JALS_MM:
|
case Mips::JALS_MM:
|
||||||
case Mips::JALRS_MM:
|
case Mips::JALRS_MM:
|
||||||
|
case Mips::BGEZALS_MM:
|
||||||
|
case Mips::BLTZALS_MM:
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
|
@ -115,6 +115,11 @@ let isCall = 1, hasDelaySlot = 1, Defs = [RA] in {
|
|||||||
class JumpLinkRegMM<string opstr, RegisterOperand RO>:
|
class JumpLinkRegMM<string opstr, RegisterOperand RO>:
|
||||||
InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
|
InstSE<(outs RO:$rd), (ins RO:$rs), !strconcat(opstr, "\t$rd, $rs"),
|
||||||
[], IIBranch, FrmR>;
|
[], IIBranch, FrmR>;
|
||||||
|
|
||||||
|
class BranchCompareToZeroLinkMM<string opstr, DAGOperand opnd,
|
||||||
|
RegisterOperand RO> :
|
||||||
|
InstSE<(outs), (ins RO:$rs, opnd:$offset),
|
||||||
|
!strconcat(opstr, "\t$rs, $offset"), [], IIBranch, FrmI, opstr>;
|
||||||
}
|
}
|
||||||
|
|
||||||
def MFHI16_MM : MoveFromHILOMM<"mfhi", GPR32Opnd, AC0>, MFHILO_FM_MM16<0x10>;
|
def MFHI16_MM : MoveFromHILOMM<"mfhi", GPR32Opnd, AC0>, MFHILO_FM_MM16<0x10>;
|
||||||
@ -298,6 +303,12 @@ let DecoderNamespace = "MicroMips", Predicates = [InMicroMips] in {
|
|||||||
def BLTZAL_MM : MMRel, BGEZAL_FT<"bltzal", brtarget_mm, GPR32Opnd>,
|
def BLTZAL_MM : MMRel, BGEZAL_FT<"bltzal", brtarget_mm, GPR32Opnd>,
|
||||||
BGEZAL_FM_MM<0x01>;
|
BGEZAL_FM_MM<0x01>;
|
||||||
|
|
||||||
|
/// Branch Instructions - Short Delay Slot
|
||||||
|
def BGEZALS_MM : BranchCompareToZeroLinkMM<"bgezals", brtarget_mm,
|
||||||
|
GPR32Opnd>, BGEZAL_FM_MM<0x13>;
|
||||||
|
def BLTZALS_MM : BranchCompareToZeroLinkMM<"bltzals", brtarget_mm,
|
||||||
|
GPR32Opnd>, BGEZAL_FM_MM<0x11>;
|
||||||
|
|
||||||
/// Control Instructions
|
/// Control Instructions
|
||||||
def SYNC_MM : MMRel, SYNC_FT<"sync">, SYNC_FM_MM;
|
def SYNC_MM : MMRel, SYNC_FT<"sync">, SYNC_FM_MM;
|
||||||
def BREAK_MM : MMRel, BRK_FT<"break">, BRK_FM_MM;
|
def BREAK_MM : MMRel, BRK_FT<"break">, BRK_FM_MM;
|
||||||
|
@ -29,6 +29,10 @@
|
|||||||
# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
|
# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
|
||||||
# CHECK-EL: bltz $6, 1332 # encoding: [0x06,0x40,0x9a,0x02]
|
# CHECK-EL: bltz $6, 1332 # encoding: [0x06,0x40,0x9a,0x02]
|
||||||
# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
|
# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00]
|
||||||
|
# CHECK-EL: bgezals $6, 1332 # encoding: [0x66,0x42,0x9a,0x02]
|
||||||
|
# CHECK-EL: move $zero, $zero # encoding: [0x00,0x0c]
|
||||||
|
# CHECK-EL: bltzals $6, 1332 # encoding: [0x26,0x42,0x9a,0x02]
|
||||||
|
# CHECK-EL: move $zero, $zero # encoding: [0x00,0x0c]
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# Big endian
|
# Big endian
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
@ -52,6 +56,10 @@
|
|||||||
# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00]
|
# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00]
|
||||||
# CHECK-EB: bltz $6, 1332 # encoding: [0x40,0x06,0x02,0x9a]
|
# CHECK-EB: bltz $6, 1332 # encoding: [0x40,0x06,0x02,0x9a]
|
||||||
# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00]
|
# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00]
|
||||||
|
# CHECK-EB: bgezals $6, 1332 # encoding: [0x42,0x66,0x02,0x9a]
|
||||||
|
# CHECK-EB: move $zero, $zero # encoding: [0x0c,0x00]
|
||||||
|
# CHECK-EB: bltzals $6, 1332 # encoding: [0x42,0x26,0x02,0x9a]
|
||||||
|
# CHECK-EB: move $zero, $zero # encoding: [0x0c,0x00]
|
||||||
|
|
||||||
b 1332
|
b 1332
|
||||||
beq $9,$6,1332
|
beq $9,$6,1332
|
||||||
@ -63,3 +71,5 @@
|
|||||||
bne $9,$6,1332
|
bne $9,$6,1332
|
||||||
bal 1332
|
bal 1332
|
||||||
bltz $6,1332
|
bltz $6,1332
|
||||||
|
bgezals $6,1332
|
||||||
|
bltzals $6,1332
|
||||||
|
Loading…
Reference in New Issue
Block a user