blob: 205e887fea44dc8a33656e811b4c8a31f210e2ff [file] [log] [blame]
Peter Collingbourne14110472011-01-13 18:57:25 +00001//===--- ItaniumMangle.cpp - Itanium C++ Name Mangling ----------*- C++ -*-===//
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00002//
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//===----------------------------------------------------------------------===//
Peter Collingbourne14110472011-01-13 18:57:25 +000017#include "clang/AST/Mangle.h"
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000018#include "clang/AST/ASTContext.h"
19#include "clang/AST/Decl.h"
20#include "clang/AST/DeclCXX.h"
Anders Carlssona40c5e42009-03-07 22:03:21 +000021#include "clang/AST/DeclObjC.h"
Anders Carlsson7a0ba872009-05-15 16:09:15 +000022#include "clang/AST/DeclTemplate.h"
Anders Carlsson50755b02009-09-27 20:11:34 +000023#include "clang/AST/ExprCXX.h"
John McCallf85e1932011-06-15 23:02:42 +000024#include "clang/AST/ExprObjC.h"
John McCallfb44de92011-05-01 22:35:37 +000025#include "clang/AST/TypeLoc.h"
Peter Collingbourne14110472011-01-13 18:57:25 +000026#include "clang/Basic/ABI.h"
Douglas Gregor6ec36682009-02-18 23:53:56 +000027#include "clang/Basic/SourceManager.h"
Rafael Espindola4e274e92011-02-15 22:23:51 +000028#include "clang/Basic/TargetInfo.h"
Anders Carlssonc4355b62009-10-07 01:45:02 +000029#include "llvm/ADT/StringExtras.h"
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000030#include "llvm/Support/raw_ostream.h"
John McCallefe6aee2009-09-05 07:56:18 +000031#include "llvm/Support/ErrorHandling.h"
Anders Carlssonf98574b2010-02-05 07:31:37 +000032
33#define MANGLE_CHECKER 0
34
35#if MANGLE_CHECKER
36#include <cxxabi.h>
37#endif
38
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000039using namespace clang;
Charles Davis685b1d92010-05-26 18:25:27 +000040
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000041namespace {
Fariborz Jahanian57058532010-03-03 19:41:08 +000042
John McCall82b7d7b2010-10-18 21:28:44 +000043static const CXXRecordDecl *GetLocalClassDecl(const NamedDecl *ND) {
44 const DeclContext *DC = dyn_cast<DeclContext>(ND);
45 if (!DC)
46 DC = ND->getDeclContext();
47 while (!DC->isNamespace() && !DC->isTranslationUnit()) {
48 if (isa<FunctionDecl>(DC->getParent()))
49 return dyn_cast<CXXRecordDecl>(DC);
50 DC = DC->getParent();
Fariborz Jahanian57058532010-03-03 19:41:08 +000051 }
52 return 0;
53}
54
John McCallfb44de92011-05-01 22:35:37 +000055static const FunctionDecl *getStructor(const FunctionDecl *fn) {
56 if (const FunctionTemplateDecl *ftd = fn->getPrimaryTemplate())
57 return ftd->getTemplatedDecl();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000058
John McCallfb44de92011-05-01 22:35:37 +000059 return fn;
60}
Anders Carlsson7e120032009-11-24 05:36:32 +000061
John McCallfb44de92011-05-01 22:35:37 +000062static const NamedDecl *getStructor(const NamedDecl *decl) {
63 const FunctionDecl *fn = dyn_cast_or_null<FunctionDecl>(decl);
64 return (fn ? getStructor(fn) : decl);
Anders Carlsson7e120032009-11-24 05:36:32 +000065}
John McCall1dd73832010-02-04 01:42:13 +000066
67static const unsigned UnknownArity = ~0U;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000068
Peter Collingbourne14110472011-01-13 18:57:25 +000069class ItaniumMangleContext : public MangleContext {
70 llvm::DenseMap<const TagDecl *, uint64_t> AnonStructIds;
71 unsigned Discriminator;
72 llvm::DenseMap<const NamedDecl*, unsigned> Uniquifier;
73
74public:
75 explicit ItaniumMangleContext(ASTContext &Context,
76 Diagnostic &Diags)
77 : MangleContext(Context, Diags) { }
78
79 uint64_t getAnonymousStructId(const TagDecl *TD) {
80 std::pair<llvm::DenseMap<const TagDecl *,
81 uint64_t>::iterator, bool> Result =
82 AnonStructIds.insert(std::make_pair(TD, AnonStructIds.size()));
83 return Result.first->second;
84 }
85
86 void startNewFunction() {
87 MangleContext::startNewFunction();
88 mangleInitDiscriminator();
89 }
90
91 /// @name Mangler Entry Points
92 /// @{
93
94 bool shouldMangleDeclName(const NamedDecl *D);
Rafael Espindola0e376a02011-02-11 01:41:00 +000095 void mangleName(const NamedDecl *D, llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +000096 void mangleThunk(const CXXMethodDecl *MD,
97 const ThunkInfo &Thunk,
Rafael Espindolaf0be9792011-02-11 02:52:17 +000098 llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +000099 void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
100 const ThisAdjustment &ThisAdjustment,
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000101 llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000102 void mangleReferenceTemporary(const VarDecl *D,
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000103 llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000104 void mangleCXXVTable(const CXXRecordDecl *RD,
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000105 llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000106 void mangleCXXVTT(const CXXRecordDecl *RD,
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000107 llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000108 void mangleCXXCtorVTable(const CXXRecordDecl *RD, int64_t Offset,
109 const CXXRecordDecl *Type,
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000110 llvm::raw_ostream &);
111 void mangleCXXRTTI(QualType T, llvm::raw_ostream &);
112 void mangleCXXRTTIName(QualType T, llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000113 void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type,
Rafael Espindola0e376a02011-02-11 01:41:00 +0000114 llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000115 void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type,
Rafael Espindola0e376a02011-02-11 01:41:00 +0000116 llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000117
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000118 void mangleItaniumGuardVariable(const VarDecl *D, llvm::raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000119
120 void mangleInitDiscriminator() {
121 Discriminator = 0;
122 }
123
124 bool getNextDiscriminator(const NamedDecl *ND, unsigned &disc) {
125 unsigned &discriminator = Uniquifier[ND];
126 if (!discriminator)
127 discriminator = ++Discriminator;
128 if (discriminator == 1)
129 return false;
130 disc = discriminator-2;
131 return true;
132 }
133 /// @}
134};
135
Daniel Dunbar1b077112009-11-21 09:06:10 +0000136/// CXXNameMangler - Manage the mangling of a single name.
Daniel Dunbarc0747712009-11-21 09:12:13 +0000137class CXXNameMangler {
Peter Collingbourne14110472011-01-13 18:57:25 +0000138 ItaniumMangleContext &Context;
Rafael Espindola0e376a02011-02-11 01:41:00 +0000139 llvm::raw_ostream &Out;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000140
John McCallfb44de92011-05-01 22:35:37 +0000141 /// The "structor" is the top-level declaration being mangled, if
142 /// that's not a template specialization; otherwise it's the pattern
143 /// for that specialization.
144 const NamedDecl *Structor;
Daniel Dunbar1b077112009-11-21 09:06:10 +0000145 unsigned StructorType;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000146
Anders Carlsson9d85b722010-06-02 04:29:50 +0000147 /// SeqID - The next subsitution sequence number.
148 unsigned SeqID;
149
John McCallfb44de92011-05-01 22:35:37 +0000150 class FunctionTypeDepthState {
151 unsigned Bits;
152
153 enum { InResultTypeMask = 1 };
154
155 public:
156 FunctionTypeDepthState() : Bits(0) {}
157
158 /// The number of function types we're inside.
159 unsigned getDepth() const {
160 return Bits >> 1;
161 }
162
163 /// True if we're in the return type of the innermost function type.
164 bool isInResultType() const {
165 return Bits & InResultTypeMask;
166 }
167
168 FunctionTypeDepthState push() {
169 FunctionTypeDepthState tmp = *this;
170 Bits = (Bits & ~InResultTypeMask) + 2;
171 return tmp;
172 }
173
174 void enterResultType() {
175 Bits |= InResultTypeMask;
176 }
177
178 void leaveResultType() {
179 Bits &= ~InResultTypeMask;
180 }
181
182 void pop(FunctionTypeDepthState saved) {
183 assert(getDepth() == saved.getDepth() + 1);
184 Bits = saved.Bits;
185 }
186
187 } FunctionTypeDepth;
188
Daniel Dunbar1b077112009-11-21 09:06:10 +0000189 llvm::DenseMap<uintptr_t, unsigned> Substitutions;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000190
John McCall1dd73832010-02-04 01:42:13 +0000191 ASTContext &getASTContext() const { return Context.getASTContext(); }
192
Daniel Dunbarc0747712009-11-21 09:12:13 +0000193public:
John McCallfb44de92011-05-01 22:35:37 +0000194 CXXNameMangler(ItaniumMangleContext &C, llvm::raw_ostream &Out_,
195 const NamedDecl *D = 0)
196 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(0),
197 SeqID(0) {
198 // These can't be mangled without a ctor type or dtor type.
199 assert(!D || (!isa<CXXDestructorDecl>(D) &&
200 !isa<CXXConstructorDecl>(D)));
201 }
Rafael Espindola0e376a02011-02-11 01:41:00 +0000202 CXXNameMangler(ItaniumMangleContext &C, llvm::raw_ostream &Out_,
Daniel Dunbar77939c92009-11-21 09:06:31 +0000203 const CXXConstructorDecl *D, CXXCtorType Type)
Rafael Espindolac4850c22011-02-10 23:59:36 +0000204 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
John McCallfb44de92011-05-01 22:35:37 +0000205 SeqID(0) { }
Rafael Espindola0e376a02011-02-11 01:41:00 +0000206 CXXNameMangler(ItaniumMangleContext &C, llvm::raw_ostream &Out_,
Daniel Dunbar77939c92009-11-21 09:06:31 +0000207 const CXXDestructorDecl *D, CXXDtorType Type)
Rafael Espindolac4850c22011-02-10 23:59:36 +0000208 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
John McCallfb44de92011-05-01 22:35:37 +0000209 SeqID(0) { }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000210
Anders Carlssonf98574b2010-02-05 07:31:37 +0000211#if MANGLE_CHECKER
212 ~CXXNameMangler() {
213 if (Out.str()[0] == '\01')
214 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000215
Anders Carlssonf98574b2010-02-05 07:31:37 +0000216 int status = 0;
217 char *result = abi::__cxa_demangle(Out.str().str().c_str(), 0, 0, &status);
218 assert(status == 0 && "Could not demangle mangled name!");
219 free(result);
220 }
221#endif
Rafael Espindola0e376a02011-02-11 01:41:00 +0000222 llvm::raw_ostream &getStream() { return Out; }
Daniel Dunbarc0747712009-11-21 09:12:13 +0000223
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000224 void mangle(const NamedDecl *D, llvm::StringRef Prefix = "_Z");
Anders Carlsson19879c92010-03-23 17:17:29 +0000225 void mangleCallOffset(int64_t NonVirtual, int64_t Virtual);
John McCall0512e482010-07-14 04:20:34 +0000226 void mangleNumber(const llvm::APSInt &I);
Anders Carlssona94822e2009-11-26 02:32:05 +0000227 void mangleNumber(int64_t Number);
John McCall0512e482010-07-14 04:20:34 +0000228 void mangleFloat(const llvm::APFloat &F);
Daniel Dunbarc0747712009-11-21 09:12:13 +0000229 void mangleFunctionEncoding(const FunctionDecl *FD);
230 void mangleName(const NamedDecl *ND);
231 void mangleType(QualType T);
Douglas Gregor1b12a3b2010-05-26 05:11:13 +0000232 void mangleNameOrStandardSubstitution(const NamedDecl *ND);
233
Daniel Dunbarc0747712009-11-21 09:12:13 +0000234private:
Daniel Dunbar1b077112009-11-21 09:06:10 +0000235 bool mangleSubstitution(const NamedDecl *ND);
236 bool mangleSubstitution(QualType T);
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000237 bool mangleSubstitution(TemplateName Template);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000238 bool mangleSubstitution(uintptr_t Ptr);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000239
John McCall68a51a72011-07-01 00:04:39 +0000240 void mangleExistingSubstitution(QualType type);
241 void mangleExistingSubstitution(TemplateName name);
242
Daniel Dunbar1b077112009-11-21 09:06:10 +0000243 bool mangleStandardSubstitution(const NamedDecl *ND);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000244
Daniel Dunbar1b077112009-11-21 09:06:10 +0000245 void addSubstitution(const NamedDecl *ND) {
246 ND = cast<NamedDecl>(ND->getCanonicalDecl());
Anders Carlsson433d1372009-11-07 04:26:04 +0000247
Daniel Dunbar1b077112009-11-21 09:06:10 +0000248 addSubstitution(reinterpret_cast<uintptr_t>(ND));
249 }
250 void addSubstitution(QualType T);
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000251 void addSubstitution(TemplateName Template);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000252 void addSubstitution(uintptr_t Ptr);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000253
John McCalla0ce15c2011-04-24 08:23:24 +0000254 void mangleUnresolvedPrefix(NestedNameSpecifier *qualifier,
255 NamedDecl *firstQualifierLookup,
256 bool recursive = false);
257 void mangleUnresolvedName(NestedNameSpecifier *qualifier,
258 NamedDecl *firstQualifierLookup,
259 DeclarationName name,
John McCall1dd73832010-02-04 01:42:13 +0000260 unsigned KnownArity = UnknownArity);
261
Daniel Dunbar1b077112009-11-21 09:06:10 +0000262 void mangleName(const TemplateDecl *TD,
263 const TemplateArgument *TemplateArgs,
264 unsigned NumTemplateArgs);
John McCall1dd73832010-02-04 01:42:13 +0000265 void mangleUnqualifiedName(const NamedDecl *ND) {
266 mangleUnqualifiedName(ND, ND->getDeclName(), UnknownArity);
267 }
268 void mangleUnqualifiedName(const NamedDecl *ND, DeclarationName Name,
269 unsigned KnownArity);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000270 void mangleUnscopedName(const NamedDecl *ND);
271 void mangleUnscopedTemplateName(const TemplateDecl *ND);
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000272 void mangleUnscopedTemplateName(TemplateName);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000273 void mangleSourceName(const IdentifierInfo *II);
274 void mangleLocalName(const NamedDecl *ND);
Fariborz Jahanian57058532010-03-03 19:41:08 +0000275 void mangleNestedName(const NamedDecl *ND, const DeclContext *DC,
276 bool NoFunction=false);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000277 void mangleNestedName(const TemplateDecl *TD,
278 const TemplateArgument *TemplateArgs,
279 unsigned NumTemplateArgs);
John McCalla0ce15c2011-04-24 08:23:24 +0000280 void manglePrefix(NestedNameSpecifier *qualifier);
Fariborz Jahanian57058532010-03-03 19:41:08 +0000281 void manglePrefix(const DeclContext *DC, bool NoFunction=false);
John McCall4f4e4132011-05-04 01:45:19 +0000282 void manglePrefix(QualType type);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000283 void mangleTemplatePrefix(const TemplateDecl *ND);
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000284 void mangleTemplatePrefix(TemplateName Template);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000285 void mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity);
286 void mangleQualifiers(Qualifiers Quals);
Douglas Gregor0a9a6d62011-01-26 17:36:28 +0000287 void mangleRefQualifier(RefQualifierKind RefQualifier);
John McCallefe6aee2009-09-05 07:56:18 +0000288
Anders Carlsson7b06f6c2009-12-10 03:14:39 +0000289 void mangleObjCMethodName(const ObjCMethodDecl *MD);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000290
Daniel Dunbar1b077112009-11-21 09:06:10 +0000291 // Declare manglers for every type class.
John McCallefe6aee2009-09-05 07:56:18 +0000292#define ABSTRACT_TYPE(CLASS, PARENT)
293#define NON_CANONICAL_TYPE(CLASS, PARENT)
294#define TYPE(CLASS, PARENT) void mangleType(const CLASS##Type *T);
295#include "clang/AST/TypeNodes.def"
296
Daniel Dunbar1b077112009-11-21 09:06:10 +0000297 void mangleType(const TagType*);
John McCallb6f532e2010-07-14 06:43:17 +0000298 void mangleType(TemplateName);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000299 void mangleBareFunctionType(const FunctionType *T,
300 bool MangleReturnType);
Bob Wilson57147a82010-11-16 00:32:18 +0000301 void mangleNeonVectorType(const VectorType *T);
Anders Carlssone170ba72009-12-14 01:45:37 +0000302
303 void mangleIntegerLiteral(QualType T, const llvm::APSInt &Value);
John McCalla0ce15c2011-04-24 08:23:24 +0000304 void mangleMemberExpr(const Expr *base, bool isArrow,
305 NestedNameSpecifier *qualifier,
306 NamedDecl *firstQualifierLookup,
307 DeclarationName name,
308 unsigned knownArity);
John McCall5e1e89b2010-08-18 19:18:59 +0000309 void mangleExpression(const Expr *E, unsigned Arity = UnknownArity);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000310 void mangleCXXCtorType(CXXCtorType T);
311 void mangleCXXDtorType(CXXDtorType T);
Mike Stump1eb44332009-09-09 15:08:12 +0000312
John McCall6dbce192010-08-20 00:17:19 +0000313 void mangleTemplateArgs(const ExplicitTemplateArgumentList &TemplateArgs);
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000314 void mangleTemplateArgs(TemplateName Template,
315 const TemplateArgument *TemplateArgs,
Sean Huntc3021132010-05-05 15:23:54 +0000316 unsigned NumTemplateArgs);
Rafael Espindolad9800722010-03-11 14:07:00 +0000317 void mangleTemplateArgs(const TemplateParameterList &PL,
318 const TemplateArgument *TemplateArgs,
Daniel Dunbar1b077112009-11-21 09:06:10 +0000319 unsigned NumTemplateArgs);
Rafael Espindolad9800722010-03-11 14:07:00 +0000320 void mangleTemplateArgs(const TemplateParameterList &PL,
321 const TemplateArgumentList &AL);
322 void mangleTemplateArg(const NamedDecl *P, const TemplateArgument &A);
John McCall4f4e4132011-05-04 01:45:19 +0000323 void mangleUnresolvedTemplateArgs(const TemplateArgument *args,
324 unsigned numArgs);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000325
Daniel Dunbar1b077112009-11-21 09:06:10 +0000326 void mangleTemplateParameter(unsigned Index);
John McCallfb44de92011-05-01 22:35:37 +0000327
328 void mangleFunctionParam(const ParmVarDecl *parm);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000329};
Peter Collingbourne14110472011-01-13 18:57:25 +0000330
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000331}
332
Anders Carlsson43f17402009-04-02 15:51:53 +0000333static bool isInCLinkageSpecification(const Decl *D) {
Douglas Gregor457e2812009-10-28 16:31:34 +0000334 D = D->getCanonicalDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000335 for (const DeclContext *DC = D->getDeclContext();
Anders Carlsson43f17402009-04-02 15:51:53 +0000336 !DC->isTranslationUnit(); DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000337 if (const LinkageSpecDecl *Linkage = dyn_cast<LinkageSpecDecl>(DC))
Anders Carlsson43f17402009-04-02 15:51:53 +0000338 return Linkage->getLanguage() == LinkageSpecDecl::lang_c;
339 }
Mike Stump1eb44332009-09-09 15:08:12 +0000340
Anders Carlsson43f17402009-04-02 15:51:53 +0000341 return false;
342}
343
Peter Collingbourne14110472011-01-13 18:57:25 +0000344bool ItaniumMangleContext::shouldMangleDeclName(const NamedDecl *D) {
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000345 // In C, functions with no attributes never need to be mangled. Fastpath them.
346 if (!getASTContext().getLangOptions().CPlusPlus && !D->hasAttrs())
347 return false;
348
349 // Any decl can be declared with __asm("foo") on it, and this takes precedence
350 // over all other naming in the .o file.
351 if (D->hasAttr<AsmLabelAttr>())
352 return true;
353
Mike Stump141c5af2009-09-02 00:25:38 +0000354 // Clang's "overloadable" attribute extension to C/C++ implies name mangling
Anders Carlssona1e16222009-11-07 07:15:03 +0000355 // (always) as does passing a C++ member function and a function
356 // whose name is not a simple identifier.
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000357 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
358 if (FD && (FD->hasAttr<OverloadableAttr>() || isa<CXXMethodDecl>(FD) ||
359 !FD->getDeclName().isIdentifier()))
360 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000361
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000362 // Otherwise, no mangling is done outside C++ mode.
363 if (!getASTContext().getLangOptions().CPlusPlus)
364 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Sean Hunt31455252010-01-24 03:04:27 +0000366 // Variables at global scope with non-internal linkage are not mangled
Eli Friedman7facf842009-12-02 20:32:49 +0000367 if (!FD) {
368 const DeclContext *DC = D->getDeclContext();
369 // Check for extern variable declared locally.
Fariborz Jahaniane81c5612010-06-30 18:57:21 +0000370 if (DC->isFunctionOrMethod() && D->hasLinkage())
Eli Friedman7facf842009-12-02 20:32:49 +0000371 while (!DC->isNamespace() && !DC->isTranslationUnit())
372 DC = DC->getParent();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000373 if (DC->isTranslationUnit() && D->getLinkage() != InternalLinkage)
Eli Friedman7facf842009-12-02 20:32:49 +0000374 return false;
375 }
376
Eli Friedmanc00cb642010-07-18 20:49:59 +0000377 // Class members are always mangled.
378 if (D->getDeclContext()->isRecord())
379 return true;
380
Eli Friedman7facf842009-12-02 20:32:49 +0000381 // C functions and "main" are not mangled.
382 if ((FD && FD->isMain()) || isInCLinkageSpecification(D))
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000383 return false;
384
Anders Carlsson43f17402009-04-02 15:51:53 +0000385 return true;
386}
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000387
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000388void CXXNameMangler::mangle(const NamedDecl *D, llvm::StringRef Prefix) {
Mike Stump141c5af2009-09-02 00:25:38 +0000389 // Any decl can be declared with __asm("foo") on it, and this takes precedence
390 // over all other naming in the .o file.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000391 if (const AsmLabelAttr *ALA = D->getAttr<AsmLabelAttr>()) {
Chris Lattnerca3f25c2009-03-21 08:24:40 +0000392 // If we have an asm name, then we use it as the mangling.
Rafael Espindola4e274e92011-02-15 22:23:51 +0000393
394 // Adding the prefix can cause problems when one file has a "foo" and
395 // another has a "\01foo". That is known to happen on ELF with the
396 // tricks normally used for producing aliases (PR9177). Fortunately the
397 // llvm mangler on ELF is a nop, so we can just avoid adding the \01
Peter Collingbourne69317432011-04-06 12:29:09 +0000398 // marker. We also avoid adding the marker if this is an alias for an
399 // LLVM intrinsic.
Rafael Espindola4e274e92011-02-15 22:23:51 +0000400 llvm::StringRef UserLabelPrefix =
401 getASTContext().Target.getUserLabelPrefix();
Peter Collingbourne69317432011-04-06 12:29:09 +0000402 if (!UserLabelPrefix.empty() && !ALA->getLabel().startswith("llvm."))
Rafael Espindola4e274e92011-02-15 22:23:51 +0000403 Out << '\01'; // LLVM IR Marker for __asm("foo")
404
Chris Lattnerca3f25c2009-03-21 08:24:40 +0000405 Out << ALA->getLabel();
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000406 return;
Chris Lattnerca3f25c2009-03-21 08:24:40 +0000407 }
Mike Stump1eb44332009-09-09 15:08:12 +0000408
Sean Hunt31455252010-01-24 03:04:27 +0000409 // <mangled-name> ::= _Z <encoding>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000410 // ::= <data name>
411 // ::= <special-name>
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000412 Out << Prefix;
413 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000414 mangleFunctionEncoding(FD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000415 else if (const VarDecl *VD = dyn_cast<VarDecl>(D))
416 mangleName(VD);
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000417 else
Rafael Espindolad9800722010-03-11 14:07:00 +0000418 mangleName(cast<FieldDecl>(D));
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000419}
420
421void CXXNameMangler::mangleFunctionEncoding(const FunctionDecl *FD) {
422 // <encoding> ::= <function name> <bare-function-type>
423 mangleName(FD);
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000425 // Don't mangle in the type if this isn't a decl we should typically mangle.
426 if (!Context.shouldMangleDeclName(FD))
427 return;
428
Mike Stump141c5af2009-09-02 00:25:38 +0000429 // Whether the mangling of a function type includes the return type depends on
430 // the context and the nature of the function. The rules for deciding whether
431 // the return type is included are:
Mike Stump1eb44332009-09-09 15:08:12 +0000432 //
Douglas Gregor1fd2dd12009-06-29 22:39:32 +0000433 // 1. Template functions (names or types) have return types encoded, with
434 // the exceptions listed below.
Mike Stump1eb44332009-09-09 15:08:12 +0000435 // 2. Function types not appearing as part of a function name mangling,
Douglas Gregor1fd2dd12009-06-29 22:39:32 +0000436 // e.g. parameters, pointer types, etc., have return type encoded, with the
437 // exceptions listed below.
438 // 3. Non-template function names do not have return types encoded.
439 //
Mike Stump141c5af2009-09-02 00:25:38 +0000440 // The exceptions mentioned in (1) and (2) above, for which the return type is
441 // never included, are
Douglas Gregor1fd2dd12009-06-29 22:39:32 +0000442 // 1. Constructors.
443 // 2. Destructors.
444 // 3. Conversion operator functions, e.g. operator int.
445 bool MangleReturnType = false;
Anders Carlsson9234b7f2009-09-17 03:46:43 +0000446 if (FunctionTemplateDecl *PrimaryTemplate = FD->getPrimaryTemplate()) {
447 if (!(isa<CXXConstructorDecl>(FD) || isa<CXXDestructorDecl>(FD) ||
448 isa<CXXConversionDecl>(FD)))
449 MangleReturnType = true;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000450
Anders Carlsson9234b7f2009-09-17 03:46:43 +0000451 // Mangle the type of the primary template.
452 FD = PrimaryTemplate->getTemplatedDecl();
453 }
454
John McCall54e14c42009-10-22 22:37:11 +0000455 // Do the canonicalization out here because parameter types can
456 // undergo additional canonicalization (e.g. array decay).
John McCallf4c73712011-01-19 06:33:43 +0000457 const FunctionType *FT
458 = cast<FunctionType>(Context.getASTContext()
John McCall54e14c42009-10-22 22:37:11 +0000459 .getCanonicalType(FD->getType()));
460
461 mangleBareFunctionType(FT, MangleReturnType);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000462}
463
Anders Carlsson47846d22009-12-04 06:23:23 +0000464static const DeclContext *IgnoreLinkageSpecDecls(const DeclContext *DC) {
465 while (isa<LinkageSpecDecl>(DC)) {
Anders Carlsson47846d22009-12-04 06:23:23 +0000466 DC = DC->getParent();
467 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000468
Anders Carlsson47846d22009-12-04 06:23:23 +0000469 return DC;
470}
471
Anders Carlssonc820f902010-06-02 15:58:27 +0000472/// isStd - Return whether a given namespace is the 'std' namespace.
473static bool isStd(const NamespaceDecl *NS) {
474 if (!IgnoreLinkageSpecDecls(NS->getParent())->isTranslationUnit())
475 return false;
476
477 const IdentifierInfo *II = NS->getOriginalNamespace()->getIdentifier();
478 return II && II->isStr("std");
479}
480
Anders Carlsson47846d22009-12-04 06:23:23 +0000481// isStdNamespace - Return whether a given decl context is a toplevel 'std'
482// namespace.
Daniel Dunbar1308af92009-11-21 09:11:45 +0000483static bool isStdNamespace(const DeclContext *DC) {
Anders Carlsson47846d22009-12-04 06:23:23 +0000484 if (!DC->isNamespace())
485 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000486
Anders Carlsson47846d22009-12-04 06:23:23 +0000487 return isStd(cast<NamespaceDecl>(DC));
Daniel Dunbar1308af92009-11-21 09:11:45 +0000488}
489
Anders Carlssonbb36ba42009-09-26 03:24:57 +0000490static const TemplateDecl *
491isTemplate(const NamedDecl *ND, const TemplateArgumentList *&TemplateArgs) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000492 // Check if we have a function template.
493 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)){
Anders Carlssonbb36ba42009-09-26 03:24:57 +0000494 if (const TemplateDecl *TD = FD->getPrimaryTemplate()) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000495 TemplateArgs = FD->getTemplateSpecializationArgs();
Anders Carlssonbb36ba42009-09-26 03:24:57 +0000496 return TD;
Anders Carlsson2744a062009-09-18 19:00:18 +0000497 }
498 }
499
Anders Carlssoneafc6dc2009-09-18 19:44:50 +0000500 // Check if we have a class template.
501 if (const ClassTemplateSpecializationDecl *Spec =
502 dyn_cast<ClassTemplateSpecializationDecl>(ND)) {
503 TemplateArgs = &Spec->getTemplateArgs();
Anders Carlssonbb36ba42009-09-26 03:24:57 +0000504 return Spec->getSpecializedTemplate();
Anders Carlssoneafc6dc2009-09-18 19:44:50 +0000505 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000506
Anders Carlsson2744a062009-09-18 19:00:18 +0000507 return 0;
508}
509
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000510void CXXNameMangler::mangleName(const NamedDecl *ND) {
511 // <name> ::= <nested-name>
512 // ::= <unscoped-name>
513 // ::= <unscoped-template-name> <template-args>
Anders Carlsson201ce742009-09-17 03:17:01 +0000514 // ::= <local-name>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000515 //
Anders Carlssond58d6f72009-09-17 16:12:20 +0000516 const DeclContext *DC = ND->getDeclContext();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000517
Eli Friedman7facf842009-12-02 20:32:49 +0000518 // If this is an extern variable declared locally, the relevant DeclContext
519 // is that of the containing namespace, or the translation unit.
520 if (isa<FunctionDecl>(DC) && ND->hasLinkage())
521 while (!DC->isNamespace() && !DC->isTranslationUnit())
522 DC = DC->getParent();
John McCall82b7d7b2010-10-18 21:28:44 +0000523 else if (GetLocalClassDecl(ND)) {
524 mangleLocalName(ND);
525 return;
526 }
Eli Friedman7facf842009-12-02 20:32:49 +0000527
Anders Carlsson5cc58c62009-09-22 17:23:30 +0000528 while (isa<LinkageSpecDecl>(DC))
Anders Carlssond58d6f72009-09-17 16:12:20 +0000529 DC = DC->getParent();
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000530
Anders Carlssond58d6f72009-09-17 16:12:20 +0000531 if (DC->isTranslationUnit() || isStdNamespace(DC)) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000532 // Check if we have a template.
533 const TemplateArgumentList *TemplateArgs = 0;
Anders Carlsson0fa6df42009-09-26 19:45:45 +0000534 if (const TemplateDecl *TD = isTemplate(ND, TemplateArgs)) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000535 mangleUnscopedTemplateName(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000536 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
537 mangleTemplateArgs(*TemplateParameters, *TemplateArgs);
Anders Carlsson2744a062009-09-18 19:00:18 +0000538 return;
Anders Carlsson7482e242009-09-18 04:29:09 +0000539 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000540
Anders Carlsson7482e242009-09-18 04:29:09 +0000541 mangleUnscopedName(ND);
542 return;
543 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000544
Anders Carlsson7b06f6c2009-12-10 03:14:39 +0000545 if (isa<FunctionDecl>(DC) || isa<ObjCMethodDecl>(DC)) {
Anders Carlsson7482e242009-09-18 04:29:09 +0000546 mangleLocalName(ND);
547 return;
548 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000549
Eli Friedman7facf842009-12-02 20:32:49 +0000550 mangleNestedName(ND, DC);
Anders Carlsson7482e242009-09-18 04:29:09 +0000551}
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000552void CXXNameMangler::mangleName(const TemplateDecl *TD,
Anders Carlsson7624f212009-09-18 02:42:01 +0000553 const TemplateArgument *TemplateArgs,
554 unsigned NumTemplateArgs) {
Anders Carlsson47846d22009-12-04 06:23:23 +0000555 const DeclContext *DC = IgnoreLinkageSpecDecls(TD->getDeclContext());
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000556
Anders Carlsson7624f212009-09-18 02:42:01 +0000557 if (DC->isTranslationUnit() || isStdNamespace(DC)) {
Anders Carlsson0fa6df42009-09-26 19:45:45 +0000558 mangleUnscopedTemplateName(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000559 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
560 mangleTemplateArgs(*TemplateParameters, TemplateArgs, NumTemplateArgs);
Anders Carlsson7624f212009-09-18 02:42:01 +0000561 } else {
562 mangleNestedName(TD, TemplateArgs, NumTemplateArgs);
563 }
564}
565
Anders Carlsson201ce742009-09-17 03:17:01 +0000566void CXXNameMangler::mangleUnscopedName(const NamedDecl *ND) {
567 // <unscoped-name> ::= <unqualified-name>
568 // ::= St <unqualified-name> # ::std::
569 if (isStdNamespace(ND->getDeclContext()))
570 Out << "St";
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000571
Anders Carlsson201ce742009-09-17 03:17:01 +0000572 mangleUnqualifiedName(ND);
573}
574
Anders Carlsson0fa6df42009-09-26 19:45:45 +0000575void CXXNameMangler::mangleUnscopedTemplateName(const TemplateDecl *ND) {
Anders Carlsson201ce742009-09-17 03:17:01 +0000576 // <unscoped-template-name> ::= <unscoped-name>
577 // ::= <substitution>
Anders Carlsson7624f212009-09-18 02:42:01 +0000578 if (mangleSubstitution(ND))
Anders Carlsson03c9d532009-09-17 04:02:31 +0000579 return;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000580
Douglas Gregor32fb4e12010-02-05 20:45:00 +0000581 // <template-template-param> ::= <template-param>
582 if (const TemplateTemplateParmDecl *TTP
583 = dyn_cast<TemplateTemplateParmDecl>(ND)) {
584 mangleTemplateParameter(TTP->getIndex());
585 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000586 }
Douglas Gregor32fb4e12010-02-05 20:45:00 +0000587
Anders Carlsson1668f202009-09-26 20:13:56 +0000588 mangleUnscopedName(ND->getTemplatedDecl());
Anders Carlsson7624f212009-09-18 02:42:01 +0000589 addSubstitution(ND);
Anders Carlsson201ce742009-09-17 03:17:01 +0000590}
591
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000592void CXXNameMangler::mangleUnscopedTemplateName(TemplateName Template) {
593 // <unscoped-template-name> ::= <unscoped-name>
594 // ::= <substitution>
595 if (TemplateDecl *TD = Template.getAsTemplateDecl())
596 return mangleUnscopedTemplateName(TD);
Sean Huntc3021132010-05-05 15:23:54 +0000597
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000598 if (mangleSubstitution(Template))
599 return;
600
601 // FIXME: How to cope with operators here?
602 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
603 assert(Dependent && "Not a dependent template name?");
604 if (!Dependent->isIdentifier()) {
605 // FIXME: We can't possibly know the arity of the operator here!
606 Diagnostic &Diags = Context.getDiags();
607 unsigned DiagID = Diags.getCustomDiagID(Diagnostic::Error,
608 "cannot mangle dependent operator name");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000609 Diags.Report(DiagID);
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000610 return;
611 }
Sean Huntc3021132010-05-05 15:23:54 +0000612
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000613 mangleSourceName(Dependent->getIdentifier());
614 addSubstitution(Template);
615}
616
John McCall1b600522011-04-24 03:07:16 +0000617void CXXNameMangler::mangleFloat(const llvm::APFloat &f) {
618 // ABI:
619 // Floating-point literals are encoded using a fixed-length
620 // lowercase hexadecimal string corresponding to the internal
621 // representation (IEEE on Itanium), high-order bytes first,
622 // without leading zeroes. For example: "Lf bf800000 E" is -1.0f
623 // on Itanium.
624 // APInt::toString uses uppercase hexadecimal, and it's not really
625 // worth embellishing that interface for this use case, so we just
626 // do a second pass to lowercase things.
627 typedef llvm::SmallString<20> buffer_t;
628 buffer_t buffer;
629 f.bitcastToAPInt().toString(buffer, 16, false);
630
631 for (buffer_t::iterator i = buffer.begin(), e = buffer.end(); i != e; ++i)
632 if (isupper(*i)) *i = tolower(*i);
633
634 Out.write(buffer.data(), buffer.size());
John McCall0512e482010-07-14 04:20:34 +0000635}
636
637void CXXNameMangler::mangleNumber(const llvm::APSInt &Value) {
638 if (Value.isSigned() && Value.isNegative()) {
639 Out << 'n';
640 Value.abs().print(Out, true);
641 } else
642 Value.print(Out, Value.isSigned());
643}
644
Anders Carlssona94822e2009-11-26 02:32:05 +0000645void CXXNameMangler::mangleNumber(int64_t Number) {
646 // <number> ::= [n] <non-negative decimal integer>
647 if (Number < 0) {
648 Out << 'n';
649 Number = -Number;
650 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000651
Anders Carlssona94822e2009-11-26 02:32:05 +0000652 Out << Number;
653}
654
Anders Carlsson19879c92010-03-23 17:17:29 +0000655void CXXNameMangler::mangleCallOffset(int64_t NonVirtual, int64_t Virtual) {
Mike Stump141c5af2009-09-02 00:25:38 +0000656 // <call-offset> ::= h <nv-offset> _
657 // ::= v <v-offset> _
658 // <nv-offset> ::= <offset number> # non-virtual base override
Anders Carlssona94822e2009-11-26 02:32:05 +0000659 // <v-offset> ::= <offset number> _ <virtual offset number>
Mike Stump141c5af2009-09-02 00:25:38 +0000660 // # virtual base override, with vcall offset
Anders Carlsson19879c92010-03-23 17:17:29 +0000661 if (!Virtual) {
Anders Carlssona94822e2009-11-26 02:32:05 +0000662 Out << 'h';
Anders Carlsson19879c92010-03-23 17:17:29 +0000663 mangleNumber(NonVirtual);
Anders Carlssona94822e2009-11-26 02:32:05 +0000664 Out << '_';
665 return;
Mike Stump141c5af2009-09-02 00:25:38 +0000666 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000667
Anders Carlssona94822e2009-11-26 02:32:05 +0000668 Out << 'v';
Anders Carlsson19879c92010-03-23 17:17:29 +0000669 mangleNumber(NonVirtual);
Anders Carlssona94822e2009-11-26 02:32:05 +0000670 Out << '_';
Anders Carlsson19879c92010-03-23 17:17:29 +0000671 mangleNumber(Virtual);
Anders Carlssona94822e2009-11-26 02:32:05 +0000672 Out << '_';
Mike Stump9124bcc2009-09-02 00:56:18 +0000673}
674
John McCall4f4e4132011-05-04 01:45:19 +0000675void CXXNameMangler::manglePrefix(QualType type) {
John McCalla0ce15c2011-04-24 08:23:24 +0000676 if (const TemplateSpecializationType *TST =
677 type->getAs<TemplateSpecializationType>()) {
678 if (!mangleSubstitution(QualType(TST, 0))) {
679 mangleTemplatePrefix(TST->getTemplateName());
Sean Huntc3021132010-05-05 15:23:54 +0000680
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000681 // FIXME: GCC does not appear to mangle the template arguments when
682 // the template in question is a dependent template name. Should we
683 // emulate that badness?
John McCalla0ce15c2011-04-24 08:23:24 +0000684 mangleTemplateArgs(TST->getTemplateName(), TST->getArgs(),
685 TST->getNumArgs());
686 addSubstitution(QualType(TST, 0));
Rafael Espindola9b35b252010-03-17 04:28:11 +0000687 }
John McCalla0ce15c2011-04-24 08:23:24 +0000688 } else if (const DependentTemplateSpecializationType *DTST
689 = type->getAs<DependentTemplateSpecializationType>()) {
690 TemplateName Template
691 = getASTContext().getDependentTemplateName(DTST->getQualifier(),
692 DTST->getIdentifier());
693 mangleTemplatePrefix(Template);
694
695 // FIXME: GCC does not appear to mangle the template arguments when
696 // the template in question is a dependent template name. Should we
697 // emulate that badness?
698 mangleTemplateArgs(Template, DTST->getArgs(), DTST->getNumArgs());
699 } else {
700 // We use the QualType mangle type variant here because it handles
701 // substitutions.
702 mangleType(type);
John McCall1dd73832010-02-04 01:42:13 +0000703 }
704}
705
John McCalla0ce15c2011-04-24 08:23:24 +0000706/// Mangle everything prior to the base-unresolved-name in an unresolved-name.
707///
708/// \param firstQualifierLookup - the entity found by unqualified lookup
709/// for the first name in the qualifier, if this is for a member expression
710/// \param recursive - true if this is being called recursively,
711/// i.e. if there is more prefix "to the right".
712void CXXNameMangler::mangleUnresolvedPrefix(NestedNameSpecifier *qualifier,
713 NamedDecl *firstQualifierLookup,
714 bool recursive) {
John McCall1dd73832010-02-04 01:42:13 +0000715
John McCalla0ce15c2011-04-24 08:23:24 +0000716 // x, ::x
717 // <unresolved-name> ::= [gs] <base-unresolved-name>
718
719 // T::x / decltype(p)::x
720 // <unresolved-name> ::= sr <unresolved-type> <base-unresolved-name>
721
722 // T::N::x /decltype(p)::N::x
723 // <unresolved-name> ::= srN <unresolved-type> <unresolved-qualifier-level>+ E
724 // <base-unresolved-name>
725
726 // A::x, N::y, A<T>::z; "gs" means leading "::"
727 // <unresolved-name> ::= [gs] sr <unresolved-qualifier-level>+ E
728 // <base-unresolved-name>
729
730 switch (qualifier->getKind()) {
731 case NestedNameSpecifier::Global:
732 Out << "gs";
733
734 // We want an 'sr' unless this is the entire NNS.
735 if (recursive)
736 Out << "sr";
737
738 // We never want an 'E' here.
739 return;
740
741 case NestedNameSpecifier::Namespace:
742 if (qualifier->getPrefix())
743 mangleUnresolvedPrefix(qualifier->getPrefix(), firstQualifierLookup,
744 /*recursive*/ true);
745 else
746 Out << "sr";
747 mangleSourceName(qualifier->getAsNamespace()->getIdentifier());
748 break;
749 case NestedNameSpecifier::NamespaceAlias:
750 if (qualifier->getPrefix())
751 mangleUnresolvedPrefix(qualifier->getPrefix(), firstQualifierLookup,
752 /*recursive*/ true);
753 else
754 Out << "sr";
755 mangleSourceName(qualifier->getAsNamespaceAlias()->getIdentifier());
756 break;
757
758 case NestedNameSpecifier::TypeSpec:
759 case NestedNameSpecifier::TypeSpecWithTemplate: {
John McCall4f4e4132011-05-04 01:45:19 +0000760 const Type *type = qualifier->getAsType();
John McCalla0ce15c2011-04-24 08:23:24 +0000761
John McCall4f4e4132011-05-04 01:45:19 +0000762 // We only want to use an unresolved-type encoding if this is one of:
763 // - a decltype
764 // - a template type parameter
765 // - a template template parameter with arguments
766 // In all of these cases, we should have no prefix.
767 if (qualifier->getPrefix()) {
768 mangleUnresolvedPrefix(qualifier->getPrefix(), firstQualifierLookup,
769 /*recursive*/ true);
770 } else {
771 // Otherwise, all the cases want this.
772 Out << "sr";
John McCall4f4e4132011-05-04 01:45:19 +0000773 }
774
John McCall4f4e4132011-05-04 01:45:19 +0000775 // Only certain other types are valid as prefixes; enumerate them.
John McCalld3d49bb2011-06-28 16:49:23 +0000776 switch (type->getTypeClass()) {
777 case Type::Builtin:
778 case Type::Complex:
779 case Type::Pointer:
780 case Type::BlockPointer:
781 case Type::LValueReference:
782 case Type::RValueReference:
783 case Type::MemberPointer:
784 case Type::ConstantArray:
785 case Type::IncompleteArray:
786 case Type::VariableArray:
787 case Type::DependentSizedArray:
788 case Type::DependentSizedExtVector:
789 case Type::Vector:
790 case Type::ExtVector:
791 case Type::FunctionProto:
792 case Type::FunctionNoProto:
793 case Type::Enum:
794 case Type::Paren:
795 case Type::Elaborated:
796 case Type::Attributed:
797 case Type::Auto:
798 case Type::PackExpansion:
John McCalld3d49bb2011-06-28 16:49:23 +0000799 case Type::ObjCObject:
800 case Type::ObjCInterface:
801 case Type::ObjCObjectPointer:
802 llvm_unreachable("type is illegal as a nested name specifier");
803
John McCall68a51a72011-07-01 00:04:39 +0000804 case Type::SubstTemplateTypeParmPack:
805 // FIXME: not clear how to mangle this!
806 // template <class T...> class A {
807 // template <class U...> void foo(decltype(T::foo(U())) x...);
808 // };
809 Out << "_SUBSTPACK_";
810 break;
811
John McCalld3d49bb2011-06-28 16:49:23 +0000812 // <unresolved-type> ::= <template-param>
813 // ::= <decltype>
814 // ::= <template-template-param> <template-args>
815 // (this last is not official yet)
816 case Type::TypeOfExpr:
817 case Type::TypeOf:
818 case Type::Decltype:
819 case Type::TemplateTypeParm:
820 case Type::UnaryTransform:
821 unresolvedType:
822 assert(!qualifier->getPrefix());
823
824 // We only get here recursively if we're followed by identifiers.
825 if (recursive) Out << 'N';
826
827 // This seems to do everything we want.
828 mangleType(QualType(type, 0));
829
830 // We never want to print 'E' directly after an unresolved-type,
831 // so we return directly.
832 return;
833
834 // Substituted template type parameters should only come up with
835 // enclosing templates.
836 // <unresolved-type> ::= <existing-substitution> [ <template-args> ]
837 case Type::SubstTemplateTypeParm: {
838 if (recursive) Out << 'N';
John McCall68a51a72011-07-01 00:04:39 +0000839 mangleExistingSubstitution(QualType(type, 0));
John McCalld3d49bb2011-06-28 16:49:23 +0000840 return;
841 }
842
843 case Type::Typedef:
844 mangleSourceName(cast<TypedefType>(type)->getDecl()->getIdentifier());
845 break;
846
847 case Type::UnresolvedUsing:
848 mangleSourceName(cast<UnresolvedUsingType>(type)->getDecl()
849 ->getIdentifier());
850 break;
851
852 case Type::Record:
853 mangleSourceName(cast<RecordType>(type)->getDecl()->getIdentifier());
854 break;
855
856 case Type::TemplateSpecialization: {
857 const TemplateSpecializationType *tst
858 = cast<TemplateSpecializationType>(type);
John McCall68a51a72011-07-01 00:04:39 +0000859 TemplateName name = tst->getTemplateName();
860 switch (name.getKind()) {
861 case TemplateName::Template:
862 case TemplateName::QualifiedTemplate: {
863 TemplateDecl *temp = name.getAsTemplateDecl();
John McCalld3d49bb2011-06-28 16:49:23 +0000864
John McCall68a51a72011-07-01 00:04:39 +0000865 // If the base is a template template parameter, this is an
866 // unresolved type.
867 assert(temp && "no template for template specialization type");
868 if (isa<TemplateTemplateParmDecl>(temp)) goto unresolvedType;
John McCalld3d49bb2011-06-28 16:49:23 +0000869
John McCall68a51a72011-07-01 00:04:39 +0000870 mangleSourceName(temp->getIdentifier());
871 break;
872 }
873
874 case TemplateName::OverloadedTemplate:
875 case TemplateName::DependentTemplate:
876 llvm_unreachable("invalid base for a template specialization type");
877
878 case TemplateName::SubstTemplateTemplateParm: {
879 SubstTemplateTemplateParmStorage *subst
880 = name.getAsSubstTemplateTemplateParm();
881 mangleExistingSubstitution(subst->getReplacement());
882 break;
883 }
884
885 case TemplateName::SubstTemplateTemplateParmPack: {
886 // FIXME: not clear how to mangle this!
887 // template <template <class U> class T...> class A {
888 // template <class U...> void foo(decltype(T<U>::foo) x...);
889 // };
890 Out << "_SUBSTPACK_";
891 break;
892 }
893 }
894
John McCall4f4e4132011-05-04 01:45:19 +0000895 mangleUnresolvedTemplateArgs(tst->getArgs(), tst->getNumArgs());
John McCalld3d49bb2011-06-28 16:49:23 +0000896 break;
897 }
898
899 case Type::InjectedClassName:
900 mangleSourceName(cast<InjectedClassNameType>(type)->getDecl()
901 ->getIdentifier());
902 break;
903
904 case Type::DependentName:
905 mangleSourceName(cast<DependentNameType>(type)->getIdentifier());
906 break;
907
908 case Type::DependentTemplateSpecialization: {
909 const DependentTemplateSpecializationType *tst
910 = cast<DependentTemplateSpecializationType>(type);
John McCall4f4e4132011-05-04 01:45:19 +0000911 mangleSourceName(tst->getIdentifier());
912 mangleUnresolvedTemplateArgs(tst->getArgs(), tst->getNumArgs());
John McCalld3d49bb2011-06-28 16:49:23 +0000913 break;
914 }
John McCall4f4e4132011-05-04 01:45:19 +0000915 }
916 break;
John McCalla0ce15c2011-04-24 08:23:24 +0000917 }
918
919 case NestedNameSpecifier::Identifier:
920 // Member expressions can have these without prefixes.
921 if (qualifier->getPrefix()) {
922 mangleUnresolvedPrefix(qualifier->getPrefix(), firstQualifierLookup,
923 /*recursive*/ true);
924 } else if (firstQualifierLookup) {
925
926 // Try to make a proper qualifier out of the lookup result, and
927 // then just recurse on that.
928 NestedNameSpecifier *newQualifier;
929 if (TypeDecl *typeDecl = dyn_cast<TypeDecl>(firstQualifierLookup)) {
930 QualType type = getASTContext().getTypeDeclType(typeDecl);
931
932 // Pretend we had a different nested name specifier.
933 newQualifier = NestedNameSpecifier::Create(getASTContext(),
934 /*prefix*/ 0,
935 /*template*/ false,
936 type.getTypePtr());
937 } else if (NamespaceDecl *nspace =
938 dyn_cast<NamespaceDecl>(firstQualifierLookup)) {
939 newQualifier = NestedNameSpecifier::Create(getASTContext(),
940 /*prefix*/ 0,
941 nspace);
942 } else if (NamespaceAliasDecl *alias =
943 dyn_cast<NamespaceAliasDecl>(firstQualifierLookup)) {
944 newQualifier = NestedNameSpecifier::Create(getASTContext(),
945 /*prefix*/ 0,
946 alias);
947 } else {
948 // No sensible mangling to do here.
949 newQualifier = 0;
950 }
951
952 if (newQualifier)
953 return mangleUnresolvedPrefix(newQualifier, /*lookup*/ 0, recursive);
954
955 } else {
956 Out << "sr";
957 }
958
959 mangleSourceName(qualifier->getAsIdentifier());
960 break;
961 }
962
963 // If this was the innermost part of the NNS, and we fell out to
964 // here, append an 'E'.
965 if (!recursive)
966 Out << 'E';
967}
968
969/// Mangle an unresolved-name, which is generally used for names which
970/// weren't resolved to specific entities.
971void CXXNameMangler::mangleUnresolvedName(NestedNameSpecifier *qualifier,
972 NamedDecl *firstQualifierLookup,
973 DeclarationName name,
974 unsigned knownArity) {
975 if (qualifier) mangleUnresolvedPrefix(qualifier, firstQualifierLookup);
976 mangleUnqualifiedName(0, name, knownArity);
John McCall1dd73832010-02-04 01:42:13 +0000977}
978
Anders Carlsson6f7e2f42010-06-08 14:49:03 +0000979static const FieldDecl *FindFirstNamedDataMember(const RecordDecl *RD) {
980 assert(RD->isAnonymousStructOrUnion() &&
981 "Expected anonymous struct or union!");
982
983 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
984 I != E; ++I) {
985 const FieldDecl *FD = *I;
986
987 if (FD->getIdentifier())
988 return FD;
989
990 if (const RecordType *RT = FD->getType()->getAs<RecordType>()) {
991 if (const FieldDecl *NamedDataMember =
992 FindFirstNamedDataMember(RT->getDecl()))
993 return NamedDataMember;
994 }
995 }
996
997 // We didn't find a named data member.
998 return 0;
999}
1000
John McCall1dd73832010-02-04 01:42:13 +00001001void CXXNameMangler::mangleUnqualifiedName(const NamedDecl *ND,
1002 DeclarationName Name,
1003 unsigned KnownArity) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001004 // <unqualified-name> ::= <operator-name>
Mike Stump1eb44332009-09-09 15:08:12 +00001005 // ::= <ctor-dtor-name>
1006 // ::= <source-name>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001007 switch (Name.getNameKind()) {
Anders Carlssonc4355b62009-10-07 01:45:02 +00001008 case DeclarationName::Identifier: {
Anders Carlssonc4355b62009-10-07 01:45:02 +00001009 if (const IdentifierInfo *II = Name.getAsIdentifierInfo()) {
Sean Hunt31455252010-01-24 03:04:27 +00001010 // We must avoid conflicts between internally- and externally-
John McCall74990f42011-03-22 06:34:45 +00001011 // linked variable and function declaration names in the same TU:
1012 // void test() { extern void foo(); }
1013 // static void foo();
1014 // This naming convention is the same as that followed by GCC,
1015 // though it shouldn't actually matter.
1016 if (ND && ND->getLinkage() == InternalLinkage &&
Sean Hunt31455252010-01-24 03:04:27 +00001017 ND->getDeclContext()->isFileContext())
1018 Out << 'L';
1019
Anders Carlssonc4355b62009-10-07 01:45:02 +00001020 mangleSourceName(II);
1021 break;
1022 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001023
John McCall1dd73832010-02-04 01:42:13 +00001024 // Otherwise, an anonymous entity. We must have a declaration.
1025 assert(ND && "mangling empty name without declaration");
1026
1027 if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
1028 if (NS->isAnonymousNamespace()) {
1029 // This is how gcc mangles these names.
1030 Out << "12_GLOBAL__N_1";
1031 break;
1032 }
1033 }
1034
Anders Carlsson6f7e2f42010-06-08 14:49:03 +00001035 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
1036 // We must have an anonymous union or struct declaration.
1037 const RecordDecl *RD =
1038 cast<RecordDecl>(VD->getType()->getAs<RecordType>()->getDecl());
1039
1040 // Itanium C++ ABI 5.1.2:
1041 //
1042 // For the purposes of mangling, the name of an anonymous union is
1043 // considered to be the name of the first named data member found by a
1044 // pre-order, depth-first, declaration-order walk of the data members of
1045 // the anonymous union. If there is no such data member (i.e., if all of
1046 // the data members in the union are unnamed), then there is no way for
1047 // a program to refer to the anonymous union, and there is therefore no
1048 // need to mangle its name.
1049 const FieldDecl *FD = FindFirstNamedDataMember(RD);
John McCall7121c8f2010-08-05 22:02:13 +00001050
1051 // It's actually possible for various reasons for us to get here
1052 // with an empty anonymous struct / union. Fortunately, it
1053 // doesn't really matter what name we generate.
1054 if (!FD) break;
Anders Carlsson6f7e2f42010-06-08 14:49:03 +00001055 assert(FD->getIdentifier() && "Data member name isn't an identifier!");
1056
1057 mangleSourceName(FD->getIdentifier());
1058 break;
1059 }
1060
Anders Carlssonc4355b62009-10-07 01:45:02 +00001061 // We must have an anonymous struct.
1062 const TagDecl *TD = cast<TagDecl>(ND);
Richard Smith162e1c12011-04-15 14:24:37 +00001063 if (const TypedefNameDecl *D = TD->getTypedefNameForAnonDecl()) {
Anders Carlssonc4355b62009-10-07 01:45:02 +00001064 assert(TD->getDeclContext() == D->getDeclContext() &&
1065 "Typedef should not be in another decl context!");
1066 assert(D->getDeclName().getAsIdentifierInfo() &&
1067 "Typedef was not named!");
1068 mangleSourceName(D->getDeclName().getAsIdentifierInfo());
1069 break;
1070 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001071
Anders Carlssonc4355b62009-10-07 01:45:02 +00001072 // Get a unique id for the anonymous struct.
1073 uint64_t AnonStructId = Context.getAnonymousStructId(TD);
1074
1075 // Mangle it as a source name in the form
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001076 // [n] $_<id>
Anders Carlssonc4355b62009-10-07 01:45:02 +00001077 // where n is the length of the string.
1078 llvm::SmallString<8> Str;
1079 Str += "$_";
1080 Str += llvm::utostr(AnonStructId);
1081
1082 Out << Str.size();
1083 Out << Str.str();
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001084 break;
Anders Carlssonc4355b62009-10-07 01:45:02 +00001085 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001086
1087 case DeclarationName::ObjCZeroArgSelector:
1088 case DeclarationName::ObjCOneArgSelector:
1089 case DeclarationName::ObjCMultiArgSelector:
1090 assert(false && "Can't mangle Objective-C selector names here!");
1091 break;
1092
1093 case DeclarationName::CXXConstructorName:
Anders Carlsson27ae5362009-04-17 01:58:57 +00001094 if (ND == Structor)
Mike Stump141c5af2009-09-02 00:25:38 +00001095 // If the named decl is the C++ constructor we're mangling, use the type
1096 // we were given.
Anders Carlsson27ae5362009-04-17 01:58:57 +00001097 mangleCXXCtorType(static_cast<CXXCtorType>(StructorType));
Anders Carlsson3ac86b52009-04-15 05:36:58 +00001098 else
1099 // Otherwise, use the complete constructor name. This is relevant if a
1100 // class with a constructor is declared within a constructor.
1101 mangleCXXCtorType(Ctor_Complete);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001102 break;
1103
1104 case DeclarationName::CXXDestructorName:
Anders Carlsson27ae5362009-04-17 01:58:57 +00001105 if (ND == Structor)
Mike Stump141c5af2009-09-02 00:25:38 +00001106 // If the named decl is the C++ destructor we're mangling, use the type we
1107 // were given.
Anders Carlsson27ae5362009-04-17 01:58:57 +00001108 mangleCXXDtorType(static_cast<CXXDtorType>(StructorType));
1109 else
1110 // Otherwise, use the complete destructor name. This is relevant if a
1111 // class with a destructor is declared within a destructor.
1112 mangleCXXDtorType(Dtor_Complete);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001113 break;
1114
1115 case DeclarationName::CXXConversionFunctionName:
Mike Stump1eb44332009-09-09 15:08:12 +00001116 // <operator-name> ::= cv <type> # (cast)
Douglas Gregor219cc612009-02-13 01:28:03 +00001117 Out << "cv";
Anders Carlssonb5404912009-10-07 01:06:45 +00001118 mangleType(Context.getASTContext().getCanonicalType(Name.getCXXNameType()));
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001119 break;
1120
Anders Carlsson8257d412009-12-22 06:36:32 +00001121 case DeclarationName::CXXOperatorName: {
John McCall1dd73832010-02-04 01:42:13 +00001122 unsigned Arity;
1123 if (ND) {
1124 Arity = cast<FunctionDecl>(ND)->getNumParams();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001125
John McCall1dd73832010-02-04 01:42:13 +00001126 // If we have a C++ member function, we need to include the 'this' pointer.
1127 // FIXME: This does not make sense for operators that are static, but their
1128 // names stay the same regardless of the arity (operator new for instance).
1129 if (isa<CXXMethodDecl>(ND))
1130 Arity++;
1131 } else
1132 Arity = KnownArity;
1133
Anders Carlsson8257d412009-12-22 06:36:32 +00001134 mangleOperatorName(Name.getCXXOverloadedOperator(), Arity);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001135 break;
Anders Carlsson8257d412009-12-22 06:36:32 +00001136 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001137
Sean Hunt3e518bd2009-11-29 07:34:05 +00001138 case DeclarationName::CXXLiteralOperatorName:
Sean Hunt5dd6b392009-12-04 21:11:13 +00001139 // FIXME: This mangling is not yet official.
Sean Hunt2421f662009-12-04 21:01:37 +00001140 Out << "li";
Sean Hunt3e518bd2009-11-29 07:34:05 +00001141 mangleSourceName(Name.getCXXLiteralIdentifier());
1142 break;
1143
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001144 case DeclarationName::CXXUsingDirective:
1145 assert(false && "Can't mangle a using directive name!");
Douglas Gregor219cc612009-02-13 01:28:03 +00001146 break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001147 }
1148}
1149
1150void CXXNameMangler::mangleSourceName(const IdentifierInfo *II) {
1151 // <source-name> ::= <positive length number> <identifier>
1152 // <number> ::= [n] <non-negative decimal integer>
1153 // <identifier> ::= <unqualified source code identifier>
1154 Out << II->getLength() << II->getName();
1155}
1156
Eli Friedman7facf842009-12-02 20:32:49 +00001157void CXXNameMangler::mangleNestedName(const NamedDecl *ND,
Fariborz Jahanian57058532010-03-03 19:41:08 +00001158 const DeclContext *DC,
1159 bool NoFunction) {
Douglas Gregor0a9a6d62011-01-26 17:36:28 +00001160 // <nested-name>
1161 // ::= N [<CV-qualifiers>] [<ref-qualifier>] <prefix> <unqualified-name> E
1162 // ::= N [<CV-qualifiers>] [<ref-qualifier>] <template-prefix>
1163 // <template-args> E
Anders Carlssond99edc42009-09-26 03:55:37 +00001164
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001165 Out << 'N';
Douglas Gregor0a9a6d62011-01-26 17:36:28 +00001166 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(ND)) {
John McCall0953e762009-09-24 19:53:00 +00001167 mangleQualifiers(Qualifiers::fromCVRMask(Method->getTypeQualifiers()));
Douglas Gregor0a9a6d62011-01-26 17:36:28 +00001168 mangleRefQualifier(Method->getRefQualifier());
1169 }
1170
Anders Carlsson2744a062009-09-18 19:00:18 +00001171 // Check if we have a template.
1172 const TemplateArgumentList *TemplateArgs = 0;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001173 if (const TemplateDecl *TD = isTemplate(ND, TemplateArgs)) {
Anders Carlsson2744a062009-09-18 19:00:18 +00001174 mangleTemplatePrefix(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +00001175 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
1176 mangleTemplateArgs(*TemplateParameters, *TemplateArgs);
Fariborz Jahanian57058532010-03-03 19:41:08 +00001177 }
1178 else {
1179 manglePrefix(DC, NoFunction);
Anders Carlsson7482e242009-09-18 04:29:09 +00001180 mangleUnqualifiedName(ND);
1181 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001182
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001183 Out << 'E';
1184}
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001185void CXXNameMangler::mangleNestedName(const TemplateDecl *TD,
Anders Carlsson7624f212009-09-18 02:42:01 +00001186 const TemplateArgument *TemplateArgs,
1187 unsigned NumTemplateArgs) {
Anders Carlssone45117b2009-09-27 19:53:49 +00001188 // <nested-name> ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
1189
Anders Carlsson7624f212009-09-18 02:42:01 +00001190 Out << 'N';
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001191
Anders Carlssone45117b2009-09-27 19:53:49 +00001192 mangleTemplatePrefix(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +00001193 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
1194 mangleTemplateArgs(*TemplateParameters, TemplateArgs, NumTemplateArgs);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001195
Anders Carlsson7624f212009-09-18 02:42:01 +00001196 Out << 'E';
1197}
1198
Anders Carlsson1b42c792009-04-02 16:24:45 +00001199void CXXNameMangler::mangleLocalName(const NamedDecl *ND) {
1200 // <local-name> := Z <function encoding> E <entity name> [<discriminator>]
1201 // := Z <function encoding> E s [<discriminator>]
Mike Stump1eb44332009-09-09 15:08:12 +00001202 // <discriminator> := _ <non-negative number>
Fariborz Jahanian57058532010-03-03 19:41:08 +00001203 const DeclContext *DC = ND->getDeclContext();
Fariborz Jahanian8805fe82011-06-09 19:25:01 +00001204 if (isa<ObjCMethodDecl>(DC) && isa<FunctionDecl>(ND)) {
1205 // Don't add objc method name mangling to locally declared function
1206 mangleUnqualifiedName(ND);
1207 return;
1208 }
1209
Anders Carlsson1b42c792009-04-02 16:24:45 +00001210 Out << 'Z';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001211
Charles Davis685b1d92010-05-26 18:25:27 +00001212 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(DC)) {
1213 mangleObjCMethodName(MD);
John McCall82b7d7b2010-10-18 21:28:44 +00001214 } else if (const CXXRecordDecl *RD = GetLocalClassDecl(ND)) {
1215 mangleFunctionEncoding(cast<FunctionDecl>(RD->getDeclContext()));
Fariborz Jahanian57058532010-03-03 19:41:08 +00001216 Out << 'E';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001217
John McCall82b7d7b2010-10-18 21:28:44 +00001218 // Mangle the name relative to the closest enclosing function.
1219 if (ND == RD) // equality ok because RD derived from ND above
1220 mangleUnqualifiedName(ND);
1221 else
1222 mangleNestedName(ND, DC, true /*NoFunction*/);
1223
Fariborz Jahanian4819ac42010-03-04 01:02:03 +00001224 unsigned disc;
John McCall82b7d7b2010-10-18 21:28:44 +00001225 if (Context.getNextDiscriminator(RD, disc)) {
Fariborz Jahanian4819ac42010-03-04 01:02:03 +00001226 if (disc < 10)
1227 Out << '_' << disc;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001228 else
Fariborz Jahanian4819ac42010-03-04 01:02:03 +00001229 Out << "__" << disc << '_';
1230 }
Fariborz Jahanian57058532010-03-03 19:41:08 +00001231
1232 return;
1233 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001234 else
Fariborz Jahanian57058532010-03-03 19:41:08 +00001235 mangleFunctionEncoding(cast<FunctionDecl>(DC));
Anders Carlsson7b06f6c2009-12-10 03:14:39 +00001236
Anders Carlsson1b42c792009-04-02 16:24:45 +00001237 Out << 'E';
Eli Friedman6f9f25d2009-12-11 20:21:38 +00001238 mangleUnqualifiedName(ND);
Anders Carlsson1b42c792009-04-02 16:24:45 +00001239}
1240
John McCalla0ce15c2011-04-24 08:23:24 +00001241void CXXNameMangler::manglePrefix(NestedNameSpecifier *qualifier) {
1242 switch (qualifier->getKind()) {
1243 case NestedNameSpecifier::Global:
1244 // nothing
1245 return;
1246
1247 case NestedNameSpecifier::Namespace:
1248 mangleName(qualifier->getAsNamespace());
1249 return;
1250
1251 case NestedNameSpecifier::NamespaceAlias:
1252 mangleName(qualifier->getAsNamespaceAlias()->getNamespace());
1253 return;
1254
1255 case NestedNameSpecifier::TypeSpec:
1256 case NestedNameSpecifier::TypeSpecWithTemplate:
John McCall4f4e4132011-05-04 01:45:19 +00001257 manglePrefix(QualType(qualifier->getAsType(), 0));
John McCalla0ce15c2011-04-24 08:23:24 +00001258 return;
1259
1260 case NestedNameSpecifier::Identifier:
1261 // Member expressions can have these without prefixes, but that
1262 // should end up in mangleUnresolvedPrefix instead.
1263 assert(qualifier->getPrefix());
1264 manglePrefix(qualifier->getPrefix());
1265
1266 mangleSourceName(qualifier->getAsIdentifier());
1267 return;
1268 }
1269
1270 llvm_unreachable("unexpected nested name specifier");
1271}
1272
Fariborz Jahanian57058532010-03-03 19:41:08 +00001273void CXXNameMangler::manglePrefix(const DeclContext *DC, bool NoFunction) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001274 // <prefix> ::= <prefix> <unqualified-name>
1275 // ::= <template-prefix> <template-args>
1276 // ::= <template-param>
1277 // ::= # empty
1278 // ::= <substitution>
Anders Carlsson6862fc72009-09-17 04:16:28 +00001279
Anders Carlssonadd28822009-09-22 20:33:31 +00001280 while (isa<LinkageSpecDecl>(DC))
1281 DC = DC->getParent();
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001282
Anders Carlsson9263e912009-09-18 18:39:58 +00001283 if (DC->isTranslationUnit())
1284 return;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001285
Douglas Gregor35415f52010-05-25 17:04:15 +00001286 if (const BlockDecl *Block = dyn_cast<BlockDecl>(DC)) {
1287 manglePrefix(DC->getParent(), NoFunction);
1288 llvm::SmallString<64> Name;
Rafael Espindolac4850c22011-02-10 23:59:36 +00001289 llvm::raw_svector_ostream NameStream(Name);
1290 Context.mangleBlock(Block, NameStream);
1291 NameStream.flush();
Douglas Gregor35415f52010-05-25 17:04:15 +00001292 Out << Name.size() << Name;
1293 return;
1294 }
1295
Anders Carlsson6862fc72009-09-17 04:16:28 +00001296 if (mangleSubstitution(cast<NamedDecl>(DC)))
1297 return;
Anders Carlsson7482e242009-09-18 04:29:09 +00001298
Anders Carlsson2ee3fca2009-09-18 20:11:09 +00001299 // Check if we have a template.
1300 const TemplateArgumentList *TemplateArgs = 0;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001301 if (const TemplateDecl *TD = isTemplate(cast<NamedDecl>(DC), TemplateArgs)) {
Anders Carlsson2ee3fca2009-09-18 20:11:09 +00001302 mangleTemplatePrefix(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +00001303 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
1304 mangleTemplateArgs(*TemplateParameters, *TemplateArgs);
Fariborz Jahanian57058532010-03-03 19:41:08 +00001305 }
Douglas Gregor35415f52010-05-25 17:04:15 +00001306 else if(NoFunction && (isa<FunctionDecl>(DC) || isa<ObjCMethodDecl>(DC)))
Fariborz Jahanian57058532010-03-03 19:41:08 +00001307 return;
Douglas Gregor35415f52010-05-25 17:04:15 +00001308 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC))
1309 mangleObjCMethodName(Method);
Fariborz Jahanian57058532010-03-03 19:41:08 +00001310 else {
1311 manglePrefix(DC->getParent(), NoFunction);
Anders Carlsson2ee3fca2009-09-18 20:11:09 +00001312 mangleUnqualifiedName(cast<NamedDecl>(DC));
1313 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001314
Anders Carlsson6862fc72009-09-17 04:16:28 +00001315 addSubstitution(cast<NamedDecl>(DC));
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001316}
1317
Douglas Gregor20f0cc72010-04-23 03:10:43 +00001318void CXXNameMangler::mangleTemplatePrefix(TemplateName Template) {
1319 // <template-prefix> ::= <prefix> <template unqualified-name>
1320 // ::= <template-param>
1321 // ::= <substitution>
1322 if (TemplateDecl *TD = Template.getAsTemplateDecl())
1323 return mangleTemplatePrefix(TD);
1324
1325 if (QualifiedTemplateName *Qualified = Template.getAsQualifiedTemplateName())
John McCalla0ce15c2011-04-24 08:23:24 +00001326 manglePrefix(Qualified->getQualifier());
Sean Huntc3021132010-05-05 15:23:54 +00001327
Douglas Gregor20f0cc72010-04-23 03:10:43 +00001328 if (OverloadedTemplateStorage *Overloaded
1329 = Template.getAsOverloadedTemplate()) {
Sean Huntc3021132010-05-05 15:23:54 +00001330 mangleUnqualifiedName(0, (*Overloaded->begin())->getDeclName(),
Douglas Gregor20f0cc72010-04-23 03:10:43 +00001331 UnknownArity);
1332 return;
1333 }
Sean Huntc3021132010-05-05 15:23:54 +00001334
Douglas Gregor20f0cc72010-04-23 03:10:43 +00001335 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
1336 assert(Dependent && "Unknown template name kind?");
John McCalla0ce15c2011-04-24 08:23:24 +00001337 manglePrefix(Dependent->getQualifier());
Douglas Gregor1e9268e2010-04-28 05:58:56 +00001338 mangleUnscopedTemplateName(Template);
Douglas Gregor20f0cc72010-04-23 03:10:43 +00001339}
1340
Anders Carlsson0fa6df42009-09-26 19:45:45 +00001341void CXXNameMangler::mangleTemplatePrefix(const TemplateDecl *ND) {
Anders Carlsson7482e242009-09-18 04:29:09 +00001342 // <template-prefix> ::= <prefix> <template unqualified-name>
1343 // ::= <template-param>
1344 // ::= <substitution>
Douglas Gregor32fb4e12010-02-05 20:45:00 +00001345 // <template-template-param> ::= <template-param>
1346 // <substitution>
Anders Carlsson7482e242009-09-18 04:29:09 +00001347
Anders Carlssonaeb85372009-09-26 22:18:22 +00001348 if (mangleSubstitution(ND))
1349 return;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001350
Douglas Gregor32fb4e12010-02-05 20:45:00 +00001351 // <template-template-param> ::= <template-param>
1352 if (const TemplateTemplateParmDecl *TTP
1353 = dyn_cast<TemplateTemplateParmDecl>(ND)) {
1354 mangleTemplateParameter(TTP->getIndex());
1355 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001356 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001357
Anders Carlssonaa73ab12009-09-18 18:47:07 +00001358 manglePrefix(ND->getDeclContext());
Anders Carlsson1668f202009-09-26 20:13:56 +00001359 mangleUnqualifiedName(ND->getTemplatedDecl());
Anders Carlssonaeb85372009-09-26 22:18:22 +00001360 addSubstitution(ND);
Anders Carlsson7482e242009-09-18 04:29:09 +00001361}
1362
John McCallb6f532e2010-07-14 06:43:17 +00001363/// Mangles a template name under the production <type>. Required for
1364/// template template arguments.
1365/// <type> ::= <class-enum-type>
1366/// ::= <template-param>
1367/// ::= <substitution>
1368void CXXNameMangler::mangleType(TemplateName TN) {
1369 if (mangleSubstitution(TN))
1370 return;
1371
1372 TemplateDecl *TD = 0;
1373
1374 switch (TN.getKind()) {
1375 case TemplateName::QualifiedTemplate:
1376 TD = TN.getAsQualifiedTemplateName()->getTemplateDecl();
1377 goto HaveDecl;
1378
1379 case TemplateName::Template:
1380 TD = TN.getAsTemplateDecl();
1381 goto HaveDecl;
1382
1383 HaveDecl:
1384 if (isa<TemplateTemplateParmDecl>(TD))
1385 mangleTemplateParameter(cast<TemplateTemplateParmDecl>(TD)->getIndex());
1386 else
1387 mangleName(TD);
1388 break;
1389
1390 case TemplateName::OverloadedTemplate:
1391 llvm_unreachable("can't mangle an overloaded template name as a <type>");
1392 break;
1393
1394 case TemplateName::DependentTemplate: {
1395 const DependentTemplateName *Dependent = TN.getAsDependentTemplateName();
1396 assert(Dependent->isIdentifier());
1397
1398 // <class-enum-type> ::= <name>
1399 // <name> ::= <nested-name>
John McCalla0ce15c2011-04-24 08:23:24 +00001400 mangleUnresolvedPrefix(Dependent->getQualifier(), 0);
John McCallb6f532e2010-07-14 06:43:17 +00001401 mangleSourceName(Dependent->getIdentifier());
1402 break;
1403 }
1404
John McCallb44e0cf2011-06-30 21:59:02 +00001405 case TemplateName::SubstTemplateTemplateParm: {
1406 // Substituted template parameters are mangled as the substituted
1407 // template. This will check for the substitution twice, which is
1408 // fine, but we have to return early so that we don't try to *add*
1409 // the substitution twice.
1410 SubstTemplateTemplateParmStorage *subst
1411 = TN.getAsSubstTemplateTemplateParm();
1412 mangleType(subst->getReplacement());
1413 return;
1414 }
John McCall14606042011-06-30 08:33:18 +00001415
Douglas Gregor1aee05d2011-01-15 06:45:20 +00001416 case TemplateName::SubstTemplateTemplateParmPack: {
John McCall68a51a72011-07-01 00:04:39 +00001417 // FIXME: not clear how to mangle this!
1418 // template <template <class> class T...> class A {
1419 // template <template <class> class U...> void foo(B<T,U> x...);
1420 // };
1421 Out << "_SUBSTPACK_";
Douglas Gregor1aee05d2011-01-15 06:45:20 +00001422 break;
1423 }
John McCallb6f532e2010-07-14 06:43:17 +00001424 }
1425
1426 addSubstitution(TN);
1427}
1428
Mike Stump1eb44332009-09-09 15:08:12 +00001429void
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001430CXXNameMangler::mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity) {
1431 switch (OO) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001432 // <operator-name> ::= nw # new
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001433 case OO_New: Out << "nw"; break;
1434 // ::= na # new[]
1435 case OO_Array_New: Out << "na"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001436 // ::= dl # delete
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001437 case OO_Delete: Out << "dl"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001438 // ::= da # delete[]
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001439 case OO_Array_Delete: Out << "da"; break;
1440 // ::= ps # + (unary)
John McCall5e1e89b2010-08-18 19:18:59 +00001441 // ::= pl # + (binary or unknown)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001442 case OO_Plus:
Anders Carlsson8257d412009-12-22 06:36:32 +00001443 Out << (Arity == 1? "ps" : "pl"); break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001444 // ::= ng # - (unary)
John McCall5e1e89b2010-08-18 19:18:59 +00001445 // ::= mi # - (binary or unknown)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001446 case OO_Minus:
Anders Carlsson8257d412009-12-22 06:36:32 +00001447 Out << (Arity == 1? "ng" : "mi"); break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001448 // ::= ad # & (unary)
John McCall5e1e89b2010-08-18 19:18:59 +00001449 // ::= an # & (binary or unknown)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001450 case OO_Amp:
Anders Carlsson8257d412009-12-22 06:36:32 +00001451 Out << (Arity == 1? "ad" : "an"); break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001452 // ::= de # * (unary)
John McCall5e1e89b2010-08-18 19:18:59 +00001453 // ::= ml # * (binary or unknown)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001454 case OO_Star:
John McCall5e1e89b2010-08-18 19:18:59 +00001455 // Use binary when unknown.
Anders Carlsson8257d412009-12-22 06:36:32 +00001456 Out << (Arity == 1? "de" : "ml"); break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001457 // ::= co # ~
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001458 case OO_Tilde: Out << "co"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001459 // ::= dv # /
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001460 case OO_Slash: Out << "dv"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001461 // ::= rm # %
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001462 case OO_Percent: Out << "rm"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001463 // ::= or # |
1464 case OO_Pipe: Out << "or"; break;
1465 // ::= eo # ^
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001466 case OO_Caret: Out << "eo"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001467 // ::= aS # =
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001468 case OO_Equal: Out << "aS"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001469 // ::= pL # +=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001470 case OO_PlusEqual: Out << "pL"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001471 // ::= mI # -=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001472 case OO_MinusEqual: Out << "mI"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001473 // ::= mL # *=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001474 case OO_StarEqual: Out << "mL"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001475 // ::= dV # /=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001476 case OO_SlashEqual: Out << "dV"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001477 // ::= rM # %=
1478 case OO_PercentEqual: Out << "rM"; break;
1479 // ::= aN # &=
1480 case OO_AmpEqual: Out << "aN"; break;
1481 // ::= oR # |=
1482 case OO_PipeEqual: Out << "oR"; break;
1483 // ::= eO # ^=
1484 case OO_CaretEqual: Out << "eO"; break;
1485 // ::= ls # <<
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001486 case OO_LessLess: Out << "ls"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001487 // ::= rs # >>
1488 case OO_GreaterGreater: Out << "rs"; break;
1489 // ::= lS # <<=
1490 case OO_LessLessEqual: Out << "lS"; break;
1491 // ::= rS # >>=
1492 case OO_GreaterGreaterEqual: Out << "rS"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001493 // ::= eq # ==
1494 case OO_EqualEqual: Out << "eq"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001495 // ::= ne # !=
1496 case OO_ExclaimEqual: Out << "ne"; break;
1497 // ::= lt # <
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001498 case OO_Less: Out << "lt"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001499 // ::= gt # >
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001500 case OO_Greater: Out << "gt"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001501 // ::= le # <=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001502 case OO_LessEqual: Out << "le"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001503 // ::= ge # >=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001504 case OO_GreaterEqual: Out << "ge"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001505 // ::= nt # !
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001506 case OO_Exclaim: Out << "nt"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001507 // ::= aa # &&
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001508 case OO_AmpAmp: Out << "aa"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001509 // ::= oo # ||
1510 case OO_PipePipe: Out << "oo"; break;
1511 // ::= pp # ++
1512 case OO_PlusPlus: Out << "pp"; break;
1513 // ::= mm # --
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001514 case OO_MinusMinus: Out << "mm"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001515 // ::= cm # ,
1516 case OO_Comma: Out << "cm"; break;
1517 // ::= pm # ->*
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001518 case OO_ArrowStar: Out << "pm"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001519 // ::= pt # ->
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001520 case OO_Arrow: Out << "pt"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001521 // ::= cl # ()
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001522 case OO_Call: Out << "cl"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001523 // ::= ix # []
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001524 case OO_Subscript: Out << "ix"; break;
Anders Carlssone170ba72009-12-14 01:45:37 +00001525
1526 // ::= qu # ?
1527 // The conditional operator can't be overloaded, but we still handle it when
1528 // mangling expressions.
1529 case OO_Conditional: Out << "qu"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001530
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001531 case OO_None:
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001532 case NUM_OVERLOADED_OPERATORS:
Mike Stump1eb44332009-09-09 15:08:12 +00001533 assert(false && "Not an overloaded operator");
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001534 break;
1535 }
1536}
1537
John McCall0953e762009-09-24 19:53:00 +00001538void CXXNameMangler::mangleQualifiers(Qualifiers Quals) {
Mike Stump1eb44332009-09-09 15:08:12 +00001539 // <CV-qualifiers> ::= [r] [V] [K] # restrict (C99), volatile, const
John McCall0953e762009-09-24 19:53:00 +00001540 if (Quals.hasRestrict())
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001541 Out << 'r';
John McCall0953e762009-09-24 19:53:00 +00001542 if (Quals.hasVolatile())
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001543 Out << 'V';
John McCall0953e762009-09-24 19:53:00 +00001544 if (Quals.hasConst())
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001545 Out << 'K';
John McCall0953e762009-09-24 19:53:00 +00001546
Douglas Gregor56079f72010-06-14 23:15:08 +00001547 if (Quals.hasAddressSpace()) {
1548 // Extension:
1549 //
1550 // <type> ::= U <address-space-number>
1551 //
1552 // where <address-space-number> is a source name consisting of 'AS'
1553 // followed by the address space <number>.
1554 llvm::SmallString<64> ASString;
1555 ASString = "AS" + llvm::utostr_32(Quals.getAddressSpace());
1556 Out << 'U' << ASString.size() << ASString;
1557 }
1558
John McCallf85e1932011-06-15 23:02:42 +00001559 llvm::StringRef LifetimeName;
1560 switch (Quals.getObjCLifetime()) {
1561 // Objective-C ARC Extension:
1562 //
1563 // <type> ::= U "__strong"
1564 // <type> ::= U "__weak"
1565 // <type> ::= U "__autoreleasing"
John McCallf85e1932011-06-15 23:02:42 +00001566 case Qualifiers::OCL_None:
1567 break;
1568
1569 case Qualifiers::OCL_Weak:
1570 LifetimeName = "__weak";
1571 break;
1572
1573 case Qualifiers::OCL_Strong:
1574 LifetimeName = "__strong";
1575 break;
1576
1577 case Qualifiers::OCL_Autoreleasing:
1578 LifetimeName = "__autoreleasing";
1579 break;
1580
1581 case Qualifiers::OCL_ExplicitNone:
Douglas Gregorc22d6992011-06-17 22:26:49 +00001582 // The __unsafe_unretained qualifier is *not* mangled, so that
1583 // __unsafe_unretained types in ARC produce the same manglings as the
1584 // equivalent (but, naturally, unqualified) types in non-ARC, providing
1585 // better ABI compatibility.
1586 //
1587 // It's safe to do this because unqualified 'id' won't show up
1588 // in any type signatures that need to be mangled.
John McCallf85e1932011-06-15 23:02:42 +00001589 break;
1590 }
1591 if (!LifetimeName.empty())
1592 Out << 'U' << LifetimeName.size() << LifetimeName;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001593}
1594
Douglas Gregor0a9a6d62011-01-26 17:36:28 +00001595void CXXNameMangler::mangleRefQualifier(RefQualifierKind RefQualifier) {
1596 // <ref-qualifier> ::= R # lvalue reference
1597 // ::= O # rvalue-reference
1598 // Proposal to Itanium C++ ABI list on 1/26/11
1599 switch (RefQualifier) {
1600 case RQ_None:
1601 break;
1602
1603 case RQ_LValue:
1604 Out << 'R';
1605 break;
1606
1607 case RQ_RValue:
1608 Out << 'O';
1609 break;
1610 }
1611}
1612
Anders Carlsson7b06f6c2009-12-10 03:14:39 +00001613void CXXNameMangler::mangleObjCMethodName(const ObjCMethodDecl *MD) {
Rafael Espindolaf0be9792011-02-11 02:52:17 +00001614 Context.mangleObjCMethodName(MD, Out);
Anders Carlsson7b06f6c2009-12-10 03:14:39 +00001615}
1616
John McCallb47f7482011-01-26 20:05:40 +00001617void CXXNameMangler::mangleType(QualType nonCanon) {
Anders Carlsson4843e582009-03-10 17:07:44 +00001618 // Only operate on the canonical type!
John McCallb47f7482011-01-26 20:05:40 +00001619 QualType canon = nonCanon.getCanonicalType();
Anders Carlsson4843e582009-03-10 17:07:44 +00001620
John McCallb47f7482011-01-26 20:05:40 +00001621 SplitQualType split = canon.split();
1622 Qualifiers quals = split.second;
1623 const Type *ty = split.first;
1624
1625 bool isSubstitutable = quals || !isa<BuiltinType>(ty);
1626 if (isSubstitutable && mangleSubstitution(canon))
Anders Carlsson76967372009-09-17 00:43:46 +00001627 return;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001628
John McCallb47f7482011-01-26 20:05:40 +00001629 // If we're mangling a qualified array type, push the qualifiers to
1630 // the element type.
1631 if (quals && isa<ArrayType>(ty)) {
1632 ty = Context.getASTContext().getAsArrayType(canon);
1633 quals = Qualifiers();
1634
1635 // Note that we don't update canon: we want to add the
1636 // substitution at the canonical type.
1637 }
1638
1639 if (quals) {
1640 mangleQualifiers(quals);
John McCall0953e762009-09-24 19:53:00 +00001641 // Recurse: even if the qualified type isn't yet substitutable,
1642 // the unqualified type might be.
John McCallb47f7482011-01-26 20:05:40 +00001643 mangleType(QualType(ty, 0));
Anders Carlsson76967372009-09-17 00:43:46 +00001644 } else {
John McCallb47f7482011-01-26 20:05:40 +00001645 switch (ty->getTypeClass()) {
John McCallefe6aee2009-09-05 07:56:18 +00001646#define ABSTRACT_TYPE(CLASS, PARENT)
1647#define NON_CANONICAL_TYPE(CLASS, PARENT) \
Anders Carlsson76967372009-09-17 00:43:46 +00001648 case Type::CLASS: \
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00001649 llvm_unreachable("can't mangle non-canonical type " #CLASS "Type"); \
Anders Carlsson76967372009-09-17 00:43:46 +00001650 return;
John McCallefe6aee2009-09-05 07:56:18 +00001651#define TYPE(CLASS, PARENT) \
Anders Carlsson76967372009-09-17 00:43:46 +00001652 case Type::CLASS: \
John McCallb47f7482011-01-26 20:05:40 +00001653 mangleType(static_cast<const CLASS##Type*>(ty)); \
Anders Carlsson76967372009-09-17 00:43:46 +00001654 break;
John McCallefe6aee2009-09-05 07:56:18 +00001655#include "clang/AST/TypeNodes.def"
Anders Carlsson76967372009-09-17 00:43:46 +00001656 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001657 }
Anders Carlsson76967372009-09-17 00:43:46 +00001658
1659 // Add the substitution.
John McCallb47f7482011-01-26 20:05:40 +00001660 if (isSubstitutable)
1661 addSubstitution(canon);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001662}
1663
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00001664void CXXNameMangler::mangleNameOrStandardSubstitution(const NamedDecl *ND) {
1665 if (!mangleStandardSubstitution(ND))
1666 mangleName(ND);
1667}
1668
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001669void CXXNameMangler::mangleType(const BuiltinType *T) {
John McCallefe6aee2009-09-05 07:56:18 +00001670 // <type> ::= <builtin-type>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001671 // <builtin-type> ::= v # void
1672 // ::= w # wchar_t
1673 // ::= b # bool
1674 // ::= c # char
1675 // ::= a # signed char
1676 // ::= h # unsigned char
1677 // ::= s # short
1678 // ::= t # unsigned short
1679 // ::= i # int
1680 // ::= j # unsigned int
1681 // ::= l # long
1682 // ::= m # unsigned long
1683 // ::= x # long long, __int64
1684 // ::= y # unsigned long long, __int64
1685 // ::= n # __int128
1686 // UNSUPPORTED: ::= o # unsigned __int128
1687 // ::= f # float
1688 // ::= d # double
1689 // ::= e # long double, __float80
1690 // UNSUPPORTED: ::= g # __float128
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001691 // UNSUPPORTED: ::= Dd # IEEE 754r decimal floating point (64 bits)
1692 // UNSUPPORTED: ::= De # IEEE 754r decimal floating point (128 bits)
1693 // UNSUPPORTED: ::= Df # IEEE 754r decimal floating point (32 bits)
1694 // UNSUPPORTED: ::= Dh # IEEE 754r half-precision floating point (16 bits)
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001695 // ::= Di # char32_t
1696 // ::= Ds # char16_t
Anders Carlssone2923682010-11-04 04:31:32 +00001697 // ::= Dn # std::nullptr_t (i.e., decltype(nullptr))
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001698 // ::= u <source-name> # vendor extended type
1699 switch (T->getKind()) {
1700 case BuiltinType::Void: Out << 'v'; break;
1701 case BuiltinType::Bool: Out << 'b'; break;
1702 case BuiltinType::Char_U: case BuiltinType::Char_S: Out << 'c'; break;
1703 case BuiltinType::UChar: Out << 'h'; break;
1704 case BuiltinType::UShort: Out << 't'; break;
1705 case BuiltinType::UInt: Out << 'j'; break;
1706 case BuiltinType::ULong: Out << 'm'; break;
1707 case BuiltinType::ULongLong: Out << 'y'; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00001708 case BuiltinType::UInt128: Out << 'o'; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001709 case BuiltinType::SChar: Out << 'a'; break;
Chris Lattner3f59c972010-12-25 23:25:43 +00001710 case BuiltinType::WChar_S:
1711 case BuiltinType::WChar_U: Out << 'w'; break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001712 case BuiltinType::Char16: Out << "Ds"; break;
1713 case BuiltinType::Char32: Out << "Di"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001714 case BuiltinType::Short: Out << 's'; break;
1715 case BuiltinType::Int: Out << 'i'; break;
1716 case BuiltinType::Long: Out << 'l'; break;
1717 case BuiltinType::LongLong: Out << 'x'; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00001718 case BuiltinType::Int128: Out << 'n'; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001719 case BuiltinType::Float: Out << 'f'; break;
1720 case BuiltinType::Double: Out << 'd'; break;
1721 case BuiltinType::LongDouble: Out << 'e'; break;
Anders Carlssone2923682010-11-04 04:31:32 +00001722 case BuiltinType::NullPtr: Out << "Dn"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001723
1724 case BuiltinType::Overload:
1725 case BuiltinType::Dependent:
John McCall864c0412011-04-26 20:42:42 +00001726 case BuiltinType::BoundMember:
John McCall1de4d4e2011-04-07 08:22:57 +00001727 case BuiltinType::UnknownAny:
John McCallfb44de92011-05-01 22:35:37 +00001728 llvm_unreachable("mangling a placeholder type");
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001729 break;
Steve Naroff9533a7f2009-07-22 17:14:51 +00001730 case BuiltinType::ObjCId: Out << "11objc_object"; break;
1731 case BuiltinType::ObjCClass: Out << "10objc_class"; break;
Fariborz Jahanian13dcd002009-11-21 19:53:08 +00001732 case BuiltinType::ObjCSel: Out << "13objc_selector"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001733 }
1734}
1735
John McCallefe6aee2009-09-05 07:56:18 +00001736// <type> ::= <function-type>
1737// <function-type> ::= F [Y] <bare-function-type> E
1738void CXXNameMangler::mangleType(const FunctionProtoType *T) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001739 Out << 'F';
Mike Stumpf5408fe2009-05-16 07:57:57 +00001740 // FIXME: We don't have enough information in the AST to produce the 'Y'
1741 // encoding for extern "C" function types.
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001742 mangleBareFunctionType(T, /*MangleReturnType=*/true);
1743 Out << 'E';
1744}
John McCallefe6aee2009-09-05 07:56:18 +00001745void CXXNameMangler::mangleType(const FunctionNoProtoType *T) {
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00001746 llvm_unreachable("Can't mangle K&R function prototypes");
John McCallefe6aee2009-09-05 07:56:18 +00001747}
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001748void CXXNameMangler::mangleBareFunctionType(const FunctionType *T,
1749 bool MangleReturnType) {
John McCallefe6aee2009-09-05 07:56:18 +00001750 // We should never be mangling something without a prototype.
1751 const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
1752
John McCallfb44de92011-05-01 22:35:37 +00001753 // Record that we're in a function type. See mangleFunctionParam
1754 // for details on what we're trying to achieve here.
1755 FunctionTypeDepthState saved = FunctionTypeDepth.push();
1756
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001757 // <bare-function-type> ::= <signature type>+
John McCallfb44de92011-05-01 22:35:37 +00001758 if (MangleReturnType) {
1759 FunctionTypeDepth.enterResultType();
John McCallefe6aee2009-09-05 07:56:18 +00001760 mangleType(Proto->getResultType());
John McCallfb44de92011-05-01 22:35:37 +00001761 FunctionTypeDepth.leaveResultType();
1762 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001763
Anders Carlsson93296682010-06-02 04:40:13 +00001764 if (Proto->getNumArgs() == 0 && !Proto->isVariadic()) {
Eli Friedmana7e68452010-08-22 01:00:03 +00001765 // <builtin-type> ::= v # void
Anders Carlssonc6c91bc2009-04-01 00:15:23 +00001766 Out << 'v';
John McCallfb44de92011-05-01 22:35:37 +00001767
1768 FunctionTypeDepth.pop(saved);
Anders Carlssonc6c91bc2009-04-01 00:15:23 +00001769 return;
1770 }
Mike Stump1eb44332009-09-09 15:08:12 +00001771
Douglas Gregor72564e72009-02-26 23:50:07 +00001772 for (FunctionProtoType::arg_type_iterator Arg = Proto->arg_type_begin(),
Mike Stump1eb44332009-09-09 15:08:12 +00001773 ArgEnd = Proto->arg_type_end();
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001774 Arg != ArgEnd; ++Arg)
1775 mangleType(*Arg);
Douglas Gregor219cc612009-02-13 01:28:03 +00001776
John McCallfb44de92011-05-01 22:35:37 +00001777 FunctionTypeDepth.pop(saved);
1778
Douglas Gregor219cc612009-02-13 01:28:03 +00001779 // <builtin-type> ::= z # ellipsis
1780 if (Proto->isVariadic())
1781 Out << 'z';
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001782}
1783
John McCallefe6aee2009-09-05 07:56:18 +00001784// <type> ::= <class-enum-type>
Mike Stump1eb44332009-09-09 15:08:12 +00001785// <class-enum-type> ::= <name>
John McCalled976492009-12-04 22:46:56 +00001786void CXXNameMangler::mangleType(const UnresolvedUsingType *T) {
1787 mangleName(T->getDecl());
1788}
1789
1790// <type> ::= <class-enum-type>
1791// <class-enum-type> ::= <name>
John McCallefe6aee2009-09-05 07:56:18 +00001792void CXXNameMangler::mangleType(const EnumType *T) {
1793 mangleType(static_cast<const TagType*>(T));
1794}
1795void CXXNameMangler::mangleType(const RecordType *T) {
1796 mangleType(static_cast<const TagType*>(T));
1797}
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001798void CXXNameMangler::mangleType(const TagType *T) {
Eli Friedmanecb7e932009-12-11 18:00:57 +00001799 mangleName(T->getDecl());
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001800}
1801
John McCallefe6aee2009-09-05 07:56:18 +00001802// <type> ::= <array-type>
1803// <array-type> ::= A <positive dimension number> _ <element type>
1804// ::= A [<dimension expression>] _ <element type>
1805void CXXNameMangler::mangleType(const ConstantArrayType *T) {
1806 Out << 'A' << T->getSize() << '_';
1807 mangleType(T->getElementType());
1808}
1809void CXXNameMangler::mangleType(const VariableArrayType *T) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001810 Out << 'A';
Fariborz Jahanian7281d1f2010-11-02 16:54:00 +00001811 // decayed vla types (size 0) will just be skipped.
1812 if (T->getSizeExpr())
1813 mangleExpression(T->getSizeExpr());
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001814 Out << '_';
1815 mangleType(T->getElementType());
1816}
John McCallefe6aee2009-09-05 07:56:18 +00001817void CXXNameMangler::mangleType(const DependentSizedArrayType *T) {
1818 Out << 'A';
1819 mangleExpression(T->getSizeExpr());
1820 Out << '_';
1821 mangleType(T->getElementType());
1822}
1823void CXXNameMangler::mangleType(const IncompleteArrayType *T) {
Nick Lewycky271b6652010-09-05 03:40:33 +00001824 Out << "A_";
John McCallefe6aee2009-09-05 07:56:18 +00001825 mangleType(T->getElementType());
1826}
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001827
John McCallefe6aee2009-09-05 07:56:18 +00001828// <type> ::= <pointer-to-member-type>
1829// <pointer-to-member-type> ::= M <class type> <member type>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001830void CXXNameMangler::mangleType(const MemberPointerType *T) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001831 Out << 'M';
1832 mangleType(QualType(T->getClass(), 0));
Anders Carlsson0e650012009-05-17 17:41:20 +00001833 QualType PointeeType = T->getPointeeType();
1834 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(PointeeType)) {
John McCall0953e762009-09-24 19:53:00 +00001835 mangleQualifiers(Qualifiers::fromCVRMask(FPT->getTypeQuals()));
Douglas Gregor0a9a6d62011-01-26 17:36:28 +00001836 mangleRefQualifier(FPT->getRefQualifier());
Anders Carlsson0e650012009-05-17 17:41:20 +00001837 mangleType(FPT);
Anders Carlsson9d85b722010-06-02 04:29:50 +00001838
1839 // Itanium C++ ABI 5.1.8:
1840 //
1841 // The type of a non-static member function is considered to be different,
1842 // for the purposes of substitution, from the type of a namespace-scope or
1843 // static member function whose type appears similar. The types of two
1844 // non-static member functions are considered to be different, for the
1845 // purposes of substitution, if the functions are members of different
1846 // classes. In other words, for the purposes of substitution, the class of
1847 // which the function is a member is considered part of the type of
1848 // function.
1849
1850 // We increment the SeqID here to emulate adding an entry to the
1851 // substitution table. We can't actually add it because we don't want this
1852 // particular function type to be substituted.
1853 ++SeqID;
Mike Stump1eb44332009-09-09 15:08:12 +00001854 } else
Anders Carlsson0e650012009-05-17 17:41:20 +00001855 mangleType(PointeeType);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001856}
1857
John McCallefe6aee2009-09-05 07:56:18 +00001858// <type> ::= <template-param>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001859void CXXNameMangler::mangleType(const TemplateTypeParmType *T) {
Anders Carlsson0ccdf8d2009-09-27 00:38:53 +00001860 mangleTemplateParameter(T->getIndex());
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001861}
1862
Douglas Gregorc3069d62011-01-14 02:55:32 +00001863// <type> ::= <template-param>
1864void CXXNameMangler::mangleType(const SubstTemplateTypeParmPackType *T) {
John McCall68a51a72011-07-01 00:04:39 +00001865 // FIXME: not clear how to mangle this!
1866 // template <class T...> class A {
1867 // template <class U...> void foo(T(*)(U) x...);
1868 // };
1869 Out << "_SUBSTPACK_";
Douglas Gregorc3069d62011-01-14 02:55:32 +00001870}
1871
John McCallefe6aee2009-09-05 07:56:18 +00001872// <type> ::= P <type> # pointer-to
1873void CXXNameMangler::mangleType(const PointerType *T) {
1874 Out << 'P';
1875 mangleType(T->getPointeeType());
1876}
1877void CXXNameMangler::mangleType(const ObjCObjectPointerType *T) {
1878 Out << 'P';
1879 mangleType(T->getPointeeType());
1880}
1881
1882// <type> ::= R <type> # reference-to
1883void CXXNameMangler::mangleType(const LValueReferenceType *T) {
1884 Out << 'R';
1885 mangleType(T->getPointeeType());
1886}
1887
1888// <type> ::= O <type> # rvalue reference-to (C++0x)
1889void CXXNameMangler::mangleType(const RValueReferenceType *T) {
1890 Out << 'O';
1891 mangleType(T->getPointeeType());
1892}
1893
1894// <type> ::= C <type> # complex pair (C 2000)
1895void CXXNameMangler::mangleType(const ComplexType *T) {
1896 Out << 'C';
1897 mangleType(T->getElementType());
1898}
1899
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001900// ARM's ABI for Neon vector types specifies that they should be mangled as
Bob Wilson57147a82010-11-16 00:32:18 +00001901// if they are structs (to match ARM's initial implementation). The
1902// vector type must be one of the special types predefined by ARM.
1903void CXXNameMangler::mangleNeonVectorType(const VectorType *T) {
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001904 QualType EltType = T->getElementType();
Bob Wilson57147a82010-11-16 00:32:18 +00001905 assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType");
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001906 const char *EltName = 0;
Bob Wilson491328c2010-11-12 17:24:46 +00001907 if (T->getVectorKind() == VectorType::NeonPolyVector) {
1908 switch (cast<BuiltinType>(EltType)->getKind()) {
Bob Wilson4cfaa5d2010-11-12 17:24:49 +00001909 case BuiltinType::SChar: EltName = "poly8_t"; break;
1910 case BuiltinType::Short: EltName = "poly16_t"; break;
Bob Wilson57147a82010-11-16 00:32:18 +00001911 default: llvm_unreachable("unexpected Neon polynomial vector element type");
Bob Wilson491328c2010-11-12 17:24:46 +00001912 }
1913 } else {
1914 switch (cast<BuiltinType>(EltType)->getKind()) {
Bob Wilson4cfaa5d2010-11-12 17:24:49 +00001915 case BuiltinType::SChar: EltName = "int8_t"; break;
1916 case BuiltinType::UChar: EltName = "uint8_t"; break;
1917 case BuiltinType::Short: EltName = "int16_t"; break;
1918 case BuiltinType::UShort: EltName = "uint16_t"; break;
1919 case BuiltinType::Int: EltName = "int32_t"; break;
1920 case BuiltinType::UInt: EltName = "uint32_t"; break;
1921 case BuiltinType::LongLong: EltName = "int64_t"; break;
1922 case BuiltinType::ULongLong: EltName = "uint64_t"; break;
1923 case BuiltinType::Float: EltName = "float32_t"; break;
Bob Wilson57147a82010-11-16 00:32:18 +00001924 default: llvm_unreachable("unexpected Neon vector element type");
Bob Wilson491328c2010-11-12 17:24:46 +00001925 }
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001926 }
1927 const char *BaseName = 0;
Bob Wilson4cfaa5d2010-11-12 17:24:49 +00001928 unsigned BitSize = (T->getNumElements() *
Bob Wilson3a723022010-11-16 00:32:12 +00001929 getASTContext().getTypeSize(EltType));
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001930 if (BitSize == 64)
1931 BaseName = "__simd64_";
Bob Wilson57147a82010-11-16 00:32:18 +00001932 else {
1933 assert(BitSize == 128 && "Neon vector type not 64 or 128 bits");
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001934 BaseName = "__simd128_";
Bob Wilson57147a82010-11-16 00:32:18 +00001935 }
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001936 Out << strlen(BaseName) + strlen(EltName);
1937 Out << BaseName << EltName;
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001938}
1939
John McCallefe6aee2009-09-05 07:56:18 +00001940// GNU extension: vector types
Chris Lattner788b0fd2010-06-23 06:00:24 +00001941// <type> ::= <vector-type>
1942// <vector-type> ::= Dv <positive dimension number> _
1943// <extended element type>
1944// ::= Dv [<dimension expression>] _ <element type>
1945// <extended element type> ::= <element type>
1946// ::= p # AltiVec vector pixel
John McCallefe6aee2009-09-05 07:56:18 +00001947void CXXNameMangler::mangleType(const VectorType *T) {
Bob Wilson491328c2010-11-12 17:24:46 +00001948 if ((T->getVectorKind() == VectorType::NeonVector ||
Bob Wilson57147a82010-11-16 00:32:18 +00001949 T->getVectorKind() == VectorType::NeonPolyVector)) {
1950 mangleNeonVectorType(T);
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001951 return;
Bob Wilson57147a82010-11-16 00:32:18 +00001952 }
Nick Lewycky0e5f0672010-03-26 07:18:04 +00001953 Out << "Dv" << T->getNumElements() << '_';
Bob Wilsone86d78c2010-11-10 21:56:12 +00001954 if (T->getVectorKind() == VectorType::AltiVecPixel)
Chris Lattner788b0fd2010-06-23 06:00:24 +00001955 Out << 'p';
Bob Wilsone86d78c2010-11-10 21:56:12 +00001956 else if (T->getVectorKind() == VectorType::AltiVecBool)
Chris Lattner788b0fd2010-06-23 06:00:24 +00001957 Out << 'b';
1958 else
1959 mangleType(T->getElementType());
John McCallefe6aee2009-09-05 07:56:18 +00001960}
1961void CXXNameMangler::mangleType(const ExtVectorType *T) {
1962 mangleType(static_cast<const VectorType*>(T));
1963}
1964void CXXNameMangler::mangleType(const DependentSizedExtVectorType *T) {
Nick Lewycky0e5f0672010-03-26 07:18:04 +00001965 Out << "Dv";
1966 mangleExpression(T->getSizeExpr());
1967 Out << '_';
John McCallefe6aee2009-09-05 07:56:18 +00001968 mangleType(T->getElementType());
1969}
1970
Douglas Gregor7536dd52010-12-20 02:24:11 +00001971void CXXNameMangler::mangleType(const PackExpansionType *T) {
Douglas Gregor4fc48662011-01-13 16:39:34 +00001972 // <type> ::= Dp <type> # pack expansion (C++0x)
Douglas Gregor255c2692011-01-13 17:44:36 +00001973 Out << "Dp";
Douglas Gregor7536dd52010-12-20 02:24:11 +00001974 mangleType(T->getPattern());
1975}
1976
Anders Carlssona40c5e42009-03-07 22:03:21 +00001977void CXXNameMangler::mangleType(const ObjCInterfaceType *T) {
1978 mangleSourceName(T->getDecl()->getIdentifier());
1979}
1980
John McCallc12c5bb2010-05-15 11:32:37 +00001981void CXXNameMangler::mangleType(const ObjCObjectType *T) {
John McCallc00c1f62010-05-15 17:06:29 +00001982 // We don't allow overloading by different protocol qualification,
1983 // so mangling them isn't necessary.
John McCallc12c5bb2010-05-15 11:32:37 +00001984 mangleType(T->getBaseType());
1985}
1986
John McCallefe6aee2009-09-05 07:56:18 +00001987void CXXNameMangler::mangleType(const BlockPointerType *T) {
Anders Carlssonf28c6872009-12-23 22:31:44 +00001988 Out << "U13block_pointer";
1989 mangleType(T->getPointeeType());
John McCallefe6aee2009-09-05 07:56:18 +00001990}
1991
John McCall31f17ec2010-04-27 00:57:59 +00001992void CXXNameMangler::mangleType(const InjectedClassNameType *T) {
1993 // Mangle injected class name types as if the user had written the
1994 // specialization out fully. It may not actually be possible to see
1995 // this mangling, though.
1996 mangleType(T->getInjectedSpecializationType());
1997}
1998
John McCallefe6aee2009-09-05 07:56:18 +00001999void CXXNameMangler::mangleType(const TemplateSpecializationType *T) {
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002000 if (TemplateDecl *TD = T->getTemplateName().getAsTemplateDecl()) {
2001 mangleName(TD, T->getArgs(), T->getNumArgs());
2002 } else {
2003 if (mangleSubstitution(QualType(T, 0)))
2004 return;
Sean Huntc3021132010-05-05 15:23:54 +00002005
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002006 mangleTemplatePrefix(T->getTemplateName());
Sean Huntc3021132010-05-05 15:23:54 +00002007
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002008 // FIXME: GCC does not appear to mangle the template arguments when
2009 // the template in question is a dependent template name. Should we
2010 // emulate that badness?
2011 mangleTemplateArgs(T->getTemplateName(), T->getArgs(), T->getNumArgs());
2012 addSubstitution(QualType(T, 0));
2013 }
John McCallefe6aee2009-09-05 07:56:18 +00002014}
2015
Douglas Gregor4714c122010-03-31 17:34:00 +00002016void CXXNameMangler::mangleType(const DependentNameType *T) {
Anders Carlssonae352482009-09-26 02:26:02 +00002017 // Typename types are always nested
2018 Out << 'N';
John McCalla0ce15c2011-04-24 08:23:24 +00002019 manglePrefix(T->getQualifier());
John McCall33500952010-06-11 00:33:02 +00002020 mangleSourceName(T->getIdentifier());
2021 Out << 'E';
2022}
John McCall6ab30e02010-06-09 07:26:17 +00002023
John McCall33500952010-06-11 00:33:02 +00002024void CXXNameMangler::mangleType(const DependentTemplateSpecializationType *T) {
Douglas Gregoraa2187d2011-02-28 00:04:36 +00002025 // Dependently-scoped template types are nested if they have a prefix.
John McCall33500952010-06-11 00:33:02 +00002026 Out << 'N';
2027
2028 // TODO: avoid making this TemplateName.
2029 TemplateName Prefix =
2030 getASTContext().getDependentTemplateName(T->getQualifier(),
2031 T->getIdentifier());
2032 mangleTemplatePrefix(Prefix);
2033
2034 // FIXME: GCC does not appear to mangle the template arguments when
2035 // the template in question is a dependent template name. Should we
2036 // emulate that badness?
2037 mangleTemplateArgs(Prefix, T->getArgs(), T->getNumArgs());
Anders Carlssonae352482009-09-26 02:26:02 +00002038 Out << 'E';
John McCallefe6aee2009-09-05 07:56:18 +00002039}
2040
John McCallad5e7382010-03-01 23:49:17 +00002041void CXXNameMangler::mangleType(const TypeOfType *T) {
2042 // FIXME: this is pretty unsatisfactory, but there isn't an obvious
2043 // "extension with parameters" mangling.
2044 Out << "u6typeof";
2045}
2046
2047void CXXNameMangler::mangleType(const TypeOfExprType *T) {
2048 // FIXME: this is pretty unsatisfactory, but there isn't an obvious
2049 // "extension with parameters" mangling.
2050 Out << "u6typeof";
2051}
2052
2053void CXXNameMangler::mangleType(const DecltypeType *T) {
2054 Expr *E = T->getUnderlyingExpr();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002055
John McCallad5e7382010-03-01 23:49:17 +00002056 // type ::= Dt <expression> E # decltype of an id-expression
2057 // # or class member access
2058 // ::= DT <expression> E # decltype of an expression
2059
2060 // This purports to be an exhaustive list of id-expressions and
2061 // class member accesses. Note that we do not ignore parentheses;
2062 // parentheses change the semantics of decltype for these
2063 // expressions (and cause the mangler to use the other form).
2064 if (isa<DeclRefExpr>(E) ||
2065 isa<MemberExpr>(E) ||
2066 isa<UnresolvedLookupExpr>(E) ||
2067 isa<DependentScopeDeclRefExpr>(E) ||
2068 isa<CXXDependentScopeMemberExpr>(E) ||
2069 isa<UnresolvedMemberExpr>(E))
2070 Out << "Dt";
2071 else
2072 Out << "DT";
2073 mangleExpression(E);
2074 Out << 'E';
2075}
2076
Sean Huntca63c202011-05-24 22:41:36 +00002077void CXXNameMangler::mangleType(const UnaryTransformType *T) {
2078 // If this is dependent, we need to record that. If not, we simply
2079 // mangle it as the underlying type since they are equivalent.
2080 if (T->isDependentType()) {
2081 Out << 'U';
2082
2083 switch (T->getUTTKind()) {
2084 case UnaryTransformType::EnumUnderlyingType:
2085 Out << "3eut";
2086 break;
2087 }
2088 }
2089
2090 mangleType(T->getUnderlyingType());
2091}
2092
Richard Smith34b41d92011-02-20 03:19:35 +00002093void CXXNameMangler::mangleType(const AutoType *T) {
2094 QualType D = T->getDeducedType();
Richard Smith967ecd32011-02-21 20:10:02 +00002095 // <builtin-type> ::= Da # dependent auto
2096 if (D.isNull())
2097 Out << "Da";
2098 else
2099 mangleType(D);
Richard Smith34b41d92011-02-20 03:19:35 +00002100}
2101
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002102void CXXNameMangler::mangleIntegerLiteral(QualType T,
Anders Carlssone170ba72009-12-14 01:45:37 +00002103 const llvm::APSInt &Value) {
2104 // <expr-primary> ::= L <type> <value number> E # integer literal
2105 Out << 'L';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002106
Anders Carlssone170ba72009-12-14 01:45:37 +00002107 mangleType(T);
2108 if (T->isBooleanType()) {
2109 // Boolean values are encoded as 0/1.
2110 Out << (Value.getBoolValue() ? '1' : '0');
2111 } else {
John McCall0512e482010-07-14 04:20:34 +00002112 mangleNumber(Value);
Anders Carlssone170ba72009-12-14 01:45:37 +00002113 }
2114 Out << 'E';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002115
Anders Carlssone170ba72009-12-14 01:45:37 +00002116}
2117
John McCall2f27bf82010-02-04 02:56:29 +00002118/// Mangles a member expression. Implicit accesses are not handled,
2119/// but that should be okay, because you shouldn't be able to
2120/// make an implicit access in a function template declaration.
John McCalla0ce15c2011-04-24 08:23:24 +00002121void CXXNameMangler::mangleMemberExpr(const Expr *base,
2122 bool isArrow,
2123 NestedNameSpecifier *qualifier,
2124 NamedDecl *firstQualifierLookup,
2125 DeclarationName member,
2126 unsigned arity) {
2127 // <expression> ::= dt <expression> <unresolved-name>
2128 // ::= pt <expression> <unresolved-name>
2129 Out << (isArrow ? "pt" : "dt");
2130 mangleExpression(base);
2131 mangleUnresolvedName(qualifier, firstQualifierLookup, member, arity);
John McCall2f27bf82010-02-04 02:56:29 +00002132}
2133
John McCall5a7e6f72011-04-28 02:52:03 +00002134/// Look at the callee of the given call expression and determine if
2135/// it's a parenthesized id-expression which would have triggered ADL
2136/// otherwise.
2137static bool isParenthesizedADLCallee(const CallExpr *call) {
2138 const Expr *callee = call->getCallee();
2139 const Expr *fn = callee->IgnoreParens();
2140
2141 // Must be parenthesized. IgnoreParens() skips __extension__ nodes,
2142 // too, but for those to appear in the callee, it would have to be
2143 // parenthesized.
2144 if (callee == fn) return false;
2145
2146 // Must be an unresolved lookup.
2147 const UnresolvedLookupExpr *lookup = dyn_cast<UnresolvedLookupExpr>(fn);
2148 if (!lookup) return false;
2149
2150 assert(!lookup->requiresADL());
2151
2152 // Must be an unqualified lookup.
2153 if (lookup->getQualifier()) return false;
2154
2155 // Must not have found a class member. Note that if one is a class
2156 // member, they're all class members.
2157 if (lookup->getNumDecls() > 0 &&
2158 (*lookup->decls_begin())->isCXXClassMember())
2159 return false;
2160
2161 // Otherwise, ADL would have been triggered.
2162 return true;
2163}
2164
John McCall5e1e89b2010-08-18 19:18:59 +00002165void CXXNameMangler::mangleExpression(const Expr *E, unsigned Arity) {
Anders Carlssond553f8c2009-09-21 01:21:10 +00002166 // <expression> ::= <unary operator-name> <expression>
John McCall09cc1412010-02-03 00:55:45 +00002167 // ::= <binary operator-name> <expression> <expression>
2168 // ::= <trinary operator-name> <expression> <expression> <expression>
Anders Carlssond553f8c2009-09-21 01:21:10 +00002169 // ::= cv <type> expression # conversion with one argument
2170 // ::= cv <type> _ <expression>* E # conversion with a different number of arguments
Eli Friedmana7e68452010-08-22 01:00:03 +00002171 // ::= st <type> # sizeof (a type)
Anders Carlssond553f8c2009-09-21 01:21:10 +00002172 // ::= at <type> # alignof (a type)
2173 // ::= <template-param>
2174 // ::= <function-param>
2175 // ::= sr <type> <unqualified-name> # dependent name
2176 // ::= sr <type> <unqualified-name> <template-args> # dependent template-id
Douglas Gregor63f62df2011-06-05 05:27:58 +00002177 // ::= ds <expression> <expression> # expr.*expr
Anders Carlssond553f8c2009-09-21 01:21:10 +00002178 // ::= sZ <template-param> # size of a parameter pack
Douglas Gregor4fc48662011-01-13 16:39:34 +00002179 // ::= sZ <function-param> # size of a function parameter pack
John McCall09cc1412010-02-03 00:55:45 +00002180 // ::= <expr-primary>
John McCall1dd73832010-02-04 01:42:13 +00002181 // <expr-primary> ::= L <type> <value number> E # integer literal
2182 // ::= L <type <value float> E # floating literal
2183 // ::= L <mangled-name> E # external name
Anders Carlssond553f8c2009-09-21 01:21:10 +00002184 switch (E->getStmtClass()) {
John McCall6ae1f352010-04-09 22:26:14 +00002185 case Expr::NoStmtClass:
John McCall63c00d72011-02-09 08:16:59 +00002186#define ABSTRACT_STMT(Type)
John McCall6ae1f352010-04-09 22:26:14 +00002187#define EXPR(Type, Base)
2188#define STMT(Type, Base) \
2189 case Expr::Type##Class:
Sean Hunt4bfe1962010-05-05 15:24:00 +00002190#include "clang/AST/StmtNodes.inc"
John McCall0512e482010-07-14 04:20:34 +00002191 // fallthrough
2192
2193 // These all can only appear in local or variable-initialization
2194 // contexts and so should never appear in a mangling.
2195 case Expr::AddrLabelExprClass:
2196 case Expr::BlockDeclRefExprClass:
2197 case Expr::CXXThisExprClass:
2198 case Expr::DesignatedInitExprClass:
2199 case Expr::ImplicitValueInitExprClass:
2200 case Expr::InitListExprClass:
2201 case Expr::ParenListExprClass:
2202 case Expr::CXXScalarValueInitExprClass:
John McCall09cc1412010-02-03 00:55:45 +00002203 llvm_unreachable("unexpected statement kind");
2204 break;
2205
John McCall0512e482010-07-14 04:20:34 +00002206 // FIXME: invent manglings for all these.
2207 case Expr::BlockExprClass:
2208 case Expr::CXXPseudoDestructorExprClass:
2209 case Expr::ChooseExprClass:
2210 case Expr::CompoundLiteralExprClass:
2211 case Expr::ExtVectorElementExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +00002212 case Expr::GenericSelectionExprClass:
John McCall0512e482010-07-14 04:20:34 +00002213 case Expr::ObjCEncodeExprClass:
John McCall0512e482010-07-14 04:20:34 +00002214 case Expr::ObjCIsaExprClass:
2215 case Expr::ObjCIvarRefExprClass:
2216 case Expr::ObjCMessageExprClass:
2217 case Expr::ObjCPropertyRefExprClass:
2218 case Expr::ObjCProtocolExprClass:
2219 case Expr::ObjCSelectorExprClass:
2220 case Expr::ObjCStringLiteralClass:
John McCallf85e1932011-06-15 23:02:42 +00002221 case Expr::ObjCIndirectCopyRestoreExprClass:
John McCall0512e482010-07-14 04:20:34 +00002222 case Expr::OffsetOfExprClass:
2223 case Expr::PredefinedExprClass:
2224 case Expr::ShuffleVectorExprClass:
2225 case Expr::StmtExprClass:
John McCall0512e482010-07-14 04:20:34 +00002226 case Expr::UnaryTypeTraitExprClass:
Francois Pichet6ad6f282010-12-07 00:08:36 +00002227 case Expr::BinaryTypeTraitExprClass:
John Wiegley21ff2e52011-04-28 00:16:57 +00002228 case Expr::ArrayTypeTraitExprClass:
John Wiegley55262202011-04-25 06:54:41 +00002229 case Expr::ExpressionTraitExprClass:
Francois Pichet9be88402010-09-08 23:47:05 +00002230 case Expr::VAArgExprClass:
Sebastian Redl2e156222010-09-10 20:55:43 +00002231 case Expr::CXXUuidofExprClass:
Peter Collingbournee08ce652011-02-09 21:07:24 +00002232 case Expr::CXXNoexceptExprClass:
Tanya Lattner61eee0c2011-06-04 00:47:47 +00002233 case Expr::CUDAKernelCallExprClass:
2234 case Expr::AsTypeExprClass:
2235 {
John McCall6ae1f352010-04-09 22:26:14 +00002236 // As bad as this diagnostic is, it's better than crashing.
2237 Diagnostic &Diags = Context.getDiags();
2238 unsigned DiagID = Diags.getCustomDiagID(Diagnostic::Error,
2239 "cannot yet mangle expression type %0");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00002240 Diags.Report(E->getExprLoc(), DiagID)
John McCall739bf092010-04-10 09:39:25 +00002241 << E->getStmtClassName() << E->getSourceRange();
John McCall6ae1f352010-04-09 22:26:14 +00002242 break;
2243 }
2244
John McCall56ca35d2011-02-17 10:25:35 +00002245 // Even gcc-4.5 doesn't mangle this.
2246 case Expr::BinaryConditionalOperatorClass: {
2247 Diagnostic &Diags = Context.getDiags();
2248 unsigned DiagID =
2249 Diags.getCustomDiagID(Diagnostic::Error,
2250 "?: operator with omitted middle operand cannot be mangled");
2251 Diags.Report(E->getExprLoc(), DiagID)
2252 << E->getStmtClassName() << E->getSourceRange();
2253 break;
2254 }
2255
2256 // These are used for internal purposes and cannot be meaningfully mangled.
John McCall7cd7d1a2010-11-15 23:31:06 +00002257 case Expr::OpaqueValueExprClass:
2258 llvm_unreachable("cannot mangle opaque value; mangling wrong thing?");
2259
John McCall0512e482010-07-14 04:20:34 +00002260 case Expr::CXXDefaultArgExprClass:
John McCall5e1e89b2010-08-18 19:18:59 +00002261 mangleExpression(cast<CXXDefaultArgExpr>(E)->getExpr(), Arity);
John McCall0512e482010-07-14 04:20:34 +00002262 break;
2263
2264 case Expr::CXXMemberCallExprClass: // fallthrough
John McCall1dd73832010-02-04 01:42:13 +00002265 case Expr::CallExprClass: {
2266 const CallExpr *CE = cast<CallExpr>(E);
John McCall5a7e6f72011-04-28 02:52:03 +00002267
2268 // <expression> ::= cp <simple-id> <expression>* E
2269 // We use this mangling only when the call would use ADL except
2270 // for being parenthesized. Per discussion with David
2271 // Vandervoorde, 2011.04.25.
2272 if (isParenthesizedADLCallee(CE)) {
2273 Out << "cp";
2274 // The callee here is a parenthesized UnresolvedLookupExpr with
2275 // no qualifier and should always get mangled as a <simple-id>
2276 // anyway.
2277
2278 // <expression> ::= cl <expression>* E
2279 } else {
2280 Out << "cl";
2281 }
2282
John McCall5e1e89b2010-08-18 19:18:59 +00002283 mangleExpression(CE->getCallee(), CE->getNumArgs());
John McCall1dd73832010-02-04 01:42:13 +00002284 for (unsigned I = 0, N = CE->getNumArgs(); I != N; ++I)
2285 mangleExpression(CE->getArg(I));
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002286 Out << 'E';
John McCall09cc1412010-02-03 00:55:45 +00002287 break;
John McCall1dd73832010-02-04 01:42:13 +00002288 }
John McCall09cc1412010-02-03 00:55:45 +00002289
John McCall0512e482010-07-14 04:20:34 +00002290 case Expr::CXXNewExprClass: {
2291 // Proposal from David Vandervoorde, 2010.06.30
2292 const CXXNewExpr *New = cast<CXXNewExpr>(E);
2293 if (New->isGlobalNew()) Out << "gs";
2294 Out << (New->isArray() ? "na" : "nw");
2295 for (CXXNewExpr::const_arg_iterator I = New->placement_arg_begin(),
2296 E = New->placement_arg_end(); I != E; ++I)
2297 mangleExpression(*I);
2298 Out << '_';
2299 mangleType(New->getAllocatedType());
2300 if (New->hasInitializer()) {
2301 Out << "pi";
2302 for (CXXNewExpr::const_arg_iterator I = New->constructor_arg_begin(),
2303 E = New->constructor_arg_end(); I != E; ++I)
2304 mangleExpression(*I);
2305 }
2306 Out << 'E';
2307 break;
2308 }
2309
John McCall2f27bf82010-02-04 02:56:29 +00002310 case Expr::MemberExprClass: {
2311 const MemberExpr *ME = cast<MemberExpr>(E);
2312 mangleMemberExpr(ME->getBase(), ME->isArrow(),
John McCalla0ce15c2011-04-24 08:23:24 +00002313 ME->getQualifier(), 0, ME->getMemberDecl()->getDeclName(),
John McCall5e1e89b2010-08-18 19:18:59 +00002314 Arity);
John McCall2f27bf82010-02-04 02:56:29 +00002315 break;
2316 }
2317
2318 case Expr::UnresolvedMemberExprClass: {
2319 const UnresolvedMemberExpr *ME = cast<UnresolvedMemberExpr>(E);
2320 mangleMemberExpr(ME->getBase(), ME->isArrow(),
John McCalla0ce15c2011-04-24 08:23:24 +00002321 ME->getQualifier(), 0, ME->getMemberName(),
John McCall5e1e89b2010-08-18 19:18:59 +00002322 Arity);
John McCall6dbce192010-08-20 00:17:19 +00002323 if (ME->hasExplicitTemplateArgs())
2324 mangleTemplateArgs(ME->getExplicitTemplateArgs());
John McCall2f27bf82010-02-04 02:56:29 +00002325 break;
2326 }
2327
2328 case Expr::CXXDependentScopeMemberExprClass: {
2329 const CXXDependentScopeMemberExpr *ME
2330 = cast<CXXDependentScopeMemberExpr>(E);
2331 mangleMemberExpr(ME->getBase(), ME->isArrow(),
John McCalla0ce15c2011-04-24 08:23:24 +00002332 ME->getQualifier(), ME->getFirstQualifierFoundInScope(),
2333 ME->getMember(), Arity);
John McCall6dbce192010-08-20 00:17:19 +00002334 if (ME->hasExplicitTemplateArgs())
2335 mangleTemplateArgs(ME->getExplicitTemplateArgs());
John McCall2f27bf82010-02-04 02:56:29 +00002336 break;
2337 }
2338
John McCall1dd73832010-02-04 01:42:13 +00002339 case Expr::UnresolvedLookupExprClass: {
2340 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E);
John McCalla0ce15c2011-04-24 08:23:24 +00002341 mangleUnresolvedName(ULE->getQualifier(), 0, ULE->getName(), Arity);
John McCall26a6ec72011-06-21 22:12:46 +00002342
2343 // All the <unresolved-name> productions end in a
2344 // base-unresolved-name, where <template-args> are just tacked
2345 // onto the end.
John McCall6dbce192010-08-20 00:17:19 +00002346 if (ULE->hasExplicitTemplateArgs())
2347 mangleTemplateArgs(ULE->getExplicitTemplateArgs());
John McCall1dd73832010-02-04 01:42:13 +00002348 break;
2349 }
2350
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002351 case Expr::CXXUnresolvedConstructExprClass: {
John McCall1dd73832010-02-04 01:42:13 +00002352 const CXXUnresolvedConstructExpr *CE = cast<CXXUnresolvedConstructExpr>(E);
2353 unsigned N = CE->arg_size();
2354
2355 Out << "cv";
2356 mangleType(CE->getType());
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002357 if (N != 1) Out << '_';
John McCall1dd73832010-02-04 01:42:13 +00002358 for (unsigned I = 0; I != N; ++I) mangleExpression(CE->getArg(I));
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002359 if (N != 1) Out << 'E';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002360 break;
John McCall1dd73832010-02-04 01:42:13 +00002361 }
John McCall09cc1412010-02-03 00:55:45 +00002362
John McCall1dd73832010-02-04 01:42:13 +00002363 case Expr::CXXTemporaryObjectExprClass:
2364 case Expr::CXXConstructExprClass: {
2365 const CXXConstructExpr *CE = cast<CXXConstructExpr>(E);
2366 unsigned N = CE->getNumArgs();
2367
2368 Out << "cv";
2369 mangleType(CE->getType());
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002370 if (N != 1) Out << '_';
John McCall1dd73832010-02-04 01:42:13 +00002371 for (unsigned I = 0; I != N; ++I) mangleExpression(CE->getArg(I));
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002372 if (N != 1) Out << 'E';
John McCall09cc1412010-02-03 00:55:45 +00002373 break;
John McCall1dd73832010-02-04 01:42:13 +00002374 }
2375
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002376 case Expr::UnaryExprOrTypeTraitExprClass: {
2377 const UnaryExprOrTypeTraitExpr *SAE = cast<UnaryExprOrTypeTraitExpr>(E);
2378 switch(SAE->getKind()) {
2379 case UETT_SizeOf:
2380 Out << 's';
2381 break;
2382 case UETT_AlignOf:
2383 Out << 'a';
2384 break;
2385 case UETT_VecStep:
2386 Diagnostic &Diags = Context.getDiags();
2387 unsigned DiagID = Diags.getCustomDiagID(Diagnostic::Error,
2388 "cannot yet mangle vec_step expression");
2389 Diags.Report(DiagID);
2390 return;
2391 }
John McCall1dd73832010-02-04 01:42:13 +00002392 if (SAE->isArgumentType()) {
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002393 Out << 't';
John McCall1dd73832010-02-04 01:42:13 +00002394 mangleType(SAE->getArgumentType());
2395 } else {
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002396 Out << 'z';
John McCall1dd73832010-02-04 01:42:13 +00002397 mangleExpression(SAE->getArgumentExpr());
2398 }
2399 break;
2400 }
Anders Carlssona7694082009-11-06 02:50:19 +00002401
John McCall0512e482010-07-14 04:20:34 +00002402 case Expr::CXXThrowExprClass: {
2403 const CXXThrowExpr *TE = cast<CXXThrowExpr>(E);
2404
2405 // Proposal from David Vandervoorde, 2010.06.30
2406 if (TE->getSubExpr()) {
2407 Out << "tw";
2408 mangleExpression(TE->getSubExpr());
2409 } else {
2410 Out << "tr";
2411 }
2412 break;
2413 }
2414
2415 case Expr::CXXTypeidExprClass: {
2416 const CXXTypeidExpr *TIE = cast<CXXTypeidExpr>(E);
2417
2418 // Proposal from David Vandervoorde, 2010.06.30
2419 if (TIE->isTypeOperand()) {
2420 Out << "ti";
2421 mangleType(TIE->getTypeOperand());
2422 } else {
2423 Out << "te";
2424 mangleExpression(TIE->getExprOperand());
2425 }
2426 break;
2427 }
2428
2429 case Expr::CXXDeleteExprClass: {
2430 const CXXDeleteExpr *DE = cast<CXXDeleteExpr>(E);
2431
2432 // Proposal from David Vandervoorde, 2010.06.30
2433 if (DE->isGlobalDelete()) Out << "gs";
2434 Out << (DE->isArrayForm() ? "da" : "dl");
2435 mangleExpression(DE->getArgument());
2436 break;
2437 }
2438
Anders Carlssone170ba72009-12-14 01:45:37 +00002439 case Expr::UnaryOperatorClass: {
2440 const UnaryOperator *UO = cast<UnaryOperator>(E);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002441 mangleOperatorName(UnaryOperator::getOverloadedOperator(UO->getOpcode()),
Anders Carlssone170ba72009-12-14 01:45:37 +00002442 /*Arity=*/1);
2443 mangleExpression(UO->getSubExpr());
2444 break;
2445 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002446
John McCall0512e482010-07-14 04:20:34 +00002447 case Expr::ArraySubscriptExprClass: {
2448 const ArraySubscriptExpr *AE = cast<ArraySubscriptExpr>(E);
2449
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00002450 // Array subscript is treated as a syntactically weird form of
John McCall0512e482010-07-14 04:20:34 +00002451 // binary operator.
2452 Out << "ix";
2453 mangleExpression(AE->getLHS());
2454 mangleExpression(AE->getRHS());
2455 break;
2456 }
2457
2458 case Expr::CompoundAssignOperatorClass: // fallthrough
Anders Carlssone170ba72009-12-14 01:45:37 +00002459 case Expr::BinaryOperatorClass: {
2460 const BinaryOperator *BO = cast<BinaryOperator>(E);
Douglas Gregor63f62df2011-06-05 05:27:58 +00002461 if (BO->getOpcode() == BO_PtrMemD)
2462 Out << "ds";
2463 else
2464 mangleOperatorName(BinaryOperator::getOverloadedOperator(BO->getOpcode()),
2465 /*Arity=*/2);
Anders Carlssone170ba72009-12-14 01:45:37 +00002466 mangleExpression(BO->getLHS());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002467 mangleExpression(BO->getRHS());
Anders Carlssone170ba72009-12-14 01:45:37 +00002468 break;
John McCall2f27bf82010-02-04 02:56:29 +00002469 }
Anders Carlssone170ba72009-12-14 01:45:37 +00002470
2471 case Expr::ConditionalOperatorClass: {
2472 const ConditionalOperator *CO = cast<ConditionalOperator>(E);
2473 mangleOperatorName(OO_Conditional, /*Arity=*/3);
2474 mangleExpression(CO->getCond());
John McCall5e1e89b2010-08-18 19:18:59 +00002475 mangleExpression(CO->getLHS(), Arity);
2476 mangleExpression(CO->getRHS(), Arity);
Anders Carlssone170ba72009-12-14 01:45:37 +00002477 break;
2478 }
2479
Douglas Gregor46287c72010-01-29 16:37:09 +00002480 case Expr::ImplicitCastExprClass: {
John McCall5e1e89b2010-08-18 19:18:59 +00002481 mangleExpression(cast<ImplicitCastExpr>(E)->getSubExpr(), Arity);
Douglas Gregor46287c72010-01-29 16:37:09 +00002482 break;
2483 }
John McCallf85e1932011-06-15 23:02:42 +00002484
2485 case Expr::ObjCBridgedCastExprClass: {
2486 // Mangle ownership casts as a vendor extended operator __bridge,
2487 // __bridge_transfer, or __bridge_retain.
2488 llvm::StringRef Kind = cast<ObjCBridgedCastExpr>(E)->getBridgeKindName();
2489 Out << "v1U" << Kind.size() << Kind;
2490 }
2491 // Fall through to mangle the cast itself.
2492
Douglas Gregor46287c72010-01-29 16:37:09 +00002493 case Expr::CStyleCastExprClass:
2494 case Expr::CXXStaticCastExprClass:
2495 case Expr::CXXDynamicCastExprClass:
2496 case Expr::CXXReinterpretCastExprClass:
2497 case Expr::CXXConstCastExprClass:
2498 case Expr::CXXFunctionalCastExprClass: {
2499 const ExplicitCastExpr *ECE = cast<ExplicitCastExpr>(E);
2500 Out << "cv";
2501 mangleType(ECE->getType());
2502 mangleExpression(ECE->getSubExpr());
2503 break;
2504 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002505
Anders Carlsson58040a52009-12-16 05:48:46 +00002506 case Expr::CXXOperatorCallExprClass: {
2507 const CXXOperatorCallExpr *CE = cast<CXXOperatorCallExpr>(E);
2508 unsigned NumArgs = CE->getNumArgs();
2509 mangleOperatorName(CE->getOperator(), /*Arity=*/NumArgs);
2510 // Mangle the arguments.
2511 for (unsigned i = 0; i != NumArgs; ++i)
2512 mangleExpression(CE->getArg(i));
2513 break;
2514 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002515
Anders Carlssona7694082009-11-06 02:50:19 +00002516 case Expr::ParenExprClass:
John McCall5e1e89b2010-08-18 19:18:59 +00002517 mangleExpression(cast<ParenExpr>(E)->getSubExpr(), Arity);
Anders Carlssona7694082009-11-06 02:50:19 +00002518 break;
2519
Anders Carlssond553f8c2009-09-21 01:21:10 +00002520 case Expr::DeclRefExprClass: {
Douglas Gregor5ed1bc32010-02-28 21:40:32 +00002521 const NamedDecl *D = cast<DeclRefExpr>(E)->getDecl();
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002522
Anders Carlssond553f8c2009-09-21 01:21:10 +00002523 switch (D->getKind()) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002524 default:
Douglas Gregor5ed1bc32010-02-28 21:40:32 +00002525 // <expr-primary> ::= L <mangled-name> E # external name
2526 Out << 'L';
2527 mangle(D, "_Z");
2528 Out << 'E';
2529 break;
2530
John McCallfb44de92011-05-01 22:35:37 +00002531 case Decl::ParmVar:
2532 mangleFunctionParam(cast<ParmVarDecl>(D));
2533 break;
2534
John McCall3dc7e7b2010-07-24 01:17:35 +00002535 case Decl::EnumConstant: {
2536 const EnumConstantDecl *ED = cast<EnumConstantDecl>(D);
2537 mangleIntegerLiteral(ED->getType(), ED->getInitVal());
2538 break;
2539 }
2540
Anders Carlssond553f8c2009-09-21 01:21:10 +00002541 case Decl::NonTypeTemplateParm: {
2542 const NonTypeTemplateParmDecl *PD = cast<NonTypeTemplateParmDecl>(D);
Anders Carlsson0ccdf8d2009-09-27 00:38:53 +00002543 mangleTemplateParameter(PD->getIndex());
Anders Carlssond553f8c2009-09-21 01:21:10 +00002544 break;
2545 }
2546
2547 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002548
Anders Carlsson50755b02009-09-27 20:11:34 +00002549 break;
Anders Carlssond553f8c2009-09-21 01:21:10 +00002550 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002551
Douglas Gregorc7793c72011-01-15 01:15:58 +00002552 case Expr::SubstNonTypeTemplateParmPackExprClass:
John McCall68a51a72011-07-01 00:04:39 +00002553 // FIXME: not clear how to mangle this!
2554 // template <unsigned N...> class A {
2555 // template <class U...> void foo(U (&x)[N]...);
2556 // };
2557 Out << "_SUBSTPACK_";
Douglas Gregorc7793c72011-01-15 01:15:58 +00002558 break;
2559
John McCall865d4472009-11-19 22:55:06 +00002560 case Expr::DependentScopeDeclRefExprClass: {
2561 const DependentScopeDeclRefExpr *DRE = cast<DependentScopeDeclRefExpr>(E);
John McCall26a6ec72011-06-21 22:12:46 +00002562 mangleUnresolvedName(DRE->getQualifier(), 0, DRE->getDeclName(), Arity);
Douglas Gregor4b2ccfc2010-02-28 22:05:49 +00002563
John McCall26a6ec72011-06-21 22:12:46 +00002564 // All the <unresolved-name> productions end in a
2565 // base-unresolved-name, where <template-args> are just tacked
2566 // onto the end.
John McCall6dbce192010-08-20 00:17:19 +00002567 if (DRE->hasExplicitTemplateArgs())
2568 mangleTemplateArgs(DRE->getExplicitTemplateArgs());
Anders Carlsson50755b02009-09-27 20:11:34 +00002569 break;
2570 }
2571
John McCalld9307602010-04-09 22:54:09 +00002572 case Expr::CXXBindTemporaryExprClass:
2573 mangleExpression(cast<CXXBindTemporaryExpr>(E)->getSubExpr());
2574 break;
2575
John McCall4765fa02010-12-06 08:20:24 +00002576 case Expr::ExprWithCleanupsClass:
2577 mangleExpression(cast<ExprWithCleanups>(E)->getSubExpr(), Arity);
John McCalld9307602010-04-09 22:54:09 +00002578 break;
2579
John McCall1dd73832010-02-04 01:42:13 +00002580 case Expr::FloatingLiteralClass: {
2581 const FloatingLiteral *FL = cast<FloatingLiteral>(E);
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002582 Out << 'L';
John McCall1dd73832010-02-04 01:42:13 +00002583 mangleType(FL->getType());
John McCall0512e482010-07-14 04:20:34 +00002584 mangleFloat(FL->getValue());
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002585 Out << 'E';
John McCall1dd73832010-02-04 01:42:13 +00002586 break;
2587 }
2588
John McCallde810632010-04-09 21:48:08 +00002589 case Expr::CharacterLiteralClass:
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002590 Out << 'L';
John McCallde810632010-04-09 21:48:08 +00002591 mangleType(E->getType());
2592 Out << cast<CharacterLiteral>(E)->getValue();
2593 Out << 'E';
2594 break;
2595
2596 case Expr::CXXBoolLiteralExprClass:
2597 Out << "Lb";
2598 Out << (cast<CXXBoolLiteralExpr>(E)->getValue() ? '1' : '0');
2599 Out << 'E';
2600 break;
2601
John McCall0512e482010-07-14 04:20:34 +00002602 case Expr::IntegerLiteralClass: {
2603 llvm::APSInt Value(cast<IntegerLiteral>(E)->getValue());
2604 if (E->getType()->isSignedIntegerType())
2605 Value.setIsSigned(true);
2606 mangleIntegerLiteral(E->getType(), Value);
Anders Carlssone170ba72009-12-14 01:45:37 +00002607 break;
John McCall0512e482010-07-14 04:20:34 +00002608 }
2609
2610 case Expr::ImaginaryLiteralClass: {
2611 const ImaginaryLiteral *IE = cast<ImaginaryLiteral>(E);
2612 // Mangle as if a complex literal.
Nick Lewycky271b6652010-09-05 03:40:33 +00002613 // Proposal from David Vandevoorde, 2010.06.30.
John McCall0512e482010-07-14 04:20:34 +00002614 Out << 'L';
2615 mangleType(E->getType());
2616 if (const FloatingLiteral *Imag =
2617 dyn_cast<FloatingLiteral>(IE->getSubExpr())) {
2618 // Mangle a floating-point zero of the appropriate type.
2619 mangleFloat(llvm::APFloat(Imag->getValue().getSemantics()));
2620 Out << '_';
2621 mangleFloat(Imag->getValue());
2622 } else {
Nick Lewycky271b6652010-09-05 03:40:33 +00002623 Out << "0_";
John McCall0512e482010-07-14 04:20:34 +00002624 llvm::APSInt Value(cast<IntegerLiteral>(IE->getSubExpr())->getValue());
2625 if (IE->getSubExpr()->getType()->isSignedIntegerType())
2626 Value.setIsSigned(true);
2627 mangleNumber(Value);
2628 }
2629 Out << 'E';
2630 break;
2631 }
2632
2633 case Expr::StringLiteralClass: {
John McCall1658c392010-07-15 21:53:03 +00002634 // Revised proposal from David Vandervoorde, 2010.07.15.
John McCall0512e482010-07-14 04:20:34 +00002635 Out << 'L';
John McCall1658c392010-07-15 21:53:03 +00002636 assert(isa<ConstantArrayType>(E->getType()));
2637 mangleType(E->getType());
John McCall0512e482010-07-14 04:20:34 +00002638 Out << 'E';
2639 break;
2640 }
2641
2642 case Expr::GNUNullExprClass:
2643 // FIXME: should this really be mangled the same as nullptr?
2644 // fallthrough
2645
2646 case Expr::CXXNullPtrLiteralExprClass: {
2647 // Proposal from David Vandervoorde, 2010.06.30, as
2648 // modified by ABI list discussion.
2649 Out << "LDnE";
2650 break;
2651 }
Douglas Gregorbe230c32011-01-03 17:17:50 +00002652
2653 case Expr::PackExpansionExprClass:
2654 Out << "sp";
2655 mangleExpression(cast<PackExpansionExpr>(E)->getPattern());
2656 break;
Douglas Gregor2e774c42011-01-04 18:56:13 +00002657
2658 case Expr::SizeOfPackExprClass: {
Douglas Gregor2e774c42011-01-04 18:56:13 +00002659 Out << "sZ";
2660 const NamedDecl *Pack = cast<SizeOfPackExpr>(E)->getPack();
2661 if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Pack))
2662 mangleTemplateParameter(TTP->getIndex());
2663 else if (const NonTypeTemplateParmDecl *NTTP
2664 = dyn_cast<NonTypeTemplateParmDecl>(Pack))
2665 mangleTemplateParameter(NTTP->getIndex());
2666 else if (const TemplateTemplateParmDecl *TempTP
2667 = dyn_cast<TemplateTemplateParmDecl>(Pack))
2668 mangleTemplateParameter(TempTP->getIndex());
2669 else {
Douglas Gregor4fc48662011-01-13 16:39:34 +00002670 // Note: proposed by Mike Herrick on 11/30/10
2671 // <expression> ::= sZ <function-param> # size of function parameter pack
Douglas Gregor2e774c42011-01-04 18:56:13 +00002672 Diagnostic &Diags = Context.getDiags();
2673 unsigned DiagID = Diags.getCustomDiagID(Diagnostic::Error,
2674 "cannot mangle sizeof...(function parameter pack)");
2675 Diags.Report(DiagID);
2676 return;
2677 }
Douglas Gregordfbbcf92011-03-03 02:20:19 +00002678 break;
Douglas Gregor2e774c42011-01-04 18:56:13 +00002679 }
Douglas Gregor03e80032011-06-21 17:03:29 +00002680
2681 case Expr::MaterializeTemporaryExprClass: {
2682 mangleExpression(cast<MaterializeTemporaryExpr>(E)->GetTemporaryExpr());
2683 break;
2684 }
Anders Carlssond553f8c2009-09-21 01:21:10 +00002685 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00002686}
2687
John McCallfb44de92011-05-01 22:35:37 +00002688/// Mangle an expression which refers to a parameter variable.
2689///
2690/// <expression> ::= <function-param>
2691/// <function-param> ::= fp <top-level CV-qualifiers> _ # L == 0, I == 0
2692/// <function-param> ::= fp <top-level CV-qualifiers>
2693/// <parameter-2 non-negative number> _ # L == 0, I > 0
2694/// <function-param> ::= fL <L-1 non-negative number>
2695/// p <top-level CV-qualifiers> _ # L > 0, I == 0
2696/// <function-param> ::= fL <L-1 non-negative number>
2697/// p <top-level CV-qualifiers>
2698/// <I-1 non-negative number> _ # L > 0, I > 0
2699///
2700/// L is the nesting depth of the parameter, defined as 1 if the
2701/// parameter comes from the innermost function prototype scope
2702/// enclosing the current context, 2 if from the next enclosing
2703/// function prototype scope, and so on, with one special case: if
2704/// we've processed the full parameter clause for the innermost
2705/// function type, then L is one less. This definition conveniently
2706/// makes it irrelevant whether a function's result type was written
2707/// trailing or leading, but is otherwise overly complicated; the
2708/// numbering was first designed without considering references to
2709/// parameter in locations other than return types, and then the
2710/// mangling had to be generalized without changing the existing
2711/// manglings.
2712///
2713/// I is the zero-based index of the parameter within its parameter
2714/// declaration clause. Note that the original ABI document describes
2715/// this using 1-based ordinals.
2716void CXXNameMangler::mangleFunctionParam(const ParmVarDecl *parm) {
2717 unsigned parmDepth = parm->getFunctionScopeDepth();
2718 unsigned parmIndex = parm->getFunctionScopeIndex();
2719
2720 // Compute 'L'.
2721 // parmDepth does not include the declaring function prototype.
2722 // FunctionTypeDepth does account for that.
2723 assert(parmDepth < FunctionTypeDepth.getDepth());
2724 unsigned nestingDepth = FunctionTypeDepth.getDepth() - parmDepth;
2725 if (FunctionTypeDepth.isInResultType())
2726 nestingDepth--;
2727
2728 if (nestingDepth == 0) {
2729 Out << "fp";
2730 } else {
2731 Out << "fL" << (nestingDepth - 1) << 'p';
2732 }
2733
2734 // Top-level qualifiers. We don't have to worry about arrays here,
2735 // because parameters declared as arrays should already have been
2736 // tranformed to have pointer type. FIXME: apparently these don't
2737 // get mangled if used as an rvalue of a known non-class type?
2738 assert(!parm->getType()->isArrayType()
2739 && "parameter's type is still an array type?");
2740 mangleQualifiers(parm->getType().getQualifiers());
2741
2742 // Parameter index.
2743 if (parmIndex != 0) {
2744 Out << (parmIndex - 1);
2745 }
2746 Out << '_';
2747}
2748
Anders Carlsson3ac86b52009-04-15 05:36:58 +00002749void CXXNameMangler::mangleCXXCtorType(CXXCtorType T) {
2750 // <ctor-dtor-name> ::= C1 # complete object constructor
2751 // ::= C2 # base object constructor
2752 // ::= C3 # complete object allocating constructor
2753 //
2754 switch (T) {
2755 case Ctor_Complete:
2756 Out << "C1";
2757 break;
2758 case Ctor_Base:
2759 Out << "C2";
2760 break;
2761 case Ctor_CompleteAllocating:
2762 Out << "C3";
2763 break;
2764 }
2765}
2766
Anders Carlsson27ae5362009-04-17 01:58:57 +00002767void CXXNameMangler::mangleCXXDtorType(CXXDtorType T) {
2768 // <ctor-dtor-name> ::= D0 # deleting destructor
2769 // ::= D1 # complete object destructor
2770 // ::= D2 # base object destructor
2771 //
2772 switch (T) {
2773 case Dtor_Deleting:
2774 Out << "D0";
2775 break;
2776 case Dtor_Complete:
2777 Out << "D1";
2778 break;
2779 case Dtor_Base:
2780 Out << "D2";
2781 break;
2782 }
2783}
2784
John McCall6dbce192010-08-20 00:17:19 +00002785void CXXNameMangler::mangleTemplateArgs(
2786 const ExplicitTemplateArgumentList &TemplateArgs) {
2787 // <template-args> ::= I <template-arg>+ E
2788 Out << 'I';
John McCall4f4e4132011-05-04 01:45:19 +00002789 for (unsigned i = 0, e = TemplateArgs.NumTemplateArgs; i != e; ++i)
2790 mangleTemplateArg(0, TemplateArgs.getTemplateArgs()[i].getArgument());
John McCall6dbce192010-08-20 00:17:19 +00002791 Out << 'E';
2792}
2793
Douglas Gregor20f0cc72010-04-23 03:10:43 +00002794void CXXNameMangler::mangleTemplateArgs(TemplateName Template,
2795 const TemplateArgument *TemplateArgs,
2796 unsigned NumTemplateArgs) {
2797 if (TemplateDecl *TD = Template.getAsTemplateDecl())
2798 return mangleTemplateArgs(*TD->getTemplateParameters(), TemplateArgs,
2799 NumTemplateArgs);
Sean Huntc3021132010-05-05 15:23:54 +00002800
John McCall4f4e4132011-05-04 01:45:19 +00002801 mangleUnresolvedTemplateArgs(TemplateArgs, NumTemplateArgs);
2802}
2803
2804void CXXNameMangler::mangleUnresolvedTemplateArgs(const TemplateArgument *args,
2805 unsigned numArgs) {
Douglas Gregor20f0cc72010-04-23 03:10:43 +00002806 // <template-args> ::= I <template-arg>+ E
2807 Out << 'I';
John McCall4f4e4132011-05-04 01:45:19 +00002808 for (unsigned i = 0; i != numArgs; ++i)
2809 mangleTemplateArg(0, args[i]);
Douglas Gregor20f0cc72010-04-23 03:10:43 +00002810 Out << 'E';
2811}
2812
Rafael Espindolad9800722010-03-11 14:07:00 +00002813void CXXNameMangler::mangleTemplateArgs(const TemplateParameterList &PL,
2814 const TemplateArgumentList &AL) {
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002815 // <template-args> ::= I <template-arg>+ E
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002816 Out << 'I';
Rafael Espindolad9800722010-03-11 14:07:00 +00002817 for (unsigned i = 0, e = AL.size(); i != e; ++i)
2818 mangleTemplateArg(PL.getParam(i), AL[i]);
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002819 Out << 'E';
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002820}
2821
Rafael Espindolad9800722010-03-11 14:07:00 +00002822void CXXNameMangler::mangleTemplateArgs(const TemplateParameterList &PL,
2823 const TemplateArgument *TemplateArgs,
Anders Carlsson7624f212009-09-18 02:42:01 +00002824 unsigned NumTemplateArgs) {
2825 // <template-args> ::= I <template-arg>+ E
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002826 Out << 'I';
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002827 for (unsigned i = 0; i != NumTemplateArgs; ++i)
Rafael Espindolad9800722010-03-11 14:07:00 +00002828 mangleTemplateArg(PL.getParam(i), TemplateArgs[i]);
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002829 Out << 'E';
Anders Carlsson7624f212009-09-18 02:42:01 +00002830}
2831
Rafael Espindolad9800722010-03-11 14:07:00 +00002832void CXXNameMangler::mangleTemplateArg(const NamedDecl *P,
2833 const TemplateArgument &A) {
Mike Stump1eb44332009-09-09 15:08:12 +00002834 // <template-arg> ::= <type> # type or template
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002835 // ::= X <expression> E # expression
2836 // ::= <expr-primary> # simple expressions
Douglas Gregor4fc48662011-01-13 16:39:34 +00002837 // ::= J <template-arg>* E # argument pack
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002838 // ::= sp <expression> # pack expansion of (C++0x)
2839 switch (A.getKind()) {
Douglas Gregorf90b27a2011-01-03 22:36:02 +00002840 case TemplateArgument::Null:
2841 llvm_unreachable("Cannot mangle NULL template argument");
2842
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002843 case TemplateArgument::Type:
2844 mangleType(A.getAsType());
2845 break;
Anders Carlsson9e85c742009-12-23 19:30:55 +00002846 case TemplateArgument::Template:
John McCallb6f532e2010-07-14 06:43:17 +00002847 // This is mangled as <type>.
2848 mangleType(A.getAsTemplate());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002849 break;
Douglas Gregora7fc9012011-01-05 18:58:31 +00002850 case TemplateArgument::TemplateExpansion:
Douglas Gregor4fc48662011-01-13 16:39:34 +00002851 // <type> ::= Dp <type> # pack expansion (C++0x)
Douglas Gregora7fc9012011-01-05 18:58:31 +00002852 Out << "Dp";
2853 mangleType(A.getAsTemplateOrTemplatePattern());
2854 break;
Anders Carlssond553f8c2009-09-21 01:21:10 +00002855 case TemplateArgument::Expression:
2856 Out << 'X';
2857 mangleExpression(A.getAsExpr());
2858 Out << 'E';
2859 break;
Anders Carlssone170ba72009-12-14 01:45:37 +00002860 case TemplateArgument::Integral:
2861 mangleIntegerLiteral(A.getIntegralType(), *A.getAsIntegral());
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002862 break;
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002863 case TemplateArgument::Declaration: {
Douglas Gregor20f0cc72010-04-23 03:10:43 +00002864 assert(P && "Missing template parameter for declaration argument");
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002865 // <expr-primary> ::= L <mangled-name> E # external name
2866
Rafael Espindolad9800722010-03-11 14:07:00 +00002867 // Clang produces AST's where pointer-to-member-function expressions
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002868 // and pointer-to-function expressions are represented as a declaration not
Rafael Espindolad9800722010-03-11 14:07:00 +00002869 // an expression. We compensate for it here to produce the correct mangling.
2870 NamedDecl *D = cast<NamedDecl>(A.getAsDecl());
2871 const NonTypeTemplateParmDecl *Parameter = cast<NonTypeTemplateParmDecl>(P);
John McCallc0a45592011-04-24 08:43:07 +00002872 bool compensateMangling = !Parameter->getType()->isReferenceType();
Rafael Espindolad9800722010-03-11 14:07:00 +00002873 if (compensateMangling) {
2874 Out << 'X';
2875 mangleOperatorName(OO_Amp, 1);
2876 }
2877
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002878 Out << 'L';
2879 // References to external entities use the mangled name; if the name would
2880 // not normally be manged then mangle it as unqualified.
2881 //
2882 // FIXME: The ABI specifies that external names here should have _Z, but
2883 // gcc leaves this off.
Rafael Espindolad9800722010-03-11 14:07:00 +00002884 if (compensateMangling)
2885 mangle(D, "_Z");
2886 else
2887 mangle(D, "Z");
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002888 Out << 'E';
Rafael Espindolad9800722010-03-11 14:07:00 +00002889
2890 if (compensateMangling)
2891 Out << 'E';
2892
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002893 break;
2894 }
Douglas Gregorf90b27a2011-01-03 22:36:02 +00002895
2896 case TemplateArgument::Pack: {
2897 // Note: proposal by Mike Herrick on 12/20/10
2898 Out << 'J';
2899 for (TemplateArgument::pack_iterator PA = A.pack_begin(),
2900 PAEnd = A.pack_end();
2901 PA != PAEnd; ++PA)
2902 mangleTemplateArg(P, *PA);
2903 Out << 'E';
2904 }
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002905 }
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002906}
2907
Anders Carlsson0ccdf8d2009-09-27 00:38:53 +00002908void CXXNameMangler::mangleTemplateParameter(unsigned Index) {
2909 // <template-param> ::= T_ # first template parameter
2910 // ::= T <parameter-2 non-negative number> _
2911 if (Index == 0)
2912 Out << "T_";
2913 else
2914 Out << 'T' << (Index - 1) << '_';
2915}
2916
John McCall68a51a72011-07-01 00:04:39 +00002917void CXXNameMangler::mangleExistingSubstitution(QualType type) {
2918 bool result = mangleSubstitution(type);
2919 assert(result && "no existing substitution for type");
2920 (void) result;
2921}
2922
2923void CXXNameMangler::mangleExistingSubstitution(TemplateName tname) {
2924 bool result = mangleSubstitution(tname);
2925 assert(result && "no existing substitution for template name");
2926 (void) result;
2927}
2928
Anders Carlsson76967372009-09-17 00:43:46 +00002929// <substitution> ::= S <seq-id> _
2930// ::= S_
Anders Carlsson6862fc72009-09-17 04:16:28 +00002931bool CXXNameMangler::mangleSubstitution(const NamedDecl *ND) {
Anders Carlssone7c8cb62009-09-26 20:53:44 +00002932 // Try one of the standard substitutions first.
2933 if (mangleStandardSubstitution(ND))
2934 return true;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002935
Anders Carlsson433d1372009-11-07 04:26:04 +00002936 ND = cast<NamedDecl>(ND->getCanonicalDecl());
Anders Carlsson6862fc72009-09-17 04:16:28 +00002937 return mangleSubstitution(reinterpret_cast<uintptr_t>(ND));
2938}
2939
Anders Carlsson76967372009-09-17 00:43:46 +00002940bool CXXNameMangler::mangleSubstitution(QualType T) {
Anders Carlssond99edc42009-09-26 03:55:37 +00002941 if (!T.getCVRQualifiers()) {
2942 if (const RecordType *RT = T->getAs<RecordType>())
2943 return mangleSubstitution(RT->getDecl());
2944 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002945
Anders Carlsson76967372009-09-17 00:43:46 +00002946 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
2947
Anders Carlssond3a932a2009-09-17 03:53:28 +00002948 return mangleSubstitution(TypePtr);
2949}
2950
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002951bool CXXNameMangler::mangleSubstitution(TemplateName Template) {
2952 if (TemplateDecl *TD = Template.getAsTemplateDecl())
2953 return mangleSubstitution(TD);
Sean Huntc3021132010-05-05 15:23:54 +00002954
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002955 Template = Context.getASTContext().getCanonicalTemplateName(Template);
2956 return mangleSubstitution(
2957 reinterpret_cast<uintptr_t>(Template.getAsVoidPointer()));
2958}
2959
Anders Carlssond3a932a2009-09-17 03:53:28 +00002960bool CXXNameMangler::mangleSubstitution(uintptr_t Ptr) {
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002961 llvm::DenseMap<uintptr_t, unsigned>::iterator I = Substitutions.find(Ptr);
Anders Carlsson76967372009-09-17 00:43:46 +00002962 if (I == Substitutions.end())
2963 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002964
Anders Carlsson76967372009-09-17 00:43:46 +00002965 unsigned SeqID = I->second;
2966 if (SeqID == 0)
2967 Out << "S_";
2968 else {
2969 SeqID--;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002970
Anders Carlsson76967372009-09-17 00:43:46 +00002971 // <seq-id> is encoded in base-36, using digits and upper case letters.
2972 char Buffer[10];
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002973 char *BufferPtr = llvm::array_endof(Buffer);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002974
Anders Carlsson76967372009-09-17 00:43:46 +00002975 if (SeqID == 0) *--BufferPtr = '0';
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002976
Anders Carlsson76967372009-09-17 00:43:46 +00002977 while (SeqID) {
2978 assert(BufferPtr > Buffer && "Buffer overflow!");
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002979
John McCall6ab30e02010-06-09 07:26:17 +00002980 char c = static_cast<char>(SeqID % 36);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002981
Anders Carlsson76967372009-09-17 00:43:46 +00002982 *--BufferPtr = (c < 10 ? '0' + c : 'A' + c - 10);
2983 SeqID /= 36;
2984 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002985
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002986 Out << 'S'
2987 << llvm::StringRef(BufferPtr, llvm::array_endof(Buffer)-BufferPtr)
2988 << '_';
Anders Carlsson76967372009-09-17 00:43:46 +00002989 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002990
Anders Carlsson76967372009-09-17 00:43:46 +00002991 return true;
2992}
2993
Anders Carlssonf514b542009-09-27 00:12:57 +00002994static bool isCharType(QualType T) {
2995 if (T.isNull())
2996 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002997
Anders Carlssonf514b542009-09-27 00:12:57 +00002998 return T->isSpecificBuiltinType(BuiltinType::Char_S) ||
2999 T->isSpecificBuiltinType(BuiltinType::Char_U);
3000}
3001
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003002/// isCharSpecialization - Returns whether a given type is a template
Anders Carlssonf514b542009-09-27 00:12:57 +00003003/// specialization of a given name with a single argument of type char.
3004static bool isCharSpecialization(QualType T, const char *Name) {
3005 if (T.isNull())
3006 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003007
Anders Carlssonf514b542009-09-27 00:12:57 +00003008 const RecordType *RT = T->getAs<RecordType>();
3009 if (!RT)
3010 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003011
3012 const ClassTemplateSpecializationDecl *SD =
Anders Carlssonf514b542009-09-27 00:12:57 +00003013 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
3014 if (!SD)
3015 return false;
3016
3017 if (!isStdNamespace(SD->getDeclContext()))
3018 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003019
Anders Carlssonf514b542009-09-27 00:12:57 +00003020 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
3021 if (TemplateArgs.size() != 1)
3022 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003023
Anders Carlssonf514b542009-09-27 00:12:57 +00003024 if (!isCharType(TemplateArgs[0].getAsType()))
3025 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003026
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00003027 return SD->getIdentifier()->getName() == Name;
Anders Carlssonf514b542009-09-27 00:12:57 +00003028}
3029
Anders Carlsson91f88602009-12-07 19:56:42 +00003030template <std::size_t StrLen>
Benjamin Kramer54353f42010-11-25 18:29:30 +00003031static bool isStreamCharSpecialization(const ClassTemplateSpecializationDecl*SD,
3032 const char (&Str)[StrLen]) {
Anders Carlsson91f88602009-12-07 19:56:42 +00003033 if (!SD->getIdentifier()->isStr(Str))
3034 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003035
Anders Carlsson91f88602009-12-07 19:56:42 +00003036 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
3037 if (TemplateArgs.size() != 2)
3038 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003039
Anders Carlsson91f88602009-12-07 19:56:42 +00003040 if (!isCharType(TemplateArgs[0].getAsType()))
3041 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003042
Anders Carlsson91f88602009-12-07 19:56:42 +00003043 if (!isCharSpecialization(TemplateArgs[1].getAsType(), "char_traits"))
3044 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003045
Anders Carlsson91f88602009-12-07 19:56:42 +00003046 return true;
3047}
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003048
Anders Carlssone7c8cb62009-09-26 20:53:44 +00003049bool CXXNameMangler::mangleStandardSubstitution(const NamedDecl *ND) {
3050 // <substitution> ::= St # ::std::
Anders Carlsson8c031552009-09-26 23:10:05 +00003051 if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
Anders Carlsson47846d22009-12-04 06:23:23 +00003052 if (isStd(NS)) {
Anders Carlsson8c031552009-09-26 23:10:05 +00003053 Out << "St";
3054 return true;
3055 }
3056 }
3057
3058 if (const ClassTemplateDecl *TD = dyn_cast<ClassTemplateDecl>(ND)) {
3059 if (!isStdNamespace(TD->getDeclContext()))
3060 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003061
Anders Carlsson8c031552009-09-26 23:10:05 +00003062 // <substitution> ::= Sa # ::std::allocator
3063 if (TD->getIdentifier()->isStr("allocator")) {
3064 Out << "Sa";
3065 return true;
3066 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003067
Anders Carlsson189d59c2009-09-26 23:14:39 +00003068 // <<substitution> ::= Sb # ::std::basic_string
3069 if (TD->getIdentifier()->isStr("basic_string")) {
3070 Out << "Sb";
3071 return true;
3072 }
Anders Carlsson8c031552009-09-26 23:10:05 +00003073 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003074
3075 if (const ClassTemplateSpecializationDecl *SD =
Anders Carlssonf514b542009-09-27 00:12:57 +00003076 dyn_cast<ClassTemplateSpecializationDecl>(ND)) {
Eli Friedman5370ee22010-02-23 18:25:09 +00003077 if (!isStdNamespace(SD->getDeclContext()))
3078 return false;
3079
Anders Carlssonf514b542009-09-27 00:12:57 +00003080 // <substitution> ::= Ss # ::std::basic_string<char,
3081 // ::std::char_traits<char>,
3082 // ::std::allocator<char> >
3083 if (SD->getIdentifier()->isStr("basic_string")) {
3084 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003085
Anders Carlssonf514b542009-09-27 00:12:57 +00003086 if (TemplateArgs.size() != 3)
3087 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003088
Anders Carlssonf514b542009-09-27 00:12:57 +00003089 if (!isCharType(TemplateArgs[0].getAsType()))
3090 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003091
Anders Carlssonf514b542009-09-27 00:12:57 +00003092 if (!isCharSpecialization(TemplateArgs[1].getAsType(), "char_traits"))
3093 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003094
Anders Carlssonf514b542009-09-27 00:12:57 +00003095 if (!isCharSpecialization(TemplateArgs[2].getAsType(), "allocator"))
3096 return false;
3097
3098 Out << "Ss";
3099 return true;
3100 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003101
Anders Carlsson91f88602009-12-07 19:56:42 +00003102 // <substitution> ::= Si # ::std::basic_istream<char,
3103 // ::std::char_traits<char> >
3104 if (isStreamCharSpecialization(SD, "basic_istream")) {
3105 Out << "Si";
3106 return true;
3107 }
3108
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003109 // <substitution> ::= So # ::std::basic_ostream<char,
Anders Carlsson8f8fd8e2009-10-08 17:20:26 +00003110 // ::std::char_traits<char> >
Anders Carlsson91f88602009-12-07 19:56:42 +00003111 if (isStreamCharSpecialization(SD, "basic_ostream")) {
Anders Carlsson8f8fd8e2009-10-08 17:20:26 +00003112 Out << "So";
3113 return true;
3114 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003115
Anders Carlsson91f88602009-12-07 19:56:42 +00003116 // <substitution> ::= Sd # ::std::basic_iostream<char,
3117 // ::std::char_traits<char> >
3118 if (isStreamCharSpecialization(SD, "basic_iostream")) {
3119 Out << "Sd";
3120 return true;
3121 }
Anders Carlssonf514b542009-09-27 00:12:57 +00003122 }
Anders Carlsson8c031552009-09-26 23:10:05 +00003123 return false;
Anders Carlssone7c8cb62009-09-26 20:53:44 +00003124}
3125
Anders Carlsson76967372009-09-17 00:43:46 +00003126void CXXNameMangler::addSubstitution(QualType T) {
Anders Carlssond99edc42009-09-26 03:55:37 +00003127 if (!T.getCVRQualifiers()) {
3128 if (const RecordType *RT = T->getAs<RecordType>()) {
3129 addSubstitution(RT->getDecl());
3130 return;
3131 }
3132 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003133
Anders Carlsson76967372009-09-17 00:43:46 +00003134 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
Anders Carlssond3a932a2009-09-17 03:53:28 +00003135 addSubstitution(TypePtr);
3136}
3137
Douglas Gregor1e9268e2010-04-28 05:58:56 +00003138void CXXNameMangler::addSubstitution(TemplateName Template) {
3139 if (TemplateDecl *TD = Template.getAsTemplateDecl())
3140 return addSubstitution(TD);
Sean Huntc3021132010-05-05 15:23:54 +00003141
Douglas Gregor1e9268e2010-04-28 05:58:56 +00003142 Template = Context.getASTContext().getCanonicalTemplateName(Template);
3143 addSubstitution(reinterpret_cast<uintptr_t>(Template.getAsVoidPointer()));
3144}
3145
Anders Carlssond3a932a2009-09-17 03:53:28 +00003146void CXXNameMangler::addSubstitution(uintptr_t Ptr) {
Anders Carlssond3a932a2009-09-17 03:53:28 +00003147 assert(!Substitutions.count(Ptr) && "Substitution already exists!");
Anders Carlsson9d85b722010-06-02 04:29:50 +00003148 Substitutions[Ptr] = SeqID++;
Anders Carlsson76967372009-09-17 00:43:46 +00003149}
3150
Daniel Dunbar1b077112009-11-21 09:06:10 +00003151//
Mike Stump1eb44332009-09-09 15:08:12 +00003152
Daniel Dunbar1b077112009-11-21 09:06:10 +00003153/// \brief Mangles the name of the declaration D and emits that name to the
3154/// given output stream.
3155///
3156/// If the declaration D requires a mangled name, this routine will emit that
3157/// mangled name to \p os and return true. Otherwise, \p os will be unchanged
3158/// and this routine will return false. In this case, the caller should just
3159/// emit the identifier of the declaration (\c D->getIdentifier()) as its
3160/// name.
Peter Collingbourne14110472011-01-13 18:57:25 +00003161void ItaniumMangleContext::mangleName(const NamedDecl *D,
Rafael Espindola0e376a02011-02-11 01:41:00 +00003162 llvm::raw_ostream &Out) {
Daniel Dunbarc02ab4c2009-11-21 09:14:44 +00003163 assert((isa<FunctionDecl>(D) || isa<VarDecl>(D)) &&
3164 "Invalid mangleName() call, argument is not a variable or function!");
3165 assert(!isa<CXXConstructorDecl>(D) && !isa<CXXDestructorDecl>(D) &&
3166 "Invalid mangleName() call on 'structor decl!");
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00003167
Daniel Dunbar1b077112009-11-21 09:06:10 +00003168 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
3169 getASTContext().getSourceManager(),
3170 "Mangling declaration");
Mike Stump1eb44332009-09-09 15:08:12 +00003171
John McCallfb44de92011-05-01 22:35:37 +00003172 CXXNameMangler Mangler(*this, Out, D);
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00003173 return Mangler.mangle(D);
Daniel Dunbar1b077112009-11-21 09:06:10 +00003174}
Mike Stump1eb44332009-09-09 15:08:12 +00003175
Peter Collingbourne14110472011-01-13 18:57:25 +00003176void ItaniumMangleContext::mangleCXXCtor(const CXXConstructorDecl *D,
3177 CXXCtorType Type,
Rafael Espindola0e376a02011-02-11 01:41:00 +00003178 llvm::raw_ostream &Out) {
Rafael Espindolac4850c22011-02-10 23:59:36 +00003179 CXXNameMangler Mangler(*this, Out, D, Type);
Daniel Dunbar77939c92009-11-21 09:06:31 +00003180 Mangler.mangle(D);
Daniel Dunbar1b077112009-11-21 09:06:10 +00003181}
Mike Stump1eb44332009-09-09 15:08:12 +00003182
Peter Collingbourne14110472011-01-13 18:57:25 +00003183void ItaniumMangleContext::mangleCXXDtor(const CXXDestructorDecl *D,
3184 CXXDtorType Type,
Rafael Espindola0e376a02011-02-11 01:41:00 +00003185 llvm::raw_ostream &Out) {
Rafael Espindolac4850c22011-02-10 23:59:36 +00003186 CXXNameMangler Mangler(*this, Out, D, Type);
Daniel Dunbar77939c92009-11-21 09:06:31 +00003187 Mangler.mangle(D);
Daniel Dunbar1b077112009-11-21 09:06:10 +00003188}
Mike Stumpf1216772009-07-31 18:25:34 +00003189
Peter Collingbourne14110472011-01-13 18:57:25 +00003190void ItaniumMangleContext::mangleThunk(const CXXMethodDecl *MD,
3191 const ThunkInfo &Thunk,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003192 llvm::raw_ostream &Out) {
Anders Carlsson19879c92010-03-23 17:17:29 +00003193 // <special-name> ::= T <call-offset> <base encoding>
3194 // # base is the nominal target function of thunk
3195 // <special-name> ::= Tc <call-offset> <call-offset> <base encoding>
3196 // # base is the nominal target function of thunk
3197 // # first call-offset is 'this' adjustment
3198 // # second call-offset is result adjustment
Sean Huntc3021132010-05-05 15:23:54 +00003199
Anders Carlsson19879c92010-03-23 17:17:29 +00003200 assert(!isa<CXXDestructorDecl>(MD) &&
3201 "Use mangleCXXDtor for destructor decls!");
Rafael Espindolac4850c22011-02-10 23:59:36 +00003202 CXXNameMangler Mangler(*this, Out);
Anders Carlsson19879c92010-03-23 17:17:29 +00003203 Mangler.getStream() << "_ZT";
3204 if (!Thunk.Return.isEmpty())
3205 Mangler.getStream() << 'c';
Sean Huntc3021132010-05-05 15:23:54 +00003206
Anders Carlsson19879c92010-03-23 17:17:29 +00003207 // Mangle the 'this' pointer adjustment.
3208 Mangler.mangleCallOffset(Thunk.This.NonVirtual, Thunk.This.VCallOffsetOffset);
Sean Huntc3021132010-05-05 15:23:54 +00003209
Anders Carlsson19879c92010-03-23 17:17:29 +00003210 // Mangle the return pointer adjustment if there is one.
3211 if (!Thunk.Return.isEmpty())
3212 Mangler.mangleCallOffset(Thunk.Return.NonVirtual,
3213 Thunk.Return.VBaseOffsetOffset);
Sean Huntc3021132010-05-05 15:23:54 +00003214
Anders Carlsson19879c92010-03-23 17:17:29 +00003215 Mangler.mangleFunctionEncoding(MD);
3216}
3217
Sean Huntc3021132010-05-05 15:23:54 +00003218void
Peter Collingbourne14110472011-01-13 18:57:25 +00003219ItaniumMangleContext::mangleCXXDtorThunk(const CXXDestructorDecl *DD,
3220 CXXDtorType Type,
3221 const ThisAdjustment &ThisAdjustment,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003222 llvm::raw_ostream &Out) {
Anders Carlsson19879c92010-03-23 17:17:29 +00003223 // <special-name> ::= T <call-offset> <base encoding>
3224 // # base is the nominal target function of thunk
Rafael Espindolac4850c22011-02-10 23:59:36 +00003225 CXXNameMangler Mangler(*this, Out, DD, Type);
Anders Carlsson19879c92010-03-23 17:17:29 +00003226 Mangler.getStream() << "_ZT";
3227
3228 // Mangle the 'this' pointer adjustment.
Sean Huntc3021132010-05-05 15:23:54 +00003229 Mangler.mangleCallOffset(ThisAdjustment.NonVirtual,
Anders Carlsson19879c92010-03-23 17:17:29 +00003230 ThisAdjustment.VCallOffsetOffset);
3231
3232 Mangler.mangleFunctionEncoding(DD);
3233}
3234
Daniel Dunbarc0747712009-11-21 09:12:13 +00003235/// mangleGuardVariable - Returns the mangled name for a guard variable
3236/// for the passed in VarDecl.
Peter Collingbourne14110472011-01-13 18:57:25 +00003237void ItaniumMangleContext::mangleItaniumGuardVariable(const VarDecl *D,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003238 llvm::raw_ostream &Out) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00003239 // <special-name> ::= GV <object name> # Guard variable for one-time
3240 // # initialization
Rafael Espindolac4850c22011-02-10 23:59:36 +00003241 CXXNameMangler Mangler(*this, Out);
Daniel Dunbarc0747712009-11-21 09:12:13 +00003242 Mangler.getStream() << "_ZGV";
3243 Mangler.mangleName(D);
3244}
3245
Peter Collingbourne14110472011-01-13 18:57:25 +00003246void ItaniumMangleContext::mangleReferenceTemporary(const VarDecl *D,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003247 llvm::raw_ostream &Out) {
Anders Carlsson715edf22010-06-26 16:09:40 +00003248 // We match the GCC mangling here.
3249 // <special-name> ::= GR <object name>
Rafael Espindolac4850c22011-02-10 23:59:36 +00003250 CXXNameMangler Mangler(*this, Out);
Anders Carlsson715edf22010-06-26 16:09:40 +00003251 Mangler.getStream() << "_ZGR";
3252 Mangler.mangleName(D);
3253}
3254
Peter Collingbourne14110472011-01-13 18:57:25 +00003255void ItaniumMangleContext::mangleCXXVTable(const CXXRecordDecl *RD,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003256 llvm::raw_ostream &Out) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00003257 // <special-name> ::= TV <type> # virtual table
Rafael Espindolac4850c22011-02-10 23:59:36 +00003258 CXXNameMangler Mangler(*this, Out);
Daniel Dunbarc0747712009-11-21 09:12:13 +00003259 Mangler.getStream() << "_ZTV";
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00003260 Mangler.mangleNameOrStandardSubstitution(RD);
Daniel Dunbar1b077112009-11-21 09:06:10 +00003261}
Mike Stump82d75b02009-11-10 01:58:37 +00003262
Peter Collingbourne14110472011-01-13 18:57:25 +00003263void ItaniumMangleContext::mangleCXXVTT(const CXXRecordDecl *RD,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003264 llvm::raw_ostream &Out) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00003265 // <special-name> ::= TT <type> # VTT structure
Rafael Espindolac4850c22011-02-10 23:59:36 +00003266 CXXNameMangler Mangler(*this, Out);
Daniel Dunbarc0747712009-11-21 09:12:13 +00003267 Mangler.getStream() << "_ZTT";
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00003268 Mangler.mangleNameOrStandardSubstitution(RD);
Daniel Dunbar1b077112009-11-21 09:06:10 +00003269}
Mike Stumpab3f7e92009-11-10 01:41:59 +00003270
Peter Collingbourne14110472011-01-13 18:57:25 +00003271void ItaniumMangleContext::mangleCXXCtorVTable(const CXXRecordDecl *RD,
3272 int64_t Offset,
3273 const CXXRecordDecl *Type,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003274 llvm::raw_ostream &Out) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00003275 // <special-name> ::= TC <type> <offset number> _ <base type>
Rafael Espindolac4850c22011-02-10 23:59:36 +00003276 CXXNameMangler Mangler(*this, Out);
Daniel Dunbarc0747712009-11-21 09:12:13 +00003277 Mangler.getStream() << "_ZTC";
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00003278 Mangler.mangleNameOrStandardSubstitution(RD);
Daniel Dunbarc0747712009-11-21 09:12:13 +00003279 Mangler.getStream() << Offset;
Benjamin Kramer35f59b62010-04-10 16:03:31 +00003280 Mangler.getStream() << '_';
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00003281 Mangler.mangleNameOrStandardSubstitution(Type);
Daniel Dunbar1b077112009-11-21 09:06:10 +00003282}
Mike Stump738f8c22009-07-31 23:15:31 +00003283
Peter Collingbourne14110472011-01-13 18:57:25 +00003284void ItaniumMangleContext::mangleCXXRTTI(QualType Ty,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003285 llvm::raw_ostream &Out) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00003286 // <special-name> ::= TI <type> # typeinfo structure
Douglas Gregor154fe982009-12-23 22:04:40 +00003287 assert(!Ty.hasQualifiers() && "RTTI info cannot have top-level qualifiers");
Rafael Espindolac4850c22011-02-10 23:59:36 +00003288 CXXNameMangler Mangler(*this, Out);
Daniel Dunbarc0747712009-11-21 09:12:13 +00003289 Mangler.getStream() << "_ZTI";
3290 Mangler.mangleType(Ty);
Daniel Dunbar1b077112009-11-21 09:06:10 +00003291}
Mike Stump67795982009-11-14 00:14:13 +00003292
Peter Collingbourne14110472011-01-13 18:57:25 +00003293void ItaniumMangleContext::mangleCXXRTTIName(QualType Ty,
Rafael Espindolaf0be9792011-02-11 02:52:17 +00003294 llvm::raw_ostream &Out) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00003295 // <special-name> ::= TS <type> # typeinfo name (null terminated byte string)
Rafael Espindolac4850c22011-02-10 23:59:36 +00003296 CXXNameMangler Mangler(*this, Out);
Daniel Dunbarc0747712009-11-21 09:12:13 +00003297 Mangler.getStream() << "_ZTS";
3298 Mangler.mangleType(Ty);
Mike Stumpf1216772009-07-31 18:25:34 +00003299}
Peter Collingbourne14110472011-01-13 18:57:25 +00003300
3301MangleContext *clang::createItaniumMangleContext(ASTContext &Context,
3302 Diagnostic &Diags) {
3303 return new ItaniumMangleContext(Context, Diags);
3304}