Skip to content

Commit bdfbaaa

Browse files
committedJun 7, 2016
[OPENCL] Fix wrongly vla error for OpenCL array.
Summary: OpenCL should support array with const value size length, those const varibale in global and constant address space and variable in constant address space. Reviewers: Anastasia, yaxunl, bader Subscribers: bader, cfe-commits Differential Revision: http://reviews.llvm.org/D20090 llvm-svn: 271971
1 parent c7afda5 commit bdfbaaa

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed
 

‎clang/lib/AST/ExprConstant.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -2745,7 +2745,10 @@ static CompleteObject findCompleteObject(EvalInfo &Info, const Expr *E,
27452745
} else if (VD->isConstexpr()) {
27462746
// OK, we can read this variable.
27472747
} else if (BaseType->isIntegralOrEnumerationType()) {
2748-
if (!BaseType.isConstQualified()) {
2748+
// In OpenCL if a variable is in constant address space it is a const value.
2749+
if (!(BaseType.isConstQualified() ||
2750+
(Info.getLangOpts().OpenCL &&
2751+
BaseType.getAddressSpace() == LangAS::opencl_constant))) {
27492752
if (Info.getLangOpts().CPlusPlus) {
27502753
Info.Diag(E, diag::note_constexpr_ltor_non_const_int, 1) << VD;
27512754
Info.Note(VD->getLocation(), diag::note_declared_at);

‎clang/lib/Sema/SemaType.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2063,7 +2063,8 @@ static bool isArraySizeVLA(Sema &S, Expr *ArraySize, llvm::APSInt &SizeVal) {
20632063
} Diagnoser;
20642064

20652065
return S.VerifyIntegerConstantExpression(ArraySize, &SizeVal, Diagnoser,
2066-
S.LangOpts.GNUMode).isInvalid();
2066+
S.LangOpts.GNUMode ||
2067+
S.LangOpts.OpenCL).isInvalid();
20672068
}
20682069

20692070
/// \brief Build an array type.

‎clang/test/CodeGenOpenCL/vla.cl

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// RUN: %clang_cc1 -emit-llvm -O0 -cl-std=CL2.0 -o - %s | FileCheck %s
2+
3+
constant int sz0 = 5;
4+
// CHECK: @sz0 = constant i32 5, align 4
5+
const global int sz1 = 16;
6+
// CHECK: @sz1 = constant i32 16, align 4
7+
const constant int sz2 = 8;
8+
// CHECK: @sz2 = constant i32 8, align 4
9+
// CHECK: @testvla.vla2 = internal global [8 x i16] undef, align 16
10+
11+
kernel void testvla()
12+
{
13+
int vla0[sz0];
14+
// CHECK: %vla0 = alloca [5 x i32], align 16
15+
char vla1[sz1];
16+
// CHECK: %vla1 = alloca [16 x i8], align 16
17+
local short vla2[sz2];
18+
}

0 commit comments

Comments
 (0)
Please sign in to comment.