xref: /aosp_15_r20/external/llvm/test/CodeGen/AMDGPU/invariant-load-no-alias-store.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
2*9880d681SAndroid Build Coastguard Worker
3*9880d681SAndroid Build Coastguard Worker; GatherAllAliases gives up on trying to analyze cases where the
4*9880d681SAndroid Build Coastguard Worker; pointer may have been loaded from an aliased store, so make sure
5*9880d681SAndroid Build Coastguard Worker; that this works and allows moving the stores to a better chain to
6*9880d681SAndroid Build Coastguard Worker; allow them to be merged merged when it's clear the pointer is loaded
7*9880d681SAndroid Build Coastguard Worker; from constant/invariant memory.
8*9880d681SAndroid Build Coastguard Worker
9*9880d681SAndroid Build Coastguard Worker; GCN-LABEL: {{^}}test_merge_store_constant_i16_invariant_global_pointer_load:
10*9880d681SAndroid Build Coastguard Worker; GCN-DAG: buffer_load_dwordx2 [[PTR:v\[[0-9]+:[0-9]+\]]],
11*9880d681SAndroid Build Coastguard Worker; GCN-DAG: v_mov_b32_e32 [[K:v[0-9]+]], 0x1c8007b
12*9880d681SAndroid Build Coastguard Worker; GCN: buffer_store_dword [[K]], [[PTR]]
13*9880d681SAndroid Build Coastguard Workerdefine void @test_merge_store_constant_i16_invariant_global_pointer_load(i16 addrspace(1)* addrspace(1)* dereferenceable(4096) nonnull %in) #0 {
14*9880d681SAndroid Build Coastguard Worker  %ptr = load i16 addrspace(1)*, i16 addrspace(1)* addrspace(1)* %in, !invariant.load !0
15*9880d681SAndroid Build Coastguard Worker  %ptr.1 = getelementptr i16, i16 addrspace(1)* %ptr, i64 1
16*9880d681SAndroid Build Coastguard Worker  store i16 123, i16 addrspace(1)* %ptr, align 4
17*9880d681SAndroid Build Coastguard Worker  store i16 456, i16 addrspace(1)* %ptr.1
18*9880d681SAndroid Build Coastguard Worker  ret void
19*9880d681SAndroid Build Coastguard Worker}
20*9880d681SAndroid Build Coastguard Worker
21*9880d681SAndroid Build Coastguard Worker; GCN-LABEL: {{^}}test_merge_store_constant_i16_invariant_constant_pointer_load:
22*9880d681SAndroid Build Coastguard Worker; GCN: s_load_dwordx2 s{{\[}}[[SPTR_LO:[0-9]+]]:[[SPTR_HI:[0-9]+]]{{\]}}
23*9880d681SAndroid Build Coastguard Worker; GCN: v_mov_b32_e32 [[K:v[0-9]+]], 0x1c8007b
24*9880d681SAndroid Build Coastguard Worker; GCN: buffer_store_dword [[K]], off, s{{\[}}[[SPTR_LO]]:
25*9880d681SAndroid Build Coastguard Workerdefine void @test_merge_store_constant_i16_invariant_constant_pointer_load(i16 addrspace(1)* addrspace(2)* dereferenceable(4096) nonnull %in) #0 {
26*9880d681SAndroid Build Coastguard Worker  %ptr = load i16 addrspace(1)*, i16 addrspace(1)* addrspace(2)* %in, !invariant.load !0
27*9880d681SAndroid Build Coastguard Worker  %ptr.1 = getelementptr i16, i16 addrspace(1)* %ptr, i64 1
28*9880d681SAndroid Build Coastguard Worker  store i16 123, i16 addrspace(1)* %ptr, align 4
29*9880d681SAndroid Build Coastguard Worker  store i16 456, i16 addrspace(1)* %ptr.1
30*9880d681SAndroid Build Coastguard Worker  ret void
31*9880d681SAndroid Build Coastguard Worker}
32*9880d681SAndroid Build Coastguard Worker
33*9880d681SAndroid Build Coastguard Worker!0 = !{}
34*9880d681SAndroid Build Coastguard Worker
35*9880d681SAndroid Build Coastguard Workerattributes #0 = { nounwind }
36