[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / SPARC / 2011-01-11-FrameAddr.ll
blobb0249bef23454d1ce4da84a9b84afc582c0cbeb8
1 ;RUN: llc -march=sparc -show-mc-encoding < %s | FileCheck %s -check-prefix=V8
2 ;RUN: llc -march=sparc -mattr=v9 < %s | FileCheck %s -check-prefix=V9
3 ;RUN: llc -march=sparc -show-mc-encoding -regalloc=basic < %s | FileCheck %s -check-prefix=V8
4 ;RUN: llc -march=sparc -regalloc=basic -mattr=v9 < %s | FileCheck %s -check-prefix=V9
5 ;RUN: llc -march=sparcv9  < %s | FileCheck %s -check-prefix=SPARC64
8 define ptr @frameaddr() nounwind readnone {
9 entry:
10 ;V8-LABEL: frameaddr:
11 ;V8: save %sp, -96, %sp
12 ;V8: ret
13 ;V8: restore %g0, %fp, %o0
15 ;V9-LABEL: frameaddr:
16 ;V9: save %sp, -96, %sp
17 ;V9: ret
18 ;V9: restore %g0, %fp, %o0
20 ;SPARC64-LABEL: frameaddr
21 ;SPARC64:       save %sp, -128, %sp
22 ;SPARC64:       ret
23 ;SPARC64:       restore %fp, 2047, %o0
25   %0 = tail call ptr @llvm.frameaddress(i32 0)
26   ret ptr %0
29 define ptr @frameaddr2() nounwind readnone {
30 entry:
31 ;V8-LABEL: frameaddr2:
32 ;V8: ta 3 ! encoding: [0x91,0xd0,0x20,0x03]
33 ;V8: ld [%fp+56], {{.+}}
34 ;V8: ld [{{.+}}+56], {{.+}}
35 ;V8: ld [{{.+}}+56], {{.+}}
37 ;V9-LABEL: frameaddr2:
38 ;V9: flushw
39 ;V9: ld [%fp+56], {{.+}}
40 ;V9: ld [{{.+}}+56], {{.+}}
41 ;V9: ld [{{.+}}+56], {{.+}}
43 ;SPARC64-LABEL: frameaddr2
44 ;SPARC64: flushw
45 ;SPARC64: ldx [%fp+2159],     %[[R0:[goli][0-7]]]
46 ;SPARC64: ldx [%[[R0]]+2159], %[[R1:[goli][0-7]]]
47 ;SPARC64: ldx [%[[R1]]+2159], %[[R2:[goli][0-7]]]
48 ;SPARC64: ret
49 ;SPARC64: restore %[[R2]], 2047, %o0
51   %0 = tail call ptr @llvm.frameaddress(i32 3)
52   ret ptr %0
55 declare ptr @llvm.frameaddress(i32) nounwind readnone
59 define ptr @retaddr() nounwind readnone {
60 entry:
61 ;V8-LABEL: retaddr:
62 ;V8: mov %o7, {{.+}}
64 ;V9-LABEL: retaddr:
65 ;V9: mov %o7, {{.+}}
67 ;SPARC64-LABEL: retaddr
68 ;SPARC64:       mov %o7, {{.+}}
70   %0 = tail call ptr @llvm.returnaddress(i32 0)
71   ret ptr %0
74 define ptr @retaddr2() nounwind readnone {
75 entry:
76 ;V8-LABEL: retaddr2:
77 ;V8: ta 3
78 ;V8: ld [%fp+56], {{.+}}
79 ;V8: ld [{{.+}}+56], {{.+}}
80 ;V8: ld [{{.+}}+60], {{.+}}
82 ;V9-LABEL: retaddr2:
83 ;V9: flushw
84 ;V9: ld [%fp+56], {{.+}}
85 ;V9: ld [{{.+}}+56], {{.+}}
86 ;V9: ld [{{.+}}+60], {{.+}}
88 ;SPARC64-LABEL: retaddr2
89 ;SPARC64:       flushw
90 ;SPARC64: ldx [%fp+2159],     %[[R0:[goli][0-7]]]
91 ;SPARC64: ldx [%[[R0]]+2159], %[[R1:[goli][0-7]]]
92 ;SPARC64: ldx [%[[R1]]+2167], {{.+}}
94   %0 = tail call ptr @llvm.returnaddress(i32 3)
95   ret ptr %0
98 define ptr @retaddr3() nounwind readnone {
99 entry:
100 ;V8-LABEL: retaddr3:
101 ;V8: ta 3
102 ;V8: ld [%fp+60], {{.+}}
104 ;V9-LABEL: retaddr3:
105 ;V9: flushw
106 ;V9: ld [%fp+60], {{.+}}
108 ;SPARC64-LABEL: retaddr3
109 ;SPARC64:       flushw
110 ;SPARC64: ldx [%fp+2167],     %[[R0:[goli][0-7]]]
112   %0 = tail call ptr @llvm.returnaddress(i32 1)
113   ret ptr %0
116 declare ptr @llvm.returnaddress(i32) nounwind readnone