Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 1 | //===--- Mangle.h - Mangle C++ Names ----------------------------*- C++ -*-===// |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Implements C++ name mangling according to the Itanium C++ ABI, |
| 11 | // which is used in GCC 3.2 and newer (and many compilers that are |
| 12 | // ABI-compatible with GCC): |
| 13 | // |
| 14 | // http://www.codesourcery.com/public/cxx-abi/abi.html |
| 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
Chris Lattner | ca3f25c | 2009-03-21 08:24:40 +0000 | [diff] [blame] | 17 | |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 18 | #ifndef LLVM_CLANG_CODEGEN_MANGLE_H |
| 19 | #define LLVM_CLANG_CODEGEN_MANGLE_H |
| 20 | |
Anders Carlsson | 3ac86b5 | 2009-04-15 05:36:58 +0000 | [diff] [blame] | 21 | #include "CGCXX.h" |
Mike Stump | f121677 | 2009-07-31 18:25:34 +0000 | [diff] [blame] | 22 | #include "clang/AST/Type.h" |
Anders Carlsson | c4355b6 | 2009-10-07 01:45:02 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/DenseMap.h" |
Anders Carlsson | 3ac86b5 | 2009-04-15 05:36:58 +0000 | [diff] [blame] | 24 | |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 25 | namespace llvm { |
Anders Carlsson | b73a5be | 2009-11-26 02:49:32 +0000 | [diff] [blame] | 26 | template<typename T> class SmallVectorImpl; |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 27 | } |
| 28 | |
| 29 | namespace clang { |
Anders Carlsson | b73a5be | 2009-11-26 02:49:32 +0000 | [diff] [blame] | 30 | class ASTContext; |
| 31 | class CXXConstructorDecl; |
| 32 | class CXXDestructorDecl; |
| 33 | class FunctionDecl; |
| 34 | class NamedDecl; |
| 35 | class VarDecl; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 36 | |
Anders Carlsson | b73a5be | 2009-11-26 02:49:32 +0000 | [diff] [blame] | 37 | namespace CodeGen { |
Anders Carlsson | 7622cd3 | 2009-11-26 03:09:37 +0000 | [diff] [blame] | 38 | class CovariantThunkAdjustment; |
Anders Carlsson | b73a5be | 2009-11-26 02:49:32 +0000 | [diff] [blame] | 39 | class ThunkAdjustment; |
| 40 | |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 41 | /// MangleContext - Context for tracking state which persists across multiple |
| 42 | /// calls to the C++ name mangler. |
| 43 | class MangleContext { |
| 44 | ASTContext &Context; |
Anders Carlsson | c4355b6 | 2009-10-07 01:45:02 +0000 | [diff] [blame] | 45 | |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 46 | llvm::DenseMap<const TagDecl *, uint64_t> AnonStructIds; |
Fariborz Jahanian | 4819ac4 | 2010-03-04 01:02:03 +0000 | [diff] [blame] | 47 | unsigned Discriminator; |
| 48 | llvm::DenseMap<const NamedDecl*, unsigned> Uniquifier; |
| 49 | |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 50 | public: |
| 51 | explicit MangleContext(ASTContext &Context) |
Anders Carlsson | b540491 | 2009-10-07 01:06:45 +0000 | [diff] [blame] | 52 | : Context(Context) { } |
Anders Carlsson | b540491 | 2009-10-07 01:06:45 +0000 | [diff] [blame] | 53 | |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 54 | ASTContext &getASTContext() const { return Context; } |
| 55 | |
| 56 | uint64_t getAnonymousStructId(const TagDecl *TD) { |
| 57 | std::pair<llvm::DenseMap<const TagDecl *, |
| 58 | uint64_t>::iterator, bool> Result = |
| 59 | AnonStructIds.insert(std::make_pair(TD, AnonStructIds.size())); |
| 60 | return Result.first->second; |
| 61 | } |
| 62 | |
| 63 | /// @name Mangler Entry Points |
| 64 | /// @{ |
| 65 | |
Daniel Dunbar | f981bf8 | 2009-11-21 09:14:52 +0000 | [diff] [blame] | 66 | bool shouldMangleDeclName(const NamedDecl *D); |
| 67 | |
| 68 | void mangleName(const NamedDecl *D, llvm::SmallVectorImpl<char> &); |
Anders Carlsson | a94822e | 2009-11-26 02:32:05 +0000 | [diff] [blame] | 69 | void mangleThunk(const FunctionDecl *FD, |
Anders Carlsson | b73a5be | 2009-11-26 02:49:32 +0000 | [diff] [blame] | 70 | const ThunkAdjustment &ThisAdjustment, |
Daniel Dunbar | 94fd26d | 2009-11-21 09:06:22 +0000 | [diff] [blame] | 71 | llvm::SmallVectorImpl<char> &); |
Eli Friedman | 61d89b6 | 2009-12-03 00:03:05 +0000 | [diff] [blame] | 72 | void mangleCXXDtorThunk(const CXXDestructorDecl *D, CXXDtorType Type, |
| 73 | const ThunkAdjustment &ThisAdjustment, |
| 74 | llvm::SmallVectorImpl<char> &); |
Anders Carlsson | 7622cd3 | 2009-11-26 03:09:37 +0000 | [diff] [blame] | 75 | void mangleCovariantThunk(const FunctionDecl *FD, |
| 76 | const CovariantThunkAdjustment& Adjustment, |
Daniel Dunbar | 94fd26d | 2009-11-21 09:06:22 +0000 | [diff] [blame] | 77 | llvm::SmallVectorImpl<char> &); |
| 78 | void mangleGuardVariable(const VarDecl *D, llvm::SmallVectorImpl<char> &); |
| 79 | void mangleCXXVtable(const CXXRecordDecl *RD, llvm::SmallVectorImpl<char> &); |
| 80 | void mangleCXXVTT(const CXXRecordDecl *RD, llvm::SmallVectorImpl<char> &); |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 81 | void mangleCXXCtorVtable(const CXXRecordDecl *RD, int64_t Offset, |
Daniel Dunbar | 94fd26d | 2009-11-21 09:06:22 +0000 | [diff] [blame] | 82 | const CXXRecordDecl *Type, |
| 83 | llvm::SmallVectorImpl<char> &); |
Mike Stump | de05057 | 2009-12-02 18:57:08 +0000 | [diff] [blame] | 84 | void mangleCXXRTTI(QualType T, llvm::SmallVectorImpl<char> &); |
| 85 | void mangleCXXRTTIName(QualType T, llvm::SmallVectorImpl<char> &); |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 86 | void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type, |
Daniel Dunbar | 94fd26d | 2009-11-21 09:06:22 +0000 | [diff] [blame] | 87 | llvm::SmallVectorImpl<char> &); |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 88 | void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type, |
Daniel Dunbar | 94fd26d | 2009-11-21 09:06:22 +0000 | [diff] [blame] | 89 | llvm::SmallVectorImpl<char> &); |
Fariborz Jahanian | 4819ac4 | 2010-03-04 01:02:03 +0000 | [diff] [blame] | 90 | |
| 91 | void mangleInitDiscriminator() { |
| 92 | Discriminator = 0; |
| 93 | } |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 94 | |
Fariborz Jahanian | 4819ac4 | 2010-03-04 01:02:03 +0000 | [diff] [blame] | 95 | bool getNextDiscriminator(const NamedDecl *ND, unsigned &disc) { |
| 96 | unsigned &discriminator = Uniquifier[ND]; |
| 97 | if (!discriminator) |
| 98 | discriminator = ++Discriminator; |
| 99 | if (discriminator == 1) |
| 100 | return false; |
| 101 | disc = discriminator-2; |
| 102 | return true; |
| 103 | } |
Daniel Dunbar | 1b07711 | 2009-11-21 09:06:10 +0000 | [diff] [blame] | 104 | /// @} |
| 105 | }; |
Anders Carlsson | b73a5be | 2009-11-26 02:49:32 +0000 | [diff] [blame] | 106 | |
| 107 | } |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 110 | #endif |