xref: /llvm-project/llvm/test/CodeGen/AMDGPU/attributor-noopt.ll (revision c93e001ca695e905cb965b36d63f7a348d1dd809)
1; RUN: sed 's/CODE_OBJECT_VERSION/500/g' %s | opt -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -O2 | llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 | FileCheck -check-prefix=OPT %s
2; RUN: sed 's/CODE_OBJECT_VERSION/400/g' %s | opt -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -O0 | llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 | FileCheck -check-prefix=NOOPT %s
3; RUN: sed 's/CODE_OBJECT_VERSION/500/g' %s | opt -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -O0 | llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 | FileCheck -check-prefix=NOOPT %s
4
5; Check that AMDGPUAttributor is not run with -O0.
6; OPT: .amdhsa_user_sgpr_private_segment_buffer 1
7; OPT: .amdhsa_user_sgpr_dispatch_ptr 0
8; OPT: .amdhsa_user_sgpr_queue_ptr 0
9; OPT: .amdhsa_user_sgpr_kernarg_segment_ptr 0
10; OPT: .amdhsa_user_sgpr_dispatch_id 0
11; OPT: .amdhsa_user_sgpr_flat_scratch_init 0
12; OPT: .amdhsa_user_sgpr_private_segment_size 0
13; OPT: .amdhsa_system_sgpr_private_segment_wavefront_offset 0
14; OPT: .amdhsa_system_sgpr_workgroup_id_x 1
15; OPT: .amdhsa_system_sgpr_workgroup_id_y 0
16; OPT: .amdhsa_system_sgpr_workgroup_id_z 0
17; OPT: .amdhsa_system_sgpr_workgroup_info 0
18; OPT: .amdhsa_system_vgpr_workitem_id 0
19
20; NOOPT: .amdhsa_user_sgpr_private_segment_buffer 1
21; NOOPT: .amdhsa_user_sgpr_dispatch_ptr 1
22; NOOPT: .amdhsa_user_sgpr_queue_ptr 1
23; NOOPT: .amdhsa_user_sgpr_kernarg_segment_ptr 1
24; NOOPT: .amdhsa_user_sgpr_dispatch_id 1
25; NOOPT: .amdhsa_user_sgpr_flat_scratch_init 0
26; NOOPT: .amdhsa_user_sgpr_private_segment_size 0
27; NOOPT: .amdhsa_system_sgpr_private_segment_wavefront_offset 0
28; NOOPT: .amdhsa_system_sgpr_workgroup_id_x 1
29; NOOPT: .amdhsa_system_sgpr_workgroup_id_y 1
30; NOOPT: .amdhsa_system_sgpr_workgroup_id_z 1
31; NOOPT: .amdhsa_system_sgpr_workgroup_info 0
32; NOOPT: .amdhsa_system_vgpr_workitem_id 2
33define amdgpu_kernel void @foo() {
34  ret void
35}
36
37!llvm.module.flags = !{!0}
38!0 = !{i32 1, !"amdhsa_code_object_version", i32 CODE_OBJECT_VERSION}
39