2014-04-03 21:18:25 +00:00
|
|
|
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s --check-prefix PTX
|
|
|
|
; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s --check-prefix PTX
|
|
|
|
; RUN: opt < %s -S -nvptx-favor-non-generic -dce | FileCheck %s --check-prefix IR
|
|
|
|
|
|
|
|
@array = internal addrspace(3) global [10 x float] zeroinitializer, align 4
|
|
|
|
@scalar = internal addrspace(3) global float 0.000000e+00, align 4
|
|
|
|
|
|
|
|
; Verifies nvptx-favor-non-generic correctly optimizes generic address space
|
|
|
|
; usage to non-generic address space usage for the patterns we claim to handle:
|
|
|
|
; 1. load cast
|
|
|
|
; 2. store cast
|
|
|
|
; 3. load gep cast
|
|
|
|
; 4. store gep cast
|
|
|
|
; gep and cast can be an instruction or a constant expression. This function
|
|
|
|
; tries all possible combinations.
|
|
|
|
define float @ld_st_shared_f32(i32 %i, float %v) {
|
|
|
|
; IR-LABEL: @ld_st_shared_f32
|
|
|
|
; IR-NOT: addrspacecast
|
|
|
|
; PTX-LABEL: ld_st_shared_f32(
|
|
|
|
; load cast
|
|
|
|
%1 = load float* addrspacecast (float addrspace(3)* @scalar to float*), align 4
|
|
|
|
; PTX: ld.shared.f32 %f{{[0-9]+}}, [scalar];
|
|
|
|
; store cast
|
|
|
|
store float %v, float* addrspacecast (float addrspace(3)* @scalar to float*), align 4
|
|
|
|
; PTX: st.shared.f32 [scalar], %f{{[0-9]+}};
|
|
|
|
; use syncthreads to disable optimizations across components
|
|
|
|
call void @llvm.cuda.syncthreads()
|
|
|
|
; PTX: bar.sync 0;
|
|
|
|
|
|
|
|
; cast; load
|
|
|
|
%2 = addrspacecast float addrspace(3)* @scalar to float*
|
|
|
|
%3 = load float* %2, align 4
|
|
|
|
; PTX: ld.shared.f32 %f{{[0-9]+}}, [scalar];
|
|
|
|
; cast; store
|
|
|
|
store float %v, float* %2, align 4
|
|
|
|
; PTX: st.shared.f32 [scalar], %f{{[0-9]+}};
|
|
|
|
call void @llvm.cuda.syncthreads()
|
|
|
|
; PTX: bar.sync 0;
|
|
|
|
|
|
|
|
; load gep cast
|
|
|
|
%4 = load float* getelementptr inbounds ([10 x float]* addrspacecast ([10 x float] addrspace(3)* @array to [10 x float]*), i32 0, i32 5), align 4
|
|
|
|
; PTX: ld.shared.f32 %f{{[0-9]+}}, [array+20];
|
|
|
|
; store gep cast
|
|
|
|
store float %v, float* getelementptr inbounds ([10 x float]* addrspacecast ([10 x float] addrspace(3)* @array to [10 x float]*), i32 0, i32 5), align 4
|
|
|
|
; PTX: st.shared.f32 [array+20], %f{{[0-9]+}};
|
|
|
|
call void @llvm.cuda.syncthreads()
|
|
|
|
; PTX: bar.sync 0;
|
|
|
|
|
|
|
|
; gep cast; load
|
|
|
|
%5 = getelementptr inbounds [10 x float]* addrspacecast ([10 x float] addrspace(3)* @array to [10 x float]*), i32 0, i32 5
|
|
|
|
%6 = load float* %5, align 4
|
|
|
|
; PTX: ld.shared.f32 %f{{[0-9]+}}, [array+20];
|
|
|
|
; gep cast; store
|
|
|
|
store float %v, float* %5, align 4
|
|
|
|
; PTX: st.shared.f32 [array+20], %f{{[0-9]+}};
|
|
|
|
call void @llvm.cuda.syncthreads()
|
|
|
|
; PTX: bar.sync 0;
|
|
|
|
|
|
|
|
; cast; gep; load
|
|
|
|
%7 = addrspacecast [10 x float] addrspace(3)* @array to [10 x float]*
|
|
|
|
%8 = getelementptr inbounds [10 x float]* %7, i32 0, i32 %i
|
|
|
|
%9 = load float* %8, align 4
|
|
|
|
; PTX: ld.shared.f32 %f{{[0-9]+}}, [%{{(r|rl|rd)[0-9]+}}];
|
|
|
|
; cast; gep; store
|
|
|
|
store float %v, float* %8, align 4
|
|
|
|
; PTX: st.shared.f32 [%{{(r|rl|rd)[0-9]+}}], %f{{[0-9]+}};
|
|
|
|
call void @llvm.cuda.syncthreads()
|
|
|
|
; PTX: bar.sync 0;
|
|
|
|
|
|
|
|
%sum2 = fadd float %1, %3
|
|
|
|
%sum3 = fadd float %sum2, %4
|
|
|
|
%sum4 = fadd float %sum3, %6
|
|
|
|
%sum5 = fadd float %sum4, %9
|
|
|
|
ret float %sum5
|
|
|
|
}
|
|
|
|
|
2014-06-15 21:40:57 +00:00
|
|
|
; When hoisting an addrspacecast between different pointer types, replace the
|
|
|
|
; addrspacecast with a bitcast.
|
2014-04-03 21:18:25 +00:00
|
|
|
define i32 @ld_int_from_float() {
|
|
|
|
; IR-LABEL: @ld_int_from_float
|
2014-06-15 21:40:57 +00:00
|
|
|
; IR: load i32 addrspace(3)* bitcast (float addrspace(3)* @scalar to i32 addrspace(3)*)
|
2014-04-03 21:18:25 +00:00
|
|
|
; PTX-LABEL: ld_int_from_float(
|
2014-06-15 21:40:57 +00:00
|
|
|
; PTX: ld.shared.u{{(32|64)}}
|
2014-04-03 21:18:25 +00:00
|
|
|
%1 = load i32* addrspacecast(float addrspace(3)* @scalar to i32*), align 4
|
|
|
|
ret i32 %1
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @llvm.cuda.syncthreads() #3
|
|
|
|
|
|
|
|
attributes #3 = { noduplicate nounwind }
|
|
|
|
|