1 // RUN
: %clang_cc1 -fsyntax-only -verify %s -triple spir-unknown-unknown
3 kernel void half_arg
(half x
) { } // expected-error
{{declaring function parameter of type
'__private half
' is not allowed
; did you forget * ?}}
5 #pragma OPENCL EXTENSION cl_khr_fp16
: enable
8 // Disallowed
: parameters with type
9 // bool
, half
, size_t
, ptrdiff_t
, intptr_t
, and uintptr_t
10 // or a struct
/ union with any of these types in them
12 typedef __SIZE_TYPE__ size_t
; // expected-note{{'__private size_t' (aka '__private unsigned int') declared here}}
13 // expected-note
@-
1{{'size_t
' (aka 'unsigned int
') declared here
}}
14 typedef __PTRDIFF_TYPE__ ptrdiff_t
; // expected-note{{'__private ptrdiff_t' (aka '__private int') declared here}}
15 typedef __INTPTR_TYPE__ intptr_t
; // expected-note{{'__private intptr_t' (aka '__private int') declared here}}
16 typedef __UINTPTR_TYPE__ uintptr_t
; // expected-note{{'__private uintptr_t' (aka '__private unsigned int') declared here}}
18 kernel void size_t_arg
(size_t x
) {} // expected-error
{{'__private size_t
' (aka '__private unsigned int
') cannot be used as the type of a kernel parameter
}}
20 kernel void ptrdiff_t_arg
(ptrdiff_t x
) {} // expected-error
{{'__private ptrdiff_t
' (aka '__private int
') cannot be used as the type of a kernel parameter
}}
22 kernel void intptr_t_arg
(intptr_t x
) {} // expected-error
{{'__private intptr_t
' (aka '__private int
') cannot be used as the type of a kernel parameter
}}
24 kernel void uintptr_t_arg
(uintptr_t x
) {} // expected-error
{{'__private uintptr_t
' (aka '__private unsigned int
') cannot be used as the type of a kernel parameter
}}
26 typedef size_t size_ty
;
27 struct SizeTStruct
{ // expected-note
{{within field of type
'SizeTStruct
' declared here
}}
28 size_ty s
; // expected-note{{field of illegal type 'size_ty' (aka 'unsigned int') declared here}}
30 kernel void size_t_struct_arg
(struct SizeTStruct x
) {} // expected-error
{{'__private struct SizeTStruct
' cannot be used as the type of a kernel parameter
}}
32 union SizeTUnion
{ // expected-note
{{within field of type
'SizeTUnion
' declared here
}}
33 size_t s
; // expected-note{{field of illegal type 'size_t' (aka 'unsigned int') declared here}}
36 kernel void size_t_union_arg
(union SizeTUnion x
) {} // expected-error
{{'__private union SizeTUnion
' cannot be used as the type of a kernel parameter
}}
38 typedef size_t s_ty
; // expected-note{{'s_ty' (aka 'unsigned int') declared here}}
39 typedef s_ty ss_ty
; // expected-note{{'__private ss_ty' (aka '__private unsigned int') declared here}}
40 kernel void typedef_to_size_t
(ss_ty s
) {} // expected-error
{{'__private ss_ty
' (aka '__private unsigned int
') cannot be used as the type of a kernel parameter
}}
42 kernel void bool_arg
(bool x
) { } // expected-error
{{'__private bool
' cannot be used as the type of a kernel parameter
}}
44 // half kernel argument is allowed when cl_khr_fp16 is enabled.
45 kernel void half_arg
(half x
) { }
47 typedef struct ContainsBool
// expected-note
{{within field of type
'ContainsBool
' declared here
}}
49 bool x
; // expected-note{{field of illegal type 'bool' declared here}}
52 kernel void bool_in_struct_arg
(ContainsBool x
) { } // expected-error
{{'__private ContainsBool
' (aka '__private struct ContainsBool
') cannot be used as the type of a kernel parameter
}}
56 typedef struct FooImage2D
// expected-note
{{within field of type
'FooImage2D
' declared here
}}
58 // TODO
: Clean up needed - we don
't really need to check for image
, event
, etc
59 // as a note here any longer.
60 // They are diagnosed as an error for all struct fields
(OpenCL v1.2 s6.9b
,r
).
61 image2d_t imageField
; // expected-note{{field of illegal type '__read_only image2d_t' declared here}} expected-error{{the '__read_only image2d_t' type cannot be used to declare a structure or union field}}
64 kernel void image_in_struct_arg
(FooImage2D arg
) { } // expected-error
{{struct kernel parameters may not contain pointers
}}
66 typedef struct Foo
// expected-note
{{within field of type
'Foo
' declared here
}}
68 int
* ptrField
; // expected-note{{field of illegal pointer type '__private int *' declared here}}
71 kernel void pointer_in_struct_arg
(Foo arg
) { } // expected-error
{{struct kernel parameters may not contain pointers
}}
73 typedef union FooUnion
// expected-note
{{within field of type
'FooUnion
' declared here
}}
75 int
* ptrField
; // expected-note{{field of illegal pointer type '__private int *' declared here}}
78 kernel void pointer_in_union_arg
(FooUnion arg
) { }// expected-error
{{union kernel parameters may not contain pointers
}}
80 typedef struct NestedPointer
// expected-note
2 {{within field of type
'NestedPointer
' declared here
}}
83 struct InnerNestedPointer
85 int
* ptrField
; // expected-note 3 {{field of illegal pointer type '__private int *' declared here}}
86 } inner
; // expected-note 3 {{within field of type 'struct InnerNestedPointer' declared here}}
89 kernel void pointer_in_nested_struct_arg
(NestedPointer arg
) { }// expected-error
{{struct kernel parameters may not contain pointers
}}
91 struct NestedPointerComplex
// expected-note
{{within field of type
'NestedPointerComplex
' declared here
}}
96 struct InnerNestedPointerComplex
99 int
* innerPtrField
; // expected-note{{field of illegal pointer type '__private int *' declared here}}
100 } inner
; // expected-note{{within field of type 'struct InnerNestedPointerComplex' declared here}}
106 kernel void pointer_in_nested_struct_arg_complex(struct NestedPointerComplex arg) { }// expected-error{{struct kernel parameters may not contain pointers}}
108 typedef struct NestedBool // expected-note 2 {{within field of type 'NestedBool' declared here}}
111 struct InnerNestedBool
113 bool boolField; // expected-note 2 {{field of illegal type 'bool' declared here}}
114 } inner; // expected-note 2 {{within field of type 'struct InnerNestedBool' declared here}}
117 kernel void bool_in_nested_struct_arg(NestedBool arg) { } // expected-error{{'__private NestedBool' (aka '__private struct NestedBool') cannot be used as the type of a kernel parameter}}
119 // Warning emitted again for argument used in other kernel
120 kernel void bool_in_nested_struct_arg_again(NestedBool arg) { } // expected-error{{'__private NestedBool' (aka '__private struct NestedBool') cannot be used as the type of a kernel parameter}}
123 // Check for note with a struct not defined inside the struct
124 typedef struct NestedBool2Inner
126 bool boolField; // expected-note{{field of illegal type 'bool' declared here}}
129 typedef struct NestedBool2 // expected-note{{within field of type 'NestedBool2' declared here}}
132 NestedBool2Inner inner; // expected-note{{within field of type 'NestedBool2Inner' (aka 'struct NestedBool2Inner') declared here}}
135 kernel void bool_in_nested_struct_2_arg(NestedBool2 arg) { } // expected-error{{'__private NestedBool2' (aka '__private struct NestedBool2') cannot be used as the type of a kernel parameter}}
158 struct AlsoUser // expected-note{{within field of type 'AlsoUser' declared here}}
163 struct NestedPointer aaaa; // expected-note{{within field of type 'struct NestedPointer' declared here}}
166 kernel void pointer_in_nested_struct_arg_2(struct Valid valid, struct NestedPointer arg, struct AlsoUser also) { } // expected-error 2 {{struct kernel parameters may not contain pointers}}
168 struct ArrayOfPtr // expected-note{{within field of type 'ArrayOfPtr' declared here}}
170 float *arr[3]; // expected-note{{field of illegal type '__private float *[3]' declared here}}
171 // expected-note@-1{{field of illegal type '__private float *[3]' declared here}}
173 kernel void array_of_ptr(struct ArrayOfPtr arr) {} // expected-error{{struct kernel parameters may not contain pointers}}
175 struct ArrayOfStruct // expected-note{{within field of type 'ArrayOfStruct' declared here}}
177 struct ArrayOfPtr arr[3]; // expected-note{{within field of type 'struct ArrayOfPtr [3]' declared here}}
179 kernel void array_of_struct(struct ArrayOfStruct arr) {} // expected-error{{struct kernel parameters may not contain pointers}}