blob: 834ef4e56932d8e4f74080e9917ae8928502f975 [file] [log] [blame]
Douglas Gregor6ec36682009-02-18 23:53:56 +00001//===--- Mangle.cpp - Mangle C++ Names --------------------------*- 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//===----------------------------------------------------------------------===//
17#include "Mangle.h"
18#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"
Douglas Gregor6ec36682009-02-18 23:53:56 +000024#include "clang/Basic/SourceManager.h"
Anders Carlssonc4355b62009-10-07 01:45:02 +000025#include "llvm/ADT/StringExtras.h"
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000026#include "llvm/Support/raw_ostream.h"
John McCallefe6aee2009-09-05 07:56:18 +000027#include "llvm/Support/ErrorHandling.h"
Anders Carlsson461e3262010-04-08 16:30:25 +000028#include "CGVTables.h"
Anders Carlssonf98574b2010-02-05 07:31:37 +000029
30#define MANGLE_CHECKER 0
31
32#if MANGLE_CHECKER
33#include <cxxabi.h>
34#endif
35
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000036using namespace clang;
Anders Carlssonb73a5be2009-11-26 02:49:32 +000037using namespace CodeGen;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000038
Charles Davis685b1d92010-05-26 18:25:27 +000039MiscNameMangler::MiscNameMangler(MangleContext &C,
40 llvm::SmallVectorImpl<char> &Res)
41 : Context(C), Out(Res) { }
42
Fariborz Jahanian564360b2010-06-24 00:08:06 +000043void MiscNameMangler::mangleBlock(GlobalDecl GD, const BlockDecl *BD) {
Charles Davis685b1d92010-05-26 18:25:27 +000044 // Mangle the context of the block.
45 // FIXME: We currently mimic GCC's mangling scheme, which leaves much to be
46 // desired. Come up with a better mangling scheme.
47 const DeclContext *DC = BD->getDeclContext();
48 while (isa<BlockDecl>(DC) || isa<EnumDecl>(DC))
49 DC = DC->getParent();
50 if (DC->isFunctionOrMethod()) {
51 Out << "__";
52 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC))
53 mangleObjCMethodName(Method);
54 else {
55 const NamedDecl *ND = cast<NamedDecl>(DC);
56 if (IdentifierInfo *II = ND->getIdentifier())
57 Out << II->getName();
Fariborz Jahanian564360b2010-06-24 00:08:06 +000058 else if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(ND)) {
59 llvm::SmallString<64> Buffer;
60 Context.mangleCXXDtor(D, GD.getDtorType(), Buffer);
61 Out << Buffer;
62 }
63 else if (const CXXConstructorDecl *D = dyn_cast<CXXConstructorDecl>(ND)) {
64 llvm::SmallString<64> Buffer;
65 Context.mangleCXXCtor(D, GD.getCtorType(), Buffer);
66 Out << Buffer;
67 }
Charles Davis685b1d92010-05-26 18:25:27 +000068 else {
69 // FIXME: We were doing a mangleUnqualifiedName() before, but that's
70 // a private member of a class that will soon itself be private to the
71 // Itanium C++ ABI object. What should we do now? Right now, I'm just
72 // calling the mangleName() method on the MangleContext; is there a
73 // better way?
74 llvm::SmallString<64> Buffer;
75 Context.mangleName(ND, Buffer);
76 Out << Buffer;
77 }
78 }
79 Out << "_block_invoke_" << Context.getBlockId(BD, true);
80 } else {
81 Out << "__block_global_" << Context.getBlockId(BD, false);
82 }
83}
84
85void MiscNameMangler::mangleObjCMethodName(const ObjCMethodDecl *MD) {
86 llvm::SmallString<64> Name;
87 llvm::raw_svector_ostream OS(Name);
88
89 const ObjCContainerDecl *CD =
90 dyn_cast<ObjCContainerDecl>(MD->getDeclContext());
91 assert (CD && "Missing container decl in GetNameForMethod");
92 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
93 if (const ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(CD))
94 OS << '(' << CID << ')';
95 OS << ' ' << MD->getSelector().getAsString() << ']';
96
97 Out << OS.str().size() << OS.str();
98}
99
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000100namespace {
Fariborz Jahanian57058532010-03-03 19:41:08 +0000101
John McCall82b7d7b2010-10-18 21:28:44 +0000102static const CXXRecordDecl *GetLocalClassDecl(const NamedDecl *ND) {
103 const DeclContext *DC = dyn_cast<DeclContext>(ND);
104 if (!DC)
105 DC = ND->getDeclContext();
106 while (!DC->isNamespace() && !DC->isTranslationUnit()) {
107 if (isa<FunctionDecl>(DC->getParent()))
108 return dyn_cast<CXXRecordDecl>(DC);
109 DC = DC->getParent();
Fariborz Jahanian57058532010-03-03 19:41:08 +0000110 }
111 return 0;
112}
113
Anders Carlsson7e120032009-11-24 05:36:32 +0000114static const CXXMethodDecl *getStructor(const CXXMethodDecl *MD) {
115 assert((isa<CXXConstructorDecl>(MD) || isa<CXXDestructorDecl>(MD)) &&
116 "Passed in decl is not a ctor or dtor!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000117
Anders Carlsson7e120032009-11-24 05:36:32 +0000118 if (const TemplateDecl *TD = MD->getPrimaryTemplate()) {
119 MD = cast<CXXMethodDecl>(TD->getTemplatedDecl());
120
121 assert((isa<CXXConstructorDecl>(MD) || isa<CXXDestructorDecl>(MD)) &&
122 "Templated decl is not a ctor or dtor!");
123 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000124
Anders Carlsson7e120032009-11-24 05:36:32 +0000125 return MD;
126}
John McCall1dd73832010-02-04 01:42:13 +0000127
128static const unsigned UnknownArity = ~0U;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000129
Daniel Dunbar1b077112009-11-21 09:06:10 +0000130/// CXXNameMangler - Manage the mangling of a single name.
Daniel Dunbarc0747712009-11-21 09:12:13 +0000131class CXXNameMangler {
Daniel Dunbar1b077112009-11-21 09:06:10 +0000132 MangleContext &Context;
Daniel Dunbar94fd26d2009-11-21 09:06:22 +0000133 llvm::raw_svector_ostream Out;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000134
Daniel Dunbar1b077112009-11-21 09:06:10 +0000135 const CXXMethodDecl *Structor;
136 unsigned StructorType;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000137
Anders Carlsson9d85b722010-06-02 04:29:50 +0000138 /// SeqID - The next subsitution sequence number.
139 unsigned SeqID;
140
Daniel Dunbar1b077112009-11-21 09:06:10 +0000141 llvm::DenseMap<uintptr_t, unsigned> Substitutions;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000142
John McCall1dd73832010-02-04 01:42:13 +0000143 ASTContext &getASTContext() const { return Context.getASTContext(); }
144
Daniel Dunbarc0747712009-11-21 09:12:13 +0000145public:
Daniel Dunbar94fd26d2009-11-21 09:06:22 +0000146 CXXNameMangler(MangleContext &C, llvm::SmallVectorImpl<char> &Res)
Anders Carlsson9d85b722010-06-02 04:29:50 +0000147 : Context(C), Out(Res), Structor(0), StructorType(0), SeqID(0) { }
Daniel Dunbar77939c92009-11-21 09:06:31 +0000148 CXXNameMangler(MangleContext &C, llvm::SmallVectorImpl<char> &Res,
149 const CXXConstructorDecl *D, CXXCtorType Type)
Anders Carlsson9d85b722010-06-02 04:29:50 +0000150 : Context(C), Out(Res), Structor(getStructor(D)), StructorType(Type),
151 SeqID(0) { }
Daniel Dunbar77939c92009-11-21 09:06:31 +0000152 CXXNameMangler(MangleContext &C, llvm::SmallVectorImpl<char> &Res,
153 const CXXDestructorDecl *D, CXXDtorType Type)
Anders Carlsson9d85b722010-06-02 04:29:50 +0000154 : Context(C), Out(Res), Structor(getStructor(D)), StructorType(Type),
155 SeqID(0) { }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000156
Anders Carlssonf98574b2010-02-05 07:31:37 +0000157#if MANGLE_CHECKER
158 ~CXXNameMangler() {
159 if (Out.str()[0] == '\01')
160 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000161
Anders Carlssonf98574b2010-02-05 07:31:37 +0000162 int status = 0;
163 char *result = abi::__cxa_demangle(Out.str().str().c_str(), 0, 0, &status);
164 assert(status == 0 && "Could not demangle mangled name!");
165 free(result);
166 }
167#endif
Daniel Dunbarc0747712009-11-21 09:12:13 +0000168 llvm::raw_svector_ostream &getStream() { return Out; }
169
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000170 void mangle(const NamedDecl *D, llvm::StringRef Prefix = "_Z");
Anders Carlsson19879c92010-03-23 17:17:29 +0000171 void mangleCallOffset(int64_t NonVirtual, int64_t Virtual);
John McCall0512e482010-07-14 04:20:34 +0000172 void mangleNumber(const llvm::APSInt &I);
Anders Carlssona94822e2009-11-26 02:32:05 +0000173 void mangleNumber(int64_t Number);
John McCall0512e482010-07-14 04:20:34 +0000174 void mangleFloat(const llvm::APFloat &F);
Daniel Dunbarc0747712009-11-21 09:12:13 +0000175 void mangleFunctionEncoding(const FunctionDecl *FD);
176 void mangleName(const NamedDecl *ND);
177 void mangleType(QualType T);
Douglas Gregor1b12a3b2010-05-26 05:11:13 +0000178 void mangleNameOrStandardSubstitution(const NamedDecl *ND);
179
Daniel Dunbarc0747712009-11-21 09:12:13 +0000180private:
Daniel Dunbar1b077112009-11-21 09:06:10 +0000181 bool mangleSubstitution(const NamedDecl *ND);
182 bool mangleSubstitution(QualType T);
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000183 bool mangleSubstitution(TemplateName Template);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000184 bool mangleSubstitution(uintptr_t Ptr);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000185
Daniel Dunbar1b077112009-11-21 09:06:10 +0000186 bool mangleStandardSubstitution(const NamedDecl *ND);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000187
Daniel Dunbar1b077112009-11-21 09:06:10 +0000188 void addSubstitution(const NamedDecl *ND) {
189 ND = cast<NamedDecl>(ND->getCanonicalDecl());
Anders Carlsson433d1372009-11-07 04:26:04 +0000190
Daniel Dunbar1b077112009-11-21 09:06:10 +0000191 addSubstitution(reinterpret_cast<uintptr_t>(ND));
192 }
193 void addSubstitution(QualType T);
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000194 void addSubstitution(TemplateName Template);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000195 void addSubstitution(uintptr_t Ptr);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000196
John McCall1dd73832010-02-04 01:42:13 +0000197 void mangleUnresolvedScope(NestedNameSpecifier *Qualifier);
198 void mangleUnresolvedName(NestedNameSpecifier *Qualifier,
199 DeclarationName Name,
200 unsigned KnownArity = UnknownArity);
201
Daniel Dunbar1b077112009-11-21 09:06:10 +0000202 void mangleName(const TemplateDecl *TD,
203 const TemplateArgument *TemplateArgs,
204 unsigned NumTemplateArgs);
John McCall1dd73832010-02-04 01:42:13 +0000205 void mangleUnqualifiedName(const NamedDecl *ND) {
206 mangleUnqualifiedName(ND, ND->getDeclName(), UnknownArity);
207 }
208 void mangleUnqualifiedName(const NamedDecl *ND, DeclarationName Name,
209 unsigned KnownArity);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000210 void mangleUnscopedName(const NamedDecl *ND);
211 void mangleUnscopedTemplateName(const TemplateDecl *ND);
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000212 void mangleUnscopedTemplateName(TemplateName);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000213 void mangleSourceName(const IdentifierInfo *II);
214 void mangleLocalName(const NamedDecl *ND);
Fariborz Jahanian57058532010-03-03 19:41:08 +0000215 void mangleNestedName(const NamedDecl *ND, const DeclContext *DC,
216 bool NoFunction=false);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000217 void mangleNestedName(const TemplateDecl *TD,
218 const TemplateArgument *TemplateArgs,
219 unsigned NumTemplateArgs);
Fariborz Jahanian57058532010-03-03 19:41:08 +0000220 void manglePrefix(const DeclContext *DC, bool NoFunction=false);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000221 void mangleTemplatePrefix(const TemplateDecl *ND);
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000222 void mangleTemplatePrefix(TemplateName Template);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000223 void mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity);
224 void mangleQualifiers(Qualifiers Quals);
John McCallefe6aee2009-09-05 07:56:18 +0000225
Anders Carlsson7b06f6c2009-12-10 03:14:39 +0000226 void mangleObjCMethodName(const ObjCMethodDecl *MD);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000227
Daniel Dunbar1b077112009-11-21 09:06:10 +0000228 // Declare manglers for every type class.
John McCallefe6aee2009-09-05 07:56:18 +0000229#define ABSTRACT_TYPE(CLASS, PARENT)
230#define NON_CANONICAL_TYPE(CLASS, PARENT)
231#define TYPE(CLASS, PARENT) void mangleType(const CLASS##Type *T);
232#include "clang/AST/TypeNodes.def"
233
Daniel Dunbar1b077112009-11-21 09:06:10 +0000234 void mangleType(const TagType*);
John McCallb6f532e2010-07-14 06:43:17 +0000235 void mangleType(TemplateName);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000236 void mangleBareFunctionType(const FunctionType *T,
237 bool MangleReturnType);
Bob Wilson57147a82010-11-16 00:32:18 +0000238 void mangleNeonVectorType(const VectorType *T);
Anders Carlssone170ba72009-12-14 01:45:37 +0000239
240 void mangleIntegerLiteral(QualType T, const llvm::APSInt &Value);
John McCall2f27bf82010-02-04 02:56:29 +0000241 void mangleMemberExpr(const Expr *Base, bool IsArrow,
242 NestedNameSpecifier *Qualifier,
243 DeclarationName Name,
244 unsigned KnownArity);
John McCall5e1e89b2010-08-18 19:18:59 +0000245 void mangleExpression(const Expr *E, unsigned Arity = UnknownArity);
Daniel Dunbar1b077112009-11-21 09:06:10 +0000246 void mangleCXXCtorType(CXXCtorType T);
247 void mangleCXXDtorType(CXXDtorType T);
Mike Stump1eb44332009-09-09 15:08:12 +0000248
John McCall6dbce192010-08-20 00:17:19 +0000249 void mangleTemplateArgs(const ExplicitTemplateArgumentList &TemplateArgs);
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000250 void mangleTemplateArgs(TemplateName Template,
251 const TemplateArgument *TemplateArgs,
Sean Huntc3021132010-05-05 15:23:54 +0000252 unsigned NumTemplateArgs);
Rafael Espindolad9800722010-03-11 14:07:00 +0000253 void mangleTemplateArgs(const TemplateParameterList &PL,
254 const TemplateArgument *TemplateArgs,
Daniel Dunbar1b077112009-11-21 09:06:10 +0000255 unsigned NumTemplateArgs);
Rafael Espindolad9800722010-03-11 14:07:00 +0000256 void mangleTemplateArgs(const TemplateParameterList &PL,
257 const TemplateArgumentList &AL);
258 void mangleTemplateArg(const NamedDecl *P, const TemplateArgument &A);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000259
Daniel Dunbar1b077112009-11-21 09:06:10 +0000260 void mangleTemplateParameter(unsigned Index);
261};
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000262}
263
Anders Carlsson43f17402009-04-02 15:51:53 +0000264static bool isInCLinkageSpecification(const Decl *D) {
Douglas Gregor457e2812009-10-28 16:31:34 +0000265 D = D->getCanonicalDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000266 for (const DeclContext *DC = D->getDeclContext();
Anders Carlsson43f17402009-04-02 15:51:53 +0000267 !DC->isTranslationUnit(); DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000268 if (const LinkageSpecDecl *Linkage = dyn_cast<LinkageSpecDecl>(DC))
Anders Carlsson43f17402009-04-02 15:51:53 +0000269 return Linkage->getLanguage() == LinkageSpecDecl::lang_c;
270 }
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Anders Carlsson43f17402009-04-02 15:51:53 +0000272 return false;
273}
274
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000275bool MangleContext::shouldMangleDeclName(const NamedDecl *D) {
276 // In C, functions with no attributes never need to be mangled. Fastpath them.
277 if (!getASTContext().getLangOptions().CPlusPlus && !D->hasAttrs())
278 return false;
279
280 // Any decl can be declared with __asm("foo") on it, and this takes precedence
281 // over all other naming in the .o file.
282 if (D->hasAttr<AsmLabelAttr>())
283 return true;
284
Mike Stump141c5af2009-09-02 00:25:38 +0000285 // Clang's "overloadable" attribute extension to C/C++ implies name mangling
Anders Carlssona1e16222009-11-07 07:15:03 +0000286 // (always) as does passing a C++ member function and a function
287 // whose name is not a simple identifier.
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000288 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
289 if (FD && (FD->hasAttr<OverloadableAttr>() || isa<CXXMethodDecl>(FD) ||
290 !FD->getDeclName().isIdentifier()))
291 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000292
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000293 // Otherwise, no mangling is done outside C++ mode.
294 if (!getASTContext().getLangOptions().CPlusPlus)
295 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000296
Sean Hunt31455252010-01-24 03:04:27 +0000297 // Variables at global scope with non-internal linkage are not mangled
Eli Friedman7facf842009-12-02 20:32:49 +0000298 if (!FD) {
299 const DeclContext *DC = D->getDeclContext();
300 // Check for extern variable declared locally.
Fariborz Jahaniane81c5612010-06-30 18:57:21 +0000301 if (DC->isFunctionOrMethod() && D->hasLinkage())
Eli Friedman7facf842009-12-02 20:32:49 +0000302 while (!DC->isNamespace() && !DC->isTranslationUnit())
303 DC = DC->getParent();
Douglas Gregor0b6bc8b2010-02-03 09:33:45 +0000304 if (DC->isTranslationUnit() && D->getLinkage() != InternalLinkage)
Eli Friedman7facf842009-12-02 20:32:49 +0000305 return false;
306 }
307
Eli Friedmanc00cb642010-07-18 20:49:59 +0000308 // Class members are always mangled.
309 if (D->getDeclContext()->isRecord())
310 return true;
311
Eli Friedman7facf842009-12-02 20:32:49 +0000312 // C functions and "main" are not mangled.
313 if ((FD && FD->isMain()) || isInCLinkageSpecification(D))
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000314 return false;
315
Anders Carlsson43f17402009-04-02 15:51:53 +0000316 return true;
317}
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000318
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000319void CXXNameMangler::mangle(const NamedDecl *D, llvm::StringRef Prefix) {
Mike Stump141c5af2009-09-02 00:25:38 +0000320 // Any decl can be declared with __asm("foo") on it, and this takes precedence
321 // over all other naming in the .o file.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000322 if (const AsmLabelAttr *ALA = D->getAttr<AsmLabelAttr>()) {
Chris Lattnerca3f25c2009-03-21 08:24:40 +0000323 // If we have an asm name, then we use it as the mangling.
324 Out << '\01'; // LLVM IR Marker for __asm("foo")
325 Out << ALA->getLabel();
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000326 return;
Chris Lattnerca3f25c2009-03-21 08:24:40 +0000327 }
Mike Stump1eb44332009-09-09 15:08:12 +0000328
Sean Hunt31455252010-01-24 03:04:27 +0000329 // <mangled-name> ::= _Z <encoding>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000330 // ::= <data name>
331 // ::= <special-name>
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000332 Out << Prefix;
333 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
Daniel Dunbarf981bf82009-11-21 09:14:52 +0000334 mangleFunctionEncoding(FD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000335 else if (const VarDecl *VD = dyn_cast<VarDecl>(D))
336 mangleName(VD);
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000337 else
Rafael Espindolad9800722010-03-11 14:07:00 +0000338 mangleName(cast<FieldDecl>(D));
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000339}
340
341void CXXNameMangler::mangleFunctionEncoding(const FunctionDecl *FD) {
342 // <encoding> ::= <function name> <bare-function-type>
343 mangleName(FD);
Mike Stump1eb44332009-09-09 15:08:12 +0000344
Daniel Dunbar7e0c1952009-11-21 09:17:15 +0000345 // Don't mangle in the type if this isn't a decl we should typically mangle.
346 if (!Context.shouldMangleDeclName(FD))
347 return;
348
Mike Stump141c5af2009-09-02 00:25:38 +0000349 // Whether the mangling of a function type includes the return type depends on
350 // the context and the nature of the function. The rules for deciding whether
351 // the return type is included are:
Mike Stump1eb44332009-09-09 15:08:12 +0000352 //
Douglas Gregor1fd2dd12009-06-29 22:39:32 +0000353 // 1. Template functions (names or types) have return types encoded, with
354 // the exceptions listed below.
Mike Stump1eb44332009-09-09 15:08:12 +0000355 // 2. Function types not appearing as part of a function name mangling,
Douglas Gregor1fd2dd12009-06-29 22:39:32 +0000356 // e.g. parameters, pointer types, etc., have return type encoded, with the
357 // exceptions listed below.
358 // 3. Non-template function names do not have return types encoded.
359 //
Mike Stump141c5af2009-09-02 00:25:38 +0000360 // The exceptions mentioned in (1) and (2) above, for which the return type is
361 // never included, are
Douglas Gregor1fd2dd12009-06-29 22:39:32 +0000362 // 1. Constructors.
363 // 2. Destructors.
364 // 3. Conversion operator functions, e.g. operator int.
365 bool MangleReturnType = false;
Anders Carlsson9234b7f2009-09-17 03:46:43 +0000366 if (FunctionTemplateDecl *PrimaryTemplate = FD->getPrimaryTemplate()) {
367 if (!(isa<CXXConstructorDecl>(FD) || isa<CXXDestructorDecl>(FD) ||
368 isa<CXXConversionDecl>(FD)))
369 MangleReturnType = true;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000370
Anders Carlsson9234b7f2009-09-17 03:46:43 +0000371 // Mangle the type of the primary template.
372 FD = PrimaryTemplate->getTemplatedDecl();
373 }
374
John McCall54e14c42009-10-22 22:37:11 +0000375 // Do the canonicalization out here because parameter types can
376 // undergo additional canonicalization (e.g. array decay).
377 FunctionType *FT = cast<FunctionType>(Context.getASTContext()
378 .getCanonicalType(FD->getType()));
379
380 mangleBareFunctionType(FT, MangleReturnType);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000381}
382
Anders Carlsson47846d22009-12-04 06:23:23 +0000383static const DeclContext *IgnoreLinkageSpecDecls(const DeclContext *DC) {
384 while (isa<LinkageSpecDecl>(DC)) {
Anders Carlsson47846d22009-12-04 06:23:23 +0000385 DC = DC->getParent();
386 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000387
Anders Carlsson47846d22009-12-04 06:23:23 +0000388 return DC;
389}
390
Anders Carlssonc820f902010-06-02 15:58:27 +0000391/// isStd - Return whether a given namespace is the 'std' namespace.
392static bool isStd(const NamespaceDecl *NS) {
393 if (!IgnoreLinkageSpecDecls(NS->getParent())->isTranslationUnit())
394 return false;
395
396 const IdentifierInfo *II = NS->getOriginalNamespace()->getIdentifier();
397 return II && II->isStr("std");
398}
399
Anders Carlsson47846d22009-12-04 06:23:23 +0000400// isStdNamespace - Return whether a given decl context is a toplevel 'std'
401// namespace.
Daniel Dunbar1308af92009-11-21 09:11:45 +0000402static bool isStdNamespace(const DeclContext *DC) {
Anders Carlsson47846d22009-12-04 06:23:23 +0000403 if (!DC->isNamespace())
404 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000405
Anders Carlsson47846d22009-12-04 06:23:23 +0000406 return isStd(cast<NamespaceDecl>(DC));
Daniel Dunbar1308af92009-11-21 09:11:45 +0000407}
408
Anders Carlssonbb36ba42009-09-26 03:24:57 +0000409static const TemplateDecl *
410isTemplate(const NamedDecl *ND, const TemplateArgumentList *&TemplateArgs) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000411 // Check if we have a function template.
412 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)){
Anders Carlssonbb36ba42009-09-26 03:24:57 +0000413 if (const TemplateDecl *TD = FD->getPrimaryTemplate()) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000414 TemplateArgs = FD->getTemplateSpecializationArgs();
Anders Carlssonbb36ba42009-09-26 03:24:57 +0000415 return TD;
Anders Carlsson2744a062009-09-18 19:00:18 +0000416 }
417 }
418
Anders Carlssoneafc6dc2009-09-18 19:44:50 +0000419 // Check if we have a class template.
420 if (const ClassTemplateSpecializationDecl *Spec =
421 dyn_cast<ClassTemplateSpecializationDecl>(ND)) {
422 TemplateArgs = &Spec->getTemplateArgs();
Anders Carlssonbb36ba42009-09-26 03:24:57 +0000423 return Spec->getSpecializedTemplate();
Anders Carlssoneafc6dc2009-09-18 19:44:50 +0000424 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000425
Anders Carlsson2744a062009-09-18 19:00:18 +0000426 return 0;
427}
428
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000429void CXXNameMangler::mangleName(const NamedDecl *ND) {
430 // <name> ::= <nested-name>
431 // ::= <unscoped-name>
432 // ::= <unscoped-template-name> <template-args>
Anders Carlsson201ce742009-09-17 03:17:01 +0000433 // ::= <local-name>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000434 //
Anders Carlssond58d6f72009-09-17 16:12:20 +0000435 const DeclContext *DC = ND->getDeclContext();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000436
Eli Friedman7facf842009-12-02 20:32:49 +0000437 // If this is an extern variable declared locally, the relevant DeclContext
438 // is that of the containing namespace, or the translation unit.
439 if (isa<FunctionDecl>(DC) && ND->hasLinkage())
440 while (!DC->isNamespace() && !DC->isTranslationUnit())
441 DC = DC->getParent();
John McCall82b7d7b2010-10-18 21:28:44 +0000442 else if (GetLocalClassDecl(ND)) {
443 mangleLocalName(ND);
444 return;
445 }
Eli Friedman7facf842009-12-02 20:32:49 +0000446
Anders Carlsson5cc58c62009-09-22 17:23:30 +0000447 while (isa<LinkageSpecDecl>(DC))
Anders Carlssond58d6f72009-09-17 16:12:20 +0000448 DC = DC->getParent();
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000449
Anders Carlssond58d6f72009-09-17 16:12:20 +0000450 if (DC->isTranslationUnit() || isStdNamespace(DC)) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000451 // Check if we have a template.
452 const TemplateArgumentList *TemplateArgs = 0;
Anders Carlsson0fa6df42009-09-26 19:45:45 +0000453 if (const TemplateDecl *TD = isTemplate(ND, TemplateArgs)) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000454 mangleUnscopedTemplateName(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000455 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
456 mangleTemplateArgs(*TemplateParameters, *TemplateArgs);
Anders Carlsson2744a062009-09-18 19:00:18 +0000457 return;
Anders Carlsson7482e242009-09-18 04:29:09 +0000458 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000459
Anders Carlsson7482e242009-09-18 04:29:09 +0000460 mangleUnscopedName(ND);
461 return;
462 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000463
Anders Carlsson7b06f6c2009-12-10 03:14:39 +0000464 if (isa<FunctionDecl>(DC) || isa<ObjCMethodDecl>(DC)) {
Anders Carlsson7482e242009-09-18 04:29:09 +0000465 mangleLocalName(ND);
466 return;
467 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000468
Eli Friedman7facf842009-12-02 20:32:49 +0000469 mangleNestedName(ND, DC);
Anders Carlsson7482e242009-09-18 04:29:09 +0000470}
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000471void CXXNameMangler::mangleName(const TemplateDecl *TD,
Anders Carlsson7624f212009-09-18 02:42:01 +0000472 const TemplateArgument *TemplateArgs,
473 unsigned NumTemplateArgs) {
Anders Carlsson47846d22009-12-04 06:23:23 +0000474 const DeclContext *DC = IgnoreLinkageSpecDecls(TD->getDeclContext());
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000475
Anders Carlsson7624f212009-09-18 02:42:01 +0000476 if (DC->isTranslationUnit() || isStdNamespace(DC)) {
Anders Carlsson0fa6df42009-09-26 19:45:45 +0000477 mangleUnscopedTemplateName(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000478 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
479 mangleTemplateArgs(*TemplateParameters, TemplateArgs, NumTemplateArgs);
Anders Carlsson7624f212009-09-18 02:42:01 +0000480 } else {
481 mangleNestedName(TD, TemplateArgs, NumTemplateArgs);
482 }
483}
484
Anders Carlsson201ce742009-09-17 03:17:01 +0000485void CXXNameMangler::mangleUnscopedName(const NamedDecl *ND) {
486 // <unscoped-name> ::= <unqualified-name>
487 // ::= St <unqualified-name> # ::std::
488 if (isStdNamespace(ND->getDeclContext()))
489 Out << "St";
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000490
Anders Carlsson201ce742009-09-17 03:17:01 +0000491 mangleUnqualifiedName(ND);
492}
493
Anders Carlsson0fa6df42009-09-26 19:45:45 +0000494void CXXNameMangler::mangleUnscopedTemplateName(const TemplateDecl *ND) {
Anders Carlsson201ce742009-09-17 03:17:01 +0000495 // <unscoped-template-name> ::= <unscoped-name>
496 // ::= <substitution>
Anders Carlsson7624f212009-09-18 02:42:01 +0000497 if (mangleSubstitution(ND))
Anders Carlsson03c9d532009-09-17 04:02:31 +0000498 return;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000499
Douglas Gregor32fb4e12010-02-05 20:45:00 +0000500 // <template-template-param> ::= <template-param>
501 if (const TemplateTemplateParmDecl *TTP
502 = dyn_cast<TemplateTemplateParmDecl>(ND)) {
503 mangleTemplateParameter(TTP->getIndex());
504 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000505 }
Douglas Gregor32fb4e12010-02-05 20:45:00 +0000506
Anders Carlsson1668f202009-09-26 20:13:56 +0000507 mangleUnscopedName(ND->getTemplatedDecl());
Anders Carlsson7624f212009-09-18 02:42:01 +0000508 addSubstitution(ND);
Anders Carlsson201ce742009-09-17 03:17:01 +0000509}
510
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000511void CXXNameMangler::mangleUnscopedTemplateName(TemplateName Template) {
512 // <unscoped-template-name> ::= <unscoped-name>
513 // ::= <substitution>
514 if (TemplateDecl *TD = Template.getAsTemplateDecl())
515 return mangleUnscopedTemplateName(TD);
Sean Huntc3021132010-05-05 15:23:54 +0000516
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000517 if (mangleSubstitution(Template))
518 return;
519
520 // FIXME: How to cope with operators here?
521 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
522 assert(Dependent && "Not a dependent template name?");
523 if (!Dependent->isIdentifier()) {
524 // FIXME: We can't possibly know the arity of the operator here!
525 Diagnostic &Diags = Context.getDiags();
526 unsigned DiagID = Diags.getCustomDiagID(Diagnostic::Error,
527 "cannot mangle dependent operator name");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000528 Diags.Report(DiagID);
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000529 return;
530 }
Sean Huntc3021132010-05-05 15:23:54 +0000531
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000532 mangleSourceName(Dependent->getIdentifier());
533 addSubstitution(Template);
534}
535
John McCall0512e482010-07-14 04:20:34 +0000536void CXXNameMangler::mangleFloat(const llvm::APFloat &F) {
537 // TODO: avoid this copy with careful stream management.
538 llvm::SmallString<20> Buffer;
539 F.bitcastToAPInt().toString(Buffer, 16, false);
540 Out.write(Buffer.data(), Buffer.size());
541}
542
543void CXXNameMangler::mangleNumber(const llvm::APSInt &Value) {
544 if (Value.isSigned() && Value.isNegative()) {
545 Out << 'n';
546 Value.abs().print(Out, true);
547 } else
548 Value.print(Out, Value.isSigned());
549}
550
Anders Carlssona94822e2009-11-26 02:32:05 +0000551void CXXNameMangler::mangleNumber(int64_t Number) {
552 // <number> ::= [n] <non-negative decimal integer>
553 if (Number < 0) {
554 Out << 'n';
555 Number = -Number;
556 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000557
Anders Carlssona94822e2009-11-26 02:32:05 +0000558 Out << Number;
559}
560
Anders Carlsson19879c92010-03-23 17:17:29 +0000561void CXXNameMangler::mangleCallOffset(int64_t NonVirtual, int64_t Virtual) {
Mike Stump141c5af2009-09-02 00:25:38 +0000562 // <call-offset> ::= h <nv-offset> _
563 // ::= v <v-offset> _
564 // <nv-offset> ::= <offset number> # non-virtual base override
Anders Carlssona94822e2009-11-26 02:32:05 +0000565 // <v-offset> ::= <offset number> _ <virtual offset number>
Mike Stump141c5af2009-09-02 00:25:38 +0000566 // # virtual base override, with vcall offset
Anders Carlsson19879c92010-03-23 17:17:29 +0000567 if (!Virtual) {
Anders Carlssona94822e2009-11-26 02:32:05 +0000568 Out << 'h';
Anders Carlsson19879c92010-03-23 17:17:29 +0000569 mangleNumber(NonVirtual);
Anders Carlssona94822e2009-11-26 02:32:05 +0000570 Out << '_';
571 return;
Mike Stump141c5af2009-09-02 00:25:38 +0000572 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000573
Anders Carlssona94822e2009-11-26 02:32:05 +0000574 Out << 'v';
Anders Carlsson19879c92010-03-23 17:17:29 +0000575 mangleNumber(NonVirtual);
Anders Carlssona94822e2009-11-26 02:32:05 +0000576 Out << '_';
Anders Carlsson19879c92010-03-23 17:17:29 +0000577 mangleNumber(Virtual);
Anders Carlssona94822e2009-11-26 02:32:05 +0000578 Out << '_';
Mike Stump9124bcc2009-09-02 00:56:18 +0000579}
580
John McCall1dd73832010-02-04 01:42:13 +0000581void CXXNameMangler::mangleUnresolvedScope(NestedNameSpecifier *Qualifier) {
582 Qualifier = getASTContext().getCanonicalNestedNameSpecifier(Qualifier);
583 switch (Qualifier->getKind()) {
584 case NestedNameSpecifier::Global:
585 // nothing
586 break;
587 case NestedNameSpecifier::Namespace:
588 mangleName(Qualifier->getAsNamespace());
589 break;
590 case NestedNameSpecifier::TypeSpec:
Rafael Espindola9b35b252010-03-17 04:28:11 +0000591 case NestedNameSpecifier::TypeSpecWithTemplate: {
592 const Type *QTy = Qualifier->getAsType();
593
594 if (const TemplateSpecializationType *TST =
595 dyn_cast<TemplateSpecializationType>(QTy)) {
596 if (!mangleSubstitution(QualType(TST, 0))) {
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000597 mangleTemplatePrefix(TST->getTemplateName());
Sean Huntc3021132010-05-05 15:23:54 +0000598
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000599 // FIXME: GCC does not appear to mangle the template arguments when
600 // the template in question is a dependent template name. Should we
601 // emulate that badness?
602 mangleTemplateArgs(TST->getTemplateName(), TST->getArgs(),
Rafael Espindola9b35b252010-03-17 04:28:11 +0000603 TST->getNumArgs());
604 addSubstitution(QualType(TST, 0));
605 }
606 } else {
607 // We use the QualType mangle type variant here because it handles
608 // substitutions.
609 mangleType(QualType(QTy, 0));
610 }
611 }
John McCall1dd73832010-02-04 01:42:13 +0000612 break;
613 case NestedNameSpecifier::Identifier:
John McCallad5e7382010-03-01 23:49:17 +0000614 // Member expressions can have these without prefixes.
615 if (Qualifier->getPrefix())
616 mangleUnresolvedScope(Qualifier->getPrefix());
John McCall1dd73832010-02-04 01:42:13 +0000617 mangleSourceName(Qualifier->getAsIdentifier());
618 break;
619 }
620}
621
622/// Mangles a name which was not resolved to a specific entity.
623void CXXNameMangler::mangleUnresolvedName(NestedNameSpecifier *Qualifier,
624 DeclarationName Name,
625 unsigned KnownArity) {
626 if (Qualifier)
627 mangleUnresolvedScope(Qualifier);
628 // FIXME: ambiguity of unqualified lookup with ::
629
630 mangleUnqualifiedName(0, Name, KnownArity);
631}
632
Anders Carlsson6f7e2f42010-06-08 14:49:03 +0000633static const FieldDecl *FindFirstNamedDataMember(const RecordDecl *RD) {
634 assert(RD->isAnonymousStructOrUnion() &&
635 "Expected anonymous struct or union!");
636
637 for (RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
638 I != E; ++I) {
639 const FieldDecl *FD = *I;
640
641 if (FD->getIdentifier())
642 return FD;
643
644 if (const RecordType *RT = FD->getType()->getAs<RecordType>()) {
645 if (const FieldDecl *NamedDataMember =
646 FindFirstNamedDataMember(RT->getDecl()))
647 return NamedDataMember;
648 }
649 }
650
651 // We didn't find a named data member.
652 return 0;
653}
654
John McCall1dd73832010-02-04 01:42:13 +0000655void CXXNameMangler::mangleUnqualifiedName(const NamedDecl *ND,
656 DeclarationName Name,
657 unsigned KnownArity) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000658 // <unqualified-name> ::= <operator-name>
Mike Stump1eb44332009-09-09 15:08:12 +0000659 // ::= <ctor-dtor-name>
660 // ::= <source-name>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000661 switch (Name.getNameKind()) {
Anders Carlssonc4355b62009-10-07 01:45:02 +0000662 case DeclarationName::Identifier: {
Anders Carlssonc4355b62009-10-07 01:45:02 +0000663 if (const IdentifierInfo *II = Name.getAsIdentifierInfo()) {
Sean Hunt31455252010-01-24 03:04:27 +0000664 // We must avoid conflicts between internally- and externally-
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000665 // linked variable declaration names in the same TU.
Anders Carlssonaec25232010-02-06 04:52:27 +0000666 // This naming convention is the same as that followed by GCC, though it
667 // shouldn't actually matter.
668 if (ND && isa<VarDecl>(ND) && ND->getLinkage() == InternalLinkage &&
Sean Hunt31455252010-01-24 03:04:27 +0000669 ND->getDeclContext()->isFileContext())
670 Out << 'L';
671
Anders Carlssonc4355b62009-10-07 01:45:02 +0000672 mangleSourceName(II);
673 break;
674 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000675
John McCall1dd73832010-02-04 01:42:13 +0000676 // Otherwise, an anonymous entity. We must have a declaration.
677 assert(ND && "mangling empty name without declaration");
678
679 if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
680 if (NS->isAnonymousNamespace()) {
681 // This is how gcc mangles these names.
682 Out << "12_GLOBAL__N_1";
683 break;
684 }
685 }
686
Anders Carlsson6f7e2f42010-06-08 14:49:03 +0000687 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
688 // We must have an anonymous union or struct declaration.
689 const RecordDecl *RD =
690 cast<RecordDecl>(VD->getType()->getAs<RecordType>()->getDecl());
691
692 // Itanium C++ ABI 5.1.2:
693 //
694 // For the purposes of mangling, the name of an anonymous union is
695 // considered to be the name of the first named data member found by a
696 // pre-order, depth-first, declaration-order walk of the data members of
697 // the anonymous union. If there is no such data member (i.e., if all of
698 // the data members in the union are unnamed), then there is no way for
699 // a program to refer to the anonymous union, and there is therefore no
700 // need to mangle its name.
701 const FieldDecl *FD = FindFirstNamedDataMember(RD);
John McCall7121c8f2010-08-05 22:02:13 +0000702
703 // It's actually possible for various reasons for us to get here
704 // with an empty anonymous struct / union. Fortunately, it
705 // doesn't really matter what name we generate.
706 if (!FD) break;
Anders Carlsson6f7e2f42010-06-08 14:49:03 +0000707 assert(FD->getIdentifier() && "Data member name isn't an identifier!");
708
709 mangleSourceName(FD->getIdentifier());
710 break;
711 }
712
Anders Carlssonc4355b62009-10-07 01:45:02 +0000713 // We must have an anonymous struct.
714 const TagDecl *TD = cast<TagDecl>(ND);
715 if (const TypedefDecl *D = TD->getTypedefForAnonDecl()) {
716 assert(TD->getDeclContext() == D->getDeclContext() &&
717 "Typedef should not be in another decl context!");
718 assert(D->getDeclName().getAsIdentifierInfo() &&
719 "Typedef was not named!");
720 mangleSourceName(D->getDeclName().getAsIdentifierInfo());
721 break;
722 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000723
Anders Carlssonc4355b62009-10-07 01:45:02 +0000724 // Get a unique id for the anonymous struct.
725 uint64_t AnonStructId = Context.getAnonymousStructId(TD);
726
727 // Mangle it as a source name in the form
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000728 // [n] $_<id>
Anders Carlssonc4355b62009-10-07 01:45:02 +0000729 // where n is the length of the string.
730 llvm::SmallString<8> Str;
731 Str += "$_";
732 Str += llvm::utostr(AnonStructId);
733
734 Out << Str.size();
735 Out << Str.str();
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000736 break;
Anders Carlssonc4355b62009-10-07 01:45:02 +0000737 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000738
739 case DeclarationName::ObjCZeroArgSelector:
740 case DeclarationName::ObjCOneArgSelector:
741 case DeclarationName::ObjCMultiArgSelector:
742 assert(false && "Can't mangle Objective-C selector names here!");
743 break;
744
745 case DeclarationName::CXXConstructorName:
Anders Carlsson27ae5362009-04-17 01:58:57 +0000746 if (ND == Structor)
Mike Stump141c5af2009-09-02 00:25:38 +0000747 // If the named decl is the C++ constructor we're mangling, use the type
748 // we were given.
Anders Carlsson27ae5362009-04-17 01:58:57 +0000749 mangleCXXCtorType(static_cast<CXXCtorType>(StructorType));
Anders Carlsson3ac86b52009-04-15 05:36:58 +0000750 else
751 // Otherwise, use the complete constructor name. This is relevant if a
752 // class with a constructor is declared within a constructor.
753 mangleCXXCtorType(Ctor_Complete);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000754 break;
755
756 case DeclarationName::CXXDestructorName:
Anders Carlsson27ae5362009-04-17 01:58:57 +0000757 if (ND == Structor)
Mike Stump141c5af2009-09-02 00:25:38 +0000758 // If the named decl is the C++ destructor we're mangling, use the type we
759 // were given.
Anders Carlsson27ae5362009-04-17 01:58:57 +0000760 mangleCXXDtorType(static_cast<CXXDtorType>(StructorType));
761 else
762 // Otherwise, use the complete destructor name. This is relevant if a
763 // class with a destructor is declared within a destructor.
764 mangleCXXDtorType(Dtor_Complete);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000765 break;
766
767 case DeclarationName::CXXConversionFunctionName:
Mike Stump1eb44332009-09-09 15:08:12 +0000768 // <operator-name> ::= cv <type> # (cast)
Douglas Gregor219cc612009-02-13 01:28:03 +0000769 Out << "cv";
Anders Carlssonb5404912009-10-07 01:06:45 +0000770 mangleType(Context.getASTContext().getCanonicalType(Name.getCXXNameType()));
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000771 break;
772
Anders Carlsson8257d412009-12-22 06:36:32 +0000773 case DeclarationName::CXXOperatorName: {
John McCall1dd73832010-02-04 01:42:13 +0000774 unsigned Arity;
775 if (ND) {
776 Arity = cast<FunctionDecl>(ND)->getNumParams();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000777
John McCall1dd73832010-02-04 01:42:13 +0000778 // If we have a C++ member function, we need to include the 'this' pointer.
779 // FIXME: This does not make sense for operators that are static, but their
780 // names stay the same regardless of the arity (operator new for instance).
781 if (isa<CXXMethodDecl>(ND))
782 Arity++;
783 } else
784 Arity = KnownArity;
785
Anders Carlsson8257d412009-12-22 06:36:32 +0000786 mangleOperatorName(Name.getCXXOverloadedOperator(), Arity);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000787 break;
Anders Carlsson8257d412009-12-22 06:36:32 +0000788 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000789
Sean Hunt3e518bd2009-11-29 07:34:05 +0000790 case DeclarationName::CXXLiteralOperatorName:
Sean Hunt5dd6b392009-12-04 21:11:13 +0000791 // FIXME: This mangling is not yet official.
Sean Hunt2421f662009-12-04 21:01:37 +0000792 Out << "li";
Sean Hunt3e518bd2009-11-29 07:34:05 +0000793 mangleSourceName(Name.getCXXLiteralIdentifier());
794 break;
795
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000796 case DeclarationName::CXXUsingDirective:
797 assert(false && "Can't mangle a using directive name!");
Douglas Gregor219cc612009-02-13 01:28:03 +0000798 break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000799 }
800}
801
802void CXXNameMangler::mangleSourceName(const IdentifierInfo *II) {
803 // <source-name> ::= <positive length number> <identifier>
804 // <number> ::= [n] <non-negative decimal integer>
805 // <identifier> ::= <unqualified source code identifier>
806 Out << II->getLength() << II->getName();
807}
808
Eli Friedman7facf842009-12-02 20:32:49 +0000809void CXXNameMangler::mangleNestedName(const NamedDecl *ND,
Fariborz Jahanian57058532010-03-03 19:41:08 +0000810 const DeclContext *DC,
811 bool NoFunction) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000812 // <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
813 // ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
Anders Carlssond99edc42009-09-26 03:55:37 +0000814
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000815 Out << 'N';
816 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(ND))
John McCall0953e762009-09-24 19:53:00 +0000817 mangleQualifiers(Qualifiers::fromCVRMask(Method->getTypeQualifiers()));
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000818
Anders Carlsson2744a062009-09-18 19:00:18 +0000819 // Check if we have a template.
820 const TemplateArgumentList *TemplateArgs = 0;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000821 if (const TemplateDecl *TD = isTemplate(ND, TemplateArgs)) {
Anders Carlsson2744a062009-09-18 19:00:18 +0000822 mangleTemplatePrefix(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000823 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
824 mangleTemplateArgs(*TemplateParameters, *TemplateArgs);
Fariborz Jahanian57058532010-03-03 19:41:08 +0000825 }
826 else {
827 manglePrefix(DC, NoFunction);
Anders Carlsson7482e242009-09-18 04:29:09 +0000828 mangleUnqualifiedName(ND);
829 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000830
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000831 Out << 'E';
832}
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000833void CXXNameMangler::mangleNestedName(const TemplateDecl *TD,
Anders Carlsson7624f212009-09-18 02:42:01 +0000834 const TemplateArgument *TemplateArgs,
835 unsigned NumTemplateArgs) {
Anders Carlssone45117b2009-09-27 19:53:49 +0000836 // <nested-name> ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
837
Anders Carlsson7624f212009-09-18 02:42:01 +0000838 Out << 'N';
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000839
Anders Carlssone45117b2009-09-27 19:53:49 +0000840 mangleTemplatePrefix(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000841 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
842 mangleTemplateArgs(*TemplateParameters, TemplateArgs, NumTemplateArgs);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000843
Anders Carlsson7624f212009-09-18 02:42:01 +0000844 Out << 'E';
845}
846
Anders Carlsson1b42c792009-04-02 16:24:45 +0000847void CXXNameMangler::mangleLocalName(const NamedDecl *ND) {
848 // <local-name> := Z <function encoding> E <entity name> [<discriminator>]
849 // := Z <function encoding> E s [<discriminator>]
Mike Stump1eb44332009-09-09 15:08:12 +0000850 // <discriminator> := _ <non-negative number>
Fariborz Jahanian57058532010-03-03 19:41:08 +0000851 const DeclContext *DC = ND->getDeclContext();
Anders Carlsson1b42c792009-04-02 16:24:45 +0000852 Out << 'Z';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000853
Charles Davis685b1d92010-05-26 18:25:27 +0000854 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(DC)) {
855 mangleObjCMethodName(MD);
John McCall82b7d7b2010-10-18 21:28:44 +0000856 } else if (const CXXRecordDecl *RD = GetLocalClassDecl(ND)) {
857 mangleFunctionEncoding(cast<FunctionDecl>(RD->getDeclContext()));
Fariborz Jahanian57058532010-03-03 19:41:08 +0000858 Out << 'E';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000859
John McCall82b7d7b2010-10-18 21:28:44 +0000860 // Mangle the name relative to the closest enclosing function.
861 if (ND == RD) // equality ok because RD derived from ND above
862 mangleUnqualifiedName(ND);
863 else
864 mangleNestedName(ND, DC, true /*NoFunction*/);
865
Fariborz Jahanian4819ac42010-03-04 01:02:03 +0000866 unsigned disc;
John McCall82b7d7b2010-10-18 21:28:44 +0000867 if (Context.getNextDiscriminator(RD, disc)) {
Fariborz Jahanian4819ac42010-03-04 01:02:03 +0000868 if (disc < 10)
869 Out << '_' << disc;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000870 else
Fariborz Jahanian4819ac42010-03-04 01:02:03 +0000871 Out << "__" << disc << '_';
872 }
Fariborz Jahanian57058532010-03-03 19:41:08 +0000873
874 return;
875 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000876 else
Fariborz Jahanian57058532010-03-03 19:41:08 +0000877 mangleFunctionEncoding(cast<FunctionDecl>(DC));
Anders Carlsson7b06f6c2009-12-10 03:14:39 +0000878
Anders Carlsson1b42c792009-04-02 16:24:45 +0000879 Out << 'E';
Eli Friedman6f9f25d2009-12-11 20:21:38 +0000880 mangleUnqualifiedName(ND);
Anders Carlsson1b42c792009-04-02 16:24:45 +0000881}
882
Fariborz Jahanian57058532010-03-03 19:41:08 +0000883void CXXNameMangler::manglePrefix(const DeclContext *DC, bool NoFunction) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000884 // <prefix> ::= <prefix> <unqualified-name>
885 // ::= <template-prefix> <template-args>
886 // ::= <template-param>
887 // ::= # empty
888 // ::= <substitution>
Anders Carlsson6862fc72009-09-17 04:16:28 +0000889
Anders Carlssonadd28822009-09-22 20:33:31 +0000890 while (isa<LinkageSpecDecl>(DC))
891 DC = DC->getParent();
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000892
Anders Carlsson9263e912009-09-18 18:39:58 +0000893 if (DC->isTranslationUnit())
894 return;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000895
Douglas Gregor35415f52010-05-25 17:04:15 +0000896 if (const BlockDecl *Block = dyn_cast<BlockDecl>(DC)) {
897 manglePrefix(DC->getParent(), NoFunction);
898 llvm::SmallString<64> Name;
Fariborz Jahanian564360b2010-06-24 00:08:06 +0000899 Context.mangleBlock(GlobalDecl(), Block, Name);
Douglas Gregor35415f52010-05-25 17:04:15 +0000900 Out << Name.size() << Name;
901 return;
902 }
903
Anders Carlsson6862fc72009-09-17 04:16:28 +0000904 if (mangleSubstitution(cast<NamedDecl>(DC)))
905 return;
Anders Carlsson7482e242009-09-18 04:29:09 +0000906
Anders Carlsson2ee3fca2009-09-18 20:11:09 +0000907 // Check if we have a template.
908 const TemplateArgumentList *TemplateArgs = 0;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000909 if (const TemplateDecl *TD = isTemplate(cast<NamedDecl>(DC), TemplateArgs)) {
Anders Carlsson2ee3fca2009-09-18 20:11:09 +0000910 mangleTemplatePrefix(TD);
Rafael Espindolad9800722010-03-11 14:07:00 +0000911 TemplateParameterList *TemplateParameters = TD->getTemplateParameters();
912 mangleTemplateArgs(*TemplateParameters, *TemplateArgs);
Fariborz Jahanian57058532010-03-03 19:41:08 +0000913 }
Douglas Gregor35415f52010-05-25 17:04:15 +0000914 else if(NoFunction && (isa<FunctionDecl>(DC) || isa<ObjCMethodDecl>(DC)))
Fariborz Jahanian57058532010-03-03 19:41:08 +0000915 return;
Douglas Gregor35415f52010-05-25 17:04:15 +0000916 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC))
917 mangleObjCMethodName(Method);
Fariborz Jahanian57058532010-03-03 19:41:08 +0000918 else {
919 manglePrefix(DC->getParent(), NoFunction);
Anders Carlsson2ee3fca2009-09-18 20:11:09 +0000920 mangleUnqualifiedName(cast<NamedDecl>(DC));
921 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000922
Anders Carlsson6862fc72009-09-17 04:16:28 +0000923 addSubstitution(cast<NamedDecl>(DC));
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000924}
925
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000926void CXXNameMangler::mangleTemplatePrefix(TemplateName Template) {
927 // <template-prefix> ::= <prefix> <template unqualified-name>
928 // ::= <template-param>
929 // ::= <substitution>
930 if (TemplateDecl *TD = Template.getAsTemplateDecl())
931 return mangleTemplatePrefix(TD);
932
933 if (QualifiedTemplateName *Qualified = Template.getAsQualifiedTemplateName())
934 mangleUnresolvedScope(Qualified->getQualifier());
Sean Huntc3021132010-05-05 15:23:54 +0000935
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000936 if (OverloadedTemplateStorage *Overloaded
937 = Template.getAsOverloadedTemplate()) {
Sean Huntc3021132010-05-05 15:23:54 +0000938 mangleUnqualifiedName(0, (*Overloaded->begin())->getDeclName(),
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000939 UnknownArity);
940 return;
941 }
Sean Huntc3021132010-05-05 15:23:54 +0000942
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000943 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
944 assert(Dependent && "Unknown template name kind?");
945 mangleUnresolvedScope(Dependent->getQualifier());
Douglas Gregor1e9268e2010-04-28 05:58:56 +0000946 mangleUnscopedTemplateName(Template);
Douglas Gregor20f0cc72010-04-23 03:10:43 +0000947}
948
Anders Carlsson0fa6df42009-09-26 19:45:45 +0000949void CXXNameMangler::mangleTemplatePrefix(const TemplateDecl *ND) {
Anders Carlsson7482e242009-09-18 04:29:09 +0000950 // <template-prefix> ::= <prefix> <template unqualified-name>
951 // ::= <template-param>
952 // ::= <substitution>
Douglas Gregor32fb4e12010-02-05 20:45:00 +0000953 // <template-template-param> ::= <template-param>
954 // <substitution>
Anders Carlsson7482e242009-09-18 04:29:09 +0000955
Anders Carlssonaeb85372009-09-26 22:18:22 +0000956 if (mangleSubstitution(ND))
957 return;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000958
Douglas Gregor32fb4e12010-02-05 20:45:00 +0000959 // <template-template-param> ::= <template-param>
960 if (const TemplateTemplateParmDecl *TTP
961 = dyn_cast<TemplateTemplateParmDecl>(ND)) {
962 mangleTemplateParameter(TTP->getIndex());
963 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +0000964 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +0000965
Anders Carlssonaa73ab12009-09-18 18:47:07 +0000966 manglePrefix(ND->getDeclContext());
Anders Carlsson1668f202009-09-26 20:13:56 +0000967 mangleUnqualifiedName(ND->getTemplatedDecl());
Anders Carlssonaeb85372009-09-26 22:18:22 +0000968 addSubstitution(ND);
Anders Carlsson7482e242009-09-18 04:29:09 +0000969}
970
John McCallb6f532e2010-07-14 06:43:17 +0000971/// Mangles a template name under the production <type>. Required for
972/// template template arguments.
973/// <type> ::= <class-enum-type>
974/// ::= <template-param>
975/// ::= <substitution>
976void CXXNameMangler::mangleType(TemplateName TN) {
977 if (mangleSubstitution(TN))
978 return;
979
980 TemplateDecl *TD = 0;
981
982 switch (TN.getKind()) {
983 case TemplateName::QualifiedTemplate:
984 TD = TN.getAsQualifiedTemplateName()->getTemplateDecl();
985 goto HaveDecl;
986
987 case TemplateName::Template:
988 TD = TN.getAsTemplateDecl();
989 goto HaveDecl;
990
991 HaveDecl:
992 if (isa<TemplateTemplateParmDecl>(TD))
993 mangleTemplateParameter(cast<TemplateTemplateParmDecl>(TD)->getIndex());
994 else
995 mangleName(TD);
996 break;
997
998 case TemplateName::OverloadedTemplate:
999 llvm_unreachable("can't mangle an overloaded template name as a <type>");
1000 break;
1001
1002 case TemplateName::DependentTemplate: {
1003 const DependentTemplateName *Dependent = TN.getAsDependentTemplateName();
1004 assert(Dependent->isIdentifier());
1005
1006 // <class-enum-type> ::= <name>
1007 // <name> ::= <nested-name>
1008 mangleUnresolvedScope(Dependent->getQualifier());
1009 mangleSourceName(Dependent->getIdentifier());
1010 break;
1011 }
1012
1013 }
1014
1015 addSubstitution(TN);
1016}
1017
Mike Stump1eb44332009-09-09 15:08:12 +00001018void
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001019CXXNameMangler::mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity) {
1020 switch (OO) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001021 // <operator-name> ::= nw # new
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001022 case OO_New: Out << "nw"; break;
1023 // ::= na # new[]
1024 case OO_Array_New: Out << "na"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001025 // ::= dl # delete
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001026 case OO_Delete: Out << "dl"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001027 // ::= da # delete[]
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001028 case OO_Array_Delete: Out << "da"; break;
1029 // ::= ps # + (unary)
John McCall5e1e89b2010-08-18 19:18:59 +00001030 // ::= pl # + (binary or unknown)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001031 case OO_Plus:
Anders Carlsson8257d412009-12-22 06:36:32 +00001032 Out << (Arity == 1? "ps" : "pl"); break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001033 // ::= ng # - (unary)
John McCall5e1e89b2010-08-18 19:18:59 +00001034 // ::= mi # - (binary or unknown)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001035 case OO_Minus:
Anders Carlsson8257d412009-12-22 06:36:32 +00001036 Out << (Arity == 1? "ng" : "mi"); break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001037 // ::= ad # & (unary)
John McCall5e1e89b2010-08-18 19:18:59 +00001038 // ::= an # & (binary or unknown)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001039 case OO_Amp:
Anders Carlsson8257d412009-12-22 06:36:32 +00001040 Out << (Arity == 1? "ad" : "an"); break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001041 // ::= de # * (unary)
John McCall5e1e89b2010-08-18 19:18:59 +00001042 // ::= ml # * (binary or unknown)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001043 case OO_Star:
John McCall5e1e89b2010-08-18 19:18:59 +00001044 // Use binary when unknown.
Anders Carlsson8257d412009-12-22 06:36:32 +00001045 Out << (Arity == 1? "de" : "ml"); break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001046 // ::= co # ~
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001047 case OO_Tilde: Out << "co"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001048 // ::= dv # /
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001049 case OO_Slash: Out << "dv"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001050 // ::= rm # %
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001051 case OO_Percent: Out << "rm"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001052 // ::= or # |
1053 case OO_Pipe: Out << "or"; break;
1054 // ::= eo # ^
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001055 case OO_Caret: Out << "eo"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001056 // ::= aS # =
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001057 case OO_Equal: Out << "aS"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001058 // ::= pL # +=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001059 case OO_PlusEqual: Out << "pL"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001060 // ::= mI # -=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001061 case OO_MinusEqual: Out << "mI"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001062 // ::= mL # *=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001063 case OO_StarEqual: Out << "mL"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001064 // ::= dV # /=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001065 case OO_SlashEqual: Out << "dV"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001066 // ::= rM # %=
1067 case OO_PercentEqual: Out << "rM"; break;
1068 // ::= aN # &=
1069 case OO_AmpEqual: Out << "aN"; break;
1070 // ::= oR # |=
1071 case OO_PipeEqual: Out << "oR"; break;
1072 // ::= eO # ^=
1073 case OO_CaretEqual: Out << "eO"; break;
1074 // ::= ls # <<
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001075 case OO_LessLess: Out << "ls"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001076 // ::= rs # >>
1077 case OO_GreaterGreater: Out << "rs"; break;
1078 // ::= lS # <<=
1079 case OO_LessLessEqual: Out << "lS"; break;
1080 // ::= rS # >>=
1081 case OO_GreaterGreaterEqual: Out << "rS"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001082 // ::= eq # ==
1083 case OO_EqualEqual: Out << "eq"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001084 // ::= ne # !=
1085 case OO_ExclaimEqual: Out << "ne"; break;
1086 // ::= lt # <
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001087 case OO_Less: Out << "lt"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001088 // ::= gt # >
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001089 case OO_Greater: Out << "gt"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001090 // ::= le # <=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001091 case OO_LessEqual: Out << "le"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001092 // ::= ge # >=
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001093 case OO_GreaterEqual: Out << "ge"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001094 // ::= nt # !
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001095 case OO_Exclaim: Out << "nt"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001096 // ::= aa # &&
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001097 case OO_AmpAmp: Out << "aa"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001098 // ::= oo # ||
1099 case OO_PipePipe: Out << "oo"; break;
1100 // ::= pp # ++
1101 case OO_PlusPlus: Out << "pp"; break;
1102 // ::= mm # --
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001103 case OO_MinusMinus: Out << "mm"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001104 // ::= cm # ,
1105 case OO_Comma: Out << "cm"; break;
1106 // ::= pm # ->*
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001107 case OO_ArrowStar: Out << "pm"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001108 // ::= pt # ->
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001109 case OO_Arrow: Out << "pt"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001110 // ::= cl # ()
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001111 case OO_Call: Out << "cl"; break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001112 // ::= ix # []
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001113 case OO_Subscript: Out << "ix"; break;
Anders Carlssone170ba72009-12-14 01:45:37 +00001114
1115 // ::= qu # ?
1116 // The conditional operator can't be overloaded, but we still handle it when
1117 // mangling expressions.
1118 case OO_Conditional: Out << "qu"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001119
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001120 case OO_None:
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001121 case NUM_OVERLOADED_OPERATORS:
Mike Stump1eb44332009-09-09 15:08:12 +00001122 assert(false && "Not an overloaded operator");
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001123 break;
1124 }
1125}
1126
John McCall0953e762009-09-24 19:53:00 +00001127void CXXNameMangler::mangleQualifiers(Qualifiers Quals) {
Mike Stump1eb44332009-09-09 15:08:12 +00001128 // <CV-qualifiers> ::= [r] [V] [K] # restrict (C99), volatile, const
John McCall0953e762009-09-24 19:53:00 +00001129 if (Quals.hasRestrict())
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001130 Out << 'r';
John McCall0953e762009-09-24 19:53:00 +00001131 if (Quals.hasVolatile())
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001132 Out << 'V';
John McCall0953e762009-09-24 19:53:00 +00001133 if (Quals.hasConst())
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001134 Out << 'K';
John McCall0953e762009-09-24 19:53:00 +00001135
Douglas Gregor56079f72010-06-14 23:15:08 +00001136 if (Quals.hasAddressSpace()) {
1137 // Extension:
1138 //
1139 // <type> ::= U <address-space-number>
1140 //
1141 // where <address-space-number> is a source name consisting of 'AS'
1142 // followed by the address space <number>.
1143 llvm::SmallString<64> ASString;
1144 ASString = "AS" + llvm::utostr_32(Quals.getAddressSpace());
1145 Out << 'U' << ASString.size() << ASString;
1146 }
1147
John McCall0953e762009-09-24 19:53:00 +00001148 // FIXME: For now, just drop all extension qualifiers on the floor.
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001149}
1150
Anders Carlsson7b06f6c2009-12-10 03:14:39 +00001151void CXXNameMangler::mangleObjCMethodName(const ObjCMethodDecl *MD) {
Charles Davis685b1d92010-05-26 18:25:27 +00001152 llvm::SmallString<64> Buffer;
1153 MiscNameMangler(Context, Buffer).mangleObjCMethodName(MD);
1154 Out << Buffer;
Anders Carlsson7b06f6c2009-12-10 03:14:39 +00001155}
1156
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001157void CXXNameMangler::mangleType(QualType T) {
Anders Carlsson4843e582009-03-10 17:07:44 +00001158 // Only operate on the canonical type!
Anders Carlssonb5404912009-10-07 01:06:45 +00001159 T = Context.getASTContext().getCanonicalType(T);
Anders Carlsson4843e582009-03-10 17:07:44 +00001160
Douglas Gregora4923eb2009-11-16 21:35:15 +00001161 bool IsSubstitutable = T.hasLocalQualifiers() || !isa<BuiltinType>(T);
Anders Carlsson76967372009-09-17 00:43:46 +00001162 if (IsSubstitutable && mangleSubstitution(T))
1163 return;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001164
Douglas Gregora4923eb2009-11-16 21:35:15 +00001165 if (Qualifiers Quals = T.getLocalQualifiers()) {
John McCall0953e762009-09-24 19:53:00 +00001166 mangleQualifiers(Quals);
1167 // Recurse: even if the qualified type isn't yet substitutable,
1168 // the unqualified type might be.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001169 mangleType(T.getLocalUnqualifiedType());
Anders Carlsson76967372009-09-17 00:43:46 +00001170 } else {
1171 switch (T->getTypeClass()) {
John McCallefe6aee2009-09-05 07:56:18 +00001172#define ABSTRACT_TYPE(CLASS, PARENT)
1173#define NON_CANONICAL_TYPE(CLASS, PARENT) \
Anders Carlsson76967372009-09-17 00:43:46 +00001174 case Type::CLASS: \
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00001175 llvm_unreachable("can't mangle non-canonical type " #CLASS "Type"); \
Anders Carlsson76967372009-09-17 00:43:46 +00001176 return;
John McCallefe6aee2009-09-05 07:56:18 +00001177#define TYPE(CLASS, PARENT) \
Anders Carlsson76967372009-09-17 00:43:46 +00001178 case Type::CLASS: \
John McCall0953e762009-09-24 19:53:00 +00001179 mangleType(static_cast<const CLASS##Type*>(T.getTypePtr())); \
Anders Carlsson76967372009-09-17 00:43:46 +00001180 break;
John McCallefe6aee2009-09-05 07:56:18 +00001181#include "clang/AST/TypeNodes.def"
Anders Carlsson76967372009-09-17 00:43:46 +00001182 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001183 }
Anders Carlsson76967372009-09-17 00:43:46 +00001184
1185 // Add the substitution.
1186 if (IsSubstitutable)
1187 addSubstitution(T);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001188}
1189
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00001190void CXXNameMangler::mangleNameOrStandardSubstitution(const NamedDecl *ND) {
1191 if (!mangleStandardSubstitution(ND))
1192 mangleName(ND);
1193}
1194
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001195void CXXNameMangler::mangleType(const BuiltinType *T) {
John McCallefe6aee2009-09-05 07:56:18 +00001196 // <type> ::= <builtin-type>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001197 // <builtin-type> ::= v # void
1198 // ::= w # wchar_t
1199 // ::= b # bool
1200 // ::= c # char
1201 // ::= a # signed char
1202 // ::= h # unsigned char
1203 // ::= s # short
1204 // ::= t # unsigned short
1205 // ::= i # int
1206 // ::= j # unsigned int
1207 // ::= l # long
1208 // ::= m # unsigned long
1209 // ::= x # long long, __int64
1210 // ::= y # unsigned long long, __int64
1211 // ::= n # __int128
1212 // UNSUPPORTED: ::= o # unsigned __int128
1213 // ::= f # float
1214 // ::= d # double
1215 // ::= e # long double, __float80
1216 // UNSUPPORTED: ::= g # __float128
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001217 // UNSUPPORTED: ::= Dd # IEEE 754r decimal floating point (64 bits)
1218 // UNSUPPORTED: ::= De # IEEE 754r decimal floating point (128 bits)
1219 // UNSUPPORTED: ::= Df # IEEE 754r decimal floating point (32 bits)
1220 // UNSUPPORTED: ::= Dh # IEEE 754r half-precision floating point (16 bits)
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001221 // ::= Di # char32_t
1222 // ::= Ds # char16_t
Anders Carlssone2923682010-11-04 04:31:32 +00001223 // ::= Dn # std::nullptr_t (i.e., decltype(nullptr))
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001224 // ::= u <source-name> # vendor extended type
1225 switch (T->getKind()) {
1226 case BuiltinType::Void: Out << 'v'; break;
1227 case BuiltinType::Bool: Out << 'b'; break;
1228 case BuiltinType::Char_U: case BuiltinType::Char_S: Out << 'c'; break;
1229 case BuiltinType::UChar: Out << 'h'; break;
1230 case BuiltinType::UShort: Out << 't'; break;
1231 case BuiltinType::UInt: Out << 'j'; break;
1232 case BuiltinType::ULong: Out << 'm'; break;
1233 case BuiltinType::ULongLong: Out << 'y'; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00001234 case BuiltinType::UInt128: Out << 'o'; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001235 case BuiltinType::SChar: Out << 'a'; break;
Chris Lattner3f59c972010-12-25 23:25:43 +00001236 case BuiltinType::WChar_S:
1237 case BuiltinType::WChar_U: Out << 'w'; break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00001238 case BuiltinType::Char16: Out << "Ds"; break;
1239 case BuiltinType::Char32: Out << "Di"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001240 case BuiltinType::Short: Out << 's'; break;
1241 case BuiltinType::Int: Out << 'i'; break;
1242 case BuiltinType::Long: Out << 'l'; break;
1243 case BuiltinType::LongLong: Out << 'x'; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00001244 case BuiltinType::Int128: Out << 'n'; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001245 case BuiltinType::Float: Out << 'f'; break;
1246 case BuiltinType::Double: Out << 'd'; break;
1247 case BuiltinType::LongDouble: Out << 'e'; break;
Anders Carlssone2923682010-11-04 04:31:32 +00001248 case BuiltinType::NullPtr: Out << "Dn"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001249
1250 case BuiltinType::Overload:
1251 case BuiltinType::Dependent:
Mike Stump1eb44332009-09-09 15:08:12 +00001252 assert(false &&
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001253 "Overloaded and dependent types shouldn't get to name mangling");
1254 break;
Anders Carlssone89d1592009-06-26 18:41:36 +00001255 case BuiltinType::UndeducedAuto:
1256 assert(0 && "Should not see undeduced auto here");
1257 break;
Steve Naroff9533a7f2009-07-22 17:14:51 +00001258 case BuiltinType::ObjCId: Out << "11objc_object"; break;
1259 case BuiltinType::ObjCClass: Out << "10objc_class"; break;
Fariborz Jahanian13dcd002009-11-21 19:53:08 +00001260 case BuiltinType::ObjCSel: Out << "13objc_selector"; break;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001261 }
1262}
1263
John McCallefe6aee2009-09-05 07:56:18 +00001264// <type> ::= <function-type>
1265// <function-type> ::= F [Y] <bare-function-type> E
1266void CXXNameMangler::mangleType(const FunctionProtoType *T) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001267 Out << 'F';
Mike Stumpf5408fe2009-05-16 07:57:57 +00001268 // FIXME: We don't have enough information in the AST to produce the 'Y'
1269 // encoding for extern "C" function types.
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001270 mangleBareFunctionType(T, /*MangleReturnType=*/true);
1271 Out << 'E';
1272}
John McCallefe6aee2009-09-05 07:56:18 +00001273void CXXNameMangler::mangleType(const FunctionNoProtoType *T) {
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00001274 llvm_unreachable("Can't mangle K&R function prototypes");
John McCallefe6aee2009-09-05 07:56:18 +00001275}
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001276void CXXNameMangler::mangleBareFunctionType(const FunctionType *T,
1277 bool MangleReturnType) {
John McCallefe6aee2009-09-05 07:56:18 +00001278 // We should never be mangling something without a prototype.
1279 const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
1280
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001281 // <bare-function-type> ::= <signature type>+
1282 if (MangleReturnType)
John McCallefe6aee2009-09-05 07:56:18 +00001283 mangleType(Proto->getResultType());
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001284
Anders Carlsson93296682010-06-02 04:40:13 +00001285 if (Proto->getNumArgs() == 0 && !Proto->isVariadic()) {
Eli Friedmana7e68452010-08-22 01:00:03 +00001286 // <builtin-type> ::= v # void
Anders Carlssonc6c91bc2009-04-01 00:15:23 +00001287 Out << 'v';
1288 return;
1289 }
Mike Stump1eb44332009-09-09 15:08:12 +00001290
Douglas Gregor72564e72009-02-26 23:50:07 +00001291 for (FunctionProtoType::arg_type_iterator Arg = Proto->arg_type_begin(),
Mike Stump1eb44332009-09-09 15:08:12 +00001292 ArgEnd = Proto->arg_type_end();
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001293 Arg != ArgEnd; ++Arg)
1294 mangleType(*Arg);
Douglas Gregor219cc612009-02-13 01:28:03 +00001295
1296 // <builtin-type> ::= z # ellipsis
1297 if (Proto->isVariadic())
1298 Out << 'z';
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001299}
1300
John McCallefe6aee2009-09-05 07:56:18 +00001301// <type> ::= <class-enum-type>
Mike Stump1eb44332009-09-09 15:08:12 +00001302// <class-enum-type> ::= <name>
John McCalled976492009-12-04 22:46:56 +00001303void CXXNameMangler::mangleType(const UnresolvedUsingType *T) {
1304 mangleName(T->getDecl());
1305}
1306
1307// <type> ::= <class-enum-type>
1308// <class-enum-type> ::= <name>
John McCallefe6aee2009-09-05 07:56:18 +00001309void CXXNameMangler::mangleType(const EnumType *T) {
1310 mangleType(static_cast<const TagType*>(T));
1311}
1312void CXXNameMangler::mangleType(const RecordType *T) {
1313 mangleType(static_cast<const TagType*>(T));
1314}
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001315void CXXNameMangler::mangleType(const TagType *T) {
Eli Friedmanecb7e932009-12-11 18:00:57 +00001316 mangleName(T->getDecl());
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001317}
1318
John McCallefe6aee2009-09-05 07:56:18 +00001319// <type> ::= <array-type>
1320// <array-type> ::= A <positive dimension number> _ <element type>
1321// ::= A [<dimension expression>] _ <element type>
1322void CXXNameMangler::mangleType(const ConstantArrayType *T) {
1323 Out << 'A' << T->getSize() << '_';
1324 mangleType(T->getElementType());
1325}
1326void CXXNameMangler::mangleType(const VariableArrayType *T) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001327 Out << 'A';
Fariborz Jahanian7281d1f2010-11-02 16:54:00 +00001328 // decayed vla types (size 0) will just be skipped.
1329 if (T->getSizeExpr())
1330 mangleExpression(T->getSizeExpr());
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001331 Out << '_';
1332 mangleType(T->getElementType());
1333}
John McCallefe6aee2009-09-05 07:56:18 +00001334void CXXNameMangler::mangleType(const DependentSizedArrayType *T) {
1335 Out << 'A';
1336 mangleExpression(T->getSizeExpr());
1337 Out << '_';
1338 mangleType(T->getElementType());
1339}
1340void CXXNameMangler::mangleType(const IncompleteArrayType *T) {
Nick Lewycky271b6652010-09-05 03:40:33 +00001341 Out << "A_";
John McCallefe6aee2009-09-05 07:56:18 +00001342 mangleType(T->getElementType());
1343}
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001344
John McCallefe6aee2009-09-05 07:56:18 +00001345// <type> ::= <pointer-to-member-type>
1346// <pointer-to-member-type> ::= M <class type> <member type>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001347void CXXNameMangler::mangleType(const MemberPointerType *T) {
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001348 Out << 'M';
1349 mangleType(QualType(T->getClass(), 0));
Anders Carlsson0e650012009-05-17 17:41:20 +00001350 QualType PointeeType = T->getPointeeType();
1351 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(PointeeType)) {
John McCall0953e762009-09-24 19:53:00 +00001352 mangleQualifiers(Qualifiers::fromCVRMask(FPT->getTypeQuals()));
Anders Carlsson0e650012009-05-17 17:41:20 +00001353 mangleType(FPT);
Anders Carlsson9d85b722010-06-02 04:29:50 +00001354
1355 // Itanium C++ ABI 5.1.8:
1356 //
1357 // The type of a non-static member function is considered to be different,
1358 // for the purposes of substitution, from the type of a namespace-scope or
1359 // static member function whose type appears similar. The types of two
1360 // non-static member functions are considered to be different, for the
1361 // purposes of substitution, if the functions are members of different
1362 // classes. In other words, for the purposes of substitution, the class of
1363 // which the function is a member is considered part of the type of
1364 // function.
1365
1366 // We increment the SeqID here to emulate adding an entry to the
1367 // substitution table. We can't actually add it because we don't want this
1368 // particular function type to be substituted.
1369 ++SeqID;
Mike Stump1eb44332009-09-09 15:08:12 +00001370 } else
Anders Carlsson0e650012009-05-17 17:41:20 +00001371 mangleType(PointeeType);
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001372}
1373
John McCallefe6aee2009-09-05 07:56:18 +00001374// <type> ::= <template-param>
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001375void CXXNameMangler::mangleType(const TemplateTypeParmType *T) {
Anders Carlsson0ccdf8d2009-09-27 00:38:53 +00001376 mangleTemplateParameter(T->getIndex());
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00001377}
1378
John McCallefe6aee2009-09-05 07:56:18 +00001379// <type> ::= P <type> # pointer-to
1380void CXXNameMangler::mangleType(const PointerType *T) {
1381 Out << 'P';
1382 mangleType(T->getPointeeType());
1383}
1384void CXXNameMangler::mangleType(const ObjCObjectPointerType *T) {
1385 Out << 'P';
1386 mangleType(T->getPointeeType());
1387}
1388
1389// <type> ::= R <type> # reference-to
1390void CXXNameMangler::mangleType(const LValueReferenceType *T) {
1391 Out << 'R';
1392 mangleType(T->getPointeeType());
1393}
1394
1395// <type> ::= O <type> # rvalue reference-to (C++0x)
1396void CXXNameMangler::mangleType(const RValueReferenceType *T) {
1397 Out << 'O';
1398 mangleType(T->getPointeeType());
1399}
1400
1401// <type> ::= C <type> # complex pair (C 2000)
1402void CXXNameMangler::mangleType(const ComplexType *T) {
1403 Out << 'C';
1404 mangleType(T->getElementType());
1405}
1406
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001407// ARM's ABI for Neon vector types specifies that they should be mangled as
Bob Wilson57147a82010-11-16 00:32:18 +00001408// if they are structs (to match ARM's initial implementation). The
1409// vector type must be one of the special types predefined by ARM.
1410void CXXNameMangler::mangleNeonVectorType(const VectorType *T) {
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001411 QualType EltType = T->getElementType();
Bob Wilson57147a82010-11-16 00:32:18 +00001412 assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType");
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001413 const char *EltName = 0;
Bob Wilson491328c2010-11-12 17:24:46 +00001414 if (T->getVectorKind() == VectorType::NeonPolyVector) {
1415 switch (cast<BuiltinType>(EltType)->getKind()) {
Bob Wilson4cfaa5d2010-11-12 17:24:49 +00001416 case BuiltinType::SChar: EltName = "poly8_t"; break;
1417 case BuiltinType::Short: EltName = "poly16_t"; break;
Bob Wilson57147a82010-11-16 00:32:18 +00001418 default: llvm_unreachable("unexpected Neon polynomial vector element type");
Bob Wilson491328c2010-11-12 17:24:46 +00001419 }
1420 } else {
1421 switch (cast<BuiltinType>(EltType)->getKind()) {
Bob Wilson4cfaa5d2010-11-12 17:24:49 +00001422 case BuiltinType::SChar: EltName = "int8_t"; break;
1423 case BuiltinType::UChar: EltName = "uint8_t"; break;
1424 case BuiltinType::Short: EltName = "int16_t"; break;
1425 case BuiltinType::UShort: EltName = "uint16_t"; break;
1426 case BuiltinType::Int: EltName = "int32_t"; break;
1427 case BuiltinType::UInt: EltName = "uint32_t"; break;
1428 case BuiltinType::LongLong: EltName = "int64_t"; break;
1429 case BuiltinType::ULongLong: EltName = "uint64_t"; break;
1430 case BuiltinType::Float: EltName = "float32_t"; break;
Bob Wilson57147a82010-11-16 00:32:18 +00001431 default: llvm_unreachable("unexpected Neon vector element type");
Bob Wilson491328c2010-11-12 17:24:46 +00001432 }
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001433 }
1434 const char *BaseName = 0;
Bob Wilson4cfaa5d2010-11-12 17:24:49 +00001435 unsigned BitSize = (T->getNumElements() *
Bob Wilson3a723022010-11-16 00:32:12 +00001436 getASTContext().getTypeSize(EltType));
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001437 if (BitSize == 64)
1438 BaseName = "__simd64_";
Bob Wilson57147a82010-11-16 00:32:18 +00001439 else {
1440 assert(BitSize == 128 && "Neon vector type not 64 or 128 bits");
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001441 BaseName = "__simd128_";
Bob Wilson57147a82010-11-16 00:32:18 +00001442 }
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001443 Out << strlen(BaseName) + strlen(EltName);
1444 Out << BaseName << EltName;
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001445}
1446
John McCallefe6aee2009-09-05 07:56:18 +00001447// GNU extension: vector types
Chris Lattner788b0fd2010-06-23 06:00:24 +00001448// <type> ::= <vector-type>
1449// <vector-type> ::= Dv <positive dimension number> _
1450// <extended element type>
1451// ::= Dv [<dimension expression>] _ <element type>
1452// <extended element type> ::= <element type>
1453// ::= p # AltiVec vector pixel
John McCallefe6aee2009-09-05 07:56:18 +00001454void CXXNameMangler::mangleType(const VectorType *T) {
Bob Wilson491328c2010-11-12 17:24:46 +00001455 if ((T->getVectorKind() == VectorType::NeonVector ||
Bob Wilson57147a82010-11-16 00:32:18 +00001456 T->getVectorKind() == VectorType::NeonPolyVector)) {
1457 mangleNeonVectorType(T);
Bob Wilsonc7df92d2010-11-12 17:24:43 +00001458 return;
Bob Wilson57147a82010-11-16 00:32:18 +00001459 }
Nick Lewycky0e5f0672010-03-26 07:18:04 +00001460 Out << "Dv" << T->getNumElements() << '_';
Bob Wilsone86d78c2010-11-10 21:56:12 +00001461 if (T->getVectorKind() == VectorType::AltiVecPixel)
Chris Lattner788b0fd2010-06-23 06:00:24 +00001462 Out << 'p';
Bob Wilsone86d78c2010-11-10 21:56:12 +00001463 else if (T->getVectorKind() == VectorType::AltiVecBool)
Chris Lattner788b0fd2010-06-23 06:00:24 +00001464 Out << 'b';
1465 else
1466 mangleType(T->getElementType());
John McCallefe6aee2009-09-05 07:56:18 +00001467}
1468void CXXNameMangler::mangleType(const ExtVectorType *T) {
1469 mangleType(static_cast<const VectorType*>(T));
1470}
1471void CXXNameMangler::mangleType(const DependentSizedExtVectorType *T) {
Nick Lewycky0e5f0672010-03-26 07:18:04 +00001472 Out << "Dv";
1473 mangleExpression(T->getSizeExpr());
1474 Out << '_';
John McCallefe6aee2009-09-05 07:56:18 +00001475 mangleType(T->getElementType());
1476}
1477
Douglas Gregor7536dd52010-12-20 02:24:11 +00001478void CXXNameMangler::mangleType(const PackExpansionType *T) {
1479 // FIXME: We may need to push this mangling into the callers
1480 Out << "sp";
1481 mangleType(T->getPattern());
1482}
1483
Anders Carlssona40c5e42009-03-07 22:03:21 +00001484void CXXNameMangler::mangleType(const ObjCInterfaceType *T) {
1485 mangleSourceName(T->getDecl()->getIdentifier());
1486}
1487
John McCallc12c5bb2010-05-15 11:32:37 +00001488void CXXNameMangler::mangleType(const ObjCObjectType *T) {
John McCallc00c1f62010-05-15 17:06:29 +00001489 // We don't allow overloading by different protocol qualification,
1490 // so mangling them isn't necessary.
John McCallc12c5bb2010-05-15 11:32:37 +00001491 mangleType(T->getBaseType());
1492}
1493
John McCallefe6aee2009-09-05 07:56:18 +00001494void CXXNameMangler::mangleType(const BlockPointerType *T) {
Anders Carlssonf28c6872009-12-23 22:31:44 +00001495 Out << "U13block_pointer";
1496 mangleType(T->getPointeeType());
John McCallefe6aee2009-09-05 07:56:18 +00001497}
1498
John McCall31f17ec2010-04-27 00:57:59 +00001499void CXXNameMangler::mangleType(const InjectedClassNameType *T) {
1500 // Mangle injected class name types as if the user had written the
1501 // specialization out fully. It may not actually be possible to see
1502 // this mangling, though.
1503 mangleType(T->getInjectedSpecializationType());
1504}
1505
John McCallefe6aee2009-09-05 07:56:18 +00001506void CXXNameMangler::mangleType(const TemplateSpecializationType *T) {
Douglas Gregor1e9268e2010-04-28 05:58:56 +00001507 if (TemplateDecl *TD = T->getTemplateName().getAsTemplateDecl()) {
1508 mangleName(TD, T->getArgs(), T->getNumArgs());
1509 } else {
1510 if (mangleSubstitution(QualType(T, 0)))
1511 return;
Sean Huntc3021132010-05-05 15:23:54 +00001512
Douglas Gregor1e9268e2010-04-28 05:58:56 +00001513 mangleTemplatePrefix(T->getTemplateName());
Sean Huntc3021132010-05-05 15:23:54 +00001514
Douglas Gregor1e9268e2010-04-28 05:58:56 +00001515 // FIXME: GCC does not appear to mangle the template arguments when
1516 // the template in question is a dependent template name. Should we
1517 // emulate that badness?
1518 mangleTemplateArgs(T->getTemplateName(), T->getArgs(), T->getNumArgs());
1519 addSubstitution(QualType(T, 0));
1520 }
John McCallefe6aee2009-09-05 07:56:18 +00001521}
1522
Douglas Gregor4714c122010-03-31 17:34:00 +00001523void CXXNameMangler::mangleType(const DependentNameType *T) {
Anders Carlssonae352482009-09-26 02:26:02 +00001524 // Typename types are always nested
1525 Out << 'N';
John McCall33500952010-06-11 00:33:02 +00001526 mangleUnresolvedScope(T->getQualifier());
1527 mangleSourceName(T->getIdentifier());
1528 Out << 'E';
1529}
John McCall6ab30e02010-06-09 07:26:17 +00001530
John McCall33500952010-06-11 00:33:02 +00001531void CXXNameMangler::mangleType(const DependentTemplateSpecializationType *T) {
1532 // Dependently-scoped template types are always nested
1533 Out << 'N';
1534
1535 // TODO: avoid making this TemplateName.
1536 TemplateName Prefix =
1537 getASTContext().getDependentTemplateName(T->getQualifier(),
1538 T->getIdentifier());
1539 mangleTemplatePrefix(Prefix);
1540
1541 // FIXME: GCC does not appear to mangle the template arguments when
1542 // the template in question is a dependent template name. Should we
1543 // emulate that badness?
1544 mangleTemplateArgs(Prefix, T->getArgs(), T->getNumArgs());
Anders Carlssonae352482009-09-26 02:26:02 +00001545 Out << 'E';
John McCallefe6aee2009-09-05 07:56:18 +00001546}
1547
John McCallad5e7382010-03-01 23:49:17 +00001548void CXXNameMangler::mangleType(const TypeOfType *T) {
1549 // FIXME: this is pretty unsatisfactory, but there isn't an obvious
1550 // "extension with parameters" mangling.
1551 Out << "u6typeof";
1552}
1553
1554void CXXNameMangler::mangleType(const TypeOfExprType *T) {
1555 // FIXME: this is pretty unsatisfactory, but there isn't an obvious
1556 // "extension with parameters" mangling.
1557 Out << "u6typeof";
1558}
1559
1560void CXXNameMangler::mangleType(const DecltypeType *T) {
1561 Expr *E = T->getUnderlyingExpr();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001562
John McCallad5e7382010-03-01 23:49:17 +00001563 // type ::= Dt <expression> E # decltype of an id-expression
1564 // # or class member access
1565 // ::= DT <expression> E # decltype of an expression
1566
1567 // This purports to be an exhaustive list of id-expressions and
1568 // class member accesses. Note that we do not ignore parentheses;
1569 // parentheses change the semantics of decltype for these
1570 // expressions (and cause the mangler to use the other form).
1571 if (isa<DeclRefExpr>(E) ||
1572 isa<MemberExpr>(E) ||
1573 isa<UnresolvedLookupExpr>(E) ||
1574 isa<DependentScopeDeclRefExpr>(E) ||
1575 isa<CXXDependentScopeMemberExpr>(E) ||
1576 isa<UnresolvedMemberExpr>(E))
1577 Out << "Dt";
1578 else
1579 Out << "DT";
1580 mangleExpression(E);
1581 Out << 'E';
1582}
1583
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001584void CXXNameMangler::mangleIntegerLiteral(QualType T,
Anders Carlssone170ba72009-12-14 01:45:37 +00001585 const llvm::APSInt &Value) {
1586 // <expr-primary> ::= L <type> <value number> E # integer literal
1587 Out << 'L';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001588
Anders Carlssone170ba72009-12-14 01:45:37 +00001589 mangleType(T);
1590 if (T->isBooleanType()) {
1591 // Boolean values are encoded as 0/1.
1592 Out << (Value.getBoolValue() ? '1' : '0');
1593 } else {
John McCall0512e482010-07-14 04:20:34 +00001594 mangleNumber(Value);
Anders Carlssone170ba72009-12-14 01:45:37 +00001595 }
1596 Out << 'E';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001597
Anders Carlssone170ba72009-12-14 01:45:37 +00001598}
1599
John McCall2f27bf82010-02-04 02:56:29 +00001600/// Mangles a member expression. Implicit accesses are not handled,
1601/// but that should be okay, because you shouldn't be able to
1602/// make an implicit access in a function template declaration.
John McCall2f27bf82010-02-04 02:56:29 +00001603void CXXNameMangler::mangleMemberExpr(const Expr *Base,
1604 bool IsArrow,
1605 NestedNameSpecifier *Qualifier,
1606 DeclarationName Member,
1607 unsigned Arity) {
John McCalle1e342f2010-03-01 19:12:25 +00001608 // gcc-4.4 uses 'dt' for dot expressions, which is reasonable.
1609 // OTOH, gcc also mangles the name as an expression.
1610 Out << (IsArrow ? "pt" : "dt");
John McCall2f27bf82010-02-04 02:56:29 +00001611 mangleExpression(Base);
1612 mangleUnresolvedName(Qualifier, Member, Arity);
1613}
1614
John McCall5e1e89b2010-08-18 19:18:59 +00001615void CXXNameMangler::mangleExpression(const Expr *E, unsigned Arity) {
Anders Carlssond553f8c2009-09-21 01:21:10 +00001616 // <expression> ::= <unary operator-name> <expression>
John McCall09cc1412010-02-03 00:55:45 +00001617 // ::= <binary operator-name> <expression> <expression>
1618 // ::= <trinary operator-name> <expression> <expression> <expression>
Eli Friedmana7e68452010-08-22 01:00:03 +00001619 // ::= cl <expression>* E # call
Anders Carlssond553f8c2009-09-21 01:21:10 +00001620 // ::= cv <type> expression # conversion with one argument
1621 // ::= cv <type> _ <expression>* E # conversion with a different number of arguments
Eli Friedmana7e68452010-08-22 01:00:03 +00001622 // ::= st <type> # sizeof (a type)
Anders Carlssond553f8c2009-09-21 01:21:10 +00001623 // ::= at <type> # alignof (a type)
1624 // ::= <template-param>
1625 // ::= <function-param>
1626 // ::= sr <type> <unqualified-name> # dependent name
1627 // ::= sr <type> <unqualified-name> <template-args> # dependent template-id
1628 // ::= sZ <template-param> # size of a parameter pack
John McCall09cc1412010-02-03 00:55:45 +00001629 // ::= <expr-primary>
John McCall1dd73832010-02-04 01:42:13 +00001630 // <expr-primary> ::= L <type> <value number> E # integer literal
1631 // ::= L <type <value float> E # floating literal
1632 // ::= L <mangled-name> E # external name
Anders Carlssond553f8c2009-09-21 01:21:10 +00001633 switch (E->getStmtClass()) {
John McCall6ae1f352010-04-09 22:26:14 +00001634 case Expr::NoStmtClass:
1635#define EXPR(Type, Base)
1636#define STMT(Type, Base) \
1637 case Expr::Type##Class:
Sean Hunt4bfe1962010-05-05 15:24:00 +00001638#include "clang/AST/StmtNodes.inc"
John McCall0512e482010-07-14 04:20:34 +00001639 // fallthrough
1640
1641 // These all can only appear in local or variable-initialization
1642 // contexts and so should never appear in a mangling.
1643 case Expr::AddrLabelExprClass:
1644 case Expr::BlockDeclRefExprClass:
1645 case Expr::CXXThisExprClass:
1646 case Expr::DesignatedInitExprClass:
1647 case Expr::ImplicitValueInitExprClass:
1648 case Expr::InitListExprClass:
1649 case Expr::ParenListExprClass:
1650 case Expr::CXXScalarValueInitExprClass:
John McCall09cc1412010-02-03 00:55:45 +00001651 llvm_unreachable("unexpected statement kind");
1652 break;
1653
John McCall0512e482010-07-14 04:20:34 +00001654 // FIXME: invent manglings for all these.
1655 case Expr::BlockExprClass:
1656 case Expr::CXXPseudoDestructorExprClass:
1657 case Expr::ChooseExprClass:
1658 case Expr::CompoundLiteralExprClass:
1659 case Expr::ExtVectorElementExprClass:
1660 case Expr::ObjCEncodeExprClass:
John McCall0512e482010-07-14 04:20:34 +00001661 case Expr::ObjCIsaExprClass:
1662 case Expr::ObjCIvarRefExprClass:
1663 case Expr::ObjCMessageExprClass:
1664 case Expr::ObjCPropertyRefExprClass:
1665 case Expr::ObjCProtocolExprClass:
1666 case Expr::ObjCSelectorExprClass:
1667 case Expr::ObjCStringLiteralClass:
John McCall0512e482010-07-14 04:20:34 +00001668 case Expr::OffsetOfExprClass:
1669 case Expr::PredefinedExprClass:
1670 case Expr::ShuffleVectorExprClass:
1671 case Expr::StmtExprClass:
John McCall0512e482010-07-14 04:20:34 +00001672 case Expr::UnaryTypeTraitExprClass:
Francois Pichet6ad6f282010-12-07 00:08:36 +00001673 case Expr::BinaryTypeTraitExprClass:
Francois Pichet9be88402010-09-08 23:47:05 +00001674 case Expr::VAArgExprClass:
Sebastian Redl2e156222010-09-10 20:55:43 +00001675 case Expr::CXXUuidofExprClass:
1676 case Expr::CXXNoexceptExprClass: {
John McCall6ae1f352010-04-09 22:26:14 +00001677 // As bad as this diagnostic is, it's better than crashing.
1678 Diagnostic &Diags = Context.getDiags();
1679 unsigned DiagID = Diags.getCustomDiagID(Diagnostic::Error,
1680 "cannot yet mangle expression type %0");
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00001681 Diags.Report(E->getExprLoc(), DiagID)
John McCall739bf092010-04-10 09:39:25 +00001682 << E->getStmtClassName() << E->getSourceRange();
John McCall6ae1f352010-04-09 22:26:14 +00001683 break;
1684 }
1685
John McCall7cd7d1a2010-11-15 23:31:06 +00001686 case Expr::OpaqueValueExprClass:
1687 llvm_unreachable("cannot mangle opaque value; mangling wrong thing?");
1688
John McCall0512e482010-07-14 04:20:34 +00001689 case Expr::CXXDefaultArgExprClass:
John McCall5e1e89b2010-08-18 19:18:59 +00001690 mangleExpression(cast<CXXDefaultArgExpr>(E)->getExpr(), Arity);
John McCall0512e482010-07-14 04:20:34 +00001691 break;
1692
1693 case Expr::CXXMemberCallExprClass: // fallthrough
John McCall1dd73832010-02-04 01:42:13 +00001694 case Expr::CallExprClass: {
1695 const CallExpr *CE = cast<CallExpr>(E);
1696 Out << "cl";
John McCall5e1e89b2010-08-18 19:18:59 +00001697 mangleExpression(CE->getCallee(), CE->getNumArgs());
John McCall1dd73832010-02-04 01:42:13 +00001698 for (unsigned I = 0, N = CE->getNumArgs(); I != N; ++I)
1699 mangleExpression(CE->getArg(I));
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001700 Out << 'E';
John McCall09cc1412010-02-03 00:55:45 +00001701 break;
John McCall1dd73832010-02-04 01:42:13 +00001702 }
John McCall09cc1412010-02-03 00:55:45 +00001703
John McCall0512e482010-07-14 04:20:34 +00001704 case Expr::CXXNewExprClass: {
1705 // Proposal from David Vandervoorde, 2010.06.30
1706 const CXXNewExpr *New = cast<CXXNewExpr>(E);
1707 if (New->isGlobalNew()) Out << "gs";
1708 Out << (New->isArray() ? "na" : "nw");
1709 for (CXXNewExpr::const_arg_iterator I = New->placement_arg_begin(),
1710 E = New->placement_arg_end(); I != E; ++I)
1711 mangleExpression(*I);
1712 Out << '_';
1713 mangleType(New->getAllocatedType());
1714 if (New->hasInitializer()) {
1715 Out << "pi";
1716 for (CXXNewExpr::const_arg_iterator I = New->constructor_arg_begin(),
1717 E = New->constructor_arg_end(); I != E; ++I)
1718 mangleExpression(*I);
1719 }
1720 Out << 'E';
1721 break;
1722 }
1723
John McCall2f27bf82010-02-04 02:56:29 +00001724 case Expr::MemberExprClass: {
1725 const MemberExpr *ME = cast<MemberExpr>(E);
1726 mangleMemberExpr(ME->getBase(), ME->isArrow(),
1727 ME->getQualifier(), ME->getMemberDecl()->getDeclName(),
John McCall5e1e89b2010-08-18 19:18:59 +00001728 Arity);
John McCall2f27bf82010-02-04 02:56:29 +00001729 break;
1730 }
1731
1732 case Expr::UnresolvedMemberExprClass: {
1733 const UnresolvedMemberExpr *ME = cast<UnresolvedMemberExpr>(E);
1734 mangleMemberExpr(ME->getBase(), ME->isArrow(),
1735 ME->getQualifier(), ME->getMemberName(),
John McCall5e1e89b2010-08-18 19:18:59 +00001736 Arity);
John McCall6dbce192010-08-20 00:17:19 +00001737 if (ME->hasExplicitTemplateArgs())
1738 mangleTemplateArgs(ME->getExplicitTemplateArgs());
John McCall2f27bf82010-02-04 02:56:29 +00001739 break;
1740 }
1741
1742 case Expr::CXXDependentScopeMemberExprClass: {
1743 const CXXDependentScopeMemberExpr *ME
1744 = cast<CXXDependentScopeMemberExpr>(E);
1745 mangleMemberExpr(ME->getBase(), ME->isArrow(),
1746 ME->getQualifier(), ME->getMember(),
John McCall5e1e89b2010-08-18 19:18:59 +00001747 Arity);
John McCall6dbce192010-08-20 00:17:19 +00001748 if (ME->hasExplicitTemplateArgs())
1749 mangleTemplateArgs(ME->getExplicitTemplateArgs());
John McCall2f27bf82010-02-04 02:56:29 +00001750 break;
1751 }
1752
John McCall1dd73832010-02-04 01:42:13 +00001753 case Expr::UnresolvedLookupExprClass: {
John McCalla3218e72010-02-04 01:48:38 +00001754 // The ABI doesn't cover how to mangle overload sets, so we mangle
1755 // using something as close as possible to the original lookup
1756 // expression.
John McCall1dd73832010-02-04 01:42:13 +00001757 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E);
John McCall5e1e89b2010-08-18 19:18:59 +00001758 mangleUnresolvedName(ULE->getQualifier(), ULE->getName(), Arity);
John McCall6dbce192010-08-20 00:17:19 +00001759 if (ULE->hasExplicitTemplateArgs())
1760 mangleTemplateArgs(ULE->getExplicitTemplateArgs());
John McCall1dd73832010-02-04 01:42:13 +00001761 break;
1762 }
1763
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001764 case Expr::CXXUnresolvedConstructExprClass: {
John McCall1dd73832010-02-04 01:42:13 +00001765 const CXXUnresolvedConstructExpr *CE = cast<CXXUnresolvedConstructExpr>(E);
1766 unsigned N = CE->arg_size();
1767
1768 Out << "cv";
1769 mangleType(CE->getType());
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001770 if (N != 1) Out << '_';
John McCall1dd73832010-02-04 01:42:13 +00001771 for (unsigned I = 0; I != N; ++I) mangleExpression(CE->getArg(I));
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001772 if (N != 1) Out << 'E';
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001773 break;
John McCall1dd73832010-02-04 01:42:13 +00001774 }
John McCall09cc1412010-02-03 00:55:45 +00001775
John McCall1dd73832010-02-04 01:42:13 +00001776 case Expr::CXXTemporaryObjectExprClass:
1777 case Expr::CXXConstructExprClass: {
1778 const CXXConstructExpr *CE = cast<CXXConstructExpr>(E);
1779 unsigned N = CE->getNumArgs();
1780
1781 Out << "cv";
1782 mangleType(CE->getType());
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001783 if (N != 1) Out << '_';
John McCall1dd73832010-02-04 01:42:13 +00001784 for (unsigned I = 0; I != N; ++I) mangleExpression(CE->getArg(I));
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001785 if (N != 1) Out << 'E';
John McCall09cc1412010-02-03 00:55:45 +00001786 break;
John McCall1dd73832010-02-04 01:42:13 +00001787 }
1788
1789 case Expr::SizeOfAlignOfExprClass: {
1790 const SizeOfAlignOfExpr *SAE = cast<SizeOfAlignOfExpr>(E);
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001791 if (SAE->isSizeOf()) Out << 's';
1792 else Out << 'a';
John McCall1dd73832010-02-04 01:42:13 +00001793 if (SAE->isArgumentType()) {
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001794 Out << 't';
John McCall1dd73832010-02-04 01:42:13 +00001795 mangleType(SAE->getArgumentType());
1796 } else {
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001797 Out << 'z';
John McCall1dd73832010-02-04 01:42:13 +00001798 mangleExpression(SAE->getArgumentExpr());
1799 }
1800 break;
1801 }
Anders Carlssona7694082009-11-06 02:50:19 +00001802
John McCall0512e482010-07-14 04:20:34 +00001803 case Expr::CXXThrowExprClass: {
1804 const CXXThrowExpr *TE = cast<CXXThrowExpr>(E);
1805
1806 // Proposal from David Vandervoorde, 2010.06.30
1807 if (TE->getSubExpr()) {
1808 Out << "tw";
1809 mangleExpression(TE->getSubExpr());
1810 } else {
1811 Out << "tr";
1812 }
1813 break;
1814 }
1815
1816 case Expr::CXXTypeidExprClass: {
1817 const CXXTypeidExpr *TIE = cast<CXXTypeidExpr>(E);
1818
1819 // Proposal from David Vandervoorde, 2010.06.30
1820 if (TIE->isTypeOperand()) {
1821 Out << "ti";
1822 mangleType(TIE->getTypeOperand());
1823 } else {
1824 Out << "te";
1825 mangleExpression(TIE->getExprOperand());
1826 }
1827 break;
1828 }
1829
1830 case Expr::CXXDeleteExprClass: {
1831 const CXXDeleteExpr *DE = cast<CXXDeleteExpr>(E);
1832
1833 // Proposal from David Vandervoorde, 2010.06.30
1834 if (DE->isGlobalDelete()) Out << "gs";
1835 Out << (DE->isArrayForm() ? "da" : "dl");
1836 mangleExpression(DE->getArgument());
1837 break;
1838 }
1839
Anders Carlssone170ba72009-12-14 01:45:37 +00001840 case Expr::UnaryOperatorClass: {
1841 const UnaryOperator *UO = cast<UnaryOperator>(E);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001842 mangleOperatorName(UnaryOperator::getOverloadedOperator(UO->getOpcode()),
Anders Carlssone170ba72009-12-14 01:45:37 +00001843 /*Arity=*/1);
1844 mangleExpression(UO->getSubExpr());
1845 break;
1846 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001847
John McCall0512e482010-07-14 04:20:34 +00001848 case Expr::ArraySubscriptExprClass: {
1849 const ArraySubscriptExpr *AE = cast<ArraySubscriptExpr>(E);
1850
1851 // Array subscript is treated as a syntactically wierd form of
1852 // binary operator.
1853 Out << "ix";
1854 mangleExpression(AE->getLHS());
1855 mangleExpression(AE->getRHS());
1856 break;
1857 }
1858
1859 case Expr::CompoundAssignOperatorClass: // fallthrough
Anders Carlssone170ba72009-12-14 01:45:37 +00001860 case Expr::BinaryOperatorClass: {
1861 const BinaryOperator *BO = cast<BinaryOperator>(E);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001862 mangleOperatorName(BinaryOperator::getOverloadedOperator(BO->getOpcode()),
Anders Carlssone170ba72009-12-14 01:45:37 +00001863 /*Arity=*/2);
1864 mangleExpression(BO->getLHS());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001865 mangleExpression(BO->getRHS());
Anders Carlssone170ba72009-12-14 01:45:37 +00001866 break;
John McCall2f27bf82010-02-04 02:56:29 +00001867 }
Anders Carlssone170ba72009-12-14 01:45:37 +00001868
1869 case Expr::ConditionalOperatorClass: {
1870 const ConditionalOperator *CO = cast<ConditionalOperator>(E);
1871 mangleOperatorName(OO_Conditional, /*Arity=*/3);
1872 mangleExpression(CO->getCond());
John McCall5e1e89b2010-08-18 19:18:59 +00001873 mangleExpression(CO->getLHS(), Arity);
1874 mangleExpression(CO->getRHS(), Arity);
Anders Carlssone170ba72009-12-14 01:45:37 +00001875 break;
1876 }
1877
Douglas Gregor46287c72010-01-29 16:37:09 +00001878 case Expr::ImplicitCastExprClass: {
John McCall5e1e89b2010-08-18 19:18:59 +00001879 mangleExpression(cast<ImplicitCastExpr>(E)->getSubExpr(), Arity);
Douglas Gregor46287c72010-01-29 16:37:09 +00001880 break;
1881 }
1882
1883 case Expr::CStyleCastExprClass:
1884 case Expr::CXXStaticCastExprClass:
1885 case Expr::CXXDynamicCastExprClass:
1886 case Expr::CXXReinterpretCastExprClass:
1887 case Expr::CXXConstCastExprClass:
1888 case Expr::CXXFunctionalCastExprClass: {
1889 const ExplicitCastExpr *ECE = cast<ExplicitCastExpr>(E);
1890 Out << "cv";
1891 mangleType(ECE->getType());
1892 mangleExpression(ECE->getSubExpr());
1893 break;
1894 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001895
Anders Carlsson58040a52009-12-16 05:48:46 +00001896 case Expr::CXXOperatorCallExprClass: {
1897 const CXXOperatorCallExpr *CE = cast<CXXOperatorCallExpr>(E);
1898 unsigned NumArgs = CE->getNumArgs();
1899 mangleOperatorName(CE->getOperator(), /*Arity=*/NumArgs);
1900 // Mangle the arguments.
1901 for (unsigned i = 0; i != NumArgs; ++i)
1902 mangleExpression(CE->getArg(i));
1903 break;
1904 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001905
Anders Carlssona7694082009-11-06 02:50:19 +00001906 case Expr::ParenExprClass:
John McCall5e1e89b2010-08-18 19:18:59 +00001907 mangleExpression(cast<ParenExpr>(E)->getSubExpr(), Arity);
Anders Carlssona7694082009-11-06 02:50:19 +00001908 break;
1909
Anders Carlssond553f8c2009-09-21 01:21:10 +00001910 case Expr::DeclRefExprClass: {
Douglas Gregor5ed1bc32010-02-28 21:40:32 +00001911 const NamedDecl *D = cast<DeclRefExpr>(E)->getDecl();
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001912
Anders Carlssond553f8c2009-09-21 01:21:10 +00001913 switch (D->getKind()) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001914 default:
Douglas Gregor5ed1bc32010-02-28 21:40:32 +00001915 // <expr-primary> ::= L <mangled-name> E # external name
1916 Out << 'L';
1917 mangle(D, "_Z");
1918 Out << 'E';
1919 break;
1920
John McCall3dc7e7b2010-07-24 01:17:35 +00001921 case Decl::EnumConstant: {
1922 const EnumConstantDecl *ED = cast<EnumConstantDecl>(D);
1923 mangleIntegerLiteral(ED->getType(), ED->getInitVal());
1924 break;
1925 }
1926
Anders Carlssond553f8c2009-09-21 01:21:10 +00001927 case Decl::NonTypeTemplateParm: {
1928 const NonTypeTemplateParmDecl *PD = cast<NonTypeTemplateParmDecl>(D);
Anders Carlsson0ccdf8d2009-09-27 00:38:53 +00001929 mangleTemplateParameter(PD->getIndex());
Anders Carlssond553f8c2009-09-21 01:21:10 +00001930 break;
1931 }
1932
1933 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001934
Anders Carlsson50755b02009-09-27 20:11:34 +00001935 break;
Anders Carlssond553f8c2009-09-21 01:21:10 +00001936 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001937
John McCall865d4472009-11-19 22:55:06 +00001938 case Expr::DependentScopeDeclRefExprClass: {
1939 const DependentScopeDeclRefExpr *DRE = cast<DependentScopeDeclRefExpr>(E);
Douglas Gregor4b2ccfc2010-02-28 22:05:49 +00001940 NestedNameSpecifier *NNS = DRE->getQualifier();
1941 const Type *QTy = NNS->getAsType();
1942
1943 // When we're dealing with a nested-name-specifier that has just a
1944 // dependent identifier in it, mangle that as a typename. FIXME:
1945 // It isn't clear that we ever actually want to have such a
1946 // nested-name-specifier; why not just represent it as a typename type?
1947 if (!QTy && NNS->getAsIdentifier() && NNS->getPrefix()) {
Douglas Gregor4a2023f2010-03-31 20:19:30 +00001948 QTy = getASTContext().getDependentNameType(ETK_Typename,
1949 NNS->getPrefix(),
1950 NNS->getAsIdentifier())
Douglas Gregor4b2ccfc2010-02-28 22:05:49 +00001951 .getTypePtr();
1952 }
Anders Carlsson50755b02009-09-27 20:11:34 +00001953 assert(QTy && "Qualifier was not type!");
1954
John McCall6dbce192010-08-20 00:17:19 +00001955 // ::= sr <type> <unqualified-name> # dependent name
1956 // ::= sr <type> <unqualified-name> <template-args> # dependent template-id
Anders Carlsson50755b02009-09-27 20:11:34 +00001957 Out << "sr";
1958 mangleType(QualType(QTy, 0));
John McCall5e1e89b2010-08-18 19:18:59 +00001959 mangleUnqualifiedName(0, DRE->getDeclName(), Arity);
John McCall6dbce192010-08-20 00:17:19 +00001960 if (DRE->hasExplicitTemplateArgs())
1961 mangleTemplateArgs(DRE->getExplicitTemplateArgs());
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00001962
Anders Carlsson50755b02009-09-27 20:11:34 +00001963 break;
1964 }
1965
John McCalld9307602010-04-09 22:54:09 +00001966 case Expr::CXXBindTemporaryExprClass:
1967 mangleExpression(cast<CXXBindTemporaryExpr>(E)->getSubExpr());
1968 break;
1969
John McCall4765fa02010-12-06 08:20:24 +00001970 case Expr::ExprWithCleanupsClass:
1971 mangleExpression(cast<ExprWithCleanups>(E)->getSubExpr(), Arity);
John McCalld9307602010-04-09 22:54:09 +00001972 break;
1973
John McCall1dd73832010-02-04 01:42:13 +00001974 case Expr::FloatingLiteralClass: {
1975 const FloatingLiteral *FL = cast<FloatingLiteral>(E);
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001976 Out << 'L';
John McCall1dd73832010-02-04 01:42:13 +00001977 mangleType(FL->getType());
John McCall0512e482010-07-14 04:20:34 +00001978 mangleFloat(FL->getValue());
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001979 Out << 'E';
John McCall1dd73832010-02-04 01:42:13 +00001980 break;
1981 }
1982
John McCallde810632010-04-09 21:48:08 +00001983 case Expr::CharacterLiteralClass:
Benjamin Kramer35f59b62010-04-10 16:03:31 +00001984 Out << 'L';
John McCallde810632010-04-09 21:48:08 +00001985 mangleType(E->getType());
1986 Out << cast<CharacterLiteral>(E)->getValue();
1987 Out << 'E';
1988 break;
1989
1990 case Expr::CXXBoolLiteralExprClass:
1991 Out << "Lb";
1992 Out << (cast<CXXBoolLiteralExpr>(E)->getValue() ? '1' : '0');
1993 Out << 'E';
1994 break;
1995
John McCall0512e482010-07-14 04:20:34 +00001996 case Expr::IntegerLiteralClass: {
1997 llvm::APSInt Value(cast<IntegerLiteral>(E)->getValue());
1998 if (E->getType()->isSignedIntegerType())
1999 Value.setIsSigned(true);
2000 mangleIntegerLiteral(E->getType(), Value);
Anders Carlssone170ba72009-12-14 01:45:37 +00002001 break;
John McCall0512e482010-07-14 04:20:34 +00002002 }
2003
2004 case Expr::ImaginaryLiteralClass: {
2005 const ImaginaryLiteral *IE = cast<ImaginaryLiteral>(E);
2006 // Mangle as if a complex literal.
Nick Lewycky271b6652010-09-05 03:40:33 +00002007 // Proposal from David Vandevoorde, 2010.06.30.
John McCall0512e482010-07-14 04:20:34 +00002008 Out << 'L';
2009 mangleType(E->getType());
2010 if (const FloatingLiteral *Imag =
2011 dyn_cast<FloatingLiteral>(IE->getSubExpr())) {
2012 // Mangle a floating-point zero of the appropriate type.
2013 mangleFloat(llvm::APFloat(Imag->getValue().getSemantics()));
2014 Out << '_';
2015 mangleFloat(Imag->getValue());
2016 } else {
Nick Lewycky271b6652010-09-05 03:40:33 +00002017 Out << "0_";
John McCall0512e482010-07-14 04:20:34 +00002018 llvm::APSInt Value(cast<IntegerLiteral>(IE->getSubExpr())->getValue());
2019 if (IE->getSubExpr()->getType()->isSignedIntegerType())
2020 Value.setIsSigned(true);
2021 mangleNumber(Value);
2022 }
2023 Out << 'E';
2024 break;
2025 }
2026
2027 case Expr::StringLiteralClass: {
John McCall1658c392010-07-15 21:53:03 +00002028 // Revised proposal from David Vandervoorde, 2010.07.15.
John McCall0512e482010-07-14 04:20:34 +00002029 Out << 'L';
John McCall1658c392010-07-15 21:53:03 +00002030 assert(isa<ConstantArrayType>(E->getType()));
2031 mangleType(E->getType());
John McCall0512e482010-07-14 04:20:34 +00002032 Out << 'E';
2033 break;
2034 }
2035
2036 case Expr::GNUNullExprClass:
2037 // FIXME: should this really be mangled the same as nullptr?
2038 // fallthrough
2039
2040 case Expr::CXXNullPtrLiteralExprClass: {
2041 // Proposal from David Vandervoorde, 2010.06.30, as
2042 // modified by ABI list discussion.
2043 Out << "LDnE";
2044 break;
2045 }
Douglas Gregorbe230c32011-01-03 17:17:50 +00002046
2047 case Expr::PackExpansionExprClass:
2048 Out << "sp";
2049 mangleExpression(cast<PackExpansionExpr>(E)->getPattern());
2050 break;
Anders Carlssond553f8c2009-09-21 01:21:10 +00002051 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00002052}
2053
Anders Carlsson3ac86b52009-04-15 05:36:58 +00002054void CXXNameMangler::mangleCXXCtorType(CXXCtorType T) {
2055 // <ctor-dtor-name> ::= C1 # complete object constructor
2056 // ::= C2 # base object constructor
2057 // ::= C3 # complete object allocating constructor
2058 //
2059 switch (T) {
2060 case Ctor_Complete:
2061 Out << "C1";
2062 break;
2063 case Ctor_Base:
2064 Out << "C2";
2065 break;
2066 case Ctor_CompleteAllocating:
2067 Out << "C3";
2068 break;
2069 }
2070}
2071
Anders Carlsson27ae5362009-04-17 01:58:57 +00002072void CXXNameMangler::mangleCXXDtorType(CXXDtorType T) {
2073 // <ctor-dtor-name> ::= D0 # deleting destructor
2074 // ::= D1 # complete object destructor
2075 // ::= D2 # base object destructor
2076 //
2077 switch (T) {
2078 case Dtor_Deleting:
2079 Out << "D0";
2080 break;
2081 case Dtor_Complete:
2082 Out << "D1";
2083 break;
2084 case Dtor_Base:
2085 Out << "D2";
2086 break;
2087 }
2088}
2089
John McCall6dbce192010-08-20 00:17:19 +00002090void CXXNameMangler::mangleTemplateArgs(
2091 const ExplicitTemplateArgumentList &TemplateArgs) {
2092 // <template-args> ::= I <template-arg>+ E
2093 Out << 'I';
2094 for (unsigned I = 0, E = TemplateArgs.NumTemplateArgs; I != E; ++I)
2095 mangleTemplateArg(0, TemplateArgs.getTemplateArgs()[I].getArgument());
2096 Out << 'E';
2097}
2098
Douglas Gregor20f0cc72010-04-23 03:10:43 +00002099void CXXNameMangler::mangleTemplateArgs(TemplateName Template,
2100 const TemplateArgument *TemplateArgs,
2101 unsigned NumTemplateArgs) {
2102 if (TemplateDecl *TD = Template.getAsTemplateDecl())
2103 return mangleTemplateArgs(*TD->getTemplateParameters(), TemplateArgs,
2104 NumTemplateArgs);
Sean Huntc3021132010-05-05 15:23:54 +00002105
Douglas Gregor20f0cc72010-04-23 03:10:43 +00002106 // <template-args> ::= I <template-arg>+ E
2107 Out << 'I';
2108 for (unsigned i = 0; i != NumTemplateArgs; ++i)
2109 mangleTemplateArg(0, TemplateArgs[i]);
2110 Out << 'E';
2111}
2112
Rafael Espindolad9800722010-03-11 14:07:00 +00002113void CXXNameMangler::mangleTemplateArgs(const TemplateParameterList &PL,
2114 const TemplateArgumentList &AL) {
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002115 // <template-args> ::= I <template-arg>+ E
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002116 Out << 'I';
Rafael Espindolad9800722010-03-11 14:07:00 +00002117 for (unsigned i = 0, e = AL.size(); i != e; ++i)
2118 mangleTemplateArg(PL.getParam(i), AL[i]);
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002119 Out << 'E';
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002120}
2121
Rafael Espindolad9800722010-03-11 14:07:00 +00002122void CXXNameMangler::mangleTemplateArgs(const TemplateParameterList &PL,
2123 const TemplateArgument *TemplateArgs,
Anders Carlsson7624f212009-09-18 02:42:01 +00002124 unsigned NumTemplateArgs) {
2125 // <template-args> ::= I <template-arg>+ E
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002126 Out << 'I';
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002127 for (unsigned i = 0; i != NumTemplateArgs; ++i)
Rafael Espindolad9800722010-03-11 14:07:00 +00002128 mangleTemplateArg(PL.getParam(i), TemplateArgs[i]);
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002129 Out << 'E';
Anders Carlsson7624f212009-09-18 02:42:01 +00002130}
2131
Rafael Espindolad9800722010-03-11 14:07:00 +00002132void CXXNameMangler::mangleTemplateArg(const NamedDecl *P,
2133 const TemplateArgument &A) {
Mike Stump1eb44332009-09-09 15:08:12 +00002134 // <template-arg> ::= <type> # type or template
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002135 // ::= X <expression> E # expression
2136 // ::= <expr-primary> # simple expressions
2137 // ::= I <template-arg>* E # argument pack
2138 // ::= sp <expression> # pack expansion of (C++0x)
2139 switch (A.getKind()) {
Douglas Gregorf90b27a2011-01-03 22:36:02 +00002140 case TemplateArgument::Null:
2141 llvm_unreachable("Cannot mangle NULL template argument");
2142
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002143 case TemplateArgument::Type:
2144 mangleType(A.getAsType());
2145 break;
Anders Carlsson9e85c742009-12-23 19:30:55 +00002146 case TemplateArgument::Template:
John McCallb6f532e2010-07-14 06:43:17 +00002147 // This is mangled as <type>.
2148 mangleType(A.getAsTemplate());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002149 break;
Anders Carlssond553f8c2009-09-21 01:21:10 +00002150 case TemplateArgument::Expression:
2151 Out << 'X';
2152 mangleExpression(A.getAsExpr());
2153 Out << 'E';
2154 break;
Anders Carlssone170ba72009-12-14 01:45:37 +00002155 case TemplateArgument::Integral:
2156 mangleIntegerLiteral(A.getIntegralType(), *A.getAsIntegral());
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002157 break;
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002158 case TemplateArgument::Declaration: {
Douglas Gregor20f0cc72010-04-23 03:10:43 +00002159 assert(P && "Missing template parameter for declaration argument");
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002160 // <expr-primary> ::= L <mangled-name> E # external name
2161
Rafael Espindolad9800722010-03-11 14:07:00 +00002162 // Clang produces AST's where pointer-to-member-function expressions
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002163 // and pointer-to-function expressions are represented as a declaration not
Rafael Espindolad9800722010-03-11 14:07:00 +00002164 // an expression. We compensate for it here to produce the correct mangling.
2165 NamedDecl *D = cast<NamedDecl>(A.getAsDecl());
2166 const NonTypeTemplateParmDecl *Parameter = cast<NonTypeTemplateParmDecl>(P);
2167 bool compensateMangling = D->isCXXClassMember() &&
2168 !Parameter->getType()->isReferenceType();
2169 if (compensateMangling) {
2170 Out << 'X';
2171 mangleOperatorName(OO_Amp, 1);
2172 }
2173
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002174 Out << 'L';
2175 // References to external entities use the mangled name; if the name would
2176 // not normally be manged then mangle it as unqualified.
2177 //
2178 // FIXME: The ABI specifies that external names here should have _Z, but
2179 // gcc leaves this off.
Rafael Espindolad9800722010-03-11 14:07:00 +00002180 if (compensateMangling)
2181 mangle(D, "_Z");
2182 else
2183 mangle(D, "Z");
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002184 Out << 'E';
Rafael Espindolad9800722010-03-11 14:07:00 +00002185
2186 if (compensateMangling)
2187 Out << 'E';
2188
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002189 break;
2190 }
Douglas Gregorf90b27a2011-01-03 22:36:02 +00002191
2192 case TemplateArgument::Pack: {
2193 // Note: proposal by Mike Herrick on 12/20/10
2194 Out << 'J';
2195 for (TemplateArgument::pack_iterator PA = A.pack_begin(),
2196 PAEnd = A.pack_end();
2197 PA != PAEnd; ++PA)
2198 mangleTemplateArg(P, *PA);
2199 Out << 'E';
2200 }
Daniel Dunbar7e0c1952009-11-21 09:17:15 +00002201 }
Anders Carlsson7a0ba872009-05-15 16:09:15 +00002202}
2203
Anders Carlsson0ccdf8d2009-09-27 00:38:53 +00002204void CXXNameMangler::mangleTemplateParameter(unsigned Index) {
2205 // <template-param> ::= T_ # first template parameter
2206 // ::= T <parameter-2 non-negative number> _
2207 if (Index == 0)
2208 Out << "T_";
2209 else
2210 Out << 'T' << (Index - 1) << '_';
2211}
2212
Anders Carlsson76967372009-09-17 00:43:46 +00002213// <substitution> ::= S <seq-id> _
2214// ::= S_
Anders Carlsson6862fc72009-09-17 04:16:28 +00002215bool CXXNameMangler::mangleSubstitution(const NamedDecl *ND) {
Anders Carlssone7c8cb62009-09-26 20:53:44 +00002216 // Try one of the standard substitutions first.
2217 if (mangleStandardSubstitution(ND))
2218 return true;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002219
Anders Carlsson433d1372009-11-07 04:26:04 +00002220 ND = cast<NamedDecl>(ND->getCanonicalDecl());
Anders Carlsson6862fc72009-09-17 04:16:28 +00002221 return mangleSubstitution(reinterpret_cast<uintptr_t>(ND));
2222}
2223
Anders Carlsson76967372009-09-17 00:43:46 +00002224bool CXXNameMangler::mangleSubstitution(QualType T) {
Anders Carlssond99edc42009-09-26 03:55:37 +00002225 if (!T.getCVRQualifiers()) {
2226 if (const RecordType *RT = T->getAs<RecordType>())
2227 return mangleSubstitution(RT->getDecl());
2228 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002229
Anders Carlsson76967372009-09-17 00:43:46 +00002230 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
2231
Anders Carlssond3a932a2009-09-17 03:53:28 +00002232 return mangleSubstitution(TypePtr);
2233}
2234
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002235bool CXXNameMangler::mangleSubstitution(TemplateName Template) {
2236 if (TemplateDecl *TD = Template.getAsTemplateDecl())
2237 return mangleSubstitution(TD);
Sean Huntc3021132010-05-05 15:23:54 +00002238
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002239 Template = Context.getASTContext().getCanonicalTemplateName(Template);
2240 return mangleSubstitution(
2241 reinterpret_cast<uintptr_t>(Template.getAsVoidPointer()));
2242}
2243
Anders Carlssond3a932a2009-09-17 03:53:28 +00002244bool CXXNameMangler::mangleSubstitution(uintptr_t Ptr) {
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002245 llvm::DenseMap<uintptr_t, unsigned>::iterator I = Substitutions.find(Ptr);
Anders Carlsson76967372009-09-17 00:43:46 +00002246 if (I == Substitutions.end())
2247 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002248
Anders Carlsson76967372009-09-17 00:43:46 +00002249 unsigned SeqID = I->second;
2250 if (SeqID == 0)
2251 Out << "S_";
2252 else {
2253 SeqID--;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002254
Anders Carlsson76967372009-09-17 00:43:46 +00002255 // <seq-id> is encoded in base-36, using digits and upper case letters.
2256 char Buffer[10];
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002257 char *BufferPtr = llvm::array_endof(Buffer);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002258
Anders Carlsson76967372009-09-17 00:43:46 +00002259 if (SeqID == 0) *--BufferPtr = '0';
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002260
Anders Carlsson76967372009-09-17 00:43:46 +00002261 while (SeqID) {
2262 assert(BufferPtr > Buffer && "Buffer overflow!");
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002263
John McCall6ab30e02010-06-09 07:26:17 +00002264 char c = static_cast<char>(SeqID % 36);
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002265
Anders Carlsson76967372009-09-17 00:43:46 +00002266 *--BufferPtr = (c < 10 ? '0' + c : 'A' + c - 10);
2267 SeqID /= 36;
2268 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002269
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002270 Out << 'S'
2271 << llvm::StringRef(BufferPtr, llvm::array_endof(Buffer)-BufferPtr)
2272 << '_';
Anders Carlsson76967372009-09-17 00:43:46 +00002273 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002274
Anders Carlsson76967372009-09-17 00:43:46 +00002275 return true;
2276}
2277
Anders Carlssonf514b542009-09-27 00:12:57 +00002278static bool isCharType(QualType T) {
2279 if (T.isNull())
2280 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002281
Anders Carlssonf514b542009-09-27 00:12:57 +00002282 return T->isSpecificBuiltinType(BuiltinType::Char_S) ||
2283 T->isSpecificBuiltinType(BuiltinType::Char_U);
2284}
2285
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002286/// isCharSpecialization - Returns whether a given type is a template
Anders Carlssonf514b542009-09-27 00:12:57 +00002287/// specialization of a given name with a single argument of type char.
2288static bool isCharSpecialization(QualType T, const char *Name) {
2289 if (T.isNull())
2290 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002291
Anders Carlssonf514b542009-09-27 00:12:57 +00002292 const RecordType *RT = T->getAs<RecordType>();
2293 if (!RT)
2294 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002295
2296 const ClassTemplateSpecializationDecl *SD =
Anders Carlssonf514b542009-09-27 00:12:57 +00002297 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
2298 if (!SD)
2299 return false;
2300
2301 if (!isStdNamespace(SD->getDeclContext()))
2302 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002303
Anders Carlssonf514b542009-09-27 00:12:57 +00002304 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
2305 if (TemplateArgs.size() != 1)
2306 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002307
Anders Carlssonf514b542009-09-27 00:12:57 +00002308 if (!isCharType(TemplateArgs[0].getAsType()))
2309 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002310
Daniel Dunbar01eb9b92009-10-18 21:17:35 +00002311 return SD->getIdentifier()->getName() == Name;
Anders Carlssonf514b542009-09-27 00:12:57 +00002312}
2313
Anders Carlsson91f88602009-12-07 19:56:42 +00002314template <std::size_t StrLen>
Benjamin Kramer54353f42010-11-25 18:29:30 +00002315static bool isStreamCharSpecialization(const ClassTemplateSpecializationDecl*SD,
2316 const char (&Str)[StrLen]) {
Anders Carlsson91f88602009-12-07 19:56:42 +00002317 if (!SD->getIdentifier()->isStr(Str))
2318 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002319
Anders Carlsson91f88602009-12-07 19:56:42 +00002320 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
2321 if (TemplateArgs.size() != 2)
2322 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002323
Anders Carlsson91f88602009-12-07 19:56:42 +00002324 if (!isCharType(TemplateArgs[0].getAsType()))
2325 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002326
Anders Carlsson91f88602009-12-07 19:56:42 +00002327 if (!isCharSpecialization(TemplateArgs[1].getAsType(), "char_traits"))
2328 return false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002329
Anders Carlsson91f88602009-12-07 19:56:42 +00002330 return true;
2331}
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002332
Anders Carlssone7c8cb62009-09-26 20:53:44 +00002333bool CXXNameMangler::mangleStandardSubstitution(const NamedDecl *ND) {
2334 // <substitution> ::= St # ::std::
Anders Carlsson8c031552009-09-26 23:10:05 +00002335 if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
Anders Carlsson47846d22009-12-04 06:23:23 +00002336 if (isStd(NS)) {
Anders Carlsson8c031552009-09-26 23:10:05 +00002337 Out << "St";
2338 return true;
2339 }
2340 }
2341
2342 if (const ClassTemplateDecl *TD = dyn_cast<ClassTemplateDecl>(ND)) {
2343 if (!isStdNamespace(TD->getDeclContext()))
2344 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002345
Anders Carlsson8c031552009-09-26 23:10:05 +00002346 // <substitution> ::= Sa # ::std::allocator
2347 if (TD->getIdentifier()->isStr("allocator")) {
2348 Out << "Sa";
2349 return true;
2350 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002351
Anders Carlsson189d59c2009-09-26 23:14:39 +00002352 // <<substitution> ::= Sb # ::std::basic_string
2353 if (TD->getIdentifier()->isStr("basic_string")) {
2354 Out << "Sb";
2355 return true;
2356 }
Anders Carlsson8c031552009-09-26 23:10:05 +00002357 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002358
2359 if (const ClassTemplateSpecializationDecl *SD =
Anders Carlssonf514b542009-09-27 00:12:57 +00002360 dyn_cast<ClassTemplateSpecializationDecl>(ND)) {
Eli Friedman5370ee22010-02-23 18:25:09 +00002361 if (!isStdNamespace(SD->getDeclContext()))
2362 return false;
2363
Anders Carlssonf514b542009-09-27 00:12:57 +00002364 // <substitution> ::= Ss # ::std::basic_string<char,
2365 // ::std::char_traits<char>,
2366 // ::std::allocator<char> >
2367 if (SD->getIdentifier()->isStr("basic_string")) {
2368 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002369
Anders Carlssonf514b542009-09-27 00:12:57 +00002370 if (TemplateArgs.size() != 3)
2371 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002372
Anders Carlssonf514b542009-09-27 00:12:57 +00002373 if (!isCharType(TemplateArgs[0].getAsType()))
2374 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002375
Anders Carlssonf514b542009-09-27 00:12:57 +00002376 if (!isCharSpecialization(TemplateArgs[1].getAsType(), "char_traits"))
2377 return false;
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002378
Anders Carlssonf514b542009-09-27 00:12:57 +00002379 if (!isCharSpecialization(TemplateArgs[2].getAsType(), "allocator"))
2380 return false;
2381
2382 Out << "Ss";
2383 return true;
2384 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002385
Anders Carlsson91f88602009-12-07 19:56:42 +00002386 // <substitution> ::= Si # ::std::basic_istream<char,
2387 // ::std::char_traits<char> >
2388 if (isStreamCharSpecialization(SD, "basic_istream")) {
2389 Out << "Si";
2390 return true;
2391 }
2392
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002393 // <substitution> ::= So # ::std::basic_ostream<char,
Anders Carlsson8f8fd8e2009-10-08 17:20:26 +00002394 // ::std::char_traits<char> >
Anders Carlsson91f88602009-12-07 19:56:42 +00002395 if (isStreamCharSpecialization(SD, "basic_ostream")) {
Anders Carlsson8f8fd8e2009-10-08 17:20:26 +00002396 Out << "So";
2397 return true;
2398 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002399
Anders Carlsson91f88602009-12-07 19:56:42 +00002400 // <substitution> ::= Sd # ::std::basic_iostream<char,
2401 // ::std::char_traits<char> >
2402 if (isStreamCharSpecialization(SD, "basic_iostream")) {
2403 Out << "Sd";
2404 return true;
2405 }
Anders Carlssonf514b542009-09-27 00:12:57 +00002406 }
Anders Carlsson8c031552009-09-26 23:10:05 +00002407 return false;
Anders Carlssone7c8cb62009-09-26 20:53:44 +00002408}
2409
Anders Carlsson76967372009-09-17 00:43:46 +00002410void CXXNameMangler::addSubstitution(QualType T) {
Anders Carlssond99edc42009-09-26 03:55:37 +00002411 if (!T.getCVRQualifiers()) {
2412 if (const RecordType *RT = T->getAs<RecordType>()) {
2413 addSubstitution(RT->getDecl());
2414 return;
2415 }
2416 }
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002417
Anders Carlsson76967372009-09-17 00:43:46 +00002418 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
Anders Carlssond3a932a2009-09-17 03:53:28 +00002419 addSubstitution(TypePtr);
2420}
2421
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002422void CXXNameMangler::addSubstitution(TemplateName Template) {
2423 if (TemplateDecl *TD = Template.getAsTemplateDecl())
2424 return addSubstitution(TD);
Sean Huntc3021132010-05-05 15:23:54 +00002425
Douglas Gregor1e9268e2010-04-28 05:58:56 +00002426 Template = Context.getASTContext().getCanonicalTemplateName(Template);
2427 addSubstitution(reinterpret_cast<uintptr_t>(Template.getAsVoidPointer()));
2428}
2429
Anders Carlssond3a932a2009-09-17 03:53:28 +00002430void CXXNameMangler::addSubstitution(uintptr_t Ptr) {
Anders Carlssond3a932a2009-09-17 03:53:28 +00002431 assert(!Substitutions.count(Ptr) && "Substitution already exists!");
Anders Carlsson9d85b722010-06-02 04:29:50 +00002432 Substitutions[Ptr] = SeqID++;
Anders Carlsson76967372009-09-17 00:43:46 +00002433}
2434
Daniel Dunbar1b077112009-11-21 09:06:10 +00002435//
Mike Stump1eb44332009-09-09 15:08:12 +00002436
Daniel Dunbar1b077112009-11-21 09:06:10 +00002437/// \brief Mangles the name of the declaration D and emits that name to the
2438/// given output stream.
2439///
2440/// If the declaration D requires a mangled name, this routine will emit that
2441/// mangled name to \p os and return true. Otherwise, \p os will be unchanged
2442/// and this routine will return false. In this case, the caller should just
2443/// emit the identifier of the declaration (\c D->getIdentifier()) as its
2444/// name.
Daniel Dunbarf981bf82009-11-21 09:14:52 +00002445void MangleContext::mangleName(const NamedDecl *D,
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002446 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbarc02ab4c2009-11-21 09:14:44 +00002447 assert((isa<FunctionDecl>(D) || isa<VarDecl>(D)) &&
2448 "Invalid mangleName() call, argument is not a variable or function!");
2449 assert(!isa<CXXConstructorDecl>(D) && !isa<CXXDestructorDecl>(D) &&
2450 "Invalid mangleName() call on 'structor decl!");
Daniel Dunbar3c9e4632009-11-21 09:05:47 +00002451
Daniel Dunbar1b077112009-11-21 09:06:10 +00002452 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
2453 getASTContext().getSourceManager(),
2454 "Mangling declaration");
Mike Stump1eb44332009-09-09 15:08:12 +00002455
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002456 CXXNameMangler Mangler(*this, Res);
2457 return Mangler.mangle(D);
Daniel Dunbar1b077112009-11-21 09:06:10 +00002458}
Mike Stump1eb44332009-09-09 15:08:12 +00002459
Daniel Dunbar1b077112009-11-21 09:06:10 +00002460void MangleContext::mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type,
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002461 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbar77939c92009-11-21 09:06:31 +00002462 CXXNameMangler Mangler(*this, Res, D, Type);
2463 Mangler.mangle(D);
Daniel Dunbar1b077112009-11-21 09:06:10 +00002464}
Mike Stump1eb44332009-09-09 15:08:12 +00002465
Daniel Dunbar1b077112009-11-21 09:06:10 +00002466void MangleContext::mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type,
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002467 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbar77939c92009-11-21 09:06:31 +00002468 CXXNameMangler Mangler(*this, Res, D, Type);
2469 Mangler.mangle(D);
Daniel Dunbar1b077112009-11-21 09:06:10 +00002470}
Mike Stumpf1216772009-07-31 18:25:34 +00002471
Fariborz Jahanian564360b2010-06-24 00:08:06 +00002472void MangleContext::mangleBlock(GlobalDecl GD, const BlockDecl *BD,
Douglas Gregor35415f52010-05-25 17:04:15 +00002473 llvm::SmallVectorImpl<char> &Res) {
Charles Davis685b1d92010-05-26 18:25:27 +00002474 MiscNameMangler Mangler(*this, Res);
Fariborz Jahanian564360b2010-06-24 00:08:06 +00002475 Mangler.mangleBlock(GD, BD);
Douglas Gregor35415f52010-05-25 17:04:15 +00002476}
2477
Anders Carlsson19879c92010-03-23 17:17:29 +00002478void MangleContext::mangleThunk(const CXXMethodDecl *MD,
2479 const ThunkInfo &Thunk,
2480 llvm::SmallVectorImpl<char> &Res) {
2481 // <special-name> ::= T <call-offset> <base encoding>
2482 // # base is the nominal target function of thunk
2483 // <special-name> ::= Tc <call-offset> <call-offset> <base encoding>
2484 // # base is the nominal target function of thunk
2485 // # first call-offset is 'this' adjustment
2486 // # second call-offset is result adjustment
Sean Huntc3021132010-05-05 15:23:54 +00002487
Anders Carlsson19879c92010-03-23 17:17:29 +00002488 assert(!isa<CXXDestructorDecl>(MD) &&
2489 "Use mangleCXXDtor for destructor decls!");
Sean Huntc3021132010-05-05 15:23:54 +00002490
Anders Carlsson19879c92010-03-23 17:17:29 +00002491 CXXNameMangler Mangler(*this, Res);
2492 Mangler.getStream() << "_ZT";
2493 if (!Thunk.Return.isEmpty())
2494 Mangler.getStream() << 'c';
Sean Huntc3021132010-05-05 15:23:54 +00002495
Anders Carlsson19879c92010-03-23 17:17:29 +00002496 // Mangle the 'this' pointer adjustment.
2497 Mangler.mangleCallOffset(Thunk.This.NonVirtual, Thunk.This.VCallOffsetOffset);
Sean Huntc3021132010-05-05 15:23:54 +00002498
Anders Carlsson19879c92010-03-23 17:17:29 +00002499 // Mangle the return pointer adjustment if there is one.
2500 if (!Thunk.Return.isEmpty())
2501 Mangler.mangleCallOffset(Thunk.Return.NonVirtual,
2502 Thunk.Return.VBaseOffsetOffset);
Sean Huntc3021132010-05-05 15:23:54 +00002503
Anders Carlsson19879c92010-03-23 17:17:29 +00002504 Mangler.mangleFunctionEncoding(MD);
2505}
2506
Sean Huntc3021132010-05-05 15:23:54 +00002507void
Anders Carlsson19879c92010-03-23 17:17:29 +00002508MangleContext::mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
2509 const ThisAdjustment &ThisAdjustment,
2510 llvm::SmallVectorImpl<char> &Res) {
2511 // <special-name> ::= T <call-offset> <base encoding>
2512 // # base is the nominal target function of thunk
Sean Huntc3021132010-05-05 15:23:54 +00002513
Anders Carlsson19879c92010-03-23 17:17:29 +00002514 CXXNameMangler Mangler(*this, Res, DD, Type);
2515 Mangler.getStream() << "_ZT";
2516
2517 // Mangle the 'this' pointer adjustment.
Sean Huntc3021132010-05-05 15:23:54 +00002518 Mangler.mangleCallOffset(ThisAdjustment.NonVirtual,
Anders Carlsson19879c92010-03-23 17:17:29 +00002519 ThisAdjustment.VCallOffsetOffset);
2520
2521 Mangler.mangleFunctionEncoding(DD);
2522}
2523
Daniel Dunbarc0747712009-11-21 09:12:13 +00002524/// mangleGuardVariable - Returns the mangled name for a guard variable
2525/// for the passed in VarDecl.
John McCall5cd91b52010-09-08 01:44:27 +00002526void MangleContext::mangleItaniumGuardVariable(const VarDecl *D,
2527 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00002528 // <special-name> ::= GV <object name> # Guard variable for one-time
2529 // # initialization
2530 CXXNameMangler Mangler(*this, Res);
2531 Mangler.getStream() << "_ZGV";
2532 Mangler.mangleName(D);
2533}
2534
Anders Carlsson715edf22010-06-26 16:09:40 +00002535void MangleContext::mangleReferenceTemporary(const VarDecl *D,
2536 llvm::SmallVectorImpl<char> &Res) {
2537 // We match the GCC mangling here.
2538 // <special-name> ::= GR <object name>
2539 CXXNameMangler Mangler(*this, Res);
2540 Mangler.getStream() << "_ZGR";
2541 Mangler.mangleName(D);
2542}
2543
Anders Carlsson046c2942010-04-17 20:15:18 +00002544void MangleContext::mangleCXXVTable(const CXXRecordDecl *RD,
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002545 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00002546 // <special-name> ::= TV <type> # virtual table
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002547 CXXNameMangler Mangler(*this, Res);
Daniel Dunbarc0747712009-11-21 09:12:13 +00002548 Mangler.getStream() << "_ZTV";
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00002549 Mangler.mangleNameOrStandardSubstitution(RD);
Daniel Dunbar1b077112009-11-21 09:06:10 +00002550}
Mike Stump82d75b02009-11-10 01:58:37 +00002551
Daniel Dunbar1b077112009-11-21 09:06:10 +00002552void MangleContext::mangleCXXVTT(const CXXRecordDecl *RD,
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002553 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00002554 // <special-name> ::= TT <type> # VTT structure
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002555 CXXNameMangler Mangler(*this, Res);
Daniel Dunbarc0747712009-11-21 09:12:13 +00002556 Mangler.getStream() << "_ZTT";
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00002557 Mangler.mangleNameOrStandardSubstitution(RD);
Daniel Dunbar1b077112009-11-21 09:06:10 +00002558}
Mike Stumpab3f7e92009-11-10 01:41:59 +00002559
Anders Carlsson046c2942010-04-17 20:15:18 +00002560void MangleContext::mangleCXXCtorVTable(const CXXRecordDecl *RD, int64_t Offset,
Daniel Dunbar1b077112009-11-21 09:06:10 +00002561 const CXXRecordDecl *Type,
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002562 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00002563 // <special-name> ::= TC <type> <offset number> _ <base type>
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002564 CXXNameMangler Mangler(*this, Res);
Daniel Dunbarc0747712009-11-21 09:12:13 +00002565 Mangler.getStream() << "_ZTC";
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00002566 Mangler.mangleNameOrStandardSubstitution(RD);
Daniel Dunbarc0747712009-11-21 09:12:13 +00002567 Mangler.getStream() << Offset;
Benjamin Kramer35f59b62010-04-10 16:03:31 +00002568 Mangler.getStream() << '_';
Douglas Gregor1b12a3b2010-05-26 05:11:13 +00002569 Mangler.mangleNameOrStandardSubstitution(Type);
Daniel Dunbar1b077112009-11-21 09:06:10 +00002570}
Mike Stump738f8c22009-07-31 23:15:31 +00002571
Mike Stumpde050572009-12-02 18:57:08 +00002572void MangleContext::mangleCXXRTTI(QualType Ty,
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002573 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00002574 // <special-name> ::= TI <type> # typeinfo structure
Douglas Gregor154fe982009-12-23 22:04:40 +00002575 assert(!Ty.hasQualifiers() && "RTTI info cannot have top-level qualifiers");
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002576 CXXNameMangler Mangler(*this, Res);
Daniel Dunbarc0747712009-11-21 09:12:13 +00002577 Mangler.getStream() << "_ZTI";
2578 Mangler.mangleType(Ty);
Daniel Dunbar1b077112009-11-21 09:06:10 +00002579}
Mike Stump67795982009-11-14 00:14:13 +00002580
Mike Stumpde050572009-12-02 18:57:08 +00002581void MangleContext::mangleCXXRTTIName(QualType Ty,
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002582 llvm::SmallVectorImpl<char> &Res) {
Daniel Dunbarc0747712009-11-21 09:12:13 +00002583 // <special-name> ::= TS <type> # typeinfo name (null terminated byte string)
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00002584 CXXNameMangler Mangler(*this, Res);
Daniel Dunbarc0747712009-11-21 09:12:13 +00002585 Mangler.getStream() << "_ZTS";
2586 Mangler.mangleType(Ty);
Mike Stumpf1216772009-07-31 18:25:34 +00002587}