Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGenCUDA / address-spaces.cu
blob66903c81b93339d9393a114fce811f00d9acc1a1
1 // RUN: %clang_cc1 -emit-llvm %s -o - -fcuda-is-device -triple nvptx-unknown-unknown | FileCheck %s
2 // RUN: %clang_cc1 -emit-llvm %s -o - -fcuda-is-device -triple amdgcn | FileCheck %s
4 // Verifies Clang emits correct address spaces and addrspacecast instructions
5 // for CUDA code.
7 #include "Inputs/cuda.h"
9 // CHECK: @i ={{.*}} addrspace(1) externally_initialized global
10 __device__ int i;
12 // CHECK: @j ={{.*}} addrspace(4) externally_initialized constant
13 __constant__ int j;
15 // CHECK: @k ={{.*}} addrspace(3) global
16 __shared__ int k;
18 struct MyStruct {
19   int data1;
20   int data2;
23 // CHECK: @_ZZ5func0vE1a = internal addrspace(3) global %struct.MyStruct undef
24 // CHECK: @_ZZ5func1vE1a = internal addrspace(3) global float undef
25 // CHECK: @_ZZ5func2vE1a = internal addrspace(3) global [256 x float] undef
26 // CHECK: @_ZZ5func3vE1a = internal addrspace(3) global float undef
27 // CHECK: @_ZZ5func4vE1a = internal addrspace(3) global float undef
28 // CHECK: @b ={{.*}} addrspace(3) global float undef
30 __device__ void foo() {
31   // CHECK: load i32, ptr addrspacecast (ptr addrspace(1) @i to ptr)
32   i++;
34   // CHECK: load i32, ptr addrspacecast (ptr addrspace(4) @j to ptr)
35   j++;
37   // CHECK: load i32, ptr addrspacecast (ptr addrspace(3) @k to ptr)
38   k++;
40   __shared__ int lk;
41   // CHECK: load i32, ptr addrspacecast (ptr addrspace(3) @_ZZ3foovE2lk to ptr)
42   lk++;
45 __device__ void func0() {
46   __shared__ MyStruct a;
47   MyStruct *ap = &a; // composite type
48   ap->data1 = 1;
49   ap->data2 = 2;
51 // CHECK: define{{.*}} void @_Z5func0v()
52 // CHECK: store ptr addrspacecast (ptr addrspace(3) @_ZZ5func0vE1a to ptr), ptr %{{.*}}
54 __device__ void callee(float *ap) {
55   *ap = 1.0f;
58 __device__ void func1() {
59   __shared__ float a;
60   callee(&a); // implicit cast from parameters
62 // CHECK: define{{.*}} void @_Z5func1v()
63 // CHECK: call void @_Z6calleePf(ptr noundef addrspacecast (ptr addrspace(3) @_ZZ5func1vE1a to ptr))
65 __device__ void func2() {
66   __shared__ float a[256];
67   float *ap = &a[128]; // implicit cast from a decayed array
68   *ap = 1.0f;
70 // CHECK: define{{.*}} void @_Z5func2v()
71 // CHECK: store ptr getelementptr inbounds ([256 x float], ptr addrspacecast (ptr addrspace(3) @_ZZ5func2vE1a to ptr), i{{32|64}} 0, i{{32|64}} 128), ptr %{{.*}}
73 __device__ void func3() {
74   __shared__ float a;
75   float *ap = reinterpret_cast<float *>(&a); // explicit cast
76   *ap = 1.0f;
78 // CHECK: define{{.*}} void @_Z5func3v()
79 // CHECK: store ptr addrspacecast (ptr addrspace(3) @_ZZ5func3vE1a to ptr), ptr %{{.*}}
81 __device__ void func4() {
82   __shared__ float a;
83   float *ap = (float *)&a; // explicit c-style cast
84   *ap = 1.0f;
86 // CHECK: define{{.*}} void @_Z5func4v()
87 // CHECK: store ptr addrspacecast (ptr addrspace(3) @_ZZ5func4vE1a to ptr), ptr %{{.*}}
89 __shared__ float b;
91 __device__ float *func5() {
92   return &b; // implicit cast from a return value
94 // CHECK: define{{.*}} ptr @_Z5func5v()
95 // CHECK: ret ptr addrspacecast (ptr addrspace(3) @b to ptr)