1; RUN: llc < %s -mtriple=amdgcn--amdhsa -mcpu=kaveri | FileCheck --check-prefix=HSA %s 2; RUN: llc < %s -mtriple=amdgcn--amdhsa -mcpu=kaveri -mattr=-flat-for-global | FileCheck --check-prefix=HSA-CI %s 3; RUN: llc < %s -mtriple=amdgcn--amdhsa -mcpu=carrizo | FileCheck --check-prefix=HSA %s 4; RUN: llc < %s -mtriple=amdgcn--amdhsa -mcpu=carrizo -mattr=-flat-for-global | FileCheck --check-prefix=HSA-VI %s 5; RUN: llc < %s -mtriple=amdgcn--amdhsa -mcpu=kaveri -filetype=obj | llvm-readobj -symbols -s -sd | FileCheck --check-prefix=ELF %s 6; RUN: llc < %s -mtriple=amdgcn--amdhsa -mcpu=kaveri | llvm-mc -filetype=obj -triple amdgcn--amdhsa -mcpu=kaveri | llvm-readobj -symbols -s -sd | FileCheck %s --check-prefix=ELF 7 8; The SHT_NOTE section contains the output from the .hsa_code_object_* 9; directives. 10 11; ELF: Section { 12; ELF: Name: .text 13; ELF: Type: SHT_PROGBITS (0x1) 14; ELF: Flags [ (0x6) 15; ELF: SHF_ALLOC (0x2) 16; ELF: SHF_EXECINSTR (0x4) 17; ELF: } 18 19; ELF: SHT_NOTE 20; ELF: 0000: 04000000 08000000 01000000 414D4400 21; ELF: 0010: 02000000 01000000 04000000 1B000000 22 23; ELF: 0020: 03000000 414D4400 04000700 07000000 24; ELF: 0030: 00000000 00000000 414D4400 414D4447 25; ELF: 0040: 50550000 26 27; ELF: Symbol { 28; ELF: Name: simple 29; ELF: Size: 288 30; ELF: Type: Function (0x2) 31; ELF: } 32 33; HSA: .hsa_code_object_version 2,1 34; HSA-CI: .hsa_code_object_isa 7,0,0,"AMD","AMDGPU" 35; HSA-VI: .hsa_code_object_isa 8,0,1,"AMD","AMDGPU" 36 37; HSA: .text 38 39; HSA-NOT: .amdgpu_hsa_kernel simple 40; HSA: {{^}}simple: 41; HSA: .amd_kernel_code_t 42; HSA: enable_sgpr_private_segment_buffer = 1 43; HSA: enable_sgpr_kernarg_segment_ptr = 1 44; HSA: .end_amd_kernel_code_t 45; HSA: s_load_dwordx2 s[{{[0-9]+:[0-9]+}}], s[4:5], 0x0 46 47; Make sure we are setting the ATC bit: 48; HSA-CI: s_mov_b32 s[[HI:[0-9]]], 0x100f000 49; On VI+ we also need to set MTYPE = 2 50; HSA-VI: s_mov_b32 s[[HI:[0-9]]], 0x1100f000 51; Make sure we generate flat store for HSA 52; HSA: flat_store_dword v{{\[[0-9]+:[0-9]+\]}}, v{{[0-9]+}} 53 54; HSA: .Lfunc_end0: 55; HSA: .size simple, .Lfunc_end0-simple 56 57define void @simple(i32 addrspace(1)* %out) { 58entry: 59 store i32 0, i32 addrspace(1)* %out 60 ret void 61} 62