diff options
| author | Alexey Sotkin <alexey.sotkin@intel.com> | 2018-07-31 20:26:43 +0000 |
|---|---|---|
| committer | Alexey Sotkin <alexey.sotkin@intel.com> | 2018-07-31 20:26:43 +0000 |
| commit | 9d1ee0acfb6a2b51afac501a07894ec0fcfc346f (patch) | |
| tree | 425fc053e0922b8c931f7a87b36a5e721b68620b /clang/test/SemaOpenCL | |
| parent | 907f4f6a74591938c44c61bede5de1a1b8e617ae (diff) | |
| download | bcm5719-llvm-9d1ee0acfb6a2b51afac501a07894ec0fcfc346f.tar.gz bcm5719-llvm-9d1ee0acfb6a2b51afac501a07894ec0fcfc346f.zip | |
[OpenCL] Forbid size dependent types used as kernel arguments
Summary:
Size_t, intptr_t, uintptr_t and ptrdiff_t cannot be used as kernel
arguments, according to OpenCL Specification s6.9k:
The size in bytes of these types are implementation-defined and in
addition can also be different for the OpenCL device and the host
processor making it difficult to allocate buffer objects to be passed
as arguments to a kernel declared as pointer to these types.
Patch by: Andrew Savonichev
Reviewers: Anastasia, yaxunl
Subscribers: yaxunl, Anastasia, cfe-commits
Differential Revision: https://reviews.llvm.org/D49725
llvm-svn: 338432
Diffstat (limited to 'clang/test/SemaOpenCL')
| -rw-r--r-- | clang/test/SemaOpenCL/invalid-kernel-parameters.cl | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/clang/test/SemaOpenCL/invalid-kernel-parameters.cl b/clang/test/SemaOpenCL/invalid-kernel-parameters.cl index ef0b56435d1..e3372b18887 100644 --- a/clang/test/SemaOpenCL/invalid-kernel-parameters.cl +++ b/clang/test/SemaOpenCL/invalid-kernel-parameters.cl @@ -9,7 +9,35 @@ kernel void half_arg(half x) { } // expected-error{{declaring function parameter // bool, half, size_t, ptrdiff_t, intptr_t, and uintptr_t // or a struct / union with any of these types in them -// TODO: Ban int types, size_t, ptrdiff_t ... +typedef __SIZE_TYPE__ size_t; // expected-note{{'size_t' (aka 'unsigned int') declared here}} + // expected-note@-1{{'size_t' (aka 'unsigned int') declared here}} +typedef __PTRDIFF_TYPE__ ptrdiff_t; // expected-note{{'ptrdiff_t' (aka 'int') declared here}} +typedef __INTPTR_TYPE__ intptr_t; // expected-note{{'intptr_t' (aka 'int') declared here}} +typedef __UINTPTR_TYPE__ uintptr_t; // expected-note{{'uintptr_t' (aka 'unsigned int') declared here}} + +kernel void size_t_arg(size_t x) {} // expected-error{{'size_t' (aka 'unsigned int') cannot be used as the type of a kernel parameter}} + +kernel void ptrdiff_t_arg(ptrdiff_t x) {} // expected-error{{'ptrdiff_t' (aka 'int') cannot be used as the type of a kernel parameter}} + +kernel void intptr_t_arg(intptr_t x) {} // expected-error{{'intptr_t' (aka 'int') cannot be used as the type of a kernel parameter}} + +kernel void uintptr_t_arg(uintptr_t x) {} // expected-error{{'uintptr_t' (aka 'unsigned int') cannot be used as the type of a kernel parameter}} + +typedef size_t size_ty; +struct SizeTStruct { // expected-note{{within field of type 'SizeTStruct' declared here}} + size_ty s; // expected-note{{field of illegal type 'size_ty' (aka 'unsigned int') declared here}} +}; +kernel void size_t_struct_arg(struct SizeTStruct x) {} // expected-error{{'struct SizeTStruct' cannot be used as the type of a kernel parameter}} + +union SizeTUnion { // expected-note{{within field of type 'SizeTUnion' declared here}} + size_t s; // expected-note{{field of illegal type 'size_t' (aka 'unsigned int') declared here}} + float f; +}; +kernel void size_t_union_arg(union SizeTUnion x) {} // expected-error{{'union SizeTUnion' cannot be used as the type of a kernel parameter}} + +typedef size_t s_ty; // expected-note{{'s_ty' (aka 'unsigned int') declared here}} +typedef s_ty ss_ty; // expected-note{{'ss_ty' (aka 'unsigned int') declared here}} +kernel void typedef_to_size_t(ss_ty s) {} // expected-error{{'ss_ty' (aka 'unsigned int') cannot be used as the type of a kernel parameter}} kernel void bool_arg(bool x) { } // expected-error{{'bool' cannot be used as the type of a kernel parameter}} |

