forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[InferAddressSpaces] [AMDGPU] Add inference for flat_atomic intrinsics
Certain address space dependent optimizations, like SeperateConstOffsetFromGEP, assume agreement between the address space of the recursive uses and the address space of the def. If this assumption is invalid, then optimizations may or may not be correct depending on properties of an address space for a given target, the address spaces of recursive uses, and the optimization being done. This patch infers the previous address space for flat_atomic ptr arguments. As a result, the address spaces of the uses in flat_atomic cases will agree with the address space in recursive defs. If this results in non-flat address space, then isel may infer a different intrinsic. For example, if the result is a flat_atomic using global address space, then it will be lowered to the corresponding global_atomic intrinsic. Change-Id: Ifcd981709dc2ea94d4acbcb84efe7176593ec8c7
- Loading branch information
Showing
3 changed files
with
228 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py | ||
; RUN: llc -march=amdgcn -mcpu=gfx90a < %s | FileCheck %s | ||
|
||
declare double @llvm.amdgcn.flat.atomic.fadd.f64.p0f64.f64(double* nocapture, double) #8 | ||
|
||
define protected amdgpu_kernel void @IllegalGEPConst(i32 %a, double addrspace(1)* %b, double %c) { | ||
; CHECK-LABEL: IllegalGEPConst: | ||
; CHECK: ; %bb.0: ; %entry | ||
; CHECK-NEXT: s_load_dword s2, s[0:1], 0x24 | ||
; CHECK-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x2c | ||
; CHECK-NEXT: v_mov_b32_e32 v2, 0 | ||
; CHECK-NEXT: s_waitcnt lgkmcnt(0) | ||
; CHECK-NEXT: s_ashr_i32 s3, s2, 31 | ||
; CHECK-NEXT: s_lshl_b64 s[0:1], s[2:3], 3 | ||
; CHECK-NEXT: s_add_u32 s0, s4, s0 | ||
; CHECK-NEXT: v_mov_b32_e32 v0, s6 | ||
; CHECK-NEXT: v_mov_b32_e32 v1, s7 | ||
; CHECK-NEXT: s_addc_u32 s1, s5, s1 | ||
; CHECK-NEXT: global_atomic_add_f64 v2, v[0:1], s[0:1] offset:-8 | ||
; CHECK-NEXT: s_endpgm | ||
entry: | ||
%i = add nsw i32 %a, -1 | ||
%i.2 = sext i32 %i to i64 | ||
%i.3 = getelementptr inbounds double, double addrspace(1)* %b, i64 %i.2 | ||
%i.4 = addrspacecast double addrspace(1)* %i.3 to double* | ||
%i.5 = tail call contract double @llvm.amdgcn.flat.atomic.fadd.f64.p0f64.f64(double* %i.4, double %c) #8 | ||
ret void | ||
} | ||
|
||
attributes #8 = { argmemonly mustprogress nounwind willreturn "target-cpu"="gfx90a" } |
183 changes: 183 additions & 0 deletions
183
llvm/test/Transforms/InferAddressSpaces/AMDGPU/flat_atomic.ll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py | ||
; RUN: llc -march=amdgcn -mcpu=gfx90a < %s | FileCheck %s | ||
|
||
declare double @llvm.amdgcn.flat.atomic.fadd.f64.p0f64.f64(double* nocapture, double) #8 | ||
declare double @llvm.amdgcn.flat.atomic.fmin.f64.p0f64.f64(double* nocapture, double) #8 | ||
declare double @llvm.amdgcn.flat.atomic.fmax.f64.p0f64.f64(double* nocapture, double) #8 | ||
|
||
define protected amdgpu_kernel void @InferNothing(i32 %a, double* %b, double %c) { | ||
; CHECK-LABEL: InferNothing: | ||
; CHECK: ; %bb.0: ; %entry | ||
; CHECK-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x2c | ||
; CHECK-NEXT: s_load_dword s2, s[0:1], 0x24 | ||
; CHECK-NEXT: s_waitcnt lgkmcnt(0) | ||
; CHECK-NEXT: v_mov_b32_e32 v0, s6 | ||
; CHECK-NEXT: s_add_i32 s0, s2, -1 | ||
; CHECK-NEXT: s_ashr_i32 s1, s0, 31 | ||
; CHECK-NEXT: s_lshl_b64 s[0:1], s[0:1], 3 | ||
; CHECK-NEXT: s_add_u32 s0, s4, s0 | ||
; CHECK-NEXT: s_addc_u32 s1, s5, s1 | ||
; CHECK-NEXT: v_mov_b32_e32 v1, s7 | ||
; CHECK-NEXT: v_pk_mov_b32 v[2:3], s[0:1], s[0:1] op_sel:[0,1] | ||
; CHECK-NEXT: flat_atomic_add_f64 v[2:3], v[0:1] | ||
; CHECK-NEXT: s_endpgm | ||
entry: | ||
%i = add nsw i32 %a, -1 | ||
%i.2 = sext i32 %i to i64 | ||
%i.3 = getelementptr inbounds double, double* %b, i64 %i.2 | ||
%i.4 = tail call contract double @llvm.amdgcn.flat.atomic.fadd.f64.p0f64.f64(double* %i.3, double %c) #8 | ||
ret void | ||
} | ||
|
||
|
||
define protected amdgpu_kernel void @InferFadd(i32 %a, double addrspace(1)* %b, double %c) { | ||
; CHECK-LABEL: InferFadd: | ||
; CHECK: ; %bb.0: ; %entry | ||
; CHECK-NEXT: s_load_dword s2, s[0:1], 0x24 | ||
; CHECK-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x2c | ||
; CHECK-NEXT: v_mov_b32_e32 v2, 0 | ||
; CHECK-NEXT: s_waitcnt lgkmcnt(0) | ||
; CHECK-NEXT: s_ashr_i32 s3, s2, 31 | ||
; CHECK-NEXT: s_lshl_b64 s[0:1], s[2:3], 3 | ||
; CHECK-NEXT: s_add_u32 s0, s4, s0 | ||
; CHECK-NEXT: v_mov_b32_e32 v0, s6 | ||
; CHECK-NEXT: v_mov_b32_e32 v1, s7 | ||
; CHECK-NEXT: s_addc_u32 s1, s5, s1 | ||
; CHECK-NEXT: global_atomic_add_f64 v2, v[0:1], s[0:1] offset:-8 | ||
; CHECK-NEXT: s_endpgm | ||
entry: | ||
%i = add nsw i32 %a, -1 | ||
%i.2 = sext i32 %i to i64 | ||
%i.3 = getelementptr inbounds double, double addrspace(1)* %b, i64 %i.2 | ||
%i.4 = addrspacecast double addrspace(1)* %i.3 to double* | ||
%i.5 = tail call contract double @llvm.amdgcn.flat.atomic.fadd.f64.p0f64.f64(double* %i.4, double %c) #8 | ||
ret void | ||
} | ||
|
||
define protected amdgpu_kernel void @InferFmax(i32 %a, double addrspace(1)* %b, double %c) { | ||
; CHECK-LABEL: InferFmax: | ||
; CHECK: ; %bb.0: ; %entry | ||
; CHECK-NEXT: s_load_dword s2, s[0:1], 0x24 | ||
; CHECK-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x2c | ||
; CHECK-NEXT: v_mov_b32_e32 v2, 0 | ||
; CHECK-NEXT: s_waitcnt lgkmcnt(0) | ||
; CHECK-NEXT: s_ashr_i32 s3, s2, 31 | ||
; CHECK-NEXT: s_lshl_b64 s[0:1], s[2:3], 3 | ||
; CHECK-NEXT: s_add_u32 s0, s4, s0 | ||
; CHECK-NEXT: v_mov_b32_e32 v0, s6 | ||
; CHECK-NEXT: v_mov_b32_e32 v1, s7 | ||
; CHECK-NEXT: s_addc_u32 s1, s5, s1 | ||
; CHECK-NEXT: global_atomic_max_f64 v2, v[0:1], s[0:1] offset:-8 | ||
; CHECK-NEXT: s_endpgm | ||
entry: | ||
%i = add nsw i32 %a, -1 | ||
%i.2 = sext i32 %i to i64 | ||
%i.3 = getelementptr inbounds double, double addrspace(1)* %b, i64 %i.2 | ||
%i.4 = addrspacecast double addrspace(1)* %i.3 to double* | ||
%i.5 = tail call contract double @llvm.amdgcn.flat.atomic.fmax.f64.p0f64.f64(double* %i.4, double %c) #8 | ||
ret void | ||
} | ||
|
||
define protected amdgpu_kernel void @InferFmin(i32 %a, double addrspace(1)* %b, double %c) { | ||
; CHECK-LABEL: InferFmin: | ||
; CHECK: ; %bb.0: ; %entry | ||
; CHECK-NEXT: s_load_dword s2, s[0:1], 0x24 | ||
; CHECK-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x2c | ||
; CHECK-NEXT: v_mov_b32_e32 v2, 0 | ||
; CHECK-NEXT: s_waitcnt lgkmcnt(0) | ||
; CHECK-NEXT: s_ashr_i32 s3, s2, 31 | ||
; CHECK-NEXT: s_lshl_b64 s[0:1], s[2:3], 3 | ||
; CHECK-NEXT: s_add_u32 s0, s4, s0 | ||
; CHECK-NEXT: v_mov_b32_e32 v0, s6 | ||
; CHECK-NEXT: v_mov_b32_e32 v1, s7 | ||
; CHECK-NEXT: s_addc_u32 s1, s5, s1 | ||
; CHECK-NEXT: global_atomic_min_f64 v2, v[0:1], s[0:1] offset:-8 | ||
; CHECK-NEXT: s_endpgm | ||
entry: | ||
%i = add nsw i32 %a, -1 | ||
%i.2 = sext i32 %i to i64 | ||
%i.3 = getelementptr inbounds double, double addrspace(1)* %b, i64 %i.2 | ||
%i.4 = addrspacecast double addrspace(1)* %i.3 to double* | ||
%i.5 = tail call contract double @llvm.amdgcn.flat.atomic.fmin.f64.p0f64.f64(double* %i.4, double %c) #8 | ||
ret void | ||
} | ||
|
||
define protected amdgpu_kernel void @InferMixed(i32 %a, double addrspace(1)* %b, double %c, double* %d) { | ||
; CHECK-LABEL: InferMixed: | ||
; CHECK: ; %bb.0: ; %entry | ||
; CHECK-NEXT: s_load_dword s2, s[0:1], 0x24 | ||
; CHECK-NEXT: s_load_dwordx2 s[8:9], s[0:1], 0x3c | ||
; CHECK-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x2c | ||
; CHECK-NEXT: v_mov_b32_e32 v4, 0 | ||
; CHECK-NEXT: s_waitcnt lgkmcnt(0) | ||
; CHECK-NEXT: s_ashr_i32 s3, s2, 31 | ||
; CHECK-NEXT: s_lshl_b64 s[0:1], s[2:3], 3 | ||
; CHECK-NEXT: v_mov_b32_e32 v0, s8 | ||
; CHECK-NEXT: v_mov_b32_e32 v1, s9 | ||
; CHECK-NEXT: s_add_u32 s0, s4, s0 | ||
; CHECK-NEXT: v_pk_mov_b32 v[2:3], s[6:7], s[6:7] op_sel:[0,1] | ||
; CHECK-NEXT: s_addc_u32 s1, s5, s1 | ||
; CHECK-NEXT: flat_atomic_add_f64 v[0:1], v[2:3] | ||
; CHECK-NEXT: global_atomic_add_f64 v4, v[2:3], s[0:1] offset:-7 | ||
; CHECK-NEXT: s_endpgm | ||
entry: | ||
%i = add nsw i32 %a, -1 | ||
%i.2 = sext i32 %i to i64 | ||
%i.3 = getelementptr inbounds double, double addrspace(1)* %b, i64 %i.2 | ||
br label %bb1 | ||
|
||
bb1: | ||
%i.7 = ptrtoint double addrspace(1)* %i.3 to i64 | ||
%i.8 = add nsw i64 %i.7, 1 | ||
%i.9 = inttoptr i64 %i.8 to double addrspace(1)* | ||
%i.10 = tail call contract double @llvm.amdgcn.flat.atomic.fadd.f64.p0f64.f64(double * %d, double %c) #23 | ||
%i.11 = addrspacecast double addrspace(1)* %i.9 to double* | ||
%i.12 = tail call contract double @llvm.amdgcn.flat.atomic.fadd.f64.p0f64.f64(double* %i.11, double %c) #23 | ||
ret void | ||
} | ||
|
||
define protected amdgpu_kernel void @InferPHI(i32 %a, double addrspace(1)* %b, double %c) { | ||
; CHECK-LABEL: InferPHI: | ||
; CHECK: ; %bb.0: ; %entry | ||
; CHECK-NEXT: s_load_dword s2, s[0:1], 0x24 | ||
; CHECK-NEXT: s_load_dwordx4 s[4:7], s[0:1], 0x2c | ||
; CHECK-NEXT: s_waitcnt lgkmcnt(0) | ||
; CHECK-NEXT: s_ashr_i32 s3, s2, 31 | ||
; CHECK-NEXT: s_lshl_b64 s[0:1], s[2:3], 3 | ||
; CHECK-NEXT: s_add_u32 s0, s4, s0 | ||
; CHECK-NEXT: s_addc_u32 s1, s5, s1 | ||
; CHECK-NEXT: s_add_u32 s0, s0, -8 | ||
; CHECK-NEXT: s_addc_u32 s1, s1, -1 | ||
; CHECK-NEXT: .LBB5_1: ; %bb0 | ||
; CHECK-NEXT: ; =>This Inner Loop Header: Depth=1 | ||
; CHECK-NEXT: s_cmp_lg_u64 s[0:1], 1 | ||
; CHECK-NEXT: s_cbranch_scc1 .LBB5_1 | ||
; CHECK-NEXT: ; %bb.2: ; %bb1 | ||
; CHECK-NEXT: v_mov_b32_e32 v2, 0 | ||
; CHECK-NEXT: v_pk_mov_b32 v[0:1], s[6:7], s[6:7] op_sel:[0,1] | ||
; CHECK-NEXT: global_atomic_add_f64 v2, v[0:1], s[0:1] | ||
; CHECK-NEXT: s_endpgm | ||
entry: | ||
%i = add nsw i32 %a, -1 | ||
%i.2 = sext i32 %i to i64 | ||
%i.3 = getelementptr inbounds double, double addrspace(1)* %b, i64 %i.2 | ||
%i.4 = ptrtoint double addrspace(1)* %i.3 to i64 | ||
br label %bb0 | ||
|
||
bb0: | ||
%phi = phi double addrspace(1)* [ %i.3, %entry ], [ %i.9, %bb0 ] | ||
%i.7 = ptrtoint double addrspace(1)* %phi to i64 | ||
%i.8 = sub nsw i64 %i.7, 1 | ||
%cmp2 = icmp eq i64 %i.8, 0 | ||
%i.9 = inttoptr i64 %i.7 to double addrspace(1)* | ||
br i1 %cmp2, label %bb1, label %bb0 | ||
|
||
bb1: | ||
%i.10 = addrspacecast double addrspace(1)* %i.9 to double* | ||
%i.11 = tail call contract double @llvm.amdgcn.flat.atomic.fadd.f64.p0f64.f64(double* %i.10, double %c) #23 | ||
ret void | ||
} | ||
|
||
|
||
attributes #8 = { argmemonly mustprogress nounwind willreturn "target-cpu"="gfx90a" } | ||
|