forked from OSchip/llvm-project
OpenCL: Emit global variables in the constant addr space as constant globals
llvm-svn: 219929
This commit is contained in:
parent
2391c35d79
commit
ade13b2a4e
|
@ -70,7 +70,7 @@ bool QualType::isConstant(QualType T, ASTContext &Ctx) {
|
|||
if (const ArrayType *AT = Ctx.getAsArrayType(T))
|
||||
return AT->getElementType().isConstant(Ctx);
|
||||
|
||||
return false;
|
||||
return T.getAddressSpace() == LangAS::opencl_constant;
|
||||
}
|
||||
|
||||
unsigned ConstantArrayType::getNumAddressingBits(ASTContext &Context,
|
||||
|
|
|
@ -12,7 +12,7 @@ typedef struct {
|
|||
} ConstantArrayPointerStruct;
|
||||
|
||||
// CHECK: %struct.ConstantArrayPointerStruct = type { float addrspace(3)* }
|
||||
// CHECK: addrspace(3) global %struct.ConstantArrayPointerStruct { float addrspace(3)* bitcast (i8 addrspace(3)* getelementptr (i8 addrspace(3)* bitcast (%struct.ArrayStruct addrspace(3)* @constant_array_struct to i8 addrspace(3)*), i64 4) to float addrspace(3)*) }
|
||||
// CHECK: addrspace(3) constant %struct.ConstantArrayPointerStruct { float addrspace(3)* bitcast (i8 addrspace(3)* getelementptr (i8 addrspace(3)* bitcast (%struct.ArrayStruct addrspace(3)* @constant_array_struct to i8 addrspace(3)*), i64 4) to float addrspace(3)*) }
|
||||
// Bug 18567
|
||||
__constant ConstantArrayPointerStruct constant_array_pointer_struct = {
|
||||
&constant_array_struct.f
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
// RUN: %clang_cc1 %s -ffake-address-space-map -emit-llvm -o - | FileCheck %s
|
||||
|
||||
// CHECK: @array = addrspace({{[0-9]+}}) constant
|
||||
__constant float array[2] = {0.0f, 1.0f};
|
||||
|
||||
kernel void test(global float *out) {
|
||||
*out = array[0];
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 %s -emit-llvm -o - -O0 | FileCheck %s
|
||||
|
||||
constant sampler_t glb_smp = 7;
|
||||
// CHECK: global i32 7
|
||||
// CHECK: constant i32 7
|
||||
|
||||
void fnc1(image1d_t img) {}
|
||||
// CHECK: @fnc1(%opencl.image1d_t*
|
||||
|
|
|
@ -5,5 +5,5 @@ __constant char * __constant y = "hello world";
|
|||
|
||||
// CHECK: unnamed_addr addrspace(3) constant
|
||||
// CHECK-NOT: addrspace(3) unnamed_addr constant
|
||||
// CHECK: @x = addrspace(3) global i8 addrspace(3)*
|
||||
// CHECK: @y = addrspace(3) global i8 addrspace(3)*
|
||||
// CHECK: @x = addrspace(3) constant i8 addrspace(3)*
|
||||
// CHECK: @y = addrspace(3) constant i8 addrspace(3)*
|
||||
|
|
|
@ -12,14 +12,16 @@ __kernel void foo(__global int *gip) {
|
|||
ip = &ci; // expected-error {{assigning '__constant int *' to 'int *' changes address space of pointer}}
|
||||
}
|
||||
|
||||
void explicit_cast(global int* g, local int* l, constant int* c, private int* p)
|
||||
void explicit_cast(global int* g, local int* l, constant int* c, private int* p, const constant int *cc)
|
||||
{
|
||||
g = (global int*) l; // expected-error {{casting '__local int *' to type '__global int *' changes address space of pointer}}
|
||||
g = (global int*) c; // expected-error {{casting '__constant int *' to type '__global int *' changes address space of pointer}}
|
||||
g = (global int*) cc; // expected-error {{casting 'const __constant int *' to type '__global int *' changes address space of pointer}}
|
||||
g = (global int*) p; // expected-error {{casting 'int *' to type '__global int *' changes address space of pointer}}
|
||||
|
||||
l = (local int*) g; // expected-error {{casting '__global int *' to type '__local int *' changes address space of pointer}}
|
||||
l = (local int*) c; // expected-error {{casting '__constant int *' to type '__local int *' changes address space of pointer}}
|
||||
l = (local int*) cc; // expected-error {{casting 'const __constant int *' to type '__local int *' changes address space of pointer}}
|
||||
l = (local int*) p; // expected-error {{casting 'int *' to type '__local int *' changes address space of pointer}}
|
||||
|
||||
c = (constant int*) g; // expected-error {{casting '__global int *' to type '__constant int *' changes address space of pointer}}
|
||||
|
@ -29,6 +31,7 @@ void explicit_cast(global int* g, local int* l, constant int* c, private int* p)
|
|||
p = (private int*) g; // expected-error {{casting '__global int *' to type 'int *' changes address space of pointer}}
|
||||
p = (private int*) l; // expected-error {{casting '__local int *' to type 'int *' changes address space of pointer}}
|
||||
p = (private int*) c; // expected-error {{casting '__constant int *' to type 'int *' changes address space of pointer}}
|
||||
p = (private int*) cc; // expected-error {{casting 'const __constant int *' to type 'int *' changes address space of pointer}}
|
||||
}
|
||||
|
||||
void ok_explicit_casts(global int *g, global int* g2, local int* l, local int* l2, private int* p, private int* p2)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// RUN: %clang_cc1 -x cl -cl-std=CL1.2 -emit-llvm -ffake-address-space-map %s -o - -verify | FileCheck %s
|
||||
// expected-no-diagnostics
|
||||
|
||||
// CHECK: @foo = external addrspace(3) global float
|
||||
// CHECK: @foo = external addrspace(3) constant float
|
||||
extern constant float foo;
|
||||
|
||||
kernel void test(global float* buf) {
|
||||
|
|
Loading…
Reference in New Issue