brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.1 KiB · 0eb7f64 Raw
58 lines · plain
1; RUN: llc < %s -mtriple=nvptx64 -mcpu=sm_20 | FileCheck %s2; RUN: %if ptxas %{ llc < %s -mtriple=nvptx64 -mcpu=sm_20 | %ptxas-verify %}3 4; Checks how NVPTX lowers alloca buffers and their passing to functions.5;6; Produced with the following CUDA code:7;  extern "C" __attribute__((device)) void callee(ptr f, char* buf);8;9;  extern "C" __attribute__((global)) void kernel_func(ptr a) {10;    char buf[4 * sizeof(float)];11;    *(reinterpret_cast<ptr>(&buf[0])) = a[0];12;    *(reinterpret_cast<ptr>(&buf[1])) = a[1];13;    *(reinterpret_cast<ptr>(&buf[2])) = a[2];14;    *(reinterpret_cast<ptr>(&buf[3])) = a[3];15;    callee(a, buf);16;  }17 18; CHECK: .visible .entry kernel_func19define ptx_kernel void @kernel_func(ptr %a) {20entry:21  %buf = alloca [16 x i8], align 422 23; CHECK: .local .align 4 .b8 	__local_depot0[16]24; CHECK: mov.b64 %SPL25 26; CHECK: ld.param.b64 %rd[[A_REG:[0-9]+]], [kernel_func_param_0]27; CHECK: cvta.to.global.u64 %rd[[A1_REG:[0-9]+]], %rd[[A_REG]]28; CHECK: add.u64 %rd[[SP_REG:[0-9]+]], %SP, 029; CHECK: ld.global.b32 %r[[A0_REG:[0-9]+]], [%rd[[A1_REG]]]30; CHECK: st.local.b32 [{{%rd[0-9]+}}], %r[[A0_REG]]31 32  %0 = load float, ptr %a, align 433  store float %0, ptr %buf, align 434  %arrayidx2 = getelementptr inbounds float, ptr %a, i64 135  %1 = load float, ptr %arrayidx2, align 436  %arrayidx3 = getelementptr inbounds [16 x i8], ptr %buf, i64 0, i64 137  store float %1, ptr %arrayidx3, align 438  %arrayidx4 = getelementptr inbounds float, ptr %a, i64 239  %2 = load float, ptr %arrayidx4, align 440  %arrayidx5 = getelementptr inbounds [16 x i8], ptr %buf, i64 0, i64 241  store float %2, ptr %arrayidx5, align 442  %arrayidx6 = getelementptr inbounds float, ptr %a, i64 343  %3 = load float, ptr %arrayidx6, align 444  %arrayidx7 = getelementptr inbounds [16 x i8], ptr %buf, i64 0, i64 345  store float %3, ptr %arrayidx7, align 446 47; CHECK-DAG:   .param .b64 param0;48; CHECK-DAG:   .param .b64 param1;49; CHECK-DAG:   st.param.b64  [param0], %rd[[A_REG]]50; CHECK-DAG:   st.param.b64  [param1], %rd[[SP_REG]]51; CHECK:       call.uni callee,52 53  call void @callee(ptr %a, ptr %buf) #254  ret void55}56 57declare void @callee(ptr, ptr)58