diff options
author | Mike Stump <mrs@apple.com> | 2009-07-31 18:25:34 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-31 18:25:34 +0000 |
commit | f121677b6bbbf4e4a51ee7a1120b77adf187bad4 (patch) | |
tree | 152d7af9683edcc44068f0817ca9b5fceb7dc171 /lib/CodeGen/Mangle.cpp | |
parent | 29852b68b677bfcbcb51fb2b3b7b756665376b4f (diff) |
Add code to setup the vtable pointer in the constructor. Work in progress.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77699 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Mangle.cpp')
-rw-r--r-- | lib/CodeGen/Mangle.cpp | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/lib/CodeGen/Mangle.cpp b/lib/CodeGen/Mangle.cpp index 9e389040b8..36ee2a4222 100644 --- a/lib/CodeGen/Mangle.cpp +++ b/lib/CodeGen/Mangle.cpp @@ -41,6 +41,7 @@ namespace { bool mangle(const NamedDecl *D); void mangleGuardVariable(const VarDecl *D); + void mangleCXXVtable(QualType Type); void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type); void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type); @@ -158,10 +159,16 @@ void CXXNameMangler::mangleCXXDtor(const CXXDestructorDecl *D, mangle(D); } +void CXXNameMangler::mangleCXXVtable(QualType T) { + // <special-name> ::= TV <type> # virtual table + Out << "_ZTV"; + mangleType(T); +} + void CXXNameMangler::mangleGuardVariable(const VarDecl *D) { // <special-name> ::= GV <object name> # Guard variable for one-time - // # initialization + // # initialization Out << "_ZGV"; mangleName(D); @@ -807,7 +814,12 @@ namespace clang { os.flush(); } - - -} + void mangleCXXVtable(QualType Type, ASTContext &Context, + llvm::raw_ostream &os) { + CXXNameMangler Mangler(Context, os); + Mangler.mangleCXXVtable(Type); + + os.flush(); + } +} |