1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
// RUN: %clang_cc1 -no-opaque-pointers %s -triple spir -emit-llvm -O0 -o - | FileCheck %s
struct B {
int mb;
};
class D : public B {
public:
int getmb() { return mb; }
};
void foo() {
D d;
//CHECK-LABEL: foo
//CHECK: addrspacecast %class.D* %d to %class.D addrspace(4)*
//CHECK: call spir_func noundef i32 @_ZNU3AS41D5getmbEv(%class.D addrspace(4)*
d.getmb();
}
//Derived and Base are in the same address space.
//CHECK: define linkonce_odr spir_func noundef i32 @_ZNU3AS41D5getmbEv(%class.D addrspace(4)* {{[^,]*}} %this)
//CHECK: bitcast %class.D addrspace(4)* %this1 to %struct.B addrspace(4)*
// Calling base method through multiple inheritance.
class B2 {
public:
void baseMethod() const { }
int &getRef() { return bb; }
int bb;
};
class Derived : public B, public B2 {
public:
void work() const { baseMethod(); }
// CHECK-LABEL: work
// CHECK: bitcast i8 addrspace(4)* %add.ptr to %class.B2 addrspace(4)*
};
void pr43145(const Derived *argDerived) {
argDerived->work();
}
// Casting from base to derived.
void pr43145_2(B *argB) {
Derived *x = (Derived*)argB;
// CHECK-LABEL: @_Z9pr43145_2
// CHECK: bitcast %struct.B addrspace(4)* %0 to %class.Derived addrspace(4)*
}
// Assigning to reference returned by base class method through derived class.
void pr43145_3(int n) {
Derived d;
d.getRef() = n;
// CHECK-LABEL: @_Z9pr43145_3
// CHECK: addrspacecast %class.Derived* %d to %class.Derived addrspace(4)*
// CHECK: bitcast i8 addrspace(4)* %add.ptr to %class.B2 addrspace(4)*
// CHECK: call {{.*}} @_ZNU3AS42B26getRefEv
private Derived *pd = &d;
pd->getRef() = n;
// CHECK: addrspacecast %class.Derived* %4 to %class.Derived addrspace(4)*
// CHECK: bitcast i8 addrspace(4)* %add.ptr1 to %class.B2 addrspace(4)*
// CHECK: call {{.*}} @_ZNU3AS42B26getRefEv
}
// Implicit conversion of derived to base.
void functionWithBaseArgPtr(class B2 *b) {}
void functionWithBaseArgRef(class B2 &b) {}
void pr43145_4() {
Derived d;
functionWithBaseArgPtr(&d);
functionWithBaseArgRef(d);
}
|