[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / tid-kd-xnack-any.ll
blob2d2d64910c4fb71f8d63c00dfaed14f67d30e5b1
1 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a < %s | FileCheck --check-prefixes=ASM %s
2 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a --filetype=obj < %s | llvm-objdump -s -j .rodata - | FileCheck --check-prefixes=OBJ %s
3 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx90a --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 1
12 ; Verify that an extra SGPR block is reserved with XNACK "any" 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 4000af00 88000000 01000000 00000000  @...............
19 ; ELF: AMDGPU Metadata
20 ; ELF: .sgpr_count:     9
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}