Following the discussion on D118229, this marks all pointer-typed kernel arguments as having ABI alignment, per section 6.3.5 of the OpenCL spec: > For arguments to a __kernel function declared to be a pointer to > a data type, the OpenCL compiler can assume that the pointee is > always appropriately aligned as required by the data type. Differential Revision: https://reviews.llvm.org/D118894
19 lines
614 B
Common Lisp
19 lines
614 B
Common Lisp
// RUN: %clang_cc1 %s -triple "spir-unknown-unknown" -emit-llvm -o - | FileCheck %s
|
|
|
|
int get_dummy_id(int D);
|
|
|
|
kernel void bar(global int *A);
|
|
|
|
kernel void foo(global int *A)
|
|
// CHECK: define{{.*}} spir_kernel void @foo(i32 addrspace(1)* noundef align 4 %A)
|
|
{
|
|
int id = get_dummy_id(0);
|
|
// CHECK: %{{[a-z0-9_]+}} = tail call spir_func i32 @get_dummy_id(i32 noundef 0)
|
|
A[id] = id;
|
|
bar(A);
|
|
// CHECK: tail call spir_kernel void @bar(i32 addrspace(1)* noundef align 4 %A)
|
|
}
|
|
|
|
// CHECK: declare spir_func i32 @get_dummy_id(i32 noundef)
|
|
// CHECK: declare spir_kernel void @bar(i32 addrspace(1)* noundef align 4)
|