Summary: This patch introduces a mechanism to check the code object version from the module flag, This avoids checking from command line. In case the module flag is missing, we use the current default code object version supported in the compiler. For tools whose inputs are not IR, we may need other approach (directive, for example) to check the code object version, That will be in a separate patch later. For LIT tests update, we directly add module flag if there is only a single code object version associated with all checks in one file. In cause of multiple code object version in one file, we use the "sed" method to "clone" the checks to achieve the goal. Reviewer: arsenm Differential Revision: https://reviews.llvm.org/D14313
101 lines
4.4 KiB
LLVM
101 lines
4.4 KiB
LLVM
; RUN: llc -mtriple=amdgcn-amd-unknown -mcpu=gfx802 < %s | FileCheck --check-prefix=OSABI-UNK %s
|
|
; RUN: llc -mtriple=amdgcn-amd-unknown -mcpu=iceland < %s | FileCheck --check-prefix=OSABI-UNK %s
|
|
; RUN: llc -mtriple=amdgcn-amd-unknown -mcpu=gfx802 -filetype=obj < %s | llvm-readelf --notes - | FileCheck --check-prefix=OSABI-UNK-ELF %s
|
|
; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx802 --amdhsa-code-object-version=2 < %s| FileCheck --check-prefix=OSABI-HSA %s
|
|
; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=iceland < %s | FileCheck --check-prefix=OSABI-HSA %s
|
|
; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx802 -filetype=obj < %s | llvm-readelf --notes - | FileCheck --check-prefix=OSABI-HSA-ELF %s
|
|
; RUN: llc -mtriple=amdgcn-amd-amdpal -mcpu=gfx802 < %s | FileCheck --check-prefix=OSABI-PAL %s
|
|
; RUN: llc -mtriple=amdgcn-amd-amdpal -mcpu=iceland < %s | FileCheck --check-prefix=OSABI-PAL %s
|
|
; RUN: llc -mtriple=amdgcn-amd-amdpal -mcpu=gfx802 -filetype=obj < %s | llvm-readelf --notes - | FileCheck --check-prefix=OSABI-PAL-ELF %s
|
|
; RUN: llc -march=r600 < %s | FileCheck --check-prefix=R600 %s
|
|
|
|
; OSABI-UNK-NOT: .hsa_code_object_version
|
|
; OSABI-UNK-NOT: .hsa_code_object_isa
|
|
; OSABI-UNK: .amd_amdgpu_isa "amdgcn-amd-unknown--gfx802"
|
|
; OSABI-UNK-NOT: .amd_amdgpu_hsa_metadata
|
|
; OSABI-UNK-NOT: .amd_amdgpu_pal_metadata
|
|
|
|
; OSABI-UNK-ELF-NOT: Unknown note type
|
|
; OSABI-UNK-ELF: NT_AMD_HSA_ISA_NAME (AMD HSA ISA Name)
|
|
; OSABI-UNK-ELF: AMD HSA ISA Name:
|
|
; OSABI-UNK-ELF: amdgcn-amd-unknown--gfx802
|
|
; OSABI-UNK-ELF-NOT: Unknown note type
|
|
; OSABI-UNK-ELF-NOT: NT_AMD_HSA_METADATA (AMD HSA Metadata)
|
|
; OSABI-UNK-ELF-NOT: Unknown note type
|
|
; OSABI-UNK-ELF-NOT: NT_AMD_PAL_METADATA (AMD PAL Metadata)
|
|
; OSABI-UNK-ELF-NOT: Unknown note type
|
|
|
|
; OSABI-HSA: .hsa_code_object_version
|
|
; OSABI-HSA: .hsa_code_object_isa
|
|
; OSABI-HSA: .amd_amdgpu_isa "amdgcn-amd-amdhsa--gfx802"
|
|
; OSABI-HSA: .amd_amdgpu_hsa_metadata
|
|
; OSABI-HSA-NOT: .amd_amdgpu_pal_metadata
|
|
|
|
; OSABI-HSA-ELF: NT_AMD_HSA_CODE_OBJECT_VERSION (AMD HSA Code Object Version)
|
|
; OSABI-HSA-ELF: NT_AMD_HSA_ISA_VERSION (AMD HSA ISA Version)
|
|
; OSABI-HSA-ELF: NT_AMD_HSA_ISA_NAME (AMD HSA ISA Name)
|
|
; OSABI-HSA-ELF: AMD HSA ISA Name:
|
|
; OSABI-HSA-ELF: amdgcn-amd-amdhsa--gfx802
|
|
; OSABI-HSA-ELF: NT_AMD_HSA_METADATA (AMD HSA Metadata)
|
|
; OSABI-HSA-ELF: HSA Metadata:
|
|
; OSABI-HSA-ELF: ---
|
|
; OSABI-HSA-ELF: Version: [ 1, 0 ]
|
|
; OSABI-HSA-ELF: Kernels:
|
|
; OSABI-HSA-ELF: - Name: elf_notes
|
|
; OSABI-HSA-ELF: SymbolName: 'elf_notes@kd'
|
|
; OSABI-HSA-ELF: CodeProps:
|
|
; OSABI-HSA-ELF: KernargSegmentSize: 0
|
|
; OSABI-HSA-ELF: GroupSegmentFixedSize: 0
|
|
; OSABI-HSA-ELF: PrivateSegmentFixedSize: 0
|
|
; OSABI-HSA-ELF: KernargSegmentAlign: 4
|
|
; OSABI-HSA-ELF: WavefrontSize: 64
|
|
; OSABI-HSA-ELF: NumSGPRs: 96
|
|
; OSABI-HSA-ELF: ...
|
|
; OSABI-HSA-ELF-NOT: NT_AMD_PAL_METADATA (AMD PAL Metadata)
|
|
|
|
; OSABI-PAL-NOT: .hsa_code_object_version
|
|
; OSABI-PAL: .hsa_code_object_isa
|
|
; OSABI-PAL: .amd_amdgpu_isa "amdgcn-amd-amdpal--gfx802"
|
|
; OSABI-PAL-NOT: .amd_amdgpu_hsa_metadata
|
|
|
|
; OSABI-PAL-ELF: NT_AMD_HSA_ISA_VERSION (AMD HSA ISA Version)
|
|
; OSABI-PAL-ELF: NT_AMD_HSA_ISA_NAME (AMD HSA ISA Name)
|
|
; OSABI-PAL-ELF: AMD HSA ISA Name:
|
|
; OSABI-PAL-ELF: amdgcn-amd-amdpal--gfx802
|
|
; OSABI-PAL-ELF-NOT: NT_AMD_HSA_METADATA (AMD HSA Metadata)
|
|
; OSABI-PAL-ELF: NT_AMDGPU_METADATA (AMDGPU Metadata)
|
|
; OSABI-PAL-ELF: AMDGPU Metadata:
|
|
; OSABI-PAL-ELF: amdpal.pipelines:
|
|
; OSABI-PAL-ELF: - .hardware_stages:
|
|
; OSABI-PAL-ELF: .cs:
|
|
; OSABI-PAL-ELF: .entry_point: elf_notes
|
|
; OSABI-PAL-ELF: .scratch_memory_size: 0
|
|
; OSABI-PAL-ELF: .sgpr_count: 96
|
|
; OSABI-PAL-ELF: .vgpr_count: 1
|
|
; OSABI-PAL-ELF: .registers:
|
|
; OSABI-PAL-ELF: 11794: 11469504
|
|
; OSABI-PAL-ELF: 11795: 128
|
|
; OSABI-PAL: amdpal.pipelines:
|
|
; OSABI-PAL: - .hardware_stages:
|
|
; OSABI-PAL: .cs:
|
|
; OSABI-PAL: .entry_point: elf_notes
|
|
; OSABI-PAL: .scratch_memory_size: 0
|
|
; OSABI-PAL: .sgpr_count: 0x60
|
|
; OSABI-PAL: .vgpr_count: 0x1
|
|
; OSABI-PAL: .registers:
|
|
; OSABI-PAL: 0x2e12 (COMPUTE_PGM_RSRC1): 0xaf02c0
|
|
; OSABI-PAL: 0x2e13 (COMPUTE_PGM_RSRC2): 0x80
|
|
|
|
; R600-NOT: .hsa_code_object_version
|
|
; R600-NOT: .hsa_code_object_isa
|
|
; R600-NOT: .amd_amdgpu_isa
|
|
; R600-NOT: .amd_amdgpu_hsa_metadata
|
|
; R600-NOT: .amd_amdgpu_pal_metadata
|
|
|
|
define amdgpu_kernel void @elf_notes() {
|
|
ret void
|
|
}
|
|
|
|
!llvm.module.flags = !{!0}
|
|
!0 = !{i32 1, !"amdgpu_code_object_version", i32 200}
|