Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / hip-code-object-version.hip
blob33559b6576e7d30984800ca39b22d51fa7788376
1 // REQUIRES: amdgpu-registered-target
3 // Check bundle ID for code object v3.
5 // RUN: not %clang -### --target=x86_64-linux-gnu \
6 // RUN:   -mcode-object-version=3 \
7 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
8 // RUN:   %s 2>&1 | FileCheck -check-prefix=V3 %s
10 // RUN: not %clang -### --target=x86_64-linux-gnu \
11 // RUN:   -mcode-object-version=4 -mcode-object-version=3 \
12 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
13 // RUN:   %s 2>&1 | FileCheck -check-prefix=V3 %s
15 // V3: "-mcode-object-version=3"
16 // V3: "-mllvm" "--amdhsa-code-object-version=3"
17 // V3: "-targets=host-x86_64-unknown-linux,hip-amdgcn-amd-amdhsa--gfx906"
19 // Check bundle ID for code object version 4.
21 // RUN: not %clang -### --target=x86_64-linux-gnu \
22 // RUN:   -mcode-object-version=4 \
23 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
24 // RUN:   %s 2>&1 | FileCheck -check-prefix=V4 %s
26 // V4: "-mcode-object-version=4"
27 // V4: "-mllvm" "--amdhsa-code-object-version=4"
28 // V4: "-targets=host-x86_64-unknown-linux,hipv4-amdgcn-amd-amdhsa--gfx906"
30 // Check bundle ID for code object version 5.
32 // RUN: not %clang -### --target=x86_64-linux-gnu \
33 // RUN:   -mcode-object-version=5 \
34 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
35 // RUN:   %s 2>&1 | FileCheck -check-prefix=V5 %s
37 // V5: "-mcode-object-version=5"
38 // V5: "-mllvm" "--amdhsa-code-object-version=5"
39 // V5: "-targets=host-x86_64-unknown-linux,hipv4-amdgcn-amd-amdhsa--gfx906"
41 // Check bundle ID for code object version default
43 // RUN: %clang -### --target=x86_64-linux-gnu \
44 // RUN:   --offload-arch=gfx906 -nogpuinc -nogpulib \
45 // RUN:   %s 2>&1 | FileCheck -check-prefix=VD %s
47 // VD: "-targets=host-x86_64-unknown-linux,hipv4-amdgcn-amd-amdhsa--gfx906"
49 // Check invalid code object version option.
51 // RUN: not %clang -### --target=x86_64-linux-gnu \
52 // RUN:   -mcode-object-version=1 \
53 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
54 // RUN:   %s 2>&1 | FileCheck -check-prefix=INVALID_1 %s
55 // INVALID_1: error: invalid integral value '1' in '-mcode-object-version=1'
56 // INVALID_1-NOT: error: invalid integral value
58 // RUN: not %clang -### --target=x86_64-linux-gnu \
59 // RUN:   -mcode-object-version=2 \
60 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm \
61 // RUN:   %s 2>&1 | FileCheck -check-prefix=INVALID_2 %s
62 // INVALID_2: error: invalid integral value '2' in '-mcode-object-version=2'
63 // INVALID_2-NOT: error: invalid integral value
65 // Check LLVM code object version option --amdhsa-code-object-version
66 // is passed to -cc1 and -cc1as, and -mcode-object-version is passed
67 // to -cc1 but not -cc1as.
69 // RUN: not %clang -### --target=x86_64-linux-gnu \
70 // RUN:   -mcode-object-version=5 \
71 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm -save-temps \
72 // RUN:   %s 2>&1 | FileCheck -check-prefix=CC1 %s
74 // CC1: "-cc1" {{.*}}"-mcode-object-version=5" {{.*}}"-mllvm" "--amdhsa-code-object-version=5"
75 // CC1: "-cc1as" {{.*}}"-mllvm" "--amdhsa-code-object-version=5"
77 // RUN: not %clang -### --target=x86_64-linux-gnu \
78 // RUN:   -mcode-object-version=5 \
79 // RUN:   --offload-arch=gfx906 --rocm-path=%S/Inputs/rocm -save-temps \
80 // RUN:   %s 2>&1 | FileCheck -check-prefix=CC1NEG %s
82 // CC1NEG-NOT: "-cc1as" {{.*}}"-mcode-object-version=5"