blob: 1515db49fe3c8c077bb58f4aed151c9c670dc473 [file] [log] [blame]
Peter Collingbourne14110472011-01-13 18:57:25 +00001//===--- MicrosoftMangle.cpp - Microsoft Visual C++ Name Mangling ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000010// This provides C++ name mangling targeting the Microsoft Visual C++ ABI.
Peter Collingbourne14110472011-01-13 18:57:25 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Mangle.h"
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/CharUnits.h"
17#include "clang/AST/Decl.h"
18#include "clang/AST/DeclCXX.h"
19#include "clang/AST/DeclObjC.h"
20#include "clang/AST/DeclTemplate.h"
21#include "clang/AST/ExprCXX.h"
22#include "clang/Basic/ABI.h"
23
24using namespace clang;
25
26namespace {
27
28/// MicrosoftCXXNameMangler - Manage the mangling of a single name for the
29/// Microsoft Visual C++ ABI.
30class MicrosoftCXXNameMangler {
31 MangleContext &Context;
Chris Lattner5f9e2722011-07-23 10:55:15 +000032 raw_ostream &Out;
Peter Collingbourne14110472011-01-13 18:57:25 +000033
34 ASTContext &getASTContext() const { return Context.getASTContext(); }
35
36public:
Chris Lattner5f9e2722011-07-23 10:55:15 +000037 MicrosoftCXXNameMangler(MangleContext &C, raw_ostream &Out_)
Rafael Espindolac4850c22011-02-10 23:59:36 +000038 : Context(C), Out(Out_) { }
Peter Collingbourne14110472011-01-13 18:57:25 +000039
Chris Lattner5f9e2722011-07-23 10:55:15 +000040 void mangle(const NamedDecl *D, StringRef Prefix = "?");
Peter Collingbourne14110472011-01-13 18:57:25 +000041 void mangleName(const NamedDecl *ND);
42 void mangleFunctionEncoding(const FunctionDecl *FD);
43 void mangleVariableEncoding(const VarDecl *VD);
44 void mangleNumber(int64_t Number);
45 void mangleType(QualType T);
46
47private:
48 void mangleUnqualifiedName(const NamedDecl *ND) {
49 mangleUnqualifiedName(ND, ND->getDeclName());
50 }
51 void mangleUnqualifiedName(const NamedDecl *ND, DeclarationName Name);
52 void mangleSourceName(const IdentifierInfo *II);
53 void manglePostfix(const DeclContext *DC, bool NoFunction=false);
54 void mangleOperatorName(OverloadedOperatorKind OO);
55 void mangleQualifiers(Qualifiers Quals, bool IsMember);
56
57 void mangleObjCMethodName(const ObjCMethodDecl *MD);
58
59 // Declare manglers for every type class.
60#define ABSTRACT_TYPE(CLASS, PARENT)
61#define NON_CANONICAL_TYPE(CLASS, PARENT)
62#define TYPE(CLASS, PARENT) void mangleType(const CLASS##Type *T);
63#include "clang/AST/TypeNodes.def"
64
65 void mangleType(const TagType*);
66 void mangleType(const FunctionType *T, const FunctionDecl *D,
67 bool IsStructor, bool IsInstMethod);
68 void mangleType(const ArrayType *T, bool IsGlobal);
69 void mangleExtraDimensions(QualType T);
70 void mangleFunctionClass(const FunctionDecl *FD);
71 void mangleCallingConvention(const FunctionType *T, bool IsInstMethod = false);
72 void mangleThrowSpecification(const FunctionProtoType *T);
73
74};
75
76/// MicrosoftMangleContext - Overrides the default MangleContext for the
77/// Microsoft Visual C++ ABI.
78class MicrosoftMangleContext : public MangleContext {
79public:
80 MicrosoftMangleContext(ASTContext &Context,
David Blaikied6471f72011-09-25 23:23:43 +000081 DiagnosticsEngine &Diags) : MangleContext(Context, Diags) { }
Peter Collingbourne14110472011-01-13 18:57:25 +000082 virtual bool shouldMangleDeclName(const NamedDecl *D);
Chris Lattner5f9e2722011-07-23 10:55:15 +000083 virtual void mangleName(const NamedDecl *D, raw_ostream &Out);
Peter Collingbourne14110472011-01-13 18:57:25 +000084 virtual void mangleThunk(const CXXMethodDecl *MD,
85 const ThunkInfo &Thunk,
Chris Lattner5f9e2722011-07-23 10:55:15 +000086 raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +000087 virtual void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
88 const ThisAdjustment &ThisAdjustment,
Chris Lattner5f9e2722011-07-23 10:55:15 +000089 raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +000090 virtual void mangleCXXVTable(const CXXRecordDecl *RD,
Chris Lattner5f9e2722011-07-23 10:55:15 +000091 raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +000092 virtual void mangleCXXVTT(const CXXRecordDecl *RD,
Chris Lattner5f9e2722011-07-23 10:55:15 +000093 raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +000094 virtual void mangleCXXCtorVTable(const CXXRecordDecl *RD, int64_t Offset,
95 const CXXRecordDecl *Type,
Chris Lattner5f9e2722011-07-23 10:55:15 +000096 raw_ostream &);
97 virtual void mangleCXXRTTI(QualType T, raw_ostream &);
98 virtual void mangleCXXRTTIName(QualType T, raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +000099 virtual void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000100 raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000101 virtual void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000102 raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000103 virtual void mangleReferenceTemporary(const clang::VarDecl *,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000104 raw_ostream &);
Peter Collingbourne14110472011-01-13 18:57:25 +0000105};
106
107}
108
109static bool isInCLinkageSpecification(const Decl *D) {
110 D = D->getCanonicalDecl();
111 for (const DeclContext *DC = D->getDeclContext();
112 !DC->isTranslationUnit(); DC = DC->getParent()) {
113 if (const LinkageSpecDecl *Linkage = dyn_cast<LinkageSpecDecl>(DC))
114 return Linkage->getLanguage() == LinkageSpecDecl::lang_c;
115 }
116
117 return false;
118}
119
120bool MicrosoftMangleContext::shouldMangleDeclName(const NamedDecl *D) {
121 // In C, functions with no attributes never need to be mangled. Fastpath them.
122 if (!getASTContext().getLangOptions().CPlusPlus && !D->hasAttrs())
123 return false;
124
125 // Any decl can be declared with __asm("foo") on it, and this takes precedence
126 // over all other naming in the .o file.
127 if (D->hasAttr<AsmLabelAttr>())
128 return true;
129
130 // Clang's "overloadable" attribute extension to C/C++ implies name mangling
131 // (always) as does passing a C++ member function and a function
132 // whose name is not a simple identifier.
133 const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
134 if (FD && (FD->hasAttr<OverloadableAttr>() || isa<CXXMethodDecl>(FD) ||
135 !FD->getDeclName().isIdentifier()))
136 return true;
137
138 // Otherwise, no mangling is done outside C++ mode.
139 if (!getASTContext().getLangOptions().CPlusPlus)
140 return false;
141
142 // Variables at global scope with internal linkage are not mangled.
143 if (!FD) {
144 const DeclContext *DC = D->getDeclContext();
145 if (DC->isTranslationUnit() && D->getLinkage() == InternalLinkage)
146 return false;
147 }
148
149 // C functions and "main" are not mangled.
150 if ((FD && FD->isMain()) || isInCLinkageSpecification(D))
151 return false;
152
153 return true;
154}
155
156void MicrosoftCXXNameMangler::mangle(const NamedDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000157 StringRef Prefix) {
Peter Collingbourne14110472011-01-13 18:57:25 +0000158 // MSVC doesn't mangle C++ names the same way it mangles extern "C" names.
159 // Therefore it's really important that we don't decorate the
160 // name with leading underscores or leading/trailing at signs. So, emit a
161 // asm marker at the start so we get the name right.
162 Out << '\01'; // LLVM IR Marker for __asm("foo")
163
164 // Any decl can be declared with __asm("foo") on it, and this takes precedence
165 // over all other naming in the .o file.
166 if (const AsmLabelAttr *ALA = D->getAttr<AsmLabelAttr>()) {
167 // If we have an asm name, then we use it as the mangling.
168 Out << ALA->getLabel();
169 return;
170 }
171
172 // <mangled-name> ::= ? <name> <type-encoding>
173 Out << Prefix;
174 mangleName(D);
175 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
176 mangleFunctionEncoding(FD);
177 else if (const VarDecl *VD = dyn_cast<VarDecl>(D))
178 mangleVariableEncoding(VD);
179 // TODO: Fields? Can MSVC even mangle them?
180}
181
182void MicrosoftCXXNameMangler::mangleFunctionEncoding(const FunctionDecl *FD) {
183 // <type-encoding> ::= <function-class> <function-type>
184
185 // Don't mangle in the type if this isn't a decl we should typically mangle.
186 if (!Context.shouldMangleDeclName(FD))
187 return;
188
189 // We should never ever see a FunctionNoProtoType at this point.
190 // We don't even know how to mangle their types anyway :).
191 const FunctionProtoType *FT = cast<FunctionProtoType>(FD->getType());
192
193 bool InStructor = false, InInstMethod = false;
194 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
195 if (MD) {
196 if (MD->isInstance())
197 InInstMethod = true;
198 if (isa<CXXConstructorDecl>(MD) || isa<CXXDestructorDecl>(MD))
199 InStructor = true;
200 }
201
202 // First, the function class.
203 mangleFunctionClass(FD);
204
205 mangleType(FT, FD, InStructor, InInstMethod);
206}
207
208void MicrosoftCXXNameMangler::mangleVariableEncoding(const VarDecl *VD) {
209 // <type-encoding> ::= <storage-class> <variable-type>
210 // <storage-class> ::= 0 # private static member
211 // ::= 1 # protected static member
212 // ::= 2 # public static member
213 // ::= 3 # global
214 // ::= 4 # static local
215
216 // The first character in the encoding (after the name) is the storage class.
217 if (VD->isStaticDataMember()) {
218 // If it's a static member, it also encodes the access level.
219 switch (VD->getAccess()) {
220 default:
221 case AS_private: Out << '0'; break;
222 case AS_protected: Out << '1'; break;
223 case AS_public: Out << '2'; break;
224 }
225 }
226 else if (!VD->isStaticLocal())
227 Out << '3';
228 else
229 Out << '4';
230 // Now mangle the type.
231 // <variable-type> ::= <type> <cvr-qualifiers>
232 // ::= <type> A # pointers, references, arrays
233 // Pointers and references are odd. The type of 'int * const foo;' gets
234 // mangled as 'QAHA' instead of 'PAHB', for example.
235 QualType Ty = VD->getType();
236 if (Ty->isPointerType() || Ty->isReferenceType()) {
237 mangleType(Ty);
238 Out << 'A';
239 } else if (Ty->isArrayType()) {
240 // Global arrays are funny, too.
John McCallf4c73712011-01-19 06:33:43 +0000241 mangleType(cast<ArrayType>(Ty.getTypePtr()), true);
Peter Collingbourne14110472011-01-13 18:57:25 +0000242 Out << 'A';
243 } else {
244 mangleType(Ty.getLocalUnqualifiedType());
245 mangleQualifiers(Ty.getLocalQualifiers(), false);
246 }
247}
248
249void MicrosoftCXXNameMangler::mangleName(const NamedDecl *ND) {
250 // <name> ::= <unscoped-name> {[<named-scope>]+ | [<nested-name>]}? @
251 const DeclContext *DC = ND->getDeclContext();
252
253 // Always start with the unqualified name.
254 mangleUnqualifiedName(ND);
255
256 // If this is an extern variable declared locally, the relevant DeclContext
257 // is that of the containing namespace, or the translation unit.
258 if (isa<FunctionDecl>(DC) && ND->hasLinkage())
259 while (!DC->isNamespace() && !DC->isTranslationUnit())
260 DC = DC->getParent();
261
262 manglePostfix(DC);
263
264 // Terminate the whole name with an '@'.
265 Out << '@';
266}
267
268void MicrosoftCXXNameMangler::mangleNumber(int64_t Number) {
269 // <number> ::= [?] <decimal digit> # <= 9
270 // ::= [?] <hex digit>+ @ # > 9; A = 0, B = 1, etc...
271 if (Number < 0) {
272 Out << '?';
273 Number = -Number;
274 }
275 if (Number >= 1 && Number <= 10) {
276 Out << Number-1;
277 } else {
278 // We have to build up the encoding in reverse order, so it will come
279 // out right when we write it out.
280 char Encoding[16];
281 char *EndPtr = Encoding+sizeof(Encoding);
282 char *CurPtr = EndPtr;
283 while (Number) {
284 *--CurPtr = 'A' + (Number % 16);
285 Number /= 16;
286 }
287 Out.write(CurPtr, EndPtr-CurPtr);
288 Out << '@';
289 }
290}
291
292void
293MicrosoftCXXNameMangler::mangleUnqualifiedName(const NamedDecl *ND,
294 DeclarationName Name) {
295 // <unqualified-name> ::= <operator-name>
296 // ::= <ctor-dtor-name>
297 // ::= <source-name>
298 switch (Name.getNameKind()) {
299 case DeclarationName::Identifier: {
300 if (const IdentifierInfo *II = Name.getAsIdentifierInfo()) {
301 mangleSourceName(II);
302 break;
303 }
304
305 // Otherwise, an anonymous entity. We must have a declaration.
306 assert(ND && "mangling empty name without declaration");
307
308 if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
309 if (NS->isAnonymousNamespace()) {
310 Out << "?A";
311 break;
312 }
313 }
314
315 // We must have an anonymous struct.
316 const TagDecl *TD = cast<TagDecl>(ND);
Richard Smith162e1c12011-04-15 14:24:37 +0000317 if (const TypedefNameDecl *D = TD->getTypedefNameForAnonDecl()) {
Peter Collingbourne14110472011-01-13 18:57:25 +0000318 assert(TD->getDeclContext() == D->getDeclContext() &&
319 "Typedef should not be in another decl context!");
320 assert(D->getDeclName().getAsIdentifierInfo() &&
321 "Typedef was not named!");
322 mangleSourceName(D->getDeclName().getAsIdentifierInfo());
323 break;
324 }
325
326 // When VC encounters an anonymous type with no tag and no typedef,
327 // it literally emits '<unnamed-tag>'.
328 Out << "<unnamed-tag>";
329 break;
330 }
331
332 case DeclarationName::ObjCZeroArgSelector:
333 case DeclarationName::ObjCOneArgSelector:
334 case DeclarationName::ObjCMultiArgSelector:
David Blaikieb219cfc2011-09-23 05:06:16 +0000335 llvm_unreachable("Can't mangle Objective-C selector names here!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000336
337 case DeclarationName::CXXConstructorName:
David Blaikieb219cfc2011-09-23 05:06:16 +0000338 llvm_unreachable("Can't mangle constructors yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000339
340 case DeclarationName::CXXDestructorName:
David Blaikieb219cfc2011-09-23 05:06:16 +0000341 llvm_unreachable("Can't mangle destructors yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000342
343 case DeclarationName::CXXConversionFunctionName:
344 // <operator-name> ::= ?B # (cast)
345 // The target type is encoded as the return type.
346 Out << "?B";
347 break;
348
349 case DeclarationName::CXXOperatorName:
350 mangleOperatorName(Name.getCXXOverloadedOperator());
351 break;
352
353 case DeclarationName::CXXLiteralOperatorName:
354 // FIXME: Was this added in VS2010? Does MS even know how to mangle this?
David Blaikieb219cfc2011-09-23 05:06:16 +0000355 llvm_unreachable("Don't know how to mangle literal operators yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000356
357 case DeclarationName::CXXUsingDirective:
David Blaikieb219cfc2011-09-23 05:06:16 +0000358 llvm_unreachable("Can't mangle a using directive name!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000359 }
360}
361
362void MicrosoftCXXNameMangler::manglePostfix(const DeclContext *DC,
363 bool NoFunction) {
364 // <postfix> ::= <unqualified-name> [<postfix>]
365 // ::= <template-postfix> <template-args> [<postfix>]
366 // ::= <template-param>
367 // ::= <substitution> [<postfix>]
368
369 if (!DC) return;
370
371 while (isa<LinkageSpecDecl>(DC))
372 DC = DC->getParent();
373
374 if (DC->isTranslationUnit())
375 return;
376
377 if (const BlockDecl *BD = dyn_cast<BlockDecl>(DC)) {
Rafael Espindolac4850c22011-02-10 23:59:36 +0000378 Context.mangleBlock(BD, Out);
379 Out << '@';
Peter Collingbourne14110472011-01-13 18:57:25 +0000380 return manglePostfix(DC->getParent(), NoFunction);
381 }
382
383 if (NoFunction && (isa<FunctionDecl>(DC) || isa<ObjCMethodDecl>(DC)))
384 return;
385 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC))
386 mangleObjCMethodName(Method);
387 else {
388 mangleUnqualifiedName(cast<NamedDecl>(DC));
389 manglePostfix(DC->getParent(), NoFunction);
390 }
391}
392
393void MicrosoftCXXNameMangler::mangleOperatorName(OverloadedOperatorKind OO) {
394 switch (OO) {
395 // ?0 # constructor
396 // ?1 # destructor
397 // <operator-name> ::= ?2 # new
398 case OO_New: Out << "?2"; break;
399 // <operator-name> ::= ?3 # delete
400 case OO_Delete: Out << "?3"; break;
401 // <operator-name> ::= ?4 # =
402 case OO_Equal: Out << "?4"; break;
403 // <operator-name> ::= ?5 # >>
404 case OO_GreaterGreater: Out << "?5"; break;
405 // <operator-name> ::= ?6 # <<
406 case OO_LessLess: Out << "?6"; break;
407 // <operator-name> ::= ?7 # !
408 case OO_Exclaim: Out << "?7"; break;
409 // <operator-name> ::= ?8 # ==
410 case OO_EqualEqual: Out << "?8"; break;
411 // <operator-name> ::= ?9 # !=
412 case OO_ExclaimEqual: Out << "?9"; break;
413 // <operator-name> ::= ?A # []
414 case OO_Subscript: Out << "?A"; break;
415 // ?B # conversion
416 // <operator-name> ::= ?C # ->
417 case OO_Arrow: Out << "?C"; break;
418 // <operator-name> ::= ?D # *
419 case OO_Star: Out << "?D"; break;
420 // <operator-name> ::= ?E # ++
421 case OO_PlusPlus: Out << "?E"; break;
422 // <operator-name> ::= ?F # --
423 case OO_MinusMinus: Out << "?F"; break;
424 // <operator-name> ::= ?G # -
425 case OO_Minus: Out << "?G"; break;
426 // <operator-name> ::= ?H # +
427 case OO_Plus: Out << "?H"; break;
428 // <operator-name> ::= ?I # &
429 case OO_Amp: Out << "?I"; break;
430 // <operator-name> ::= ?J # ->*
431 case OO_ArrowStar: Out << "?J"; break;
432 // <operator-name> ::= ?K # /
433 case OO_Slash: Out << "?K"; break;
434 // <operator-name> ::= ?L # %
435 case OO_Percent: Out << "?L"; break;
436 // <operator-name> ::= ?M # <
437 case OO_Less: Out << "?M"; break;
438 // <operator-name> ::= ?N # <=
439 case OO_LessEqual: Out << "?N"; break;
440 // <operator-name> ::= ?O # >
441 case OO_Greater: Out << "?O"; break;
442 // <operator-name> ::= ?P # >=
443 case OO_GreaterEqual: Out << "?P"; break;
444 // <operator-name> ::= ?Q # ,
445 case OO_Comma: Out << "?Q"; break;
446 // <operator-name> ::= ?R # ()
447 case OO_Call: Out << "?R"; break;
448 // <operator-name> ::= ?S # ~
449 case OO_Tilde: Out << "?S"; break;
450 // <operator-name> ::= ?T # ^
451 case OO_Caret: Out << "?T"; break;
452 // <operator-name> ::= ?U # |
453 case OO_Pipe: Out << "?U"; break;
454 // <operator-name> ::= ?V # &&
455 case OO_AmpAmp: Out << "?V"; break;
456 // <operator-name> ::= ?W # ||
457 case OO_PipePipe: Out << "?W"; break;
458 // <operator-name> ::= ?X # *=
459 case OO_StarEqual: Out << "?X"; break;
460 // <operator-name> ::= ?Y # +=
461 case OO_PlusEqual: Out << "?Y"; break;
462 // <operator-name> ::= ?Z # -=
463 case OO_MinusEqual: Out << "?Z"; break;
464 // <operator-name> ::= ?_0 # /=
465 case OO_SlashEqual: Out << "?_0"; break;
466 // <operator-name> ::= ?_1 # %=
467 case OO_PercentEqual: Out << "?_1"; break;
468 // <operator-name> ::= ?_2 # >>=
469 case OO_GreaterGreaterEqual: Out << "?_2"; break;
470 // <operator-name> ::= ?_3 # <<=
471 case OO_LessLessEqual: Out << "?_3"; break;
472 // <operator-name> ::= ?_4 # &=
473 case OO_AmpEqual: Out << "?_4"; break;
474 // <operator-name> ::= ?_5 # |=
475 case OO_PipeEqual: Out << "?_5"; break;
476 // <operator-name> ::= ?_6 # ^=
477 case OO_CaretEqual: Out << "?_6"; break;
478 // ?_7 # vftable
479 // ?_8 # vbtable
480 // ?_9 # vcall
481 // ?_A # typeof
482 // ?_B # local static guard
483 // ?_C # string
484 // ?_D # vbase destructor
485 // ?_E # vector deleting destructor
486 // ?_F # default constructor closure
487 // ?_G # scalar deleting destructor
488 // ?_H # vector constructor iterator
489 // ?_I # vector destructor iterator
490 // ?_J # vector vbase constructor iterator
491 // ?_K # virtual displacement map
492 // ?_L # eh vector constructor iterator
493 // ?_M # eh vector destructor iterator
494 // ?_N # eh vector vbase constructor iterator
495 // ?_O # copy constructor closure
496 // ?_P<name> # udt returning <name>
497 // ?_Q # <unknown>
498 // ?_R0 # RTTI Type Descriptor
499 // ?_R1 # RTTI Base Class Descriptor at (a,b,c,d)
500 // ?_R2 # RTTI Base Class Array
501 // ?_R3 # RTTI Class Hierarchy Descriptor
502 // ?_R4 # RTTI Complete Object Locator
503 // ?_S # local vftable
504 // ?_T # local vftable constructor closure
505 // <operator-name> ::= ?_U # new[]
506 case OO_Array_New: Out << "?_U"; break;
507 // <operator-name> ::= ?_V # delete[]
508 case OO_Array_Delete: Out << "?_V"; break;
509
510 case OO_Conditional:
David Blaikieb219cfc2011-09-23 05:06:16 +0000511 llvm_unreachable("Don't know how to mangle ?:");
Peter Collingbourne14110472011-01-13 18:57:25 +0000512
513 case OO_None:
514 case NUM_OVERLOADED_OPERATORS:
David Blaikieb219cfc2011-09-23 05:06:16 +0000515 llvm_unreachable("Not an overloaded operator");
Peter Collingbourne14110472011-01-13 18:57:25 +0000516 }
517}
518
519void MicrosoftCXXNameMangler::mangleSourceName(const IdentifierInfo *II) {
520 // <source name> ::= <identifier> @
521 Out << II->getName() << '@';
522}
523
524void MicrosoftCXXNameMangler::mangleObjCMethodName(const ObjCMethodDecl *MD) {
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000525 Context.mangleObjCMethodName(MD, Out);
Peter Collingbourne14110472011-01-13 18:57:25 +0000526}
527
528void MicrosoftCXXNameMangler::mangleQualifiers(Qualifiers Quals,
529 bool IsMember) {
530 // <cvr-qualifiers> ::= [E] [F] [I] <base-cvr-qualifiers>
531 // 'E' means __ptr64 (32-bit only); 'F' means __unaligned (32/64-bit only);
532 // 'I' means __restrict (32/64-bit).
533 // Note that the MSVC __restrict keyword isn't the same as the C99 restrict
534 // keyword!
535 // <base-cvr-qualifiers> ::= A # near
536 // ::= B # near const
537 // ::= C # near volatile
538 // ::= D # near const volatile
539 // ::= E # far (16-bit)
540 // ::= F # far const (16-bit)
541 // ::= G # far volatile (16-bit)
542 // ::= H # far const volatile (16-bit)
543 // ::= I # huge (16-bit)
544 // ::= J # huge const (16-bit)
545 // ::= K # huge volatile (16-bit)
546 // ::= L # huge const volatile (16-bit)
547 // ::= M <basis> # based
548 // ::= N <basis> # based const
549 // ::= O <basis> # based volatile
550 // ::= P <basis> # based const volatile
551 // ::= Q # near member
552 // ::= R # near const member
553 // ::= S # near volatile member
554 // ::= T # near const volatile member
555 // ::= U # far member (16-bit)
556 // ::= V # far const member (16-bit)
557 // ::= W # far volatile member (16-bit)
558 // ::= X # far const volatile member (16-bit)
559 // ::= Y # huge member (16-bit)
560 // ::= Z # huge const member (16-bit)
561 // ::= 0 # huge volatile member (16-bit)
562 // ::= 1 # huge const volatile member (16-bit)
563 // ::= 2 <basis> # based member
564 // ::= 3 <basis> # based const member
565 // ::= 4 <basis> # based volatile member
566 // ::= 5 <basis> # based const volatile member
567 // ::= 6 # near function (pointers only)
568 // ::= 7 # far function (pointers only)
569 // ::= 8 # near method (pointers only)
570 // ::= 9 # far method (pointers only)
571 // ::= _A <basis> # based function (pointers only)
572 // ::= _B <basis> # based function (far?) (pointers only)
573 // ::= _C <basis> # based method (pointers only)
574 // ::= _D <basis> # based method (far?) (pointers only)
575 // ::= _E # block (Clang)
576 // <basis> ::= 0 # __based(void)
577 // ::= 1 # __based(segment)?
578 // ::= 2 <name> # __based(name)
579 // ::= 3 # ?
580 // ::= 4 # ?
581 // ::= 5 # not really based
582 if (!IsMember) {
583 if (!Quals.hasVolatile()) {
584 if (!Quals.hasConst())
585 Out << 'A';
586 else
587 Out << 'B';
588 } else {
589 if (!Quals.hasConst())
590 Out << 'C';
591 else
592 Out << 'D';
593 }
594 } else {
595 if (!Quals.hasVolatile()) {
596 if (!Quals.hasConst())
597 Out << 'Q';
598 else
599 Out << 'R';
600 } else {
601 if (!Quals.hasConst())
602 Out << 'S';
603 else
604 Out << 'T';
605 }
606 }
607
608 // FIXME: For now, just drop all extension qualifiers on the floor.
609}
610
611void MicrosoftCXXNameMangler::mangleType(QualType T) {
612 // Only operate on the canonical type!
613 T = getASTContext().getCanonicalType(T);
614
615 Qualifiers Quals = T.getLocalQualifiers();
616 if (Quals) {
617 // We have to mangle these now, while we still have enough information.
618 // <pointer-cvr-qualifiers> ::= P # pointer
619 // ::= Q # const pointer
620 // ::= R # volatile pointer
621 // ::= S # const volatile pointer
622 if (T->isAnyPointerType() || T->isMemberPointerType() ||
623 T->isBlockPointerType()) {
624 if (!Quals.hasVolatile())
625 Out << 'Q';
626 else {
627 if (!Quals.hasConst())
628 Out << 'R';
629 else
630 Out << 'S';
631 }
632 } else
633 // Just emit qualifiers like normal.
634 // NB: When we mangle a pointer/reference type, and the pointee
635 // type has no qualifiers, the lack of qualifier gets mangled
636 // in there.
637 mangleQualifiers(Quals, false);
638 } else if (T->isAnyPointerType() || T->isMemberPointerType() ||
639 T->isBlockPointerType()) {
640 Out << 'P';
641 }
642 switch (T->getTypeClass()) {
643#define ABSTRACT_TYPE(CLASS, PARENT)
644#define NON_CANONICAL_TYPE(CLASS, PARENT) \
645case Type::CLASS: \
646llvm_unreachable("can't mangle non-canonical type " #CLASS "Type"); \
647return;
648#define TYPE(CLASS, PARENT) \
649case Type::CLASS: \
650mangleType(static_cast<const CLASS##Type*>(T.getTypePtr())); \
651break;
652#include "clang/AST/TypeNodes.def"
653 }
654}
655
656void MicrosoftCXXNameMangler::mangleType(const BuiltinType *T) {
657 // <type> ::= <builtin-type>
658 // <builtin-type> ::= X # void
659 // ::= C # signed char
660 // ::= D # char
661 // ::= E # unsigned char
662 // ::= F # short
663 // ::= G # unsigned short (or wchar_t if it's not a builtin)
664 // ::= H # int
665 // ::= I # unsigned int
666 // ::= J # long
667 // ::= K # unsigned long
668 // L # <none>
669 // ::= M # float
670 // ::= N # double
671 // ::= O # long double (__float80 is mangled differently)
Peter Collingbourne14110472011-01-13 18:57:25 +0000672 // ::= _J # long long, __int64
673 // ::= _K # unsigned long long, __int64
674 // ::= _L # __int128
675 // ::= _M # unsigned __int128
676 // ::= _N # bool
677 // _O # <array in parameter>
678 // ::= _T # __float80 (Intel)
679 // ::= _W # wchar_t
680 // ::= _Z # __float80 (Digital Mars)
681 switch (T->getKind()) {
682 case BuiltinType::Void: Out << 'X'; break;
683 case BuiltinType::SChar: Out << 'C'; break;
684 case BuiltinType::Char_U: case BuiltinType::Char_S: Out << 'D'; break;
685 case BuiltinType::UChar: Out << 'E'; break;
686 case BuiltinType::Short: Out << 'F'; break;
687 case BuiltinType::UShort: Out << 'G'; break;
688 case BuiltinType::Int: Out << 'H'; break;
689 case BuiltinType::UInt: Out << 'I'; break;
690 case BuiltinType::Long: Out << 'J'; break;
691 case BuiltinType::ULong: Out << 'K'; break;
692 case BuiltinType::Float: Out << 'M'; break;
693 case BuiltinType::Double: Out << 'N'; break;
694 // TODO: Determine size and mangle accordingly
695 case BuiltinType::LongDouble: Out << 'O'; break;
Peter Collingbourne14110472011-01-13 18:57:25 +0000696 case BuiltinType::LongLong: Out << "_J"; break;
697 case BuiltinType::ULongLong: Out << "_K"; break;
698 case BuiltinType::Int128: Out << "_L"; break;
699 case BuiltinType::UInt128: Out << "_M"; break;
700 case BuiltinType::Bool: Out << "_N"; break;
701 case BuiltinType::WChar_S:
702 case BuiltinType::WChar_U: Out << "_W"; break;
703
704 case BuiltinType::Overload:
705 case BuiltinType::Dependent:
John McCall1de4d4e2011-04-07 08:22:57 +0000706 case BuiltinType::UnknownAny:
John McCall864c0412011-04-26 20:42:42 +0000707 case BuiltinType::BoundMember:
David Blaikieb219cfc2011-09-23 05:06:16 +0000708 llvm_unreachable(
Peter Collingbourne14110472011-01-13 18:57:25 +0000709 "Overloaded and dependent types shouldn't get to name mangling");
Peter Collingbourne14110472011-01-13 18:57:25 +0000710 case BuiltinType::ObjCId: Out << "PAUobjc_object@@"; break;
711 case BuiltinType::ObjCClass: Out << "PAUobjc_class@@"; break;
712 case BuiltinType::ObjCSel: Out << "PAUobjc_selector@@"; break;
713
714 case BuiltinType::Char16:
715 case BuiltinType::Char32:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000716 case BuiltinType::Half:
Peter Collingbourne14110472011-01-13 18:57:25 +0000717 case BuiltinType::NullPtr:
David Blaikieb219cfc2011-09-23 05:06:16 +0000718 llvm_unreachable("Don't know how to mangle this type");
Peter Collingbourne14110472011-01-13 18:57:25 +0000719 }
720}
721
722// <type> ::= <function-type>
723void MicrosoftCXXNameMangler::mangleType(const FunctionProtoType *T) {
724 // Structors only appear in decls, so at this point we know it's not a
725 // structor type.
726 // I'll probably have mangleType(MemberPointerType) call the mangleType()
727 // method directly.
728 mangleType(T, NULL, false, false);
729}
730void MicrosoftCXXNameMangler::mangleType(const FunctionNoProtoType *T) {
731 llvm_unreachable("Can't mangle K&R function prototypes");
732}
733
734void MicrosoftCXXNameMangler::mangleType(const FunctionType *T,
735 const FunctionDecl *D,
736 bool IsStructor,
737 bool IsInstMethod) {
738 // <function-type> ::= <this-cvr-qualifiers> <calling-convention>
739 // <return-type> <argument-list> <throw-spec>
740 const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
741
742 // If this is a C++ instance method, mangle the CVR qualifiers for the
743 // this pointer.
744 if (IsInstMethod)
745 mangleQualifiers(Qualifiers::fromCVRMask(Proto->getTypeQuals()), false);
746
747 mangleCallingConvention(T, IsInstMethod);
748
749 // <return-type> ::= <type>
750 // ::= @ # structors (they have no declared return type)
751 if (IsStructor)
752 Out << '@';
753 else
754 mangleType(Proto->getResultType());
755
756 // <argument-list> ::= X # void
757 // ::= <type>+ @
758 // ::= <type>* Z # varargs
759 if (Proto->getNumArgs() == 0 && !Proto->isVariadic()) {
760 Out << 'X';
761 } else {
762 if (D) {
763 // If we got a decl, use the "types-as-written" to make sure arrays
764 // get mangled right.
765 for (FunctionDecl::param_const_iterator Parm = D->param_begin(),
766 ParmEnd = D->param_end();
767 Parm != ParmEnd; ++Parm)
768 mangleType((*Parm)->getTypeSourceInfo()->getType());
769 } else {
770 for (FunctionProtoType::arg_type_iterator Arg = Proto->arg_type_begin(),
771 ArgEnd = Proto->arg_type_end();
772 Arg != ArgEnd; ++Arg)
773 mangleType(*Arg);
774 }
775 // <builtin-type> ::= Z # ellipsis
776 if (Proto->isVariadic())
777 Out << 'Z';
778 else
779 Out << '@';
780 }
781
782 mangleThrowSpecification(Proto);
783}
784
785void MicrosoftCXXNameMangler::mangleFunctionClass(const FunctionDecl *FD) {
786 // <function-class> ::= A # private: near
787 // ::= B # private: far
788 // ::= C # private: static near
789 // ::= D # private: static far
790 // ::= E # private: virtual near
791 // ::= F # private: virtual far
792 // ::= G # private: thunk near
793 // ::= H # private: thunk far
794 // ::= I # protected: near
795 // ::= J # protected: far
796 // ::= K # protected: static near
797 // ::= L # protected: static far
798 // ::= M # protected: virtual near
799 // ::= N # protected: virtual far
800 // ::= O # protected: thunk near
801 // ::= P # protected: thunk far
802 // ::= Q # public: near
803 // ::= R # public: far
804 // ::= S # public: static near
805 // ::= T # public: static far
806 // ::= U # public: virtual near
807 // ::= V # public: virtual far
808 // ::= W # public: thunk near
809 // ::= X # public: thunk far
810 // ::= Y # global near
811 // ::= Z # global far
812 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
813 switch (MD->getAccess()) {
814 default:
815 case AS_private:
816 if (MD->isStatic())
817 Out << 'C';
818 else if (MD->isVirtual())
819 Out << 'E';
820 else
821 Out << 'A';
822 break;
823 case AS_protected:
824 if (MD->isStatic())
825 Out << 'K';
826 else if (MD->isVirtual())
827 Out << 'M';
828 else
829 Out << 'I';
830 break;
831 case AS_public:
832 if (MD->isStatic())
833 Out << 'S';
834 else if (MD->isVirtual())
835 Out << 'U';
836 else
837 Out << 'Q';
838 }
839 } else
840 Out << 'Y';
841}
842void MicrosoftCXXNameMangler::mangleCallingConvention(const FunctionType *T,
843 bool IsInstMethod) {
844 // <calling-convention> ::= A # __cdecl
845 // ::= B # __export __cdecl
846 // ::= C # __pascal
847 // ::= D # __export __pascal
848 // ::= E # __thiscall
849 // ::= F # __export __thiscall
850 // ::= G # __stdcall
851 // ::= H # __export __stdcall
852 // ::= I # __fastcall
853 // ::= J # __export __fastcall
854 // The 'export' calling conventions are from a bygone era
855 // (*cough*Win16*cough*) when functions were declared for export with
856 // that keyword. (It didn't actually export them, it just made them so
857 // that they could be in a DLL and somebody from another module could call
858 // them.)
859 CallingConv CC = T->getCallConv();
860 if (CC == CC_Default)
861 CC = IsInstMethod ? getASTContext().getDefaultMethodCallConv() : CC_C;
862 switch (CC) {
Anton Korobeynikov414d8962011-04-14 20:06:49 +0000863 default:
David Blaikieb219cfc2011-09-23 05:06:16 +0000864 llvm_unreachable("Unsupported CC for mangling");
Peter Collingbourne14110472011-01-13 18:57:25 +0000865 case CC_Default:
866 case CC_C: Out << 'A'; break;
867 case CC_X86Pascal: Out << 'C'; break;
868 case CC_X86ThisCall: Out << 'E'; break;
869 case CC_X86StdCall: Out << 'G'; break;
870 case CC_X86FastCall: Out << 'I'; break;
871 }
872}
873void MicrosoftCXXNameMangler::mangleThrowSpecification(
874 const FunctionProtoType *FT) {
875 // <throw-spec> ::= Z # throw(...) (default)
876 // ::= @ # throw() or __declspec/__attribute__((nothrow))
877 // ::= <type>+
878 // NOTE: Since the Microsoft compiler ignores throw specifications, they are
879 // all actually mangled as 'Z'. (They're ignored because their associated
880 // functionality isn't implemented, and probably never will be.)
881 Out << 'Z';
882}
883
884void MicrosoftCXXNameMangler::mangleType(const UnresolvedUsingType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000885 llvm_unreachable("Don't know how to mangle UnresolvedUsingTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000886}
887
888// <type> ::= <union-type> | <struct-type> | <class-type> | <enum-type>
889// <union-type> ::= T <name>
890// <struct-type> ::= U <name>
891// <class-type> ::= V <name>
892// <enum-type> ::= W <size> <name>
893void MicrosoftCXXNameMangler::mangleType(const EnumType *T) {
894 mangleType(static_cast<const TagType*>(T));
895}
896void MicrosoftCXXNameMangler::mangleType(const RecordType *T) {
897 mangleType(static_cast<const TagType*>(T));
898}
899void MicrosoftCXXNameMangler::mangleType(const TagType *T) {
900 switch (T->getDecl()->getTagKind()) {
901 case TTK_Union:
902 Out << 'T';
903 break;
904 case TTK_Struct:
905 Out << 'U';
906 break;
907 case TTK_Class:
908 Out << 'V';
909 break;
910 case TTK_Enum:
911 Out << 'W';
912 Out << getASTContext().getTypeSizeInChars(
913 cast<EnumDecl>(T->getDecl())->getIntegerType()).getQuantity();
914 break;
915 }
916 mangleName(T->getDecl());
917}
918
919// <type> ::= <array-type>
920// <array-type> ::= P <cvr-qualifiers> [Y <dimension-count> <dimension>+]
921// <element-type> # as global
922// ::= Q <cvr-qualifiers> [Y <dimension-count> <dimension>+]
923// <element-type> # as param
924// It's supposed to be the other way around, but for some strange reason, it
925// isn't. Today this behavior is retained for the sole purpose of backwards
926// compatibility.
927void MicrosoftCXXNameMangler::mangleType(const ArrayType *T, bool IsGlobal) {
928 // This isn't a recursive mangling, so now we have to do it all in this
929 // one call.
930 if (IsGlobal)
931 Out << 'P';
932 else
933 Out << 'Q';
934 mangleExtraDimensions(T->getElementType());
935}
936void MicrosoftCXXNameMangler::mangleType(const ConstantArrayType *T) {
937 mangleType(static_cast<const ArrayType *>(T), false);
938}
939void MicrosoftCXXNameMangler::mangleType(const VariableArrayType *T) {
940 mangleType(static_cast<const ArrayType *>(T), false);
941}
942void MicrosoftCXXNameMangler::mangleType(const DependentSizedArrayType *T) {
943 mangleType(static_cast<const ArrayType *>(T), false);
944}
945void MicrosoftCXXNameMangler::mangleType(const IncompleteArrayType *T) {
946 mangleType(static_cast<const ArrayType *>(T), false);
947}
948void MicrosoftCXXNameMangler::mangleExtraDimensions(QualType ElementTy) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000949 SmallVector<llvm::APInt, 3> Dimensions;
Peter Collingbourne14110472011-01-13 18:57:25 +0000950 for (;;) {
951 if (ElementTy->isConstantArrayType()) {
952 const ConstantArrayType *CAT =
953 static_cast<const ConstantArrayType *>(ElementTy.getTypePtr());
954 Dimensions.push_back(CAT->getSize());
955 ElementTy = CAT->getElementType();
956 } else if (ElementTy->isVariableArrayType()) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000957 llvm_unreachable("Don't know how to mangle VLAs!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000958 } else if (ElementTy->isDependentSizedArrayType()) {
959 // The dependent expression has to be folded into a constant (TODO).
David Blaikieb219cfc2011-09-23 05:06:16 +0000960 llvm_unreachable("Don't know how to mangle dependent-sized arrays!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000961 } else if (ElementTy->isIncompleteArrayType()) continue;
962 else break;
963 }
964 mangleQualifiers(ElementTy.getQualifiers(), false);
965 // If there are any additional dimensions, mangle them now.
966 if (Dimensions.size() > 0) {
967 Out << 'Y';
968 // <dimension-count> ::= <number> # number of extra dimensions
969 mangleNumber(Dimensions.size());
970 for (unsigned Dim = 0; Dim < Dimensions.size(); ++Dim) {
971 mangleNumber(Dimensions[Dim].getLimitedValue());
972 }
973 }
974 mangleType(ElementTy.getLocalUnqualifiedType());
975}
976
977// <type> ::= <pointer-to-member-type>
978// <pointer-to-member-type> ::= <pointer-cvr-qualifiers> <cvr-qualifiers>
979// <class name> <type>
980void MicrosoftCXXNameMangler::mangleType(const MemberPointerType *T) {
981 QualType PointeeType = T->getPointeeType();
982 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(PointeeType)) {
983 Out << '8';
984 mangleName(cast<RecordType>(T->getClass())->getDecl());
985 mangleType(FPT, NULL, false, true);
986 } else {
987 mangleQualifiers(PointeeType.getQualifiers(), true);
988 mangleName(cast<RecordType>(T->getClass())->getDecl());
989 mangleType(PointeeType.getLocalUnqualifiedType());
990 }
991}
992
993void MicrosoftCXXNameMangler::mangleType(const TemplateTypeParmType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000994 llvm_unreachable("Don't know how to mangle TemplateTypeParmTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +0000995}
996
Douglas Gregorc3069d62011-01-14 02:55:32 +0000997void MicrosoftCXXNameMangler::mangleType(
998 const SubstTemplateTypeParmPackType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000999 llvm_unreachable(
Douglas Gregorc3069d62011-01-14 02:55:32 +00001000 "Don't know how to mangle SubstTemplateTypeParmPackTypes yet!");
1001}
1002
Peter Collingbourne14110472011-01-13 18:57:25 +00001003// <type> ::= <pointer-type>
1004// <pointer-type> ::= <pointer-cvr-qualifiers> <cvr-qualifiers> <type>
1005void MicrosoftCXXNameMangler::mangleType(const PointerType *T) {
1006 QualType PointeeTy = T->getPointeeType();
1007 if (PointeeTy->isArrayType()) {
1008 // Pointers to arrays are mangled like arrays.
1009 mangleExtraDimensions(T->getPointeeType());
1010 } else if (PointeeTy->isFunctionType()) {
1011 // Function pointers are special.
1012 Out << '6';
1013 mangleType(static_cast<const FunctionType *>(PointeeTy.getTypePtr()),
1014 NULL, false, false);
1015 } else {
1016 if (!PointeeTy.hasQualifiers())
1017 // Lack of qualifiers is mangled as 'A'.
1018 Out << 'A';
1019 mangleType(PointeeTy);
1020 }
1021}
1022void MicrosoftCXXNameMangler::mangleType(const ObjCObjectPointerType *T) {
1023 // Object pointers never have qualifiers.
1024 Out << 'A';
1025 mangleType(T->getPointeeType());
1026}
1027
1028// <type> ::= <reference-type>
1029// <reference-type> ::= A <cvr-qualifiers> <type>
1030void MicrosoftCXXNameMangler::mangleType(const LValueReferenceType *T) {
1031 Out << 'A';
1032 QualType PointeeTy = T->getPointeeType();
1033 if (!PointeeTy.hasQualifiers())
1034 // Lack of qualifiers is mangled as 'A'.
1035 Out << 'A';
1036 mangleType(PointeeTy);
1037}
1038
1039void MicrosoftCXXNameMangler::mangleType(const RValueReferenceType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001040 llvm_unreachable("Don't know how to mangle RValueReferenceTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001041}
1042
1043void MicrosoftCXXNameMangler::mangleType(const ComplexType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001044 llvm_unreachable("Don't know how to mangle ComplexTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001045}
1046
1047void MicrosoftCXXNameMangler::mangleType(const VectorType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001048 llvm_unreachable("Don't know how to mangle VectorTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001049}
1050void MicrosoftCXXNameMangler::mangleType(const ExtVectorType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001051 llvm_unreachable("Don't know how to mangle ExtVectorTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001052}
1053void MicrosoftCXXNameMangler::mangleType(const DependentSizedExtVectorType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001054 llvm_unreachable(
1055 "Don't know how to mangle DependentSizedExtVectorTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001056}
1057
1058void MicrosoftCXXNameMangler::mangleType(const ObjCInterfaceType *T) {
1059 // ObjC interfaces have structs underlying them.
1060 Out << 'U';
1061 mangleName(T->getDecl());
1062}
1063
1064void MicrosoftCXXNameMangler::mangleType(const ObjCObjectType *T) {
1065 // We don't allow overloading by different protocol qualification,
1066 // so mangling them isn't necessary.
1067 mangleType(T->getBaseType());
1068}
1069
1070void MicrosoftCXXNameMangler::mangleType(const BlockPointerType *T) {
1071 Out << "_E";
1072 mangleType(T->getPointeeType());
1073}
1074
1075void MicrosoftCXXNameMangler::mangleType(const InjectedClassNameType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001076 llvm_unreachable("Don't know how to mangle InjectedClassNameTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001077}
1078
1079void MicrosoftCXXNameMangler::mangleType(const TemplateSpecializationType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001080 llvm_unreachable("Don't know how to mangle TemplateSpecializationTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001081}
1082
1083void MicrosoftCXXNameMangler::mangleType(const DependentNameType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001084 llvm_unreachable("Don't know how to mangle DependentNameTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001085}
1086
1087void MicrosoftCXXNameMangler::mangleType(
1088 const DependentTemplateSpecializationType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001089 llvm_unreachable(
Peter Collingbourne14110472011-01-13 18:57:25 +00001090 "Don't know how to mangle DependentTemplateSpecializationTypes yet!");
1091}
1092
1093void MicrosoftCXXNameMangler::mangleType(const PackExpansionType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001094 llvm_unreachable("Don't know how to mangle PackExpansionTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001095}
1096
1097void MicrosoftCXXNameMangler::mangleType(const TypeOfType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001098 llvm_unreachable("Don't know how to mangle TypeOfTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001099}
1100
1101void MicrosoftCXXNameMangler::mangleType(const TypeOfExprType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001102 llvm_unreachable("Don't know how to mangle TypeOfExprTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001103}
1104
1105void MicrosoftCXXNameMangler::mangleType(const DecltypeType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001106 llvm_unreachable("Don't know how to mangle DecltypeTypes yet!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001107}
1108
Sean Huntca63c202011-05-24 22:41:36 +00001109void MicrosoftCXXNameMangler::mangleType(const UnaryTransformType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001110 llvm_unreachable("Don't know how to mangle UnaryTransformationTypes yet!");
Sean Huntca63c202011-05-24 22:41:36 +00001111}
1112
Richard Smith34b41d92011-02-20 03:19:35 +00001113void MicrosoftCXXNameMangler::mangleType(const AutoType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001114 llvm_unreachable("Don't know how to mangle AutoTypes yet!");
Richard Smith34b41d92011-02-20 03:19:35 +00001115}
1116
Eli Friedmanb001de72011-10-06 23:00:33 +00001117void MicrosoftCXXNameMangler::mangleType(const AtomicType *T) {
1118 llvm_unreachable("Don't know how to mangle AtomicTypes yet!");
1119}
1120
Peter Collingbourne14110472011-01-13 18:57:25 +00001121void MicrosoftMangleContext::mangleName(const NamedDecl *D,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001122 raw_ostream &Out) {
Peter Collingbourne14110472011-01-13 18:57:25 +00001123 assert((isa<FunctionDecl>(D) || isa<VarDecl>(D)) &&
1124 "Invalid mangleName() call, argument is not a variable or function!");
1125 assert(!isa<CXXConstructorDecl>(D) && !isa<CXXDestructorDecl>(D) &&
1126 "Invalid mangleName() call on 'structor decl!");
1127
1128 PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
1129 getASTContext().getSourceManager(),
1130 "Mangling declaration");
1131
Rafael Espindolac4850c22011-02-10 23:59:36 +00001132 MicrosoftCXXNameMangler Mangler(*this, Out);
Peter Collingbourne14110472011-01-13 18:57:25 +00001133 return Mangler.mangle(D);
1134}
1135void MicrosoftMangleContext::mangleThunk(const CXXMethodDecl *MD,
1136 const ThunkInfo &Thunk,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001137 raw_ostream &) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001138 llvm_unreachable("Can't yet mangle thunks!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001139}
1140void MicrosoftMangleContext::mangleCXXDtorThunk(const CXXDestructorDecl *DD,
1141 CXXDtorType Type,
1142 const ThisAdjustment &,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001143 raw_ostream &) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001144 llvm_unreachable("Can't yet mangle destructor thunks!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001145}
1146void MicrosoftMangleContext::mangleCXXVTable(const CXXRecordDecl *RD,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001147 raw_ostream &) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001148 llvm_unreachable("Can't yet mangle virtual tables!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001149}
1150void MicrosoftMangleContext::mangleCXXVTT(const CXXRecordDecl *RD,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001151 raw_ostream &) {
Peter Collingbourne14110472011-01-13 18:57:25 +00001152 llvm_unreachable("The MS C++ ABI does not have virtual table tables!");
1153}
1154void MicrosoftMangleContext::mangleCXXCtorVTable(const CXXRecordDecl *RD,
1155 int64_t Offset,
1156 const CXXRecordDecl *Type,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001157 raw_ostream &) {
Peter Collingbourne14110472011-01-13 18:57:25 +00001158 llvm_unreachable("The MS C++ ABI does not have constructor vtables!");
1159}
1160void MicrosoftMangleContext::mangleCXXRTTI(QualType T,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001161 raw_ostream &) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001162 llvm_unreachable("Can't yet mangle RTTI!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001163}
1164void MicrosoftMangleContext::mangleCXXRTTIName(QualType T,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001165 raw_ostream &) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001166 llvm_unreachable("Can't yet mangle RTTI names!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001167}
1168void MicrosoftMangleContext::mangleCXXCtor(const CXXConstructorDecl *D,
1169 CXXCtorType Type,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001170 raw_ostream &) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001171 llvm_unreachable("Can't yet mangle constructors!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001172}
1173void MicrosoftMangleContext::mangleCXXDtor(const CXXDestructorDecl *D,
1174 CXXDtorType Type,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001175 raw_ostream &) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001176 llvm_unreachable("Can't yet mangle destructors!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001177}
1178void MicrosoftMangleContext::mangleReferenceTemporary(const clang::VarDecl *,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001179 raw_ostream &) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001180 llvm_unreachable("Can't yet mangle reference temporaries!");
Peter Collingbourne14110472011-01-13 18:57:25 +00001181}
1182
1183MangleContext *clang::createMicrosoftMangleContext(ASTContext &Context,
David Blaikied6471f72011-09-25 23:23:43 +00001184 DiagnosticsEngine &Diags) {
Peter Collingbourne14110472011-01-13 18:57:25 +00001185 return new MicrosoftMangleContext(Context, Diags);
1186}