[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / Transforms / AtomicExpand / AMDGPU / unaligned-atomic.ll
blob3d21e15100153523746d59012b6ee83c37592481
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -atomic-expand %s | FileCheck -check-prefix=GCN %s
4 ; FIXME: This should not introduce a libcall, much less one to an
5 ; anonymous function.
7 define i32 @atomic_load_global_align1(i32 addrspace(1)* %ptr) {
8 ; GCN-LABEL: @atomic_load_global_align1(
9 ; GCN-NEXT:    [[TMP1:%.*]] = bitcast i32 addrspace(1)* [[PTR:%.*]] to i8 addrspace(1)*
10 ; GCN-NEXT:    [[TMP2:%.*]] = addrspacecast i8 addrspace(1)* [[TMP1]] to i8*
11 ; GCN-NEXT:    [[TMP3:%.*]] = alloca i32, align 4
12 ; GCN-NEXT:    [[TMP4:%.*]] = bitcast i32* [[TMP3]] to i8*
13 ; GCN-NEXT:    call void @llvm.lifetime.start.p0i8(i64 4, i8* [[TMP4]])
14 ; GCN-NEXT:    call void @0(i64 4, i8* [[TMP2]], i8* [[TMP4]], i32 5)
15 ; GCN-NEXT:    [[TMP5:%.*]] = load i32, i32* [[TMP3]], align 4
16 ; GCN-NEXT:    call void @llvm.lifetime.end.p0i8(i64 4, i8* [[TMP4]])
17 ; GCN-NEXT:    ret i32 [[TMP5]]
19   %val = load atomic i32, i32 addrspace(1)* %ptr  seq_cst, align 1
20   ret i32 %val
23 define void @atomic_store_global_align1(i32 addrspace(1)* %ptr, i32 %val) {
24 ; GCN-LABEL: @atomic_store_global_align1(
25 ; GCN-NEXT:    [[TMP1:%.*]] = bitcast i32 addrspace(1)* [[PTR:%.*]] to i8 addrspace(1)*
26 ; GCN-NEXT:    [[TMP2:%.*]] = addrspacecast i8 addrspace(1)* [[TMP1]] to i8*
27 ; GCN-NEXT:    [[TMP3:%.*]] = alloca i32, align 4
28 ; GCN-NEXT:    [[TMP4:%.*]] = bitcast i32* [[TMP3]] to i8*
29 ; GCN-NEXT:    call void @llvm.lifetime.start.p0i8(i64 4, i8* [[TMP4]])
30 ; GCN-NEXT:    store i32 [[VAL:%.*]], i32* [[TMP3]], align 4
31 ; GCN-NEXT:    call void @1(i64 4, i8* [[TMP2]], i8* [[TMP4]], i32 0)
32 ; GCN-NEXT:    call void @llvm.lifetime.end.p0i8(i64 4, i8* [[TMP4]])
33 ; GCN-NEXT:    ret void
35   store atomic i32 %val, i32 addrspace(1)* %ptr monotonic, align 1
36   ret void