mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
Fix LDM_RET schedule itinery.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113435 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
90b54547d9
commit
7602acbf3b
@ -940,7 +940,7 @@ let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
|
||||
hasExtraDefRegAllocReq = 1 in
|
||||
def LDM_RET : AXI4ld<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
|
||||
reglist:$dsts, variable_ops),
|
||||
IndexModeUpd, LdStMulFrm, IIC_Br,
|
||||
IndexModeUpd, LdStMulFrm, IIC_iLoadmBr,
|
||||
"ldm${addr:submode}${p}\t$addr!, $dsts",
|
||||
"$addr.addr = $wb", []>;
|
||||
|
||||
|
@ -2454,7 +2454,8 @@ let Defs =
|
||||
let isReturn = 1, isTerminator = 1, isBarrier = 1, mayLoad = 1,
|
||||
hasExtraDefRegAllocReq = 1 in
|
||||
def t2LDM_RET : T2XIt<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p,
|
||||
reglist:$dsts, variable_ops), IIC_Br,
|
||||
reglist:$dsts, variable_ops),
|
||||
IIC_iLoadmBr,
|
||||
"ldm${addr:submode}${p}${addr:wide}\t$addr!, $dsts",
|
||||
"$addr.addr = $wb", []> {
|
||||
let Inst{31-27} = 0b11101;
|
||||
|
@ -43,6 +43,7 @@ def IIC_iLoadiu : InstrItinClass;
|
||||
def IIC_iLoadru : InstrItinClass;
|
||||
def IIC_iLoadsiu : InstrItinClass;
|
||||
def IIC_iLoadm : InstrItinClass;
|
||||
def IIC_iLoadmBr : InstrItinClass;
|
||||
def IIC_iStorei : InstrItinClass;
|
||||
def IIC_iStorer : InstrItinClass;
|
||||
def IIC_iStoresi : InstrItinClass;
|
||||
|
@ -122,6 +122,15 @@ def CortexA8Itineraries : ProcessorItineraries<
|
||||
InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
|
||||
InstrStage<1, [A8_LdSt0]>]>,
|
||||
|
||||
//
|
||||
// Load multiple plus branch
|
||||
InstrItinData<IIC_iLoadmBr , [InstrStage<2, [A8_Issue], 0>,
|
||||
InstrStage<2, [A8_Pipe0], 0>,
|
||||
InstrStage<2, [A8_Pipe1]>,
|
||||
InstrStage<1, [A8_Pipe0, A8_Pipe1]>,
|
||||
InstrStage<1, [A8_LdSt0]>,
|
||||
InstrStage<1, [A8_Pipe0, A8_Pipe1]>]>,
|
||||
|
||||
// Integer store pipeline
|
||||
//
|
||||
// use A8_Issue to enforce the 1 load/store per cycle limit
|
||||
|
@ -107,6 +107,12 @@ def CortexA9Itineraries : ProcessorItineraries<
|
||||
InstrItinData<IIC_iLoadm , [InstrStage<1, [A9_Pipe1]>,
|
||||
InstrStage<1, [A9_LSPipe]>]>,
|
||||
|
||||
//
|
||||
// Load multiple plus branch
|
||||
InstrItinData<IIC_iLoadmBr , [InstrStage<1, [A9_Pipe1]>,
|
||||
InstrStage<1, [A9_LSPipe]>,
|
||||
InstrStage<1, [A9_Pipe0, A9_Pipe1]>]>,
|
||||
|
||||
// Integer store pipeline
|
||||
///
|
||||
// Immediate offset
|
||||
|
Loading…
Reference in New Issue
Block a user