diff options
author | Mike Stump <mrs@apple.com> | 2009-08-13 22:53:07 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-08-13 22:53:07 +0000 |
commit | 4ef980984fd0e131fca3f9e6ba15e8a79cabf88c (patch) | |
tree | 4c320b00a365c50011ae3e1ff1ddbc22ae178d6e /lib/CodeGen/CodeGenFunction.h | |
parent | 0032b2781b4deb131f8c9b7968f2030bf2489cdd (diff) |
Refine vtable layout for virtual bases and keep better track of
primaries. WIP.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78950 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 1ea19c6e13..aa4bcceae2 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -363,6 +363,10 @@ public: const CXXRecordDecl *RD, llvm::Type *Ptr8Ty); void GenerateMethods(std::vector<llvm::Constant *> &methods, const CXXRecordDecl *RD, llvm::Type *Ptr8Ty); +void GenerateVtableForVBases(const CXXRecordDecl *RD, + llvm::Constant *rtti, + std::vector<llvm::Constant *> &methods, + llvm::SmallSet<const CXXRecordDecl *, 32> &IndirectPrimary); void GenerateVtableForBase(const CXXRecordDecl *RD, const CXXRecordDecl *Class, llvm::Constant *rtti, |