aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-08-18 21:30:21 +0000
committerMike Stump <mrs@apple.com>2009-08-18 21:30:21 +0000
commit109b13db3391face0b393c730f0326ca51d25b52 (patch)
tree4902814eb3fa6170da69b662957b3cb420c45d1d /lib/CodeGen/CodeGenFunction.h
parent65defe3ee7be121aef50b498e51f1d831b4a15f3 (diff)
Move the rest of the vtable building code into the new builder.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r--lib/CodeGen/CodeGenFunction.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index b2b02c1728..41c886a656 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -362,28 +362,6 @@ public:
void FinishFunction(SourceLocation EndLoc=SourceLocation());
llvm::Constant *GenerateRtti(const CXXRecordDecl *RD);
- void GenerateVBaseOffsets(std::vector<llvm::Constant *> &methods,
- const CXXRecordDecl *RD,
- llvm::SmallSet<const CXXRecordDecl *, 32> &SeenVBase,
- uint64_t Offset,
- const ASTRecordLayout &Layout, llvm::Type *Ptr8Ty);
- void GenerateVcalls(std::vector<llvm::Constant *> &methods,
- const CXXRecordDecl *RD, llvm::Type *Ptr8Ty);
- void GenerateMethods(std::vector<llvm::Constant *> &methods,
- const CXXRecordDecl *RD, llvm::Type *Ptr8Ty);
- void GenerateVtableForVBases(const CXXRecordDecl *RD,
- const CXXRecordDecl *Class,
- llvm::Constant *rtti,
- std::vector<llvm::Constant *> &methods,
- llvm::SmallSet<const CXXRecordDecl *, 32> &IndirectPrimary);
- void GenerateVtableForBase(const CXXRecordDecl *RD,
- bool ForPrimary,
- int64_t Offset,
- const CXXRecordDecl *Class,
- llvm::Constant *rtti,
- std::vector<llvm::Constant *> &methods,
- bool ForVirtualBase,
- llvm::SmallSet<const CXXRecordDecl *, 32> &IndirectPrimary);
llvm::Value *GenerateVtable(const CXXRecordDecl *RD);
void EmitCtorPrologue(const CXXConstructorDecl *CD);