[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenOpenCLCXX / addrspace-constructors.clcpp
blob62258cae9064757ba5a1b52c42142909d28f6099
1 // RUN: %clang_cc1 %s -cl-std=clc++1.0 -DGENERIC -emit-llvm -o - -O0 -triple spir-unknown-unknown | FileCheck %s
2 // RUN: %clang_cc1 %s -cl-std=clc++2021 -DGENERIC -emit-llvm -o - -O0 -triple spir-unknown-unknown | FileCheck %s
3 // RUN: %clang_cc1 %s -cl-std=clc++2021 -cl-ext=-all,+__opencl_c_program_scope_global_variables -emit-llvm -o - -O0 -triple spir-unknown-unknown | FileCheck %s
5 // CHECK: %struct.X = type { i32 }
7 // CHECK: @ci ={{.*}} addrspace(2) constant i32 0
8 // CHECK: @gi ={{.*}} addrspace(1) global i32 0
9 __constant int ci = 0;
10 __global int gi = 0;
12 struct X {
13   int x;
15   // Local variables are handled in local_addrspace_init.clcpp
16   X() /*__generic or __private*/ : x(0) {}
17 #if defined(GENERIC)
18   X() __private : x(0) {}
19 #endif
20   X() __global : x(0) {}
21   constexpr X() __constant : x(0) {}
22   constexpr X(int x) __constant : x(x) {}
25 // CHECK: @cx1 ={{.*}} addrspace(2) constant %struct.X zeroinitializer
26 // CHECK: @cx2 ={{.*}} addrspace(2) constant %struct.X { i32 1 }
27 // CHECK: @gx ={{.*}} addrspace(1) global %struct.X zeroinitializer
28 __constant X cx1;
29 __constant X cx2(1);
30 __global X gx;
32 // CHECK: @_ZZ1kE3cx1 = internal addrspace(2) constant %struct.X zeroinitializer
33 // CHECK: @_ZZ1kE3cx2 = internal addrspace(2) constant %struct.X { i32 1 }
35 kernel void k() {
36   // Check that the constructor for px calls the __private constructor.
37   // CHECK: %px = alloca %struct.X
38   // CHECK-NEXT: call spir_func void @_ZN1XC1Ev(ptr {{.*}}%px)
39   __private X px;
41   __constant X cx1;
42   __constant X cx2(1);
43   // CHECK-NEXT: ret void