[clang] Fix crashes when passing VLA to va_arg (#119563)
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / preload-kernarg-header.ll
blob5a03381447d0eb4f2c47d23418809efadfe27f8b
1 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx940 -amdgpu-kernarg-preload-count=1 -asm-verbose=0 < %s | FileCheck -check-prefixes=GCN,HSA,ASM %s
2 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx940 -amdgpu-kernarg-preload-count=1 -filetype=obj < %s | llvm-objdump --arch=amdgcn --mcpu=gfx940 --disassemble - | FileCheck -check-prefixes=GCN,HSA,OBJ %s
3 ; RUN: llc -mtriple=amdgcn -mcpu=gfx940 -amdgpu-kernarg-preload-count=1 -filetype=obj < %s | llvm-objdump --arch=amdgcn --mcpu=gfx940 --disassemble - | FileCheck -check-prefixes=GCN,NON-HSA,OBJ %s
4 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx940 -amdgpu-kernarg-preload-count=1 -asm-verbose=0 < %s | llvm-mc -triple amdgcn-amd-amdhsa -mcpu=gfx940 -filetype=obj | llvm-objdump --arch=amdgcn --mcpu=gfx940 --disassemble - | FileCheck -check-prefixes=GCN,HSA,OBJ %s
6 ; GCN: preload_kernarg_header
7 ; HSA: s_trap 2
8 ; NON-HSA: s_endpgm
9 ; ASM: .fill 63, 4, 0xbf800000 ; s_nop 0
10 ; OBJ-COUNT-63: s_nop 0
11 define amdgpu_kernel void @preload_kernarg_header(ptr inreg %arg) {
12     store ptr %arg, ptr %arg
13     ret void
16 ; GCN: non_kernel_function
17 ; GCN-NOT: s_trap 2
18 ; GCN-NOT: s_nop 0
19 ; GCN: flat_store
20 define void @non_kernel_function(ptr %arg) {
21     store ptr %arg, ptr %arg
22     ret void