1 //===------- ItaniumCXXABI.cpp - AST support for the Itanium C++ ABI ------===//
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 // This provides C++ AST support targeting the Itanium C++ ABI, which is
11 // documented at:
12 //  http://www.codesourcery.com/public/cxx-abi/abi.html
13 //  http://www.codesourcery.com/public/cxx-abi/abi-eh.html
14 //
15 // It also supports the closely-related ARM C++ ABI, documented at:
16 // http://infocenter.arm.com/help/topic/com.arm.doc.ihi0041c/IHI0041C_cppabi.pdf
17 //
18 //===----------------------------------------------------------------------===//
19 
20 #include "CXXABI.h"
21 #include "clang/AST/ASTContext.h"
22 #include "clang/AST/DeclCXX.h"
23 #include "clang/AST/MangleNumberingContext.h"
24 #include "clang/AST/RecordLayout.h"
25 #include "clang/AST/Type.h"
26 #include "clang/Basic/TargetInfo.h"
27 #include "llvm/ADT/iterator.h"
28 
29 using namespace clang;
30 
31 namespace {
32 
33 /// According to Itanium C++ ABI 5.1.2:
34 /// the name of an anonymous union is considered to be
35 /// the name of the first named data member found by a pre-order,
36 /// depth-first, declaration-order walk of the data members of
37 /// the anonymous union.
38 /// If there is no such data member (i.e., if all of the data members
39 /// in the union are unnamed), then there is no way for a program to
40 /// refer to the anonymous union, and there is therefore no need to mangle its name.
41 ///
42 /// Returns the name of anonymous union VarDecl or nullptr if it is not found.
findAnonymousUnionVarDeclName(const VarDecl & VD)43 static const IdentifierInfo *findAnonymousUnionVarDeclName(const VarDecl& VD) {
44   const RecordType *RT = VD.getType()->getAs<RecordType>();
45   assert(RT && "type of VarDecl is expected to be RecordType.");
46   assert(RT->getDecl()->isUnion() && "RecordType is expected to be a union.");
47   if (const FieldDecl *FD = RT->getDecl()->findFirstNamedDataMember()) {
48     return FD->getIdentifier();
49   }
50 
51   return nullptr;
52 }
53 
54 /// The name of a decomposition declaration.
55 struct DecompositionDeclName {
56   using BindingArray = ArrayRef<const BindingDecl*>;
57 
58   /// Representative example of a set of bindings with these names.
59   BindingArray Bindings;
60 
61   /// Iterators over the sequence of identifiers in the name.
62   struct Iterator
63       : llvm::iterator_adaptor_base<Iterator, BindingArray::const_iterator,
64                                     std::random_access_iterator_tag,
65                                     const IdentifierInfo *> {
Iterator__anonf76afff60111::DecompositionDeclName::Iterator66     Iterator(BindingArray::const_iterator It) : iterator_adaptor_base(It) {}
operator *__anonf76afff60111::DecompositionDeclName::Iterator67     const IdentifierInfo *operator*() const {
68       return (*this->I)->getIdentifier();
69     }
70   };
begin__anonf76afff60111::DecompositionDeclName71   Iterator begin() const { return Iterator(Bindings.begin()); }
end__anonf76afff60111::DecompositionDeclName72   Iterator end() const { return Iterator(Bindings.end()); }
73 };
74 }
75 
76 namespace llvm {
77 template<>
78 struct DenseMapInfo<DecompositionDeclName> {
79   using ArrayInfo = llvm::DenseMapInfo<ArrayRef<const BindingDecl*>>;
80   using IdentInfo = llvm::DenseMapInfo<const IdentifierInfo*>;
getEmptyKeyllvm::DenseMapInfo81   static DecompositionDeclName getEmptyKey() {
82     return {ArrayInfo::getEmptyKey()};
83   }
getTombstoneKeyllvm::DenseMapInfo84   static DecompositionDeclName getTombstoneKey() {
85     return {ArrayInfo::getTombstoneKey()};
86   }
getHashValuellvm::DenseMapInfo87   static unsigned getHashValue(DecompositionDeclName Key) {
88     assert(!isEqual(Key, getEmptyKey()) && !isEqual(Key, getTombstoneKey()));
89     return llvm::hash_combine_range(Key.begin(), Key.end());
90   }
isEqualllvm::DenseMapInfo91   static bool isEqual(DecompositionDeclName LHS, DecompositionDeclName RHS) {
92     if (ArrayInfo::isEqual(LHS.Bindings, ArrayInfo::getEmptyKey()))
93       return ArrayInfo::isEqual(RHS.Bindings, ArrayInfo::getEmptyKey());
94     if (ArrayInfo::isEqual(LHS.Bindings, ArrayInfo::getTombstoneKey()))
95       return ArrayInfo::isEqual(RHS.Bindings, ArrayInfo::getTombstoneKey());
96     return LHS.Bindings.size() == RHS.Bindings.size() &&
97            std::equal(LHS.begin(), LHS.end(), RHS.begin());
98   }
99 };
100 }
101 
102 namespace {
103 
104 /// Keeps track of the mangled names of lambda expressions and block
105 /// literals within a particular context.
106 class ItaniumNumberingContext : public MangleNumberingContext {
107   llvm::DenseMap<const Type *, unsigned> ManglingNumbers;
108   llvm::DenseMap<const IdentifierInfo *, unsigned> VarManglingNumbers;
109   llvm::DenseMap<const IdentifierInfo *, unsigned> TagManglingNumbers;
110   llvm::DenseMap<DecompositionDeclName, unsigned>
111       DecompsitionDeclManglingNumbers;
112 
113 public:
getManglingNumber(const CXXMethodDecl * CallOperator)114   unsigned getManglingNumber(const CXXMethodDecl *CallOperator) override {
115     const FunctionProtoType *Proto =
116         CallOperator->getType()->getAs<FunctionProtoType>();
117     ASTContext &Context = CallOperator->getASTContext();
118 
119     FunctionProtoType::ExtProtoInfo EPI;
120     EPI.Variadic = Proto->isVariadic();
121     QualType Key =
122         Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI);
123     Key = Context.getCanonicalType(Key);
124     return ++ManglingNumbers[Key->castAs<FunctionProtoType>()];
125   }
126 
getManglingNumber(const BlockDecl * BD)127   unsigned getManglingNumber(const BlockDecl *BD) override {
128     const Type *Ty = nullptr;
129     return ++ManglingNumbers[Ty];
130   }
131 
getStaticLocalNumber(const VarDecl * VD)132   unsigned getStaticLocalNumber(const VarDecl *VD) override {
133     return 0;
134   }
135 
136   /// Variable decls are numbered by identifier.
getManglingNumber(const VarDecl * VD,unsigned)137   unsigned getManglingNumber(const VarDecl *VD, unsigned) override {
138     if (auto *DD = dyn_cast<DecompositionDecl>(VD)) {
139       DecompositionDeclName Name{DD->bindings()};
140       return ++DecompsitionDeclManglingNumbers[Name];
141     }
142 
143     const IdentifierInfo *Identifier = VD->getIdentifier();
144     if (!Identifier) {
145       // VarDecl without an identifier represents an anonymous union
146       // declaration.
147       Identifier = findAnonymousUnionVarDeclName(*VD);
148     }
149     return ++VarManglingNumbers[Identifier];
150   }
151 
getManglingNumber(const TagDecl * TD,unsigned)152   unsigned getManglingNumber(const TagDecl *TD, unsigned) override {
153     return ++TagManglingNumbers[TD->getIdentifier()];
154   }
155 };
156 
157 class ItaniumCXXABI : public CXXABI {
158 protected:
159   ASTContext &Context;
160 public:
ItaniumCXXABI(ASTContext & Ctx)161   ItaniumCXXABI(ASTContext &Ctx) : Context(Ctx) { }
162 
163   MemberPointerInfo
getMemberPointerInfo(const MemberPointerType * MPT) const164   getMemberPointerInfo(const MemberPointerType *MPT) const override {
165     const TargetInfo &Target = Context.getTargetInfo();
166     TargetInfo::IntType PtrDiff = Target.getPtrDiffType(0);
167     MemberPointerInfo MPI;
168     MPI.Width = Target.getTypeWidth(PtrDiff);
169     MPI.Align = Target.getTypeAlign(PtrDiff);
170     MPI.HasPadding = false;
171     if (MPT->isMemberFunctionPointer())
172       MPI.Width *= 2;
173     return MPI;
174   }
175 
getDefaultMethodCallConv(bool isVariadic) const176   CallingConv getDefaultMethodCallConv(bool isVariadic) const override {
177     const llvm::Triple &T = Context.getTargetInfo().getTriple();
178     if (!isVariadic && T.isWindowsGNUEnvironment() &&
179         T.getArch() == llvm::Triple::x86)
180       return CC_X86ThisCall;
181     return CC_C;
182   }
183 
184   // We cheat and just check that the class has a vtable pointer, and that it's
185   // only big enough to have a vtable pointer and nothing more (or less).
isNearlyEmpty(const CXXRecordDecl * RD) const186   bool isNearlyEmpty(const CXXRecordDecl *RD) const override {
187 
188     // Check that the class has a vtable pointer.
189     if (!RD->isDynamicClass())
190       return false;
191 
192     const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
193     CharUnits PointerSize =
194       Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0));
195     return Layout.getNonVirtualSize() == PointerSize;
196   }
197 
198   const CXXConstructorDecl *
getCopyConstructorForExceptionObject(CXXRecordDecl * RD)199   getCopyConstructorForExceptionObject(CXXRecordDecl *RD) override {
200     return nullptr;
201   }
202 
addCopyConstructorForExceptionObject(CXXRecordDecl * RD,CXXConstructorDecl * CD)203   void addCopyConstructorForExceptionObject(CXXRecordDecl *RD,
204                                             CXXConstructorDecl *CD) override {}
205 
addTypedefNameForUnnamedTagDecl(TagDecl * TD,TypedefNameDecl * DD)206   void addTypedefNameForUnnamedTagDecl(TagDecl *TD,
207                                        TypedefNameDecl *DD) override {}
208 
getTypedefNameForUnnamedTagDecl(const TagDecl * TD)209   TypedefNameDecl *getTypedefNameForUnnamedTagDecl(const TagDecl *TD) override {
210     return nullptr;
211   }
212 
addDeclaratorForUnnamedTagDecl(TagDecl * TD,DeclaratorDecl * DD)213   void addDeclaratorForUnnamedTagDecl(TagDecl *TD,
214                                       DeclaratorDecl *DD) override {}
215 
getDeclaratorForUnnamedTagDecl(const TagDecl * TD)216   DeclaratorDecl *getDeclaratorForUnnamedTagDecl(const TagDecl *TD) override {
217     return nullptr;
218   }
219 
220   std::unique_ptr<MangleNumberingContext>
createMangleNumberingContext() const221   createMangleNumberingContext() const override {
222     return llvm::make_unique<ItaniumNumberingContext>();
223   }
224 };
225 }
226 
CreateItaniumCXXABI(ASTContext & Ctx)227 CXXABI *clang::CreateItaniumCXXABI(ASTContext &Ctx) {
228   return new ItaniumCXXABI(Ctx);
229 }
230