2010-11-08 09:05:10 +08:00
|
|
|
// RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -fhidden-weak-vtables -emit-llvm -o - | FileCheck %s
|
2010-10-11 11:25:53 +08:00
|
|
|
// RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -fvisibility hidden -fhidden-weak-vtables -emit-llvm -o - | FileCheck -check-prefix=CHECK-WITH-HIDDEN %s
|
2010-05-14 11:54:53 +08:00
|
|
|
|
2009-12-21 06:30:54 +08:00
|
|
|
#include <typeinfo>
|
2009-12-12 00:37:06 +08:00
|
|
|
|
2010-10-11 11:25:53 +08:00
|
|
|
// CHECK-WITH-HIDDEN: _ZTSFN12_GLOBAL__N_11DEvE = internal constant
|
2011-01-30 06:10:32 +08:00
|
|
|
// CHECK-WITH-HIDDEN: @_ZTSPK2T4 = linkonce_odr hidden constant
|
2011-01-24 08:46:19 +08:00
|
|
|
// CHECK-WITH-HIDDEN: @_ZTS2T4 = linkonce_odr hidden constant
|
|
|
|
// CHECK-WITH-HIDDEN: @_ZTI2T4 = linkonce_odr hidden unnamed_addr constant
|
|
|
|
// CHECK-WITH-HIDDEN: @_ZTIPK2T4 = linkonce_odr hidden unnamed_addr constant
|
Rework when and how vtables are emitted, by tracking where vtables are
"used" (e.g., we will refer to the vtable in the generated code) and
when they are defined (i.e., because we've seen the key function
definition). Previously, we were effectively tracking "potential
definitions" rather than uses, so we were a bit too eager about emitting
vtables for classes without key functions.
The new scheme:
- For every use of a vtable, Sema calls MarkVTableUsed() to indicate
the use. For example, this occurs when calling a virtual member
function of the class, defining a constructor of that class type,
dynamic_cast'ing from that type to a derived class, casting
to/through a virtual base class, etc.
- For every definition of a vtable, Sema calls MarkVTableUsed() to
indicate the definition. This happens at the end of the translation
unit for classes whose key function has been defined (so we can
delay computation of the key function; see PR6564), and will also
occur with explicit template instantiation definitions.
- For every vtable defined/used, we mark all of the virtual member
functions of that vtable as defined/used, unless we know that the key
function is in another translation unit. This instantiates virtual
member functions when needed.
- At the end of the translation unit, Sema tells CodeGen (via the
ASTConsumer) which vtables must be defined (CodeGen will define
them) and which may be used (for which CodeGen will define the
vtables lazily).
From a language perspective, both the old and the new schemes are
permissible: we're allowed to instantiate virtual member functions
whenever we want per the standard. However, all other C++ compilers
were more lazy than we were, and our eagerness was both a performance
issue (we instantiated too much) and a portability problem (we broke
Boost test cases, which now pass).
Notes:
(1) There's a ton of churn in the tests, because the order in which
vtables get emitted to IR has changed. I've tried to isolate some of
the larger tests from these issues.
(2) Some diagnostics related to
implicitly-instantiated/implicitly-defined virtual member functions
have moved to the point of first use/definition. It's better this
way.
(3) I could use a review of the places where we MarkVTableUsed, to
see if I missed any place where the language effectively requires a
vtable.
Fixes PR7114 and PR6564.
llvm-svn: 103718
2010-05-14 00:44:06 +08:00
|
|
|
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSP1C = internal constant
|
|
|
|
// CHECK: _ZTS1C = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTI1C = internal unnamed_addr constant
|
|
|
|
// CHECK: _ZTIP1C = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSPP1C = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIPP1C = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSM1Ci = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIM1Ci = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSPM1Ci = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIPM1Ci = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSM1CS_ = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIM1CS_ = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSM1CPS_ = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIM1CPS_ = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSM1A1C = internal constant
|
2011-01-24 08:46:19 +08:00
|
|
|
// CHECK: _ZTS1A = linkonce_odr constant
|
|
|
|
// CHECK: _ZTI1A = linkonce_odr hidden unnamed_addr constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIM1A1C = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSM1AP1C = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIM1AP1C = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSN12_GLOBAL__N_11DE = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIN12_GLOBAL__N_11DE = internal unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTSPN12_GLOBAL__N_11DE = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIPN12_GLOBAL__N_11DE = internal unnamed_addr constant
|
2009-12-30 04:20:19 +08:00
|
|
|
// CHECK: _ZTSFN12_GLOBAL__N_11DEvE = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIFN12_GLOBAL__N_11DEvE = internal unnamed_addr constant
|
2009-12-30 04:20:19 +08:00
|
|
|
// CHECK: _ZTSFvN12_GLOBAL__N_11DEE = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIFvN12_GLOBAL__N_11DEE = internal unnamed_addr constant
|
2011-01-24 08:46:19 +08:00
|
|
|
// CHECK: _ZTSPFvvE = linkonce_odr constant
|
|
|
|
// CHECK: _ZTSFvvE = linkonce_odr constant
|
|
|
|
// CHECK: _ZTIFvvE = linkonce_odr hidden unnamed_addr constant
|
|
|
|
// CHECK: _ZTIPFvvE = linkonce_odr hidden unnamed_addr constant
|
2009-12-30 06:13:01 +08:00
|
|
|
// CHECK: _ZTSN12_GLOBAL__N_11EE = internal constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTIN12_GLOBAL__N_11EE = internal unnamed_addr constant
|
2011-01-24 08:46:19 +08:00
|
|
|
// CHECK: _ZTSA10_i = linkonce_odr constant
|
|
|
|
// CHECK: _ZTIA10_i = linkonce_odr hidden unnamed_addr constant
|
|
|
|
// CHECK: _ZTI1TILj0EE = linkonce_odr unnamed_addr constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTI1TILj1EE = weak_odr unnamed_addr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
// CHECK: _ZTI1TILj2EE = external constant
|
|
|
|
// CHECK: _ZTS1B = constant
|
2011-01-12 07:55:05 +08:00
|
|
|
// CHECK: _ZTI1B = unnamed_addr constant
|
2011-01-24 08:46:19 +08:00
|
|
|
// CHECK: _ZTS1F = linkonce_odr constant
|
2010-11-08 09:05:10 +08:00
|
|
|
|
|
|
|
// CHECK: _ZTIN12_GLOBAL__N_11DE to
|
2009-12-30 06:13:01 +08:00
|
|
|
|
2011-01-24 08:46:19 +08:00
|
|
|
// A has no key function, so its RTTI data should be linkonce_odr.
|
2009-12-12 00:37:06 +08:00
|
|
|
struct A { };
|
|
|
|
|
|
|
|
// B has a key function defined in the translation unit, so the RTTI data should
|
|
|
|
// be emitted in this translation unit and have external linkage.
|
|
|
|
struct B : A {
|
|
|
|
virtual void f();
|
|
|
|
};
|
|
|
|
void B::f() { }
|
2009-12-21 06:30:54 +08:00
|
|
|
|
|
|
|
// C is an incomplete class type, so any direct or indirect pointer types should have
|
2009-12-30 09:00:12 +08:00
|
|
|
// internal linkage, as should the type info for C itself.
|
2009-12-21 06:30:54 +08:00
|
|
|
struct C;
|
|
|
|
|
2009-12-21 08:57:38 +08:00
|
|
|
void t1() {
|
2009-12-21 06:30:54 +08:00
|
|
|
(void)typeid(C*);
|
|
|
|
(void)typeid(C**);
|
2009-12-21 07:37:55 +08:00
|
|
|
(void)typeid(int C::*);
|
|
|
|
(void)typeid(int C::**);
|
|
|
|
(void)typeid(C C::*);
|
|
|
|
(void)typeid(C *C::*);
|
|
|
|
(void)typeid(C A::*);
|
|
|
|
(void)typeid(C* A::*);
|
2009-12-21 06:30:54 +08:00
|
|
|
}
|
|
|
|
|
2009-12-21 08:57:38 +08:00
|
|
|
namespace {
|
|
|
|
// D is inside an anonymous namespace, so all type information related to D should have
|
|
|
|
// internal linkage.
|
|
|
|
struct D { };
|
2009-12-30 06:13:01 +08:00
|
|
|
|
|
|
|
// E is also inside an anonymous namespace.
|
|
|
|
enum E { };
|
|
|
|
|
2009-12-21 08:57:38 +08:00
|
|
|
};
|
|
|
|
|
2010-01-01 03:36:25 +08:00
|
|
|
// F has a key function defined in the translation unit, but it is inline so the RTTI
|
2011-01-24 08:46:19 +08:00
|
|
|
// data should be emitted with linkonce_odr linkage.
|
2010-01-01 03:36:25 +08:00
|
|
|
struct F {
|
|
|
|
virtual void f();
|
|
|
|
};
|
|
|
|
|
|
|
|
inline void F::f() { }
|
2009-12-24 04:51:04 +08:00
|
|
|
const D getD();
|
|
|
|
|
|
|
|
const std::type_info &t2() {
|
|
|
|
(void)typeid(const D);
|
2009-12-30 04:20:19 +08:00
|
|
|
(void)typeid(D *);
|
|
|
|
(void)typeid(D (*)());
|
|
|
|
(void)typeid(void (*)(D));
|
2010-03-31 08:15:35 +08:00
|
|
|
(void)typeid(void (*)(D&));
|
2009-12-30 04:20:19 +08:00
|
|
|
// The exception specification is not part of the RTTI descriptor, so it should not have
|
|
|
|
// internal linkage.
|
|
|
|
(void)typeid(void (*)() throw (D));
|
|
|
|
|
2009-12-30 06:13:01 +08:00
|
|
|
(void)typeid(E);
|
|
|
|
|
2009-12-24 04:51:04 +08:00
|
|
|
return typeid(getD());
|
2009-12-21 08:57:38 +08:00
|
|
|
}
|
2010-06-02 14:16:02 +08:00
|
|
|
|
|
|
|
namespace Arrays {
|
|
|
|
struct A {
|
|
|
|
static const int a[10];
|
|
|
|
};
|
|
|
|
const std::type_info &f() {
|
|
|
|
return typeid(A::a);
|
|
|
|
}
|
|
|
|
}
|
2010-08-04 16:34:44 +08:00
|
|
|
|
|
|
|
template <unsigned N> class T {
|
|
|
|
virtual void anchor() {}
|
|
|
|
};
|
|
|
|
template class T<1>;
|
|
|
|
template <> class T<2> { virtual void anchor(); };
|
|
|
|
void t3() {
|
|
|
|
(void) typeid(T<0>);
|
|
|
|
(void) typeid(T<1>);
|
|
|
|
(void) typeid(T<2>);
|
|
|
|
}
|
2010-12-17 10:58:03 +08:00
|
|
|
|
|
|
|
// rdar://problem/8778973
|
|
|
|
struct T4 {};
|
|
|
|
void t4(const T4 *ptr) {
|
|
|
|
const void *value = &typeid(ptr);
|
|
|
|
}
|