Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / fix-frame-reg-in-custom-csr-spills.ll
blobf440b1f9ee6f7bb3ad1398ad8aedace45e006bc3
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx906 -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
4 ; The custom CSR spills inserted during the frame lowering was earlier using SP as the frame base.
5 ; The offsets allocated for the CS objects go wrong when any local stack object has a higher
6 ; alignment requirement than the default stack alignment for AMDGPU (either 4 or 16). The offsets
7 ; in such cases should be from the newly aligned FP. Even to adjust the offset from the SP value
8 ; at function entry, the FP-SP can't be statically determined with dynamic stack realignment. To
9 ; fix the problem, use FP as the frame base in the spills whenever the function has FP.
11 define void @test_stack_realign(<8 x i32> %val, i32 %idx) #0 {
12 ; GCN-LABEL: test_stack_realign:
13 ; GCN:       ; %bb.0:
14 ; GCN-NEXT:    s_waitcnt vmcnt(0) expcnt(0) lgkmcnt(0)
15 ; GCN-NEXT:    s_mov_b32 s16, s33
16 ; GCN-NEXT:    s_mov_b32 s33, s32
17 ; GCN-NEXT:    s_or_saveexec_b64 s[18:19], -1
18 ; GCN-NEXT:    buffer_store_dword v42, off, s[0:3], s33 offset:8 ; 4-byte Folded Spill
19 ; GCN-NEXT:    s_mov_b64 exec, s[18:19]
20 ; GCN-NEXT:    s_addk_i32 s32, 0x400
21 ; GCN-NEXT:    v_writelane_b32 v42, s16, 2
22 ; GCN-NEXT:    s_getpc_b64 s[16:17]
23 ; GCN-NEXT:    s_add_u32 s16, s16, extern_func@gotpcrel32@lo+4
24 ; GCN-NEXT:    s_addc_u32 s17, s17, extern_func@gotpcrel32@hi+12
25 ; GCN-NEXT:    s_load_dwordx2 s[16:17], s[16:17], 0x0
26 ; GCN-NEXT:    v_writelane_b32 v42, s30, 0
27 ; GCN-NEXT:    v_mov_b32_e32 v0, v8
28 ; GCN-NEXT:    buffer_store_dword v40, off, s[0:3], s33 offset:4 ; 4-byte Folded Spill
29 ; GCN-NEXT:    buffer_store_dword v41, off, s[0:3], s33 ; 4-byte Folded Spill
30 ; GCN-NEXT:    v_writelane_b32 v42, s31, 1
31 ; GCN-NEXT:    ;;#ASMSTART
32 ; GCN-NEXT:    ;;#ASMEND
33 ; GCN-NEXT:    ;;#ASMSTART
34 ; GCN-NEXT:    ;;#ASMEND
35 ; GCN-NEXT:    s_waitcnt lgkmcnt(0)
36 ; GCN-NEXT:    s_swappc_b64 s[30:31], s[16:17]
37 ; GCN-NEXT:    buffer_load_dword v41, off, s[0:3], s33 ; 4-byte Folded Reload
38 ; GCN-NEXT:    buffer_load_dword v40, off, s[0:3], s33 offset:4 ; 4-byte Folded Reload
39 ; GCN-NEXT:    v_readlane_b32 s31, v42, 1
40 ; GCN-NEXT:    v_readlane_b32 s30, v42, 0
41 ; GCN-NEXT:    v_readlane_b32 s4, v42, 2
42 ; GCN-NEXT:    s_or_saveexec_b64 s[6:7], -1
43 ; GCN-NEXT:    buffer_load_dword v42, off, s[0:3], s33 offset:8 ; 4-byte Folded Reload
44 ; GCN-NEXT:    s_mov_b64 exec, s[6:7]
45 ; GCN-NEXT:    s_addk_i32 s32, 0xfc00
46 ; GCN-NEXT:    s_mov_b32 s33, s4
47 ; GCN-NEXT:    s_waitcnt vmcnt(0)
48 ; GCN-NEXT:    s_setpc_b64 s[30:31]
49   %alloca.val = alloca <8 x i32>, align 64, addrspace(5)
50   store volatile <8 x i32> %val, ptr addrspace(5) %alloca.val, align 64
51   call void asm sideeffect "", "~{v40}" ()
52   call void asm sideeffect "", "~{v41}" ()
53   call void @extern_func(i32 %idx)
54   ret void
57 declare void @extern_func(i32) #0
59 attributes #0 = { noinline nounwind }