[OpenCL] spir_kern by defaul: fix old test cases

llvm-svn: 304396
This commit is contained in:
Pekka Jaaskelainen 2017-06-01 08:19:43 +00:00
parent d3b1cbd17f
commit 2eb0bcc9e6
6 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@ typedef unsigned char uchar4 __attribute((ext_vector_type(4)));
typedef unsigned int int4 __attribute((ext_vector_type(4))); typedef unsigned int int4 __attribute((ext_vector_type(4)));
typedef float float4 __attribute((ext_vector_type(4))); typedef float float4 __attribute((ext_vector_type(4)));
// CHECK-LABEL: define void @ker() // CHECK-LABEL: define spir_kernel void @ker()
void kernel ker() { void kernel ker() {
bool t = true; bool t = true;
int4 vec4 = (int4)t; int4 vec4 = (int4)t;

View File

@ -3,13 +3,13 @@
typedef unsigned int uint4 __attribute__((ext_vector_type(4))); typedef unsigned int uint4 __attribute__((ext_vector_type(4)));
kernel __attribute__((vec_type_hint(int))) __attribute__((reqd_work_group_size(1,2,4))) void kernel1(int a) {} kernel __attribute__((vec_type_hint(int))) __attribute__((reqd_work_group_size(1,2,4))) void kernel1(int a) {}
// CHECK: define void @kernel1(i32 {{[^%]*}}%a) {{[^{]+}} !vec_type_hint ![[MD1:[0-9]+]] !reqd_work_group_size ![[MD2:[0-9]+]] // CHECK: define spir_kernel void @kernel1(i32 {{[^%]*}}%a) {{[^{]+}} !vec_type_hint ![[MD1:[0-9]+]] !reqd_work_group_size ![[MD2:[0-9]+]]
kernel __attribute__((vec_type_hint(uint4))) __attribute__((work_group_size_hint(8,16,32))) void kernel2(int a) {} kernel __attribute__((vec_type_hint(uint4))) __attribute__((work_group_size_hint(8,16,32))) void kernel2(int a) {}
// CHECK: define void @kernel2(i32 {{[^%]*}}%a) {{[^{]+}} !vec_type_hint ![[MD3:[0-9]+]] !work_group_size_hint ![[MD4:[0-9]+]] // CHECK: define spir_kernel void @kernel2(i32 {{[^%]*}}%a) {{[^{]+}} !vec_type_hint ![[MD3:[0-9]+]] !work_group_size_hint ![[MD4:[0-9]+]]
kernel __attribute__((intel_reqd_sub_group_size(8))) void kernel3(int a) {} kernel __attribute__((intel_reqd_sub_group_size(8))) void kernel3(int a) {}
// CHECK: define void @kernel3(i32 {{[^%]*}}%a) {{[^{]+}} !intel_reqd_sub_group_size ![[MD5:[0-9]+]] // CHECK: define spir_kernel void @kernel3(i32 {{[^%]*}}%a) {{[^{]+}} !intel_reqd_sub_group_size ![[MD5:[0-9]+]]
// CHECK: [[MD1]] = !{i32 undef, i32 1} // CHECK: [[MD1]] = !{i32 undef, i32 1}
// CHECK: [[MD2]] = !{i32 1, i32 2, i32 4} // CHECK: [[MD2]] = !{i32 1, i32 2, i32 4}

View File

@ -6,5 +6,5 @@ void normal_function() {
__kernel void kernel_function() { __kernel void kernel_function() {
} }
// CHECK: define void @kernel_function() {{[^{]+}} !kernel_arg_addr_space ![[MD:[0-9]+]] !kernel_arg_access_qual ![[MD]] !kernel_arg_type ![[MD]] !kernel_arg_base_type ![[MD]] !kernel_arg_type_qual ![[MD]] { // CHECK: define spir_kernel void @kernel_function() {{[^{]+}} !kernel_arg_addr_space ![[MD:[0-9]+]] !kernel_arg_access_qual ![[MD]] !kernel_arg_type ![[MD]] !kernel_arg_base_type ![[MD]] !kernel_arg_type_qual ![[MD]] {
// CHECK: ![[MD]] = !{} // CHECK: ![[MD]] = !{}

View File

@ -28,7 +28,7 @@ void test5(read_only pipe int4 p) {
typedef read_only pipe int MyPipe; typedef read_only pipe int MyPipe;
kernel void test6(MyPipe p) { kernel void test6(MyPipe p) {
// CHECK: define void @test6(%opencl.pipe_t* %p) // CHECK: define spir_kernel void @test6(%opencl.pipe_t* %p)
} }
struct Person { struct Person {

View File

@ -7,7 +7,7 @@ void device_function() {
__kernel void kernel_function() { __kernel void kernel_function() {
device_function(); device_function();
} }
// CHECK-LABEL: define void @kernel_function() // CHECK-LABEL: define spir_kernel void @kernel_function()
// CHECK: call void @device_function() // CHECK: call void @device_function()
// CHECK: !{{[0-9]+}} = !{void ()* @kernel_function, !"kernel", i32 1} // CHECK: !{{[0-9]+}} = !{void ()* @kernel_function, !"kernel", i32 1}

View File

@ -6,6 +6,6 @@ void device_function() {
__kernel void kernel_function() { __kernel void kernel_function() {
} }
// CHECK-LABEL: define void @kernel_function() // CHECK-LABEL: define spir_kernel void @kernel_function()
// CHECK: !{{[0-9]+}} = !{void ()* @kernel_function, !"kernel", i32 1} // CHECK: !{{[0-9]+}} = !{void ()* @kernel_function, !"kernel", i32 1}