]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenOpenCL/pipe_types.cl
Vendor import of clang trunk r290819:
[FreeBSD/FreeBSD.git] / test / CodeGenOpenCL / pipe_types.cl
1 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -O0 -cl-std=CL2.0 -o - %s | FileCheck %s
2
3 // CHECK: %opencl.pipe_t = type opaque
4 typedef unsigned char __attribute__((ext_vector_type(3))) uchar3;
5 typedef int __attribute__((ext_vector_type(4))) int4;
6
7 void test1(read_only pipe int p) {
8 // CHECK: define void @test1(%opencl.pipe_t* %p)
9   reserve_id_t rid;
10 // CHECK: %rid = alloca %opencl.reserve_id_t
11 }
12
13 void test2(write_only pipe float p) {
14 // CHECK: define void @test2(%opencl.pipe_t* %p)
15 }
16
17 void test3(read_only pipe const int p) {
18 // CHECK: define void @test3(%opencl.pipe_t* %p)
19 }
20
21 void test4(read_only pipe uchar3 p) {
22 // CHECK: define void @test4(%opencl.pipe_t* %p)
23 }
24
25 void test5(read_only pipe int4 p) {
26 // CHECK: define void @test5(%opencl.pipe_t* %p)
27 }
28
29 typedef read_only pipe int MyPipe;
30 kernel void test6(MyPipe p) {
31 // CHECK: define void @test6(%opencl.pipe_t* %p)
32 }
33
34 struct Person {
35   const char *Name;
36   bool isFemale;
37   int ID;
38 };
39
40 void test_reserved_read_pipe(global struct Person *SDst,
41                              read_only pipe struct Person SPipe) {
42 // CHECK: define void @test_reserved_read_pipe
43   read_pipe (SPipe, SDst);
44   // CHECK: call i32 @__read_pipe_2(%opencl.pipe_t* %{{.*}}, i8* %{{.*}}, i32 16, i32 8)
45   read_pipe (SPipe, SDst);
46   // CHECK: call i32 @__read_pipe_2(%opencl.pipe_t* %{{.*}}, i8* %{{.*}}, i32 16, i32 8)
47 }