diff options
author | Mike Stump <mrs@apple.com> | 2009-08-18 21:30:21 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-08-18 21:30:21 +0000 |
commit | ee81dca8c708b697306ac96890f4a0f4561767fb (patch) | |
tree | aa73e7bf1cbdebb01e6484264b9a6a0503d26e2c /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 36d747745e6dbfc506d90cef1922247f495682fc (diff) | |
download | bcm5719-llvm-ee81dca8c708b697306ac96890f4a0f4561767fb.tar.gz bcm5719-llvm-ee81dca8c708b697306ac96890f4a0f4561767fb.zip |
Move the rest of the vtable building code into the new builder.
llvm-svn: 79370
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index b2b02c1728e..41c886a656a 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/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); |