mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 18:36:06 +00:00
77 lines
3.1 KiB
C++
77 lines
3.1 KiB
C++
// RUN: %clang_cc1 %s -triple=amdgcn-amd-amdhsa -emit-llvm -o - | FileCheck %s
|
|
|
|
#define __private__ __attribute__((address_space(5)))
|
|
|
|
void func_pchar(__private__ char *x);
|
|
void func_pvoid(__private__ void *x);
|
|
void func_pint(__private__ int *x);
|
|
|
|
class Base {
|
|
};
|
|
|
|
class Derived : public Base {
|
|
};
|
|
|
|
void fn(Derived *p) {
|
|
__private__ Base *b = (__private__ Base *)p;
|
|
}
|
|
|
|
// CHECK-LABEL: test_cast
|
|
void test_cast(char *gen_char_ptr, void *gen_void_ptr, int *gen_int_ptr) {
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: store ptr addrspace(5) %[[cast]]
|
|
__private__ char *priv_char_ptr = (__private__ char *)gen_char_ptr;
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: store ptr addrspace(5) %[[cast]]
|
|
priv_char_ptr = (__private__ char *)gen_void_ptr;
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: store ptr addrspace(5) %[[cast]]
|
|
priv_char_ptr = (__private__ char *)gen_int_ptr;
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: store ptr addrspace(5) %[[cast]]
|
|
__private__ void *priv_void_ptr = (__private__ void *)gen_char_ptr;
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: store ptr addrspace(5) %[[cast]]
|
|
priv_void_ptr = (__private__ void *)gen_void_ptr;
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: store ptr addrspace(5) %[[cast]]
|
|
priv_void_ptr = (__private__ void *)gen_int_ptr;
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: store ptr addrspace(5) %[[cast]]
|
|
__private__ int *priv_int_ptr = (__private__ int *)gen_void_ptr;
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: call void @_Z10func_pcharPU3AS5c(ptr addrspace(5) noundef %[[cast]])
|
|
func_pchar((__private__ char *)gen_char_ptr);
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: call void @_Z10func_pcharPU3AS5c(ptr addrspace(5) noundef %[[cast]])
|
|
func_pchar((__private__ char *)gen_void_ptr);
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: call void @_Z10func_pcharPU3AS5c(ptr addrspace(5) noundef %[[cast]])
|
|
func_pchar((__private__ char *)gen_int_ptr);
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: call void @_Z10func_pvoidPU3AS5v(ptr addrspace(5) noundef %[[cast]])
|
|
func_pvoid((__private__ void *)gen_char_ptr);
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: call void @_Z10func_pvoidPU3AS5v(ptr addrspace(5) noundef %[[cast]])
|
|
func_pvoid((__private__ void *)gen_void_ptr);
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: call void @_Z10func_pvoidPU3AS5v(ptr addrspace(5) noundef %[[cast]])
|
|
func_pvoid((__private__ void *)gen_int_ptr);
|
|
|
|
// CHECK: %[[cast:.*]] = addrspacecast ptr %{{.*}} to ptr addrspace(5)
|
|
// CHECK-NEXT: call void @_Z9func_pintPU3AS5i(ptr addrspace(5) noundef %[[cast]])
|
|
func_pint((__private__ int *)gen_void_ptr);
|
|
}
|