[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / CodeGenCUDA / static-device-var-no-rdc.cu
blob2cfed3ae799792b9f513f5675da8181d33e60b31
1 // REQUIRES: x86-registered-target
2 // REQUIRES: amdgpu-registered-target
4 // RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -fcuda-is-device -std=c++11 \
5 // RUN:   -emit-llvm -o - -x hip %s | FileCheck -check-prefix=DEV %s
7 // RUN: %clang_cc1 -triple x86_64-gnu-linux -std=c++11 \
8 // RUN:   -emit-llvm -o - -x hip %s | FileCheck -check-prefix=HOST %s
10 // Negative tests.
12 // RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -fcuda-is-device -std=c++11 \
13 // RUN:   -emit-llvm -o - -x hip %s | FileCheck -check-prefix=DEV-NEG %s
15 // RUN: %clang_cc1 -triple x86_64-gnu-linux -std=c++11 \
16 // RUN:   -emit-llvm -o - -x hip %s | FileCheck -check-prefix=HOST-NEG %s
18 #include "Inputs/cuda.h"
20 // Test function scope static device variable, which should not be externalized.
21 // DEV-DAG: @_ZZ6kernelPiPPKiE1w = internal addrspace(4) constant i32 1
22 // DEV-DAG: @_ZZ6kernelPiPPKiE21local_static_constant = internal addrspace(4) constant i32 42
23 // DEV-DAG: @_ZZ6kernelPiPPKiE19local_static_device = internal addrspace(1) constant i32 43
25 // Check a static device variable referenced by host function is externalized.
26 // DEV-DAG: @_ZL1x ={{.*}} addrspace(1) externally_initialized global i32 0
27 // HOST-DAG: @_ZL1x = internal global i32 undef
28 // HOST-DAG: @[[DEVNAMEX:[0-9]+]] = {{.*}}c"_ZL1x\00"
30 static __device__ int x;
32 // Check a static device variables referenced only by device functions and kernels
33 // is not externalized.
34 // DEV-DAG: @_ZL2x2 = internal addrspace(1) global i32 0
35 static __device__ int x2;
37 // Check a static device variable referenced by host device function is externalized.
38 // DEV-DAG: @_ZL2x3 ={{.*}} addrspace(1) externally_initialized global i32 0
39 static __device__ int x3;
41 // Check a static device variable referenced in file scope is externalized.
42 // DEV-DAG: @_ZL2x4 ={{.*}} addrspace(1) externally_initialized global i32 0
43 static __device__ int x4;
44 int& x4_ref = x4;
46 // Check a static device variable in anonymous namespace.
47 // DEV-DAG: @_ZN12_GLOBAL__N_12x5E ={{.*}} addrspace(1) externally_initialized global i32 0
48 namespace {
49 static __device__ int x5;
52 // Check a static constant variable referenced by host is externalized.
53 // DEV-DAG: @_ZL1y ={{.*}} addrspace(4) externally_initialized global i32 0
54 // HOST-DAG: @_ZL1y = internal global i32 undef
55 // HOST-DAG: @[[DEVNAMEY:[0-9]+]] = {{.*}}c"_ZL1y\00"
57 static __constant__ int y;
59 // Test static host variable, which should not be externalized nor registered.
60 // HOST-DAG: @_ZL1z = internal global i32 0
61 // DEV-NEG-NOT: @_ZL1z
62 static int z;
64 // Test implicit static constant variable, which should not be externalized.
65 // HOST-DAG: @_ZL2z2 = internal constant i32 456
66 // DEV-DAG: @_ZL2z2 = internal addrspace(4) constant i32 456
68 static constexpr int z2 = 456;
70 // Test static device variable in inline function, which should not be
71 // externalized nor registered.
72 // DEV-DAG: @_ZZ6devfunPPKiE1p = linkonce_odr addrspace(4) constant i32 2, comdat
74 // Check a static device variable referenced by host function only is externalized.
75 // DEV-DAG: @_ZL1w ={{.*}} addrspace(1) externally_initialized global i32 0
76 // HOST-DAG: @_ZL1w = internal global i32 undef
77 // HOST-DAG: @[[DEVNAMEW:[0-9]+]] = {{.*}}c"_ZL1w\00"
79 static __device__ int w;
81 // Test non-ODR-use of static device var should not be emitted or registered.
82 // DEV-NEG-NOT: @_ZL1u
83 // HOST-NEG-NOT: @_ZL1u
85 static __device__ int u;
87 inline __device__ void devfun(const int ** b) {
88   const static int p = 2;
89   b[0] = &p;
90   b[1] = &x2;
93 __global__ void kernel(int *a, const int **b) {
94   const static int w = 1;
95   const static __constant__ int local_static_constant = 42;
96   const static __device__ int local_static_device = 43;
97   a[0] = x;
98   a[1] = y;
99   a[2] = x2;
100   a[3] = x3;
101   a[4] = x4;
102   a[5] = x5;
103   a[6] = sizeof(u);
104   b[0] = &w;
105   b[1] = &z2;
106   b[2] = &local_static_constant;
107   b[3] = &local_static_device;
108   devfun(b);
111 __host__ __device__ void hdf(int *a) {
112   a[0] = x3;
115 int* getDeviceSymbol(int *x);
117 void foo(const int **a) {
118   getDeviceSymbol(&x);
119   getDeviceSymbol(&x5);
120   getDeviceSymbol(&y);
121   getDeviceSymbol(&w);
122   z = 123;
123   a[0] = &z2;
124   decltype(u) tmp;
127 // HOST-DAG: __hipRegisterVar({{.*}}@_ZL1x {{.*}}@[[DEVNAMEX]]
128 // HOST-DAG: __hipRegisterVar({{.*}}@_ZL1y {{.*}}@[[DEVNAMEY]]
129 // HOST-DAG: __hipRegisterVar({{.*}}@_ZL1w {{.*}}@[[DEVNAMEW]]
130 // HOST-NEG-NOT: __hipRegisterVar({{.*}}@_ZL1u
131 // HOST-NEG-NOT: __hipRegisterVar({{.*}}@_ZZ6kernelPiPPKiE1w
132 // HOST-NEG-NOT: __hipRegisterVar({{.*}}@_ZZ6devfunPPKiE1p