diff options
author | David Green <david.green@arm.com> | 2020-12-10 12:14:23 +0000 |
---|---|---|
committer | David Green <david.green@arm.com> | 2020-12-10 12:14:23 +0000 |
commit | 0447f3508f0217e06b4acaaec0937091d071100a (patch) | |
tree | 2cc19a07033a3cd17b401472e7d0687de09ff42e /llvm/lib/Target/ARM/ARMInstrThumb2.td | |
parent | [llvm-rc] Handle driveless absolute windows paths when loading external files (diff) | |
download | llvm-project-0447f3508f0217e06b4acaaec0937091d071100a.tar.gz llvm-project-0447f3508f0217e06b4acaaec0937091d071100a.tar.bz2 llvm-project-0447f3508f0217e06b4acaaec0937091d071100a.zip |
[ARM][RegAlloc] Add t2LoopEndDec
We currently have problems with the way that low overhead loops are
specified, with LR being spilled between the t2LoopDec and the t2LoopEnd
forcing the entire loop to be reverted late in the backend. As they will
eventually become a single instruction, this patch introduces a
t2LoopEndDec which is the combination of the two, combined before
registry allocation to make sure this does not fail.
Unfortunately this instruction is a terminator that produces a value
(and also branches - it only produces the value around the branching
edge). So this needs some adjustment to phi elimination and the register
allocator to make sure that we do not spill this LR def around the loop
(needing to put a spill after the terminator). We treat the loop very
carefully, making sure that there is nothing else like calls that would
break it's ability to use LR. For that, this adds a
isUnspillableTerminator to opt in the new behaviour.
There is a chance that this could cause problems, and so I have added an
escape option incase. But I have not seen any problems in the testing
that I've tried, and not reverting Low overhead loops is important for
our performance. If this does work then we can hopefully do the same for
t2WhileLoopStart and t2DoLoopStart instructions.
This patch also contains the code needed to convert or revert the
t2LoopEndDec in the backend (which just needs a subs; bne) and the code
pre-ra to create them.
Differential Revision: https://reviews.llvm.org/D91358
Diffstat (limited to 'llvm/lib/Target/ARM/ARMInstrThumb2.td')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrThumb2.td | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrThumb2.td b/llvm/lib/Target/ARM/ARMInstrThumb2.td index 46dd596d9d65..caae58443bec 100644 --- a/llvm/lib/Target/ARM/ARMInstrThumb2.td +++ b/llvm/lib/Target/ARM/ARMInstrThumb2.td @@ -5448,6 +5448,10 @@ def t2LoopEnd : t2PseudoInst<(outs), (ins GPRlr:$elts, brtarget:$target), 8, IIC_Br, []>, Sched<[WriteBr]>; +def t2LoopEndDec : + t2PseudoInst<(outs GPRlr:$Rm), (ins GPRlr:$elts, brtarget:$target), + 8, IIC_Br, []>, Sched<[WriteBr]>; + } // end isBranch, isTerminator, hasSideEffects } |