mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Add *_ldst_mult multiclasses to the ARM back-end. These will be used in the
future to separate out the ia, ib, da, db variants of the load/store multiple instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118995 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
115a3dd066
commit
6c470b806f
@ -820,6 +820,18 @@ class AI3stdpo<dag oops, dag iops, Format f, InstrItinClass itin,
|
||||
}
|
||||
|
||||
// addrmode4 instructions
|
||||
class AXI4<dag oops, dag iops, IndexMode im, Format f, InstrItinClass itin,
|
||||
string asm, string cstr, list<dag> pattern>
|
||||
: XI<oops, iops, AddrMode4, Size4Bytes, im, f, itin, asm, cstr, pattern> {
|
||||
bits<4> p;
|
||||
bits<16> regs;
|
||||
bits<4> Rn;
|
||||
let Inst{31-28} = p;
|
||||
let Inst{27-25} = 0b100;
|
||||
let Inst{22} = 0; // S bit
|
||||
let Inst{19-16} = Rn;
|
||||
let Inst{15-0} = regs;
|
||||
}
|
||||
class AXI4ld<dag oops, dag iops, IndexMode im, Format f, InstrItinClass itin,
|
||||
string asm, string cstr, list<dag> pattern>
|
||||
: XI<oops, iops, AddrMode4, Size4Bytes, im, f, itin,
|
||||
|
@ -1734,6 +1734,74 @@ def STRHT: AI3sthpo<(outs GPR:$base_wb),
|
||||
// Load / store multiple Instructions.
|
||||
//
|
||||
|
||||
multiclass arm_ldst_mult<string asm, bit L_bit, Format f,
|
||||
InstrItinClass itin, InstrItinClass itin_upd> {
|
||||
def IA :
|
||||
AXI4<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeNone, f, itin,
|
||||
!strconcat(asm, "${p}\t$Rn, $regs"), "", []> {
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def IA_UPD :
|
||||
AXI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeUpd, f, itin_upd,
|
||||
!strconcat(asm, "${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{21} = 1; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def DA :
|
||||
AXI4<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeNone, f, itin,
|
||||
!strconcat(asm, "da${p}\t$Rn, $regs"), "", []> {
|
||||
let Inst{24-23} = 0b00; // Decrement After
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def DA_UPD :
|
||||
AXI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeUpd, f, itin_upd,
|
||||
!strconcat(asm, "da${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b00; // Decrement After
|
||||
let Inst{21} = 1; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def DB :
|
||||
AXI4<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeNone, f, itin,
|
||||
!strconcat(asm, "db${p}\t$Rn, $regs"), "", []> {
|
||||
let Inst{24-23} = 0b10; // Decrement Before
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def DB_UPD :
|
||||
AXI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeUpd, f, itin_upd,
|
||||
!strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b10; // Decrement Before
|
||||
let Inst{21} = 1; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def IB :
|
||||
AXI4<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeNone, f, itin,
|
||||
!strconcat(asm, "ib${p}\t$Rn, $regs"), "", []> {
|
||||
let Inst{24-23} = 0b11; // Increment Before
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def IB_UPD :
|
||||
AXI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeUpd, f, itin_upd,
|
||||
!strconcat(asm, "ib${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b11; // Increment Before
|
||||
let Inst{21} = 1; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
}
|
||||
|
||||
let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1,
|
||||
isCodeGenOnly = 1 in {
|
||||
def LDM : AXI4ld<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p,
|
||||
|
@ -536,6 +536,19 @@ def tSpill : T1pIs<(outs), (ins tGPR:$src, t_addrmode_sp:$addr), IIC_iStore_i,
|
||||
// Load / store multiple Instructions.
|
||||
//
|
||||
|
||||
multiclass thumb_ldst_mult<string asm, InstrItinClass itin,
|
||||
InstrItinClass itin_upd, bits<6> T1Enc,
|
||||
bit L_bit> {
|
||||
def IA :
|
||||
T1I<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
itin, !strconcat(asm, "${p}\t$Rn, $regs"), []>,
|
||||
T1Encoding<T1Enc>;
|
||||
def IA_UPD :
|
||||
T1It<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
itin_upd, !strconcat(asm, "${p}\t$Rn!, $regs"), "$Rn = $wb", []>,
|
||||
T1Encoding<T1Enc>;
|
||||
}
|
||||
|
||||
// These require base address to be written back or one of the loaded regs.
|
||||
let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1,
|
||||
isCodeGenOnly = 1 in {
|
||||
|
@ -1283,6 +1283,70 @@ defm t2PLI : T2Ipl<0, 1, "pli">, Requires<[IsThumb2,HasV7]>;
|
||||
// Load / store multiple Instructions.
|
||||
//
|
||||
|
||||
multiclass thumb2_ldst_mult<string asm, InstrItinClass itin,
|
||||
InstrItinClass itin_upd, bit L_bit> {
|
||||
def IA :
|
||||
T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
itin, !strconcat(asm, "${p}.w\t$Rn, $regs"), []> {
|
||||
bits<4> Rn;
|
||||
bits<16> regs;
|
||||
|
||||
let Inst{31-27} = 0b11101;
|
||||
let Inst{26-25} = 0b00;
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{22} = 0;
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
let Inst{19-16} = Rn;
|
||||
let Inst{15-0} = regs;
|
||||
}
|
||||
def IA_UPD :
|
||||
T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
itin_upd, !strconcat(asm, "${p}.w\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
bits<4> Rn;
|
||||
bits<16> regs;
|
||||
|
||||
let Inst{31-27} = 0b11101;
|
||||
let Inst{26-25} = 0b00;
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{22} = 0;
|
||||
let Inst{21} = 1; // Writeback
|
||||
let Inst{20} = L_bit;
|
||||
let Inst{19-16} = Rn;
|
||||
let Inst{15-0} = regs;
|
||||
}
|
||||
def DB :
|
||||
T2XI<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
itin, !strconcat(asm, "db${p}.w\t$Rn, $regs"), []> {
|
||||
bits<4> Rn;
|
||||
bits<16> regs;
|
||||
|
||||
let Inst{31-27} = 0b11101;
|
||||
let Inst{26-25} = 0b00;
|
||||
let Inst{24-23} = 0b10; // Decrement Before
|
||||
let Inst{22} = 0;
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
let Inst{19-16} = Rn;
|
||||
let Inst{15-0} = regs;
|
||||
}
|
||||
def DB_UPD :
|
||||
T2XIt<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
itin_upd, !strconcat(asm, "db${p}.w\t$Rn, $regs"), "$Rn = $wb", []> {
|
||||
bits<4> Rn;
|
||||
bits<16> regs;
|
||||
|
||||
let Inst{31-27} = 0b11101;
|
||||
let Inst{26-25} = 0b00;
|
||||
let Inst{24-23} = 0b10; // Decrement Before
|
||||
let Inst{22} = 0;
|
||||
let Inst{21} = 1; // Writeback
|
||||
let Inst{20} = L_bit;
|
||||
let Inst{19-16} = Rn;
|
||||
let Inst{15-0} = regs;
|
||||
}
|
||||
}
|
||||
|
||||
let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1,
|
||||
isCodeGenOnly = 1 in {
|
||||
def t2LDM : T2XI<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p,
|
||||
|
@ -74,6 +74,78 @@ def VSTRS : ASI5<0b1101, 0b00, (outs), (ins SPR:$Sd, addrmode5:$addr),
|
||||
// Load / store multiple Instructions.
|
||||
//
|
||||
|
||||
multiclass vfp_ldst_d_mult<string asm, bit L_bit,
|
||||
InstrItinClass itin, InstrItinClass itin_upd> {
|
||||
def IA :
|
||||
AXDI4<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeNone, itin,
|
||||
!strconcat(asm, "${p}\t$Rn, $regs"), "", []> {
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def IA_UPD :
|
||||
AXDI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeUpd, itin_upd,
|
||||
!strconcat(asm, "${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{21} = 1; // Writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def DB :
|
||||
AXDI4<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeNone, itin,
|
||||
!strconcat(asm, "db${p}\t$Rn, $regs"), "", []> {
|
||||
let Inst{24-23} = 0b10; // Decrement Before
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def DB_UPD :
|
||||
AXDI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeUpd, itin_upd,
|
||||
!strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b10; // Decrement Before
|
||||
let Inst{21} = 1; // Writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
}
|
||||
|
||||
multiclass vfp_ldst_s_mult<string asm, bit L_bit,
|
||||
InstrItinClass itin, InstrItinClass itin_upd> {
|
||||
def IA :
|
||||
AXSI4<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeNone, itin,
|
||||
!strconcat(asm, "${p}\t$Rn, $regs"), "", []> {
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def IA_UPD :
|
||||
AXSI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeUpd, itin_upd,
|
||||
!strconcat(asm, "${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b01; // Increment After
|
||||
let Inst{21} = 1; // Writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def DB :
|
||||
AXSI4<(outs), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeNone, itin,
|
||||
!strconcat(asm, "db${p}\t$Rn, $regs"), "", []> {
|
||||
let Inst{24-23} = 0b10; // Decrement Before
|
||||
let Inst{21} = 0; // No writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
def DB_UPD :
|
||||
AXSI4<(outs GPR:$wb), (ins GPR:$Rn, pred:$p, reglist:$regs, variable_ops),
|
||||
IndexModeUpd, itin_upd,
|
||||
!strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> {
|
||||
let Inst{24-23} = 0b10; // Decrement Before
|
||||
let Inst{21} = 1; // Writeback
|
||||
let Inst{20} = L_bit;
|
||||
}
|
||||
}
|
||||
|
||||
let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1,
|
||||
isCodeGenOnly = 1 in {
|
||||
def VLDMD : AXDI4<(outs), (ins GPR:$Rn, ldstm_mode:$amode, pred:$p,
|
||||
|
Loading…
x
Reference in New Issue
Block a user