diff options
author | Anders Carlsson <andersca@mac.com> | 2009-12-11 02:46:30 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-12-11 02:46:30 +0000 |
commit | 31b7f52d8c8d459e80d2a72176cc7fcc4b7d8d38 (patch) | |
tree | a4499131a47c5cfddfef1e0704e4b5e51f1e8dbc /lib/CodeGen/CodeGenModule.h | |
parent | 03981014e4f0c3b4e935872dda96a28c2f1874ea (diff) |
Improve linkage of RTTI data structures. Introduce CodeGenModule::GetAddrOfRTTI which figures out the right linkage of the RTTI information for the given type and whether it should be defined or not. I will migrate clients over to GetAddrOfRTTI in subsequent commits (with tests).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91098 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 466aaa67cc..cc7ec9c301 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -212,6 +212,13 @@ public: llvm::Constant *GetAddrOfFunction(GlobalDecl GD, const llvm::Type *Ty = 0); + /// GetAddrOfRTTI - Get the address of the RTTI structure for the given type. + llvm::Constant *GetAddrOfRTTI(QualType Ty); + + /// GetAddrOfRTTI - Get the address of the RTTI structure for the given record + /// decl. + llvm::Constant *GetAddrOfRTTI(const CXXRecordDecl *RD); + /// GenerateRTTI - Generate the rtti information for the given type. llvm::Constant *GenerateRTTI(const CXXRecordDecl *RD); |