[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / tid-kd-xnack-off.ll
blobe676f4f8de74dd497ea3fa8e97a4bba5f134ff05
1 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a -mattr=-xnack < %s | FileCheck --check-prefixes=ASM %s
2 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a -mattr=-xnack --filetype=obj < %s | llvm-objdump -s -j .rodata - | FileCheck --check-prefixes=OBJ %s
3 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a -mattr=-xnack --filetype=obj < %s | llvm-readelf --notes - | FileCheck --check-prefixes=ELF %s
5 ; TODO: Update to check for granulated sgpr count directive once one is added.
7 define amdgpu_kernel void @kern() {
8 ; ASM-LABEL: kern:
9 ; ASM: .amdhsa_next_free_sgpr 5
10 ; ASM: .amdhsa_reserve_xnack_mask 0
12 ; Verify that an extra SGPR block is not reserved with XNACK "off" tid setting.
13 ; OBJ: Contents of section .rodata:
14 ; OBJ-NEXT: 0000 00000000 00000000 00000000 00000000  ................
15 ; OBJ-NEXT: 0010 00000000 00000000 00000000 00000000  ................
16 ; OBJ-NEXT: 0020 00000000 00000000 00000000 00000000  ................
17 ; OBJ-NEXT: 0030 0000af00 88000000 01000000 00000000  ................
19 ; ELF: AMDGPU Metadata
20 ; ELF: .sgpr_count:     5
21 entry:
22   tail call void asm sideeffect "", "~{s[0:4]}"()
23   ret void
26 !llvm.module.flags = !{!0}
27 !0 = !{i32 1, !"amdgpu_code_object_version", i32 400}