1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00
llvm-mirror/test/CodeGen/PowerPC/fold-frame-offset-using-rr.mir
czhengsz bf78d763b4 [PowerPC] [Peephole] fold frame offset by using index form to save add.
renamable $x6 = ADDI8 $x1, -80      ;;; 0 is replaced with -80
renamable $x6 = ADD8 killed renamable $x6, renamable $x5
STW killed renamable $r3, 4, killed renamable $x6 :: (store 4 into %ir.14, !tbaa !2)

After PEI there is a peephole opt opportunity to combine above -80 in ADDI8 with 4 in the STW to eliminate unnecessary ADD8.

Expected result:
renamable $x6 = ADDI8 $x1, -76
STWX killed renamable $r3, renamable $x5, killed renamable $x6 :: (store 4 into %ir.6, !tbaa !2)

Reviewed by: stefanp

Differential Revision: https://reviews.llvm.org/D66329
2019-10-25 04:13:30 -04:00

155 lines
4.4 KiB
YAML

# RUN: llc -mtriple=powerpc64le--linux-gnu -stop-after ppc-pre-emit-peephole %s -o - -verify-machineinstrs | FileCheck %s
# ADDI instr: ToBeChangedReg = ADDI FrameBaseReg, OffsetAddi
# ADD instr: ToBeDeletedReg = ADD ToBeChangedReg(killed), ScaleReg
# Imm instr: Reg = op OffsetImm, ToBeDeletedReg(killed)
#
# can be folded to:
#
# new ADDI instr: ToBeChangedReg = ADDI FrameBaseReg, (OffsetAddi + OffsetImm)
# Index instr: Reg = opx ScaleReg, ToBeChangedReg(killed)
---
name: testIndexForm1
#CHECK : name : testIndexForm1
# ToBeDeletedReg equals to ScaleReg
tracksRegLiveness: true
body: |
bb.0.entry:
liveins: $x3, $x1, $x4, $x6
$x3 = ADDI8 $x1, -80
; CHECK: $x3 = ADDI8 $x1, -76
$x4 = ADD8 killed $x3, killed $x4
; CHECK-NOT: ADD8
$x6 = LD 4, killed $x4
; CHECK: $x6 = LDX killed $x4, killed $x3
BLR8 implicit $lr8, implicit $rm
...
---
name: testIndexForm2
#CHECK : name : testIndexForm2
# ToBeDeletedReg equals to ToBeChangedReg
tracksRegLiveness: true
body: |
bb.0.entry:
liveins: $x3, $x1, $x4, $x6
$x3 = ADDI8 $x1, -80
; CHECK: $x3 = ADDI8 $x1, -76
$x3 = ADD8 killed $x3, killed $x4
; CHECK-NOT: ADD8
$x6 = LD 4, killed $x3
; CHECK: $x6 = LDX killed $x4, killed $x3
BLR8 implicit $lr8, implicit $rm
...
---
name: testIndexForm3
#CHECK : name : testIndexForm3
# There is other use for ToBeDeletedReg between ADD instr and Imm instr
tracksRegLiveness: true
body: |
bb.0.entry:
liveins: $x3, $x1, $x4, $x6
$x3 = ADDI8 $x1, -80
; CHECK: $x3 = ADDI8 $x1, -80
$x3 = ADD8 killed $x3, killed $x4
; CHECK: $x3 = ADD8 killed $x3, killed $x4
STD $x3, killed $x6, 100
; CHECK: STD $x3, killed $x6, 100
$x6 = LD 4, killed $x3
; CHECK: $x6 = LD 4, killed $x3
BLR8 implicit $lr8, implicit $rm
...
---
name: testIndexForm4
#CHECK : name : testIndexForm3
# There is other use for ToBeChangedReg between ADDI instr and ADD instr
tracksRegLiveness: true
body: |
bb.0.entry:
liveins: $x3, $x1, $x4, $x6
$x3 = ADDI8 $x1, -80
; CHECK: $x3 = ADDI8 $x1, -80
STD $x3, killed $x6, 100
; CHECK: STD $x3, killed $x6, 100
$x3 = ADD8 killed $x3, killed $x4
; CHECK: $x3 = ADD8 killed $x3, killed $x4
$x6 = LD 4, killed $x3
; CHECK: $x6 = LD 4, killed $x3
BLR8 implicit $lr8, implicit $rm
...
---
name: testIndexForm5
#CHECK : name : testIndexForm5
# ToBeChangedReg has no killed flag
tracksRegLiveness: true
body: |
bb.0.entry:
liveins: $x3, $x1, $x4, $x6
$x3 = ADDI8 $x1, -80
; CHECK: $x3 = ADDI8 $x1, -80
$x4 = ADD8 $x3, killed $x4
; CHECK: $x4 = ADD8 $x3, killed $x4
STD killed $x3, killed $x6, 100
; CHECK: STD killed $x3, killed $x6, 100
$x6 = LD 4, killed $x4
; CHECK: $x6 = LD 4, killed $x4
BLR8 implicit $lr8, implicit $rm
...
---
name: testIndexForm6
#CHECK : name : testIndexForm6
# ToBeDeletedReg has no killed flag
tracksRegLiveness: true
body: |
bb.0.entry:
liveins: $x3, $x1, $x4, $x6
$x3 = ADDI8 $x1, -80
; CHECK: $x3 = ADDI8 $x1, -80
$x4 = ADD8 killed $x3, killed $x4
; CHECK: $x4 = ADD8 killed $x3, killed $x4
$x6 = LD 4, $x4
; CHECK: $x6 = LD 4, $x4
STD killed $x4, killed $x6, 100
BLR8 implicit $lr8, implicit $rm
...
---
name: testIndexForm7
#CHECK : name : testIndexForm7
# There is other def for ToBeChangedReg between ADD instr and Imm instr
tracksRegLiveness: true
body: |
bb.0.entry:
liveins: $x3, $x1, $x4, $x5, $x6
$x3 = ADDI8 $x1, -80
; CHECK: $x3 = ADDI8 $x1, -80
$x4 = ADD8 killed $x3, killed $x5
; CHECK: $x4 = ADD8 killed $x3, killed $x5
$x3 = LD 100, $x6
; CHECK: $x3 = LD 100, $x6
STD killed $x3, killed $x6, 200
; CHECK: STD killed $x3, killed $x6, 200
$x6 = LD 4, killed $x4
; CHECK: $x6 = LD 4, killed $x4
BLR8 implicit $lr8, implicit $rm
...
---
name: testIndexForm8
#CHECK : name : testIndexForm8
# There is other def for ScaleReg between ADD instr and Imm instr
tracksRegLiveness: true
body: |
bb.0.entry:
liveins: $x3, $x1, $x4, $x5, $x6
$x3 = ADDI8 $x1, -80
; CHECK: $x3 = ADDI8 $x1, -80
$x4 = ADD8 killed $x3, killed $x5
; CHECK: $x4 = ADD8 killed $x3, killed $x5
$x5 = LD 100, $x6
; CHECK: $x5 = LD 100, $x6
STD killed $x5, killed $x6, 200
; CHECK: STD killed $x5, killed $x6, 200
$x6 = LD 4, killed $x4
; CHECK: $x6 = LD 4, killed $x4
BLR8 implicit $lr8, implicit $rm
...