221
|
1 // REQUIRES: x86-registered-target
|
|
2 // REQUIRES: amdgpu-registered-target
|
|
3
|
|
4 // RUN: %clang -E -dM -target amdgcn-amd-amdhsa \
|
|
5 // RUN: -mcpu=gfx908:xnack+:sramecc- -nogpulib -o - %s 2>&1 \
|
|
6 // RUN: | FileCheck -check-prefixes=PROC,ID1 %s
|
|
7
|
|
8 // RUN: %clang -E -dM -target amdgcn-amd-amdpal \
|
|
9 // RUN: -mcpu=gfx908:xnack+:sramecc- -nogpulib -o - %s 2>&1 \
|
|
10 // RUN: | FileCheck -check-prefixes=PROC,ID1 %s
|
|
11
|
|
12 // RUN: %clang -E -dM -target amdgcn--mesa3d \
|
|
13 // RUN: -mcpu=gfx908:xnack+:sramecc- -nogpulib -o - %s 2>&1 \
|
|
14 // RUN: | FileCheck -check-prefixes=PROC,ID1 %s
|
|
15
|
|
16 // RUN: %clang -E -dM -target amdgcn-amd-amdhsa \
|
|
17 // RUN: -mcpu=gfx908 -nogpulib -o - %s 2>&1 \
|
|
18 // RUN: | FileCheck -check-prefixes=PROC,ID2 %s
|
|
19
|
|
20 // RUN: %clang -E -dM -target amdgcn-amd-amdhsa \
|
|
21 // RUN: -nogpulib -o - %s 2>&1 \
|
|
22 // RUN: | FileCheck -check-prefixes=NONE %s
|
|
23
|
|
24 // PROC-DAG: #define __amdgcn_processor__ "gfx908"
|
|
25
|
|
26 // ID1-DAG: #define __amdgcn_feature_xnack__ 1
|
|
27 // ID1-DAG: #define __amdgcn_feature_sramecc__ 0
|
|
28 // ID1-DAG: #define __amdgcn_target_id__ "gfx908:sramecc-:xnack+"
|
|
29
|
|
30 // ID2-DAG: #define __amdgcn_target_id__ "gfx908"
|
|
31 // ID2-NOT: #define __amdgcn_feature_xnack__
|
|
32 // ID2-NOT: #define __amdgcn_feature_sramecc__
|
|
33
|
|
34 // NONE-NOT: #define __amdgcn_processor__
|
|
35 // NONE-NOT: #define __amdgcn_feature_xnack__
|
|
36 // NONE-NOT: #define __amdgcn_feature_sramecc__
|
|
37 // NONE-NOT: #define __amdgcn_target_id__
|