1 //===--- ItaniumMangle.cpp - Itanium C++ Name Mangling ----------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // Implements C++ name mangling according to the Itanium C++ ABI,
10 // which is used in GCC 3.2 and newer (and many compilers that are
11 // ABI-compatible with GCC):
12 //
13 //   http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling
14 //
15 //===----------------------------------------------------------------------===//
16 
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/Attr.h"
19 #include "clang/AST/Decl.h"
20 #include "clang/AST/DeclCXX.h"
21 #include "clang/AST/DeclObjC.h"
22 #include "clang/AST/DeclOpenMP.h"
23 #include "clang/AST/DeclTemplate.h"
24 #include "clang/AST/Expr.h"
25 #include "clang/AST/ExprCXX.h"
26 #include "clang/AST/ExprConcepts.h"
27 #include "clang/AST/ExprObjC.h"
28 #include "clang/AST/Mangle.h"
29 #include "clang/AST/TypeLoc.h"
30 #include "clang/Basic/ABI.h"
31 #include "clang/Basic/Module.h"
32 #include "clang/Basic/SourceManager.h"
33 #include "clang/Basic/TargetInfo.h"
34 #include "clang/Basic/Thunk.h"
35 #include "llvm/ADT/StringExtras.h"
36 #include "llvm/Support/ErrorHandling.h"
37 #include "llvm/Support/raw_ostream.h"
38 
39 using namespace clang;
40 
41 namespace {
42 
43 /// Retrieve the declaration context that should be used when mangling the given
44 /// declaration.
45 static const DeclContext *getEffectiveDeclContext(const Decl *D) {
46   // The ABI assumes that lambda closure types that occur within
47   // default arguments live in the context of the function. However, due to
48   // the way in which Clang parses and creates function declarations, this is
49   // not the case: the lambda closure type ends up living in the context
50   // where the function itself resides, because the function declaration itself
51   // had not yet been created. Fix the context here.
52   if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
53     if (RD->isLambda())
54       if (ParmVarDecl *ContextParam
55             = dyn_cast_or_null<ParmVarDecl>(RD->getLambdaContextDecl()))
56         return ContextParam->getDeclContext();
57   }
58 
59   // Perform the same check for block literals.
60   if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
61     if (ParmVarDecl *ContextParam
62           = dyn_cast_or_null<ParmVarDecl>(BD->getBlockManglingContextDecl()))
63       return ContextParam->getDeclContext();
64   }
65 
66   const DeclContext *DC = D->getDeclContext();
67   if (isa<CapturedDecl>(DC) || isa<OMPDeclareReductionDecl>(DC) ||
68       isa<OMPDeclareMapperDecl>(DC)) {
69     return getEffectiveDeclContext(cast<Decl>(DC));
70   }
71 
72   if (const auto *VD = dyn_cast<VarDecl>(D))
73     if (VD->isExternC())
74       return VD->getASTContext().getTranslationUnitDecl();
75 
76   if (const auto *FD = dyn_cast<FunctionDecl>(D))
77     if (FD->isExternC())
78       return FD->getASTContext().getTranslationUnitDecl();
79 
80   return DC->getRedeclContext();
81 }
82 
83 static const DeclContext *getEffectiveParentContext(const DeclContext *DC) {
84   return getEffectiveDeclContext(cast<Decl>(DC));
85 }
86 
87 static bool isLocalContainerContext(const DeclContext *DC) {
88   return isa<FunctionDecl>(DC) || isa<ObjCMethodDecl>(DC) || isa<BlockDecl>(DC);
89 }
90 
91 static const RecordDecl *GetLocalClassDecl(const Decl *D) {
92   const DeclContext *DC = getEffectiveDeclContext(D);
93   while (!DC->isNamespace() && !DC->isTranslationUnit()) {
94     if (isLocalContainerContext(DC))
95       return dyn_cast<RecordDecl>(D);
96     D = cast<Decl>(DC);
97     DC = getEffectiveDeclContext(D);
98   }
99   return nullptr;
100 }
101 
102 static const FunctionDecl *getStructor(const FunctionDecl *fn) {
103   if (const FunctionTemplateDecl *ftd = fn->getPrimaryTemplate())
104     return ftd->getTemplatedDecl();
105 
106   return fn;
107 }
108 
109 static const NamedDecl *getStructor(const NamedDecl *decl) {
110   const FunctionDecl *fn = dyn_cast_or_null<FunctionDecl>(decl);
111   return (fn ? getStructor(fn) : decl);
112 }
113 
114 static bool isLambda(const NamedDecl *ND) {
115   const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(ND);
116   if (!Record)
117     return false;
118 
119   return Record->isLambda();
120 }
121 
122 static const unsigned UnknownArity = ~0U;
123 
124 class ItaniumMangleContextImpl : public ItaniumMangleContext {
125   typedef std::pair<const DeclContext*, IdentifierInfo*> DiscriminatorKeyTy;
126   llvm::DenseMap<DiscriminatorKeyTy, unsigned> Discriminator;
127   llvm::DenseMap<const NamedDecl*, unsigned> Uniquifier;
128   const DiscriminatorOverrideTy DiscriminatorOverride = nullptr;
129 
130   bool NeedsUniqueInternalLinkageNames = false;
131 
132 public:
133   explicit ItaniumMangleContextImpl(
134       ASTContext &Context, DiagnosticsEngine &Diags,
135       DiscriminatorOverrideTy DiscriminatorOverride)
136       : ItaniumMangleContext(Context, Diags),
137         DiscriminatorOverride(DiscriminatorOverride) {}
138 
139   /// @name Mangler Entry Points
140   /// @{
141 
142   bool shouldMangleCXXName(const NamedDecl *D) override;
143   bool shouldMangleStringLiteral(const StringLiteral *) override {
144     return false;
145   }
146 
147   bool isUniqueInternalLinkageDecl(const NamedDecl *ND) override;
148   void needsUniqueInternalLinkageNames() override {
149     NeedsUniqueInternalLinkageNames = true;
150   }
151 
152   void mangleCXXName(GlobalDecl GD, raw_ostream &) override;
153   void mangleThunk(const CXXMethodDecl *MD, const ThunkInfo &Thunk,
154                    raw_ostream &) override;
155   void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
156                           const ThisAdjustment &ThisAdjustment,
157                           raw_ostream &) override;
158   void mangleReferenceTemporary(const VarDecl *D, unsigned ManglingNumber,
159                                 raw_ostream &) override;
160   void mangleCXXVTable(const CXXRecordDecl *RD, raw_ostream &) override;
161   void mangleCXXVTT(const CXXRecordDecl *RD, raw_ostream &) override;
162   void mangleCXXCtorVTable(const CXXRecordDecl *RD, int64_t Offset,
163                            const CXXRecordDecl *Type, raw_ostream &) override;
164   void mangleCXXRTTI(QualType T, raw_ostream &) override;
165   void mangleCXXRTTIName(QualType T, raw_ostream &) override;
166   void mangleTypeName(QualType T, raw_ostream &) override;
167 
168   void mangleCXXCtorComdat(const CXXConstructorDecl *D, raw_ostream &) override;
169   void mangleCXXDtorComdat(const CXXDestructorDecl *D, raw_ostream &) override;
170   void mangleStaticGuardVariable(const VarDecl *D, raw_ostream &) override;
171   void mangleDynamicInitializer(const VarDecl *D, raw_ostream &Out) override;
172   void mangleDynamicAtExitDestructor(const VarDecl *D,
173                                      raw_ostream &Out) override;
174   void mangleDynamicStermFinalizer(const VarDecl *D, raw_ostream &Out) override;
175   void mangleSEHFilterExpression(const NamedDecl *EnclosingDecl,
176                                  raw_ostream &Out) override;
177   void mangleSEHFinallyBlock(const NamedDecl *EnclosingDecl,
178                              raw_ostream &Out) override;
179   void mangleItaniumThreadLocalInit(const VarDecl *D, raw_ostream &) override;
180   void mangleItaniumThreadLocalWrapper(const VarDecl *D,
181                                        raw_ostream &) override;
182 
183   void mangleStringLiteral(const StringLiteral *, raw_ostream &) override;
184 
185   void mangleLambdaSig(const CXXRecordDecl *Lambda, raw_ostream &) override;
186 
187   bool getNextDiscriminator(const NamedDecl *ND, unsigned &disc) {
188     // Lambda closure types are already numbered.
189     if (isLambda(ND))
190       return false;
191 
192     // Anonymous tags are already numbered.
193     if (const TagDecl *Tag = dyn_cast<TagDecl>(ND)) {
194       if (Tag->getName().empty() && !Tag->getTypedefNameForAnonDecl())
195         return false;
196     }
197 
198     // Use the canonical number for externally visible decls.
199     if (ND->isExternallyVisible()) {
200       unsigned discriminator = getASTContext().getManglingNumber(ND);
201       if (discriminator == 1)
202         return false;
203       disc = discriminator - 2;
204       return true;
205     }
206 
207     // Make up a reasonable number for internal decls.
208     unsigned &discriminator = Uniquifier[ND];
209     if (!discriminator) {
210       const DeclContext *DC = getEffectiveDeclContext(ND);
211       discriminator = ++Discriminator[std::make_pair(DC, ND->getIdentifier())];
212     }
213     if (discriminator == 1)
214       return false;
215     disc = discriminator-2;
216     return true;
217   }
218 
219   std::string getLambdaString(const CXXRecordDecl *Lambda) override {
220     // This function matches the one in MicrosoftMangle, which returns
221     // the string that is used in lambda mangled names.
222     assert(Lambda->isLambda() && "RD must be a lambda!");
223     std::string Name("<lambda");
224     Decl *LambdaContextDecl = Lambda->getLambdaContextDecl();
225     unsigned LambdaManglingNumber = Lambda->getLambdaManglingNumber();
226     unsigned LambdaId;
227     const ParmVarDecl *Parm = dyn_cast_or_null<ParmVarDecl>(LambdaContextDecl);
228     const FunctionDecl *Func =
229         Parm ? dyn_cast<FunctionDecl>(Parm->getDeclContext()) : nullptr;
230 
231     if (Func) {
232       unsigned DefaultArgNo =
233           Func->getNumParams() - Parm->getFunctionScopeIndex();
234       Name += llvm::utostr(DefaultArgNo);
235       Name += "_";
236     }
237 
238     if (LambdaManglingNumber)
239       LambdaId = LambdaManglingNumber;
240     else
241       LambdaId = getAnonymousStructIdForDebugInfo(Lambda);
242 
243     Name += llvm::utostr(LambdaId);
244     Name += '>';
245     return Name;
246   }
247 
248   DiscriminatorOverrideTy getDiscriminatorOverride() const override {
249     return DiscriminatorOverride;
250   }
251 
252   /// @}
253 };
254 
255 /// Manage the mangling of a single name.
256 class CXXNameMangler {
257   ItaniumMangleContextImpl &Context;
258   raw_ostream &Out;
259   bool NullOut = false;
260   /// In the "DisableDerivedAbiTags" mode derived ABI tags are not calculated.
261   /// This mode is used when mangler creates another mangler recursively to
262   /// calculate ABI tags for the function return value or the variable type.
263   /// Also it is required to avoid infinite recursion in some cases.
264   bool DisableDerivedAbiTags = false;
265 
266   /// The "structor" is the top-level declaration being mangled, if
267   /// that's not a template specialization; otherwise it's the pattern
268   /// for that specialization.
269   const NamedDecl *Structor;
270   unsigned StructorType;
271 
272   /// The next substitution sequence number.
273   unsigned SeqID;
274 
275   class FunctionTypeDepthState {
276     unsigned Bits;
277 
278     enum { InResultTypeMask = 1 };
279 
280   public:
281     FunctionTypeDepthState() : Bits(0) {}
282 
283     /// The number of function types we're inside.
284     unsigned getDepth() const {
285       return Bits >> 1;
286     }
287 
288     /// True if we're in the return type of the innermost function type.
289     bool isInResultType() const {
290       return Bits & InResultTypeMask;
291     }
292 
293     FunctionTypeDepthState push() {
294       FunctionTypeDepthState tmp = *this;
295       Bits = (Bits & ~InResultTypeMask) + 2;
296       return tmp;
297     }
298 
299     void enterResultType() {
300       Bits |= InResultTypeMask;
301     }
302 
303     void leaveResultType() {
304       Bits &= ~InResultTypeMask;
305     }
306 
307     void pop(FunctionTypeDepthState saved) {
308       assert(getDepth() == saved.getDepth() + 1);
309       Bits = saved.Bits;
310     }
311 
312   } FunctionTypeDepth;
313 
314   // abi_tag is a gcc attribute, taking one or more strings called "tags".
315   // The goal is to annotate against which version of a library an object was
316   // built and to be able to provide backwards compatibility ("dual abi").
317   // For more information see docs/ItaniumMangleAbiTags.rst.
318   typedef SmallVector<StringRef, 4> AbiTagList;
319 
320   // State to gather all implicit and explicit tags used in a mangled name.
321   // Must always have an instance of this while emitting any name to keep
322   // track.
323   class AbiTagState final {
324   public:
325     explicit AbiTagState(AbiTagState *&Head) : LinkHead(Head) {
326       Parent = LinkHead;
327       LinkHead = this;
328     }
329 
330     // No copy, no move.
331     AbiTagState(const AbiTagState &) = delete;
332     AbiTagState &operator=(const AbiTagState &) = delete;
333 
334     ~AbiTagState() { pop(); }
335 
336     void write(raw_ostream &Out, const NamedDecl *ND,
337                const AbiTagList *AdditionalAbiTags) {
338       ND = cast<NamedDecl>(ND->getCanonicalDecl());
339       if (!isa<FunctionDecl>(ND) && !isa<VarDecl>(ND)) {
340         assert(
341             !AdditionalAbiTags &&
342             "only function and variables need a list of additional abi tags");
343         if (const auto *NS = dyn_cast<NamespaceDecl>(ND)) {
344           if (const auto *AbiTag = NS->getAttr<AbiTagAttr>()) {
345             UsedAbiTags.insert(UsedAbiTags.end(), AbiTag->tags().begin(),
346                                AbiTag->tags().end());
347           }
348           // Don't emit abi tags for namespaces.
349           return;
350         }
351       }
352 
353       AbiTagList TagList;
354       if (const auto *AbiTag = ND->getAttr<AbiTagAttr>()) {
355         UsedAbiTags.insert(UsedAbiTags.end(), AbiTag->tags().begin(),
356                            AbiTag->tags().end());
357         TagList.insert(TagList.end(), AbiTag->tags().begin(),
358                        AbiTag->tags().end());
359       }
360 
361       if (AdditionalAbiTags) {
362         UsedAbiTags.insert(UsedAbiTags.end(), AdditionalAbiTags->begin(),
363                            AdditionalAbiTags->end());
364         TagList.insert(TagList.end(), AdditionalAbiTags->begin(),
365                        AdditionalAbiTags->end());
366       }
367 
368       llvm::sort(TagList);
369       TagList.erase(std::unique(TagList.begin(), TagList.end()), TagList.end());
370 
371       writeSortedUniqueAbiTags(Out, TagList);
372     }
373 
374     const AbiTagList &getUsedAbiTags() const { return UsedAbiTags; }
375     void setUsedAbiTags(const AbiTagList &AbiTags) {
376       UsedAbiTags = AbiTags;
377     }
378 
379     const AbiTagList &getEmittedAbiTags() const {
380       return EmittedAbiTags;
381     }
382 
383     const AbiTagList &getSortedUniqueUsedAbiTags() {
384       llvm::sort(UsedAbiTags);
385       UsedAbiTags.erase(std::unique(UsedAbiTags.begin(), UsedAbiTags.end()),
386                         UsedAbiTags.end());
387       return UsedAbiTags;
388     }
389 
390   private:
391     //! All abi tags used implicitly or explicitly.
392     AbiTagList UsedAbiTags;
393     //! All explicit abi tags (i.e. not from namespace).
394     AbiTagList EmittedAbiTags;
395 
396     AbiTagState *&LinkHead;
397     AbiTagState *Parent = nullptr;
398 
399     void pop() {
400       assert(LinkHead == this &&
401              "abi tag link head must point to us on destruction");
402       if (Parent) {
403         Parent->UsedAbiTags.insert(Parent->UsedAbiTags.end(),
404                                    UsedAbiTags.begin(), UsedAbiTags.end());
405         Parent->EmittedAbiTags.insert(Parent->EmittedAbiTags.end(),
406                                       EmittedAbiTags.begin(),
407                                       EmittedAbiTags.end());
408       }
409       LinkHead = Parent;
410     }
411 
412     void writeSortedUniqueAbiTags(raw_ostream &Out, const AbiTagList &AbiTags) {
413       for (const auto &Tag : AbiTags) {
414         EmittedAbiTags.push_back(Tag);
415         Out << "B";
416         Out << Tag.size();
417         Out << Tag;
418       }
419     }
420   };
421 
422   AbiTagState *AbiTags = nullptr;
423   AbiTagState AbiTagsRoot;
424 
425   llvm::DenseMap<uintptr_t, unsigned> Substitutions;
426   llvm::DenseMap<StringRef, unsigned> ModuleSubstitutions;
427 
428   ASTContext &getASTContext() const { return Context.getASTContext(); }
429 
430 public:
431   CXXNameMangler(ItaniumMangleContextImpl &C, raw_ostream &Out_,
432                  const NamedDecl *D = nullptr, bool NullOut_ = false)
433     : Context(C), Out(Out_), NullOut(NullOut_),  Structor(getStructor(D)),
434       StructorType(0), SeqID(0), AbiTagsRoot(AbiTags) {
435     // These can't be mangled without a ctor type or dtor type.
436     assert(!D || (!isa<CXXDestructorDecl>(D) &&
437                   !isa<CXXConstructorDecl>(D)));
438   }
439   CXXNameMangler(ItaniumMangleContextImpl &C, raw_ostream &Out_,
440                  const CXXConstructorDecl *D, CXXCtorType Type)
441     : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
442       SeqID(0), AbiTagsRoot(AbiTags) { }
443   CXXNameMangler(ItaniumMangleContextImpl &C, raw_ostream &Out_,
444                  const CXXDestructorDecl *D, CXXDtorType Type)
445     : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type),
446       SeqID(0), AbiTagsRoot(AbiTags) { }
447 
448   CXXNameMangler(CXXNameMangler &Outer, raw_ostream &Out_)
449       : Context(Outer.Context), Out(Out_), NullOut(false),
450         Structor(Outer.Structor), StructorType(Outer.StructorType),
451         SeqID(Outer.SeqID), FunctionTypeDepth(Outer.FunctionTypeDepth),
452         AbiTagsRoot(AbiTags), Substitutions(Outer.Substitutions) {}
453 
454   CXXNameMangler(CXXNameMangler &Outer, llvm::raw_null_ostream &Out_)
455       : Context(Outer.Context), Out(Out_), NullOut(true),
456         Structor(Outer.Structor), StructorType(Outer.StructorType),
457         SeqID(Outer.SeqID), FunctionTypeDepth(Outer.FunctionTypeDepth),
458         AbiTagsRoot(AbiTags), Substitutions(Outer.Substitutions) {}
459 
460   raw_ostream &getStream() { return Out; }
461 
462   void disableDerivedAbiTags() { DisableDerivedAbiTags = true; }
463   static bool shouldHaveAbiTags(ItaniumMangleContextImpl &C, const VarDecl *VD);
464 
465   void mangle(GlobalDecl GD);
466   void mangleCallOffset(int64_t NonVirtual, int64_t Virtual);
467   void mangleNumber(const llvm::APSInt &I);
468   void mangleNumber(int64_t Number);
469   void mangleFloat(const llvm::APFloat &F);
470   void mangleFunctionEncoding(GlobalDecl GD);
471   void mangleSeqID(unsigned SeqID);
472   void mangleName(GlobalDecl GD);
473   void mangleType(QualType T);
474   void mangleNameOrStandardSubstitution(const NamedDecl *ND);
475   void mangleLambdaSig(const CXXRecordDecl *Lambda);
476 
477 private:
478 
479   bool mangleSubstitution(const NamedDecl *ND);
480   bool mangleSubstitution(QualType T);
481   bool mangleSubstitution(TemplateName Template);
482   bool mangleSubstitution(uintptr_t Ptr);
483 
484   void mangleExistingSubstitution(TemplateName name);
485 
486   bool mangleStandardSubstitution(const NamedDecl *ND);
487 
488   void addSubstitution(const NamedDecl *ND) {
489     ND = cast<NamedDecl>(ND->getCanonicalDecl());
490 
491     addSubstitution(reinterpret_cast<uintptr_t>(ND));
492   }
493   void addSubstitution(QualType T);
494   void addSubstitution(TemplateName Template);
495   void addSubstitution(uintptr_t Ptr);
496   // Destructive copy substitutions from other mangler.
497   void extendSubstitutions(CXXNameMangler* Other);
498 
499   void mangleUnresolvedPrefix(NestedNameSpecifier *qualifier,
500                               bool recursive = false);
501   void mangleUnresolvedName(NestedNameSpecifier *qualifier,
502                             DeclarationName name,
503                             const TemplateArgumentLoc *TemplateArgs,
504                             unsigned NumTemplateArgs,
505                             unsigned KnownArity = UnknownArity);
506 
507   void mangleFunctionEncodingBareType(const FunctionDecl *FD);
508 
509   void mangleNameWithAbiTags(GlobalDecl GD,
510                              const AbiTagList *AdditionalAbiTags);
511   void mangleModuleName(const Module *M);
512   void mangleModuleNamePrefix(StringRef Name);
513   void mangleTemplateName(const TemplateDecl *TD,
514                           const TemplateArgument *TemplateArgs,
515                           unsigned NumTemplateArgs);
516   void mangleUnqualifiedName(GlobalDecl GD,
517                              const AbiTagList *AdditionalAbiTags) {
518     mangleUnqualifiedName(GD, cast<NamedDecl>(GD.getDecl())->getDeclName(), UnknownArity,
519                           AdditionalAbiTags);
520   }
521   void mangleUnqualifiedName(GlobalDecl GD, DeclarationName Name,
522                              unsigned KnownArity,
523                              const AbiTagList *AdditionalAbiTags);
524   void mangleUnscopedName(GlobalDecl GD,
525                           const AbiTagList *AdditionalAbiTags);
526   void mangleUnscopedTemplateName(GlobalDecl GD,
527                                   const AbiTagList *AdditionalAbiTags);
528   void mangleSourceName(const IdentifierInfo *II);
529   void mangleRegCallName(const IdentifierInfo *II);
530   void mangleDeviceStubName(const IdentifierInfo *II);
531   void mangleSourceNameWithAbiTags(
532       const NamedDecl *ND, const AbiTagList *AdditionalAbiTags = nullptr);
533   void mangleLocalName(GlobalDecl GD,
534                        const AbiTagList *AdditionalAbiTags);
535   void mangleBlockForPrefix(const BlockDecl *Block);
536   void mangleUnqualifiedBlock(const BlockDecl *Block);
537   void mangleTemplateParamDecl(const NamedDecl *Decl);
538   void mangleLambda(const CXXRecordDecl *Lambda);
539   void mangleNestedName(GlobalDecl GD, const DeclContext *DC,
540                         const AbiTagList *AdditionalAbiTags,
541                         bool NoFunction=false);
542   void mangleNestedName(const TemplateDecl *TD,
543                         const TemplateArgument *TemplateArgs,
544                         unsigned NumTemplateArgs);
545   void mangleNestedNameWithClosurePrefix(GlobalDecl GD,
546                                          const NamedDecl *PrefixND,
547                                          const AbiTagList *AdditionalAbiTags);
548   void manglePrefix(NestedNameSpecifier *qualifier);
549   void manglePrefix(const DeclContext *DC, bool NoFunction=false);
550   void manglePrefix(QualType type);
551   void mangleTemplatePrefix(GlobalDecl GD, bool NoFunction=false);
552   void mangleTemplatePrefix(TemplateName Template);
553   const NamedDecl *getClosurePrefix(const Decl *ND);
554   void mangleClosurePrefix(const NamedDecl *ND, bool NoFunction = false);
555   bool mangleUnresolvedTypeOrSimpleId(QualType DestroyedType,
556                                       StringRef Prefix = "");
557   void mangleOperatorName(DeclarationName Name, unsigned Arity);
558   void mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity);
559   void mangleVendorQualifier(StringRef qualifier);
560   void mangleQualifiers(Qualifiers Quals, const DependentAddressSpaceType *DAST = nullptr);
561   void mangleRefQualifier(RefQualifierKind RefQualifier);
562 
563   void mangleObjCMethodName(const ObjCMethodDecl *MD);
564 
565   // Declare manglers for every type class.
566 #define ABSTRACT_TYPE(CLASS, PARENT)
567 #define NON_CANONICAL_TYPE(CLASS, PARENT)
568 #define TYPE(CLASS, PARENT) void mangleType(const CLASS##Type *T);
569 #include "clang/AST/TypeNodes.inc"
570 
571   void mangleType(const TagType*);
572   void mangleType(TemplateName);
573   static StringRef getCallingConvQualifierName(CallingConv CC);
574   void mangleExtParameterInfo(FunctionProtoType::ExtParameterInfo info);
575   void mangleExtFunctionInfo(const FunctionType *T);
576   void mangleBareFunctionType(const FunctionProtoType *T, bool MangleReturnType,
577                               const FunctionDecl *FD = nullptr);
578   void mangleNeonVectorType(const VectorType *T);
579   void mangleNeonVectorType(const DependentVectorType *T);
580   void mangleAArch64NeonVectorType(const VectorType *T);
581   void mangleAArch64NeonVectorType(const DependentVectorType *T);
582   void mangleAArch64FixedSveVectorType(const VectorType *T);
583   void mangleAArch64FixedSveVectorType(const DependentVectorType *T);
584 
585   void mangleIntegerLiteral(QualType T, const llvm::APSInt &Value);
586   void mangleFloatLiteral(QualType T, const llvm::APFloat &V);
587   void mangleFixedPointLiteral();
588   void mangleNullPointer(QualType T);
589 
590   void mangleMemberExprBase(const Expr *base, bool isArrow);
591   void mangleMemberExpr(const Expr *base, bool isArrow,
592                         NestedNameSpecifier *qualifier,
593                         NamedDecl *firstQualifierLookup,
594                         DeclarationName name,
595                         const TemplateArgumentLoc *TemplateArgs,
596                         unsigned NumTemplateArgs,
597                         unsigned knownArity);
598   void mangleCastExpression(const Expr *E, StringRef CastEncoding);
599   void mangleInitListElements(const InitListExpr *InitList);
600   void mangleExpression(const Expr *E, unsigned Arity = UnknownArity,
601                         bool AsTemplateArg = false);
602   void mangleCXXCtorType(CXXCtorType T, const CXXRecordDecl *InheritedFrom);
603   void mangleCXXDtorType(CXXDtorType T);
604 
605   void mangleTemplateArgs(TemplateName TN,
606                           const TemplateArgumentLoc *TemplateArgs,
607                           unsigned NumTemplateArgs);
608   void mangleTemplateArgs(TemplateName TN, const TemplateArgument *TemplateArgs,
609                           unsigned NumTemplateArgs);
610   void mangleTemplateArgs(TemplateName TN, const TemplateArgumentList &AL);
611   void mangleTemplateArg(TemplateArgument A, bool NeedExactType);
612   void mangleTemplateArgExpr(const Expr *E);
613   void mangleValueInTemplateArg(QualType T, const APValue &V, bool TopLevel,
614                                 bool NeedExactType = false);
615 
616   void mangleTemplateParameter(unsigned Depth, unsigned Index);
617 
618   void mangleFunctionParam(const ParmVarDecl *parm);
619 
620   void writeAbiTags(const NamedDecl *ND,
621                     const AbiTagList *AdditionalAbiTags);
622 
623   // Returns sorted unique list of ABI tags.
624   AbiTagList makeFunctionReturnTypeTags(const FunctionDecl *FD);
625   // Returns sorted unique list of ABI tags.
626   AbiTagList makeVariableTypeTags(const VarDecl *VD);
627 };
628 
629 }
630 
631 static bool isInternalLinkageDecl(const NamedDecl *ND) {
632   if (ND && ND->getFormalLinkage() == InternalLinkage &&
633       !ND->isExternallyVisible() &&
634       getEffectiveDeclContext(ND)->isFileContext() &&
635       !ND->isInAnonymousNamespace())
636     return true;
637   return false;
638 }
639 
640 // Check if this Function Decl needs a unique internal linkage name.
641 bool ItaniumMangleContextImpl::isUniqueInternalLinkageDecl(
642     const NamedDecl *ND) {
643   if (!NeedsUniqueInternalLinkageNames || !ND)
644     return false;
645 
646   const auto *FD = dyn_cast<FunctionDecl>(ND);
647   if (!FD)
648     return false;
649 
650   // For C functions without prototypes, return false as their
651   // names should not be mangled.
652   if (!FD->getType()->getAs<FunctionProtoType>())
653     return false;
654 
655   if (isInternalLinkageDecl(ND))
656     return true;
657 
658   return false;
659 }
660 
661 bool ItaniumMangleContextImpl::shouldMangleCXXName(const NamedDecl *D) {
662   const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
663   if (FD) {
664     LanguageLinkage L = FD->getLanguageLinkage();
665     // Overloadable functions need mangling.
666     if (FD->hasAttr<OverloadableAttr>())
667       return true;
668 
669     // "main" is not mangled.
670     if (FD->isMain())
671       return false;
672 
673     // The Windows ABI expects that we would never mangle "typical"
674     // user-defined entry points regardless of visibility or freestanding-ness.
675     //
676     // N.B. This is distinct from asking about "main".  "main" has a lot of
677     // special rules associated with it in the standard while these
678     // user-defined entry points are outside of the purview of the standard.
679     // For example, there can be only one definition for "main" in a standards
680     // compliant program; however nothing forbids the existence of wmain and
681     // WinMain in the same translation unit.
682     if (FD->isMSVCRTEntryPoint())
683       return false;
684 
685     // C++ functions and those whose names are not a simple identifier need
686     // mangling.
687     if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage)
688       return true;
689 
690     // C functions are not mangled.
691     if (L == CLanguageLinkage)
692       return false;
693   }
694 
695   // Otherwise, no mangling is done outside C++ mode.
696   if (!getASTContext().getLangOpts().CPlusPlus)
697     return false;
698 
699   const VarDecl *VD = dyn_cast<VarDecl>(D);
700   if (VD && !isa<DecompositionDecl>(D)) {
701     // C variables are not mangled.
702     if (VD->isExternC())
703       return false;
704 
705     // Variables at global scope with non-internal linkage are not mangled
706     const DeclContext *DC = getEffectiveDeclContext(D);
707     // Check for extern variable declared locally.
708     if (DC->isFunctionOrMethod() && D->hasLinkage())
709       while (!DC->isNamespace() && !DC->isTranslationUnit())
710         DC = getEffectiveParentContext(DC);
711     if (DC->isTranslationUnit() && D->getFormalLinkage() != InternalLinkage &&
712         !CXXNameMangler::shouldHaveAbiTags(*this, VD) &&
713         !isa<VarTemplateSpecializationDecl>(D))
714       return false;
715   }
716 
717   return true;
718 }
719 
720 void CXXNameMangler::writeAbiTags(const NamedDecl *ND,
721                                   const AbiTagList *AdditionalAbiTags) {
722   assert(AbiTags && "require AbiTagState");
723   AbiTags->write(Out, ND, DisableDerivedAbiTags ? nullptr : AdditionalAbiTags);
724 }
725 
726 void CXXNameMangler::mangleSourceNameWithAbiTags(
727     const NamedDecl *ND, const AbiTagList *AdditionalAbiTags) {
728   mangleSourceName(ND->getIdentifier());
729   writeAbiTags(ND, AdditionalAbiTags);
730 }
731 
732 void CXXNameMangler::mangle(GlobalDecl GD) {
733   // <mangled-name> ::= _Z <encoding>
734   //            ::= <data name>
735   //            ::= <special-name>
736   Out << "_Z";
737   if (isa<FunctionDecl>(GD.getDecl()))
738     mangleFunctionEncoding(GD);
739   else if (isa<VarDecl, FieldDecl, MSGuidDecl, TemplateParamObjectDecl,
740                BindingDecl>(GD.getDecl()))
741     mangleName(GD);
742   else if (const IndirectFieldDecl *IFD =
743                dyn_cast<IndirectFieldDecl>(GD.getDecl()))
744     mangleName(IFD->getAnonField());
745   else
746     llvm_unreachable("unexpected kind of global decl");
747 }
748 
749 void CXXNameMangler::mangleFunctionEncoding(GlobalDecl GD) {
750   const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
751   // <encoding> ::= <function name> <bare-function-type>
752 
753   // Don't mangle in the type if this isn't a decl we should typically mangle.
754   if (!Context.shouldMangleDeclName(FD)) {
755     mangleName(GD);
756     return;
757   }
758 
759   AbiTagList ReturnTypeAbiTags = makeFunctionReturnTypeTags(FD);
760   if (ReturnTypeAbiTags.empty()) {
761     // There are no tags for return type, the simplest case.
762     mangleName(GD);
763     mangleFunctionEncodingBareType(FD);
764     return;
765   }
766 
767   // Mangle function name and encoding to temporary buffer.
768   // We have to output name and encoding to the same mangler to get the same
769   // substitution as it will be in final mangling.
770   SmallString<256> FunctionEncodingBuf;
771   llvm::raw_svector_ostream FunctionEncodingStream(FunctionEncodingBuf);
772   CXXNameMangler FunctionEncodingMangler(*this, FunctionEncodingStream);
773   // Output name of the function.
774   FunctionEncodingMangler.disableDerivedAbiTags();
775   FunctionEncodingMangler.mangleNameWithAbiTags(FD, nullptr);
776 
777   // Remember length of the function name in the buffer.
778   size_t EncodingPositionStart = FunctionEncodingStream.str().size();
779   FunctionEncodingMangler.mangleFunctionEncodingBareType(FD);
780 
781   // Get tags from return type that are not present in function name or
782   // encoding.
783   const AbiTagList &UsedAbiTags =
784       FunctionEncodingMangler.AbiTagsRoot.getSortedUniqueUsedAbiTags();
785   AbiTagList AdditionalAbiTags(ReturnTypeAbiTags.size());
786   AdditionalAbiTags.erase(
787       std::set_difference(ReturnTypeAbiTags.begin(), ReturnTypeAbiTags.end(),
788                           UsedAbiTags.begin(), UsedAbiTags.end(),
789                           AdditionalAbiTags.begin()),
790       AdditionalAbiTags.end());
791 
792   // Output name with implicit tags and function encoding from temporary buffer.
793   mangleNameWithAbiTags(FD, &AdditionalAbiTags);
794   Out << FunctionEncodingStream.str().substr(EncodingPositionStart);
795 
796   // Function encoding could create new substitutions so we have to add
797   // temp mangled substitutions to main mangler.
798   extendSubstitutions(&FunctionEncodingMangler);
799 }
800 
801 void CXXNameMangler::mangleFunctionEncodingBareType(const FunctionDecl *FD) {
802   if (FD->hasAttr<EnableIfAttr>()) {
803     FunctionTypeDepthState Saved = FunctionTypeDepth.push();
804     Out << "Ua9enable_ifI";
805     for (AttrVec::const_iterator I = FD->getAttrs().begin(),
806                                  E = FD->getAttrs().end();
807          I != E; ++I) {
808       EnableIfAttr *EIA = dyn_cast<EnableIfAttr>(*I);
809       if (!EIA)
810         continue;
811       if (Context.getASTContext().getLangOpts().getClangABICompat() >
812           LangOptions::ClangABI::Ver11) {
813         mangleTemplateArgExpr(EIA->getCond());
814       } else {
815         // Prior to Clang 12, we hardcoded the X/E around enable-if's argument,
816         // even though <template-arg> should not include an X/E around
817         // <expr-primary>.
818         Out << 'X';
819         mangleExpression(EIA->getCond());
820         Out << 'E';
821       }
822     }
823     Out << 'E';
824     FunctionTypeDepth.pop(Saved);
825   }
826 
827   // When mangling an inheriting constructor, the bare function type used is
828   // that of the inherited constructor.
829   if (auto *CD = dyn_cast<CXXConstructorDecl>(FD))
830     if (auto Inherited = CD->getInheritedConstructor())
831       FD = Inherited.getConstructor();
832 
833   // Whether the mangling of a function type includes the return type depends on
834   // the context and the nature of the function. The rules for deciding whether
835   // the return type is included are:
836   //
837   //   1. Template functions (names or types) have return types encoded, with
838   //   the exceptions listed below.
839   //   2. Function types not appearing as part of a function name mangling,
840   //   e.g. parameters, pointer types, etc., have return type encoded, with the
841   //   exceptions listed below.
842   //   3. Non-template function names do not have return types encoded.
843   //
844   // The exceptions mentioned in (1) and (2) above, for which the return type is
845   // never included, are
846   //   1. Constructors.
847   //   2. Destructors.
848   //   3. Conversion operator functions, e.g. operator int.
849   bool MangleReturnType = false;
850   if (FunctionTemplateDecl *PrimaryTemplate = FD->getPrimaryTemplate()) {
851     if (!(isa<CXXConstructorDecl>(FD) || isa<CXXDestructorDecl>(FD) ||
852           isa<CXXConversionDecl>(FD)))
853       MangleReturnType = true;
854 
855     // Mangle the type of the primary template.
856     FD = PrimaryTemplate->getTemplatedDecl();
857   }
858 
859   mangleBareFunctionType(FD->getType()->castAs<FunctionProtoType>(),
860                          MangleReturnType, FD);
861 }
862 
863 static const DeclContext *IgnoreLinkageSpecDecls(const DeclContext *DC) {
864   while (isa<LinkageSpecDecl>(DC)) {
865     DC = getEffectiveParentContext(DC);
866   }
867 
868   return DC;
869 }
870 
871 /// Return whether a given namespace is the 'std' namespace.
872 static bool isStd(const NamespaceDecl *NS) {
873   if (!IgnoreLinkageSpecDecls(getEffectiveParentContext(NS))
874                                 ->isTranslationUnit())
875     return false;
876 
877   const IdentifierInfo *II = NS->getOriginalNamespace()->getIdentifier();
878   return II && II->isStr("std");
879 }
880 
881 // isStdNamespace - Return whether a given decl context is a toplevel 'std'
882 // namespace.
883 static bool isStdNamespace(const DeclContext *DC) {
884   if (!DC->isNamespace())
885     return false;
886 
887   return isStd(cast<NamespaceDecl>(DC));
888 }
889 
890 static const GlobalDecl
891 isTemplate(GlobalDecl GD, const TemplateArgumentList *&TemplateArgs) {
892   const NamedDecl *ND = cast<NamedDecl>(GD.getDecl());
893   // Check if we have a function template.
894   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
895     if (const TemplateDecl *TD = FD->getPrimaryTemplate()) {
896       TemplateArgs = FD->getTemplateSpecializationArgs();
897       return GD.getWithDecl(TD);
898     }
899   }
900 
901   // Check if we have a class template.
902   if (const ClassTemplateSpecializationDecl *Spec =
903         dyn_cast<ClassTemplateSpecializationDecl>(ND)) {
904     TemplateArgs = &Spec->getTemplateArgs();
905     return GD.getWithDecl(Spec->getSpecializedTemplate());
906   }
907 
908   // Check if we have a variable template.
909   if (const VarTemplateSpecializationDecl *Spec =
910           dyn_cast<VarTemplateSpecializationDecl>(ND)) {
911     TemplateArgs = &Spec->getTemplateArgs();
912     return GD.getWithDecl(Spec->getSpecializedTemplate());
913   }
914 
915   return GlobalDecl();
916 }
917 
918 static TemplateName asTemplateName(GlobalDecl GD) {
919   const TemplateDecl *TD = dyn_cast_or_null<TemplateDecl>(GD.getDecl());
920   return TemplateName(const_cast<TemplateDecl*>(TD));
921 }
922 
923 void CXXNameMangler::mangleName(GlobalDecl GD) {
924   const NamedDecl *ND = cast<NamedDecl>(GD.getDecl());
925   if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
926     // Variables should have implicit tags from its type.
927     AbiTagList VariableTypeAbiTags = makeVariableTypeTags(VD);
928     if (VariableTypeAbiTags.empty()) {
929       // Simple case no variable type tags.
930       mangleNameWithAbiTags(VD, nullptr);
931       return;
932     }
933 
934     // Mangle variable name to null stream to collect tags.
935     llvm::raw_null_ostream NullOutStream;
936     CXXNameMangler VariableNameMangler(*this, NullOutStream);
937     VariableNameMangler.disableDerivedAbiTags();
938     VariableNameMangler.mangleNameWithAbiTags(VD, nullptr);
939 
940     // Get tags from variable type that are not present in its name.
941     const AbiTagList &UsedAbiTags =
942         VariableNameMangler.AbiTagsRoot.getSortedUniqueUsedAbiTags();
943     AbiTagList AdditionalAbiTags(VariableTypeAbiTags.size());
944     AdditionalAbiTags.erase(
945         std::set_difference(VariableTypeAbiTags.begin(),
946                             VariableTypeAbiTags.end(), UsedAbiTags.begin(),
947                             UsedAbiTags.end(), AdditionalAbiTags.begin()),
948         AdditionalAbiTags.end());
949 
950     // Output name with implicit tags.
951     mangleNameWithAbiTags(VD, &AdditionalAbiTags);
952   } else {
953     mangleNameWithAbiTags(GD, nullptr);
954   }
955 }
956 
957 void CXXNameMangler::mangleNameWithAbiTags(GlobalDecl GD,
958                                            const AbiTagList *AdditionalAbiTags) {
959   const NamedDecl *ND = cast<NamedDecl>(GD.getDecl());
960   //  <name> ::= [<module-name>] <nested-name>
961   //         ::= [<module-name>] <unscoped-name>
962   //         ::= [<module-name>] <unscoped-template-name> <template-args>
963   //         ::= <local-name>
964   //
965   const DeclContext *DC = getEffectiveDeclContext(ND);
966 
967   // If this is an extern variable declared locally, the relevant DeclContext
968   // is that of the containing namespace, or the translation unit.
969   // FIXME: This is a hack; extern variables declared locally should have
970   // a proper semantic declaration context!
971   if (isLocalContainerContext(DC) && ND->hasLinkage() && !isLambda(ND))
972     while (!DC->isNamespace() && !DC->isTranslationUnit())
973       DC = getEffectiveParentContext(DC);
974   else if (GetLocalClassDecl(ND)) {
975     mangleLocalName(GD, AdditionalAbiTags);
976     return;
977   }
978 
979   DC = IgnoreLinkageSpecDecls(DC);
980 
981   if (isLocalContainerContext(DC)) {
982     mangleLocalName(GD, AdditionalAbiTags);
983     return;
984   }
985 
986   // Do not mangle the owning module for an external linkage declaration.
987   // This enables backwards-compatibility with non-modular code, and is
988   // a valid choice since conflicts are not permitted by C++ Modules TS
989   // [basic.def.odr]/6.2.
990   if (!ND->hasExternalFormalLinkage())
991     if (Module *M = ND->getOwningModuleForLinkage())
992       mangleModuleName(M);
993 
994   // Closures can require a nested-name mangling even if they're semantically
995   // in the global namespace.
996   if (const NamedDecl *PrefixND = getClosurePrefix(ND)) {
997     mangleNestedNameWithClosurePrefix(GD, PrefixND, AdditionalAbiTags);
998     return;
999   }
1000 
1001   if (DC->isTranslationUnit() || isStdNamespace(DC)) {
1002     // Check if we have a template.
1003     const TemplateArgumentList *TemplateArgs = nullptr;
1004     if (GlobalDecl TD = isTemplate(GD, TemplateArgs)) {
1005       mangleUnscopedTemplateName(TD, AdditionalAbiTags);
1006       mangleTemplateArgs(asTemplateName(TD), *TemplateArgs);
1007       return;
1008     }
1009 
1010     mangleUnscopedName(GD, AdditionalAbiTags);
1011     return;
1012   }
1013 
1014   mangleNestedName(GD, DC, AdditionalAbiTags);
1015 }
1016 
1017 void CXXNameMangler::mangleModuleName(const Module *M) {
1018   // Implement the C++ Modules TS name mangling proposal; see
1019   //     https://gcc.gnu.org/wiki/cxx-modules?action=AttachFile
1020   //
1021   //   <module-name> ::= W <unscoped-name>+ E
1022   //                 ::= W <module-subst> <unscoped-name>* E
1023   Out << 'W';
1024   mangleModuleNamePrefix(M->Name);
1025   Out << 'E';
1026 }
1027 
1028 void CXXNameMangler::mangleModuleNamePrefix(StringRef Name) {
1029   //  <module-subst> ::= _ <seq-id>          # 0 < seq-id < 10
1030   //                 ::= W <seq-id - 10> _   # otherwise
1031   auto It = ModuleSubstitutions.find(Name);
1032   if (It != ModuleSubstitutions.end()) {
1033     if (It->second < 10)
1034       Out << '_' << static_cast<char>('0' + It->second);
1035     else
1036       Out << 'W' << (It->second - 10) << '_';
1037     return;
1038   }
1039 
1040   // FIXME: Preserve hierarchy in module names rather than flattening
1041   // them to strings; use Module*s as substitution keys.
1042   auto Parts = Name.rsplit('.');
1043   if (Parts.second.empty())
1044     Parts.second = Parts.first;
1045   else
1046     mangleModuleNamePrefix(Parts.first);
1047 
1048   Out << Parts.second.size() << Parts.second;
1049   ModuleSubstitutions.insert({Name, ModuleSubstitutions.size()});
1050 }
1051 
1052 void CXXNameMangler::mangleTemplateName(const TemplateDecl *TD,
1053                                         const TemplateArgument *TemplateArgs,
1054                                         unsigned NumTemplateArgs) {
1055   const DeclContext *DC = IgnoreLinkageSpecDecls(getEffectiveDeclContext(TD));
1056 
1057   if (DC->isTranslationUnit() || isStdNamespace(DC)) {
1058     mangleUnscopedTemplateName(TD, nullptr);
1059     mangleTemplateArgs(asTemplateName(TD), TemplateArgs, NumTemplateArgs);
1060   } else {
1061     mangleNestedName(TD, TemplateArgs, NumTemplateArgs);
1062   }
1063 }
1064 
1065 void CXXNameMangler::mangleUnscopedName(GlobalDecl GD,
1066                                         const AbiTagList *AdditionalAbiTags) {
1067   const NamedDecl *ND = cast<NamedDecl>(GD.getDecl());
1068   //  <unscoped-name> ::= <unqualified-name>
1069   //                  ::= St <unqualified-name>   # ::std::
1070 
1071   if (isStdNamespace(IgnoreLinkageSpecDecls(getEffectiveDeclContext(ND))))
1072     Out << "St";
1073 
1074   mangleUnqualifiedName(GD, AdditionalAbiTags);
1075 }
1076 
1077 void CXXNameMangler::mangleUnscopedTemplateName(
1078     GlobalDecl GD, const AbiTagList *AdditionalAbiTags) {
1079   const TemplateDecl *ND = cast<TemplateDecl>(GD.getDecl());
1080   //     <unscoped-template-name> ::= <unscoped-name>
1081   //                              ::= <substitution>
1082   if (mangleSubstitution(ND))
1083     return;
1084 
1085   // <template-template-param> ::= <template-param>
1086   if (const auto *TTP = dyn_cast<TemplateTemplateParmDecl>(ND)) {
1087     assert(!AdditionalAbiTags &&
1088            "template template param cannot have abi tags");
1089     mangleTemplateParameter(TTP->getDepth(), TTP->getIndex());
1090   } else if (isa<BuiltinTemplateDecl>(ND) || isa<ConceptDecl>(ND)) {
1091     mangleUnscopedName(GD, AdditionalAbiTags);
1092   } else {
1093     mangleUnscopedName(GD.getWithDecl(ND->getTemplatedDecl()), AdditionalAbiTags);
1094   }
1095 
1096   addSubstitution(ND);
1097 }
1098 
1099 void CXXNameMangler::mangleFloat(const llvm::APFloat &f) {
1100   // ABI:
1101   //   Floating-point literals are encoded using a fixed-length
1102   //   lowercase hexadecimal string corresponding to the internal
1103   //   representation (IEEE on Itanium), high-order bytes first,
1104   //   without leading zeroes. For example: "Lf bf800000 E" is -1.0f
1105   //   on Itanium.
1106   // The 'without leading zeroes' thing seems to be an editorial
1107   // mistake; see the discussion on cxx-abi-dev beginning on
1108   // 2012-01-16.
1109 
1110   // Our requirements here are just barely weird enough to justify
1111   // using a custom algorithm instead of post-processing APInt::toString().
1112 
1113   llvm::APInt valueBits = f.bitcastToAPInt();
1114   unsigned numCharacters = (valueBits.getBitWidth() + 3) / 4;
1115   assert(numCharacters != 0);
1116 
1117   // Allocate a buffer of the right number of characters.
1118   SmallVector<char, 20> buffer(numCharacters);
1119 
1120   // Fill the buffer left-to-right.
1121   for (unsigned stringIndex = 0; stringIndex != numCharacters; ++stringIndex) {
1122     // The bit-index of the next hex digit.
1123     unsigned digitBitIndex = 4 * (numCharacters - stringIndex - 1);
1124 
1125     // Project out 4 bits starting at 'digitIndex'.
1126     uint64_t hexDigit = valueBits.getRawData()[digitBitIndex / 64];
1127     hexDigit >>= (digitBitIndex % 64);
1128     hexDigit &= 0xF;
1129 
1130     // Map that over to a lowercase hex digit.
1131     static const char charForHex[16] = {
1132       '0', '1', '2', '3', '4', '5', '6', '7',
1133       '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
1134     };
1135     buffer[stringIndex] = charForHex[hexDigit];
1136   }
1137 
1138   Out.write(buffer.data(), numCharacters);
1139 }
1140 
1141 void CXXNameMangler::mangleFloatLiteral(QualType T, const llvm::APFloat &V) {
1142   Out << 'L';
1143   mangleType(T);
1144   mangleFloat(V);
1145   Out << 'E';
1146 }
1147 
1148 void CXXNameMangler::mangleFixedPointLiteral() {
1149   DiagnosticsEngine &Diags = Context.getDiags();
1150   unsigned DiagID = Diags.getCustomDiagID(
1151       DiagnosticsEngine::Error, "cannot mangle fixed point literals yet");
1152   Diags.Report(DiagID);
1153 }
1154 
1155 void CXXNameMangler::mangleNullPointer(QualType T) {
1156   //  <expr-primary> ::= L <type> 0 E
1157   Out << 'L';
1158   mangleType(T);
1159   Out << "0E";
1160 }
1161 
1162 void CXXNameMangler::mangleNumber(const llvm::APSInt &Value) {
1163   if (Value.isSigned() && Value.isNegative()) {
1164     Out << 'n';
1165     Value.abs().print(Out, /*signed*/ false);
1166   } else {
1167     Value.print(Out, /*signed*/ false);
1168   }
1169 }
1170 
1171 void CXXNameMangler::mangleNumber(int64_t Number) {
1172   //  <number> ::= [n] <non-negative decimal integer>
1173   if (Number < 0) {
1174     Out << 'n';
1175     Number = -Number;
1176   }
1177 
1178   Out << Number;
1179 }
1180 
1181 void CXXNameMangler::mangleCallOffset(int64_t NonVirtual, int64_t Virtual) {
1182   //  <call-offset>  ::= h <nv-offset> _
1183   //                 ::= v <v-offset> _
1184   //  <nv-offset>    ::= <offset number>        # non-virtual base override
1185   //  <v-offset>     ::= <offset number> _ <virtual offset number>
1186   //                      # virtual base override, with vcall offset
1187   if (!Virtual) {
1188     Out << 'h';
1189     mangleNumber(NonVirtual);
1190     Out << '_';
1191     return;
1192   }
1193 
1194   Out << 'v';
1195   mangleNumber(NonVirtual);
1196   Out << '_';
1197   mangleNumber(Virtual);
1198   Out << '_';
1199 }
1200 
1201 void CXXNameMangler::manglePrefix(QualType type) {
1202   if (const auto *TST = type->getAs<TemplateSpecializationType>()) {
1203     if (!mangleSubstitution(QualType(TST, 0))) {
1204       mangleTemplatePrefix(TST->getTemplateName());
1205 
1206       // FIXME: GCC does not appear to mangle the template arguments when
1207       // the template in question is a dependent template name. Should we
1208       // emulate that badness?
1209       mangleTemplateArgs(TST->getTemplateName(), TST->getArgs(),
1210                          TST->getNumArgs());
1211       addSubstitution(QualType(TST, 0));
1212     }
1213   } else if (const auto *DTST =
1214                  type->getAs<DependentTemplateSpecializationType>()) {
1215     if (!mangleSubstitution(QualType(DTST, 0))) {
1216       TemplateName Template = getASTContext().getDependentTemplateName(
1217           DTST->getQualifier(), DTST->getIdentifier());
1218       mangleTemplatePrefix(Template);
1219 
1220       // FIXME: GCC does not appear to mangle the template arguments when
1221       // the template in question is a dependent template name. Should we
1222       // emulate that badness?
1223       mangleTemplateArgs(Template, DTST->getArgs(), DTST->getNumArgs());
1224       addSubstitution(QualType(DTST, 0));
1225     }
1226   } else {
1227     // We use the QualType mangle type variant here because it handles
1228     // substitutions.
1229     mangleType(type);
1230   }
1231 }
1232 
1233 /// Mangle everything prior to the base-unresolved-name in an unresolved-name.
1234 ///
1235 /// \param recursive - true if this is being called recursively,
1236 ///   i.e. if there is more prefix "to the right".
1237 void CXXNameMangler::mangleUnresolvedPrefix(NestedNameSpecifier *qualifier,
1238                                             bool recursive) {
1239 
1240   // x, ::x
1241   // <unresolved-name> ::= [gs] <base-unresolved-name>
1242 
1243   // T::x / decltype(p)::x
1244   // <unresolved-name> ::= sr <unresolved-type> <base-unresolved-name>
1245 
1246   // T::N::x /decltype(p)::N::x
1247   // <unresolved-name> ::= srN <unresolved-type> <unresolved-qualifier-level>+ E
1248   //                       <base-unresolved-name>
1249 
1250   // A::x, N::y, A<T>::z; "gs" means leading "::"
1251   // <unresolved-name> ::= [gs] sr <unresolved-qualifier-level>+ E
1252   //                       <base-unresolved-name>
1253 
1254   switch (qualifier->getKind()) {
1255   case NestedNameSpecifier::Global:
1256     Out << "gs";
1257 
1258     // We want an 'sr' unless this is the entire NNS.
1259     if (recursive)
1260       Out << "sr";
1261 
1262     // We never want an 'E' here.
1263     return;
1264 
1265   case NestedNameSpecifier::Super:
1266     llvm_unreachable("Can't mangle __super specifier");
1267 
1268   case NestedNameSpecifier::Namespace:
1269     if (qualifier->getPrefix())
1270       mangleUnresolvedPrefix(qualifier->getPrefix(),
1271                              /*recursive*/ true);
1272     else
1273       Out << "sr";
1274     mangleSourceNameWithAbiTags(qualifier->getAsNamespace());
1275     break;
1276   case NestedNameSpecifier::NamespaceAlias:
1277     if (qualifier->getPrefix())
1278       mangleUnresolvedPrefix(qualifier->getPrefix(),
1279                              /*recursive*/ true);
1280     else
1281       Out << "sr";
1282     mangleSourceNameWithAbiTags(qualifier->getAsNamespaceAlias());
1283     break;
1284 
1285   case NestedNameSpecifier::TypeSpec:
1286   case NestedNameSpecifier::TypeSpecWithTemplate: {
1287     const Type *type = qualifier->getAsType();
1288 
1289     // We only want to use an unresolved-type encoding if this is one of:
1290     //   - a decltype
1291     //   - a template type parameter
1292     //   - a template template parameter with arguments
1293     // In all of these cases, we should have no prefix.
1294     if (qualifier->getPrefix()) {
1295       mangleUnresolvedPrefix(qualifier->getPrefix(),
1296                              /*recursive*/ true);
1297     } else {
1298       // Otherwise, all the cases want this.
1299       Out << "sr";
1300     }
1301 
1302     if (mangleUnresolvedTypeOrSimpleId(QualType(type, 0), recursive ? "N" : ""))
1303       return;
1304 
1305     break;
1306   }
1307 
1308   case NestedNameSpecifier::Identifier:
1309     // Member expressions can have these without prefixes.
1310     if (qualifier->getPrefix())
1311       mangleUnresolvedPrefix(qualifier->getPrefix(),
1312                              /*recursive*/ true);
1313     else
1314       Out << "sr";
1315 
1316     mangleSourceName(qualifier->getAsIdentifier());
1317     // An Identifier has no type information, so we can't emit abi tags for it.
1318     break;
1319   }
1320 
1321   // If this was the innermost part of the NNS, and we fell out to
1322   // here, append an 'E'.
1323   if (!recursive)
1324     Out << 'E';
1325 }
1326 
1327 /// Mangle an unresolved-name, which is generally used for names which
1328 /// weren't resolved to specific entities.
1329 void CXXNameMangler::mangleUnresolvedName(
1330     NestedNameSpecifier *qualifier, DeclarationName name,
1331     const TemplateArgumentLoc *TemplateArgs, unsigned NumTemplateArgs,
1332     unsigned knownArity) {
1333   if (qualifier) mangleUnresolvedPrefix(qualifier);
1334   switch (name.getNameKind()) {
1335     // <base-unresolved-name> ::= <simple-id>
1336     case DeclarationName::Identifier:
1337       mangleSourceName(name.getAsIdentifierInfo());
1338       break;
1339     // <base-unresolved-name> ::= dn <destructor-name>
1340     case DeclarationName::CXXDestructorName:
1341       Out << "dn";
1342       mangleUnresolvedTypeOrSimpleId(name.getCXXNameType());
1343       break;
1344     // <base-unresolved-name> ::= on <operator-name>
1345     case DeclarationName::CXXConversionFunctionName:
1346     case DeclarationName::CXXLiteralOperatorName:
1347     case DeclarationName::CXXOperatorName:
1348       Out << "on";
1349       mangleOperatorName(name, knownArity);
1350       break;
1351     case DeclarationName::CXXConstructorName:
1352       llvm_unreachable("Can't mangle a constructor name!");
1353     case DeclarationName::CXXUsingDirective:
1354       llvm_unreachable("Can't mangle a using directive name!");
1355     case DeclarationName::CXXDeductionGuideName:
1356       llvm_unreachable("Can't mangle a deduction guide name!");
1357     case DeclarationName::ObjCMultiArgSelector:
1358     case DeclarationName::ObjCOneArgSelector:
1359     case DeclarationName::ObjCZeroArgSelector:
1360       llvm_unreachable("Can't mangle Objective-C selector names here!");
1361   }
1362 
1363   // The <simple-id> and on <operator-name> productions end in an optional
1364   // <template-args>.
1365   if (TemplateArgs)
1366     mangleTemplateArgs(TemplateName(), TemplateArgs, NumTemplateArgs);
1367 }
1368 
1369 void CXXNameMangler::mangleUnqualifiedName(GlobalDecl GD,
1370                                            DeclarationName Name,
1371                                            unsigned KnownArity,
1372                                            const AbiTagList *AdditionalAbiTags) {
1373   const NamedDecl *ND = cast_or_null<NamedDecl>(GD.getDecl());
1374   unsigned Arity = KnownArity;
1375   //  <unqualified-name> ::= <operator-name>
1376   //                     ::= <ctor-dtor-name>
1377   //                     ::= <source-name>
1378   switch (Name.getNameKind()) {
1379   case DeclarationName::Identifier: {
1380     const IdentifierInfo *II = Name.getAsIdentifierInfo();
1381 
1382     // We mangle decomposition declarations as the names of their bindings.
1383     if (auto *DD = dyn_cast<DecompositionDecl>(ND)) {
1384       // FIXME: Non-standard mangling for decomposition declarations:
1385       //
1386       //  <unqualified-name> ::= DC <source-name>* E
1387       //
1388       // These can never be referenced across translation units, so we do
1389       // not need a cross-vendor mangling for anything other than demanglers.
1390       // Proposed on cxx-abi-dev on 2016-08-12
1391       Out << "DC";
1392       for (auto *BD : DD->bindings())
1393         mangleSourceName(BD->getDeclName().getAsIdentifierInfo());
1394       Out << 'E';
1395       writeAbiTags(ND, AdditionalAbiTags);
1396       break;
1397     }
1398 
1399     if (auto *GD = dyn_cast<MSGuidDecl>(ND)) {
1400       // We follow MSVC in mangling GUID declarations as if they were variables
1401       // with a particular reserved name. Continue the pretense here.
1402       SmallString<sizeof("_GUID_12345678_1234_1234_1234_1234567890ab")> GUID;
1403       llvm::raw_svector_ostream GUIDOS(GUID);
1404       Context.mangleMSGuidDecl(GD, GUIDOS);
1405       Out << GUID.size() << GUID;
1406       break;
1407     }
1408 
1409     if (auto *TPO = dyn_cast<TemplateParamObjectDecl>(ND)) {
1410       // Proposed in https://github.com/itanium-cxx-abi/cxx-abi/issues/63.
1411       Out << "TA";
1412       mangleValueInTemplateArg(TPO->getType().getUnqualifiedType(),
1413                                TPO->getValue(), /*TopLevel=*/true);
1414       break;
1415     }
1416 
1417     if (II) {
1418       // Match GCC's naming convention for internal linkage symbols, for
1419       // symbols that are not actually visible outside of this TU. GCC
1420       // distinguishes between internal and external linkage symbols in
1421       // its mangling, to support cases like this that were valid C++ prior
1422       // to DR426:
1423       //
1424       //   void test() { extern void foo(); }
1425       //   static void foo();
1426       //
1427       // Don't bother with the L marker for names in anonymous namespaces; the
1428       // 12_GLOBAL__N_1 mangling is quite sufficient there, and this better
1429       // matches GCC anyway, because GCC does not treat anonymous namespaces as
1430       // implying internal linkage.
1431       if (isInternalLinkageDecl(ND))
1432         Out << 'L';
1433 
1434       auto *FD = dyn_cast<FunctionDecl>(ND);
1435       bool IsRegCall = FD &&
1436                        FD->getType()->castAs<FunctionType>()->getCallConv() ==
1437                            clang::CC_X86RegCall;
1438       bool IsDeviceStub =
1439           FD && FD->hasAttr<CUDAGlobalAttr>() &&
1440           GD.getKernelReferenceKind() == KernelReferenceKind::Stub;
1441       if (IsDeviceStub)
1442         mangleDeviceStubName(II);
1443       else if (IsRegCall)
1444         mangleRegCallName(II);
1445       else
1446         mangleSourceName(II);
1447 
1448       writeAbiTags(ND, AdditionalAbiTags);
1449       break;
1450     }
1451 
1452     // Otherwise, an anonymous entity.  We must have a declaration.
1453     assert(ND && "mangling empty name without declaration");
1454 
1455     if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
1456       if (NS->isAnonymousNamespace()) {
1457         // This is how gcc mangles these names.
1458         Out << "12_GLOBAL__N_1";
1459         break;
1460       }
1461     }
1462 
1463     if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) {
1464       // We must have an anonymous union or struct declaration.
1465       const RecordDecl *RD = VD->getType()->castAs<RecordType>()->getDecl();
1466 
1467       // Itanium C++ ABI 5.1.2:
1468       //
1469       //   For the purposes of mangling, the name of an anonymous union is
1470       //   considered to be the name of the first named data member found by a
1471       //   pre-order, depth-first, declaration-order walk of the data members of
1472       //   the anonymous union. If there is no such data member (i.e., if all of
1473       //   the data members in the union are unnamed), then there is no way for
1474       //   a program to refer to the anonymous union, and there is therefore no
1475       //   need to mangle its name.
1476       assert(RD->isAnonymousStructOrUnion()
1477              && "Expected anonymous struct or union!");
1478       const FieldDecl *FD = RD->findFirstNamedDataMember();
1479 
1480       // It's actually possible for various reasons for us to get here
1481       // with an empty anonymous struct / union.  Fortunately, it
1482       // doesn't really matter what name we generate.
1483       if (!FD) break;
1484       assert(FD->getIdentifier() && "Data member name isn't an identifier!");
1485 
1486       mangleSourceName(FD->getIdentifier());
1487       // Not emitting abi tags: internal name anyway.
1488       break;
1489     }
1490 
1491     // Class extensions have no name as a category, and it's possible
1492     // for them to be the semantic parent of certain declarations
1493     // (primarily, tag decls defined within declarations).  Such
1494     // declarations will always have internal linkage, so the name
1495     // doesn't really matter, but we shouldn't crash on them.  For
1496     // safety, just handle all ObjC containers here.
1497     if (isa<ObjCContainerDecl>(ND))
1498       break;
1499 
1500     // We must have an anonymous struct.
1501     const TagDecl *TD = cast<TagDecl>(ND);
1502     if (const TypedefNameDecl *D = TD->getTypedefNameForAnonDecl()) {
1503       assert(TD->getDeclContext() == D->getDeclContext() &&
1504              "Typedef should not be in another decl context!");
1505       assert(D->getDeclName().getAsIdentifierInfo() &&
1506              "Typedef was not named!");
1507       mangleSourceName(D->getDeclName().getAsIdentifierInfo());
1508       assert(!AdditionalAbiTags && "Type cannot have additional abi tags");
1509       // Explicit abi tags are still possible; take from underlying type, not
1510       // from typedef.
1511       writeAbiTags(TD, nullptr);
1512       break;
1513     }
1514 
1515     // <unnamed-type-name> ::= <closure-type-name>
1516     //
1517     // <closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _
1518     // <lambda-sig> ::= <template-param-decl>* <parameter-type>+
1519     //     # Parameter types or 'v' for 'void'.
1520     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(TD)) {
1521       if (Record->isLambda() && (Record->getLambdaManglingNumber() ||
1522                                  Context.getDiscriminatorOverride()(
1523                                      Context.getASTContext(), Record))) {
1524         assert(!AdditionalAbiTags &&
1525                "Lambda type cannot have additional abi tags");
1526         mangleLambda(Record);
1527         break;
1528       }
1529     }
1530 
1531     if (TD->isExternallyVisible()) {
1532       unsigned UnnamedMangle = getASTContext().getManglingNumber(TD);
1533       Out << "Ut";
1534       if (UnnamedMangle > 1)
1535         Out << UnnamedMangle - 2;
1536       Out << '_';
1537       writeAbiTags(TD, AdditionalAbiTags);
1538       break;
1539     }
1540 
1541     // Get a unique id for the anonymous struct. If it is not a real output
1542     // ID doesn't matter so use fake one.
1543     unsigned AnonStructId = NullOut ? 0 : Context.getAnonymousStructId(TD);
1544 
1545     // Mangle it as a source name in the form
1546     // [n] $_<id>
1547     // where n is the length of the string.
1548     SmallString<8> Str;
1549     Str += "$_";
1550     Str += llvm::utostr(AnonStructId);
1551 
1552     Out << Str.size();
1553     Out << Str;
1554     break;
1555   }
1556 
1557   case DeclarationName::ObjCZeroArgSelector:
1558   case DeclarationName::ObjCOneArgSelector:
1559   case DeclarationName::ObjCMultiArgSelector:
1560     llvm_unreachable("Can't mangle Objective-C selector names here!");
1561 
1562   case DeclarationName::CXXConstructorName: {
1563     const CXXRecordDecl *InheritedFrom = nullptr;
1564     TemplateName InheritedTemplateName;
1565     const TemplateArgumentList *InheritedTemplateArgs = nullptr;
1566     if (auto Inherited =
1567             cast<CXXConstructorDecl>(ND)->getInheritedConstructor()) {
1568       InheritedFrom = Inherited.getConstructor()->getParent();
1569       InheritedTemplateName =
1570           TemplateName(Inherited.getConstructor()->getPrimaryTemplate());
1571       InheritedTemplateArgs =
1572           Inherited.getConstructor()->getTemplateSpecializationArgs();
1573     }
1574 
1575     if (ND == Structor)
1576       // If the named decl is the C++ constructor we're mangling, use the type
1577       // we were given.
1578       mangleCXXCtorType(static_cast<CXXCtorType>(StructorType), InheritedFrom);
1579     else
1580       // Otherwise, use the complete constructor name. This is relevant if a
1581       // class with a constructor is declared within a constructor.
1582       mangleCXXCtorType(Ctor_Complete, InheritedFrom);
1583 
1584     // FIXME: The template arguments are part of the enclosing prefix or
1585     // nested-name, but it's more convenient to mangle them here.
1586     if (InheritedTemplateArgs)
1587       mangleTemplateArgs(InheritedTemplateName, *InheritedTemplateArgs);
1588 
1589     writeAbiTags(ND, AdditionalAbiTags);
1590     break;
1591   }
1592 
1593   case DeclarationName::CXXDestructorName:
1594     if (ND == Structor)
1595       // If the named decl is the C++ destructor we're mangling, use the type we
1596       // were given.
1597       mangleCXXDtorType(static_cast<CXXDtorType>(StructorType));
1598     else
1599       // Otherwise, use the complete destructor name. This is relevant if a
1600       // class with a destructor is declared within a destructor.
1601       mangleCXXDtorType(Dtor_Complete);
1602     writeAbiTags(ND, AdditionalAbiTags);
1603     break;
1604 
1605   case DeclarationName::CXXOperatorName:
1606     if (ND && Arity == UnknownArity) {
1607       Arity = cast<FunctionDecl>(ND)->getNumParams();
1608 
1609       // If we have a member function, we need to include the 'this' pointer.
1610       if (const auto *MD = dyn_cast<CXXMethodDecl>(ND))
1611         if (!MD->isStatic())
1612           Arity++;
1613     }
1614     LLVM_FALLTHROUGH;
1615   case DeclarationName::CXXConversionFunctionName:
1616   case DeclarationName::CXXLiteralOperatorName:
1617     mangleOperatorName(Name, Arity);
1618     writeAbiTags(ND, AdditionalAbiTags);
1619     break;
1620 
1621   case DeclarationName::CXXDeductionGuideName:
1622     llvm_unreachable("Can't mangle a deduction guide name!");
1623 
1624   case DeclarationName::CXXUsingDirective:
1625     llvm_unreachable("Can't mangle a using directive name!");
1626   }
1627 }
1628 
1629 void CXXNameMangler::mangleRegCallName(const IdentifierInfo *II) {
1630   // <source-name> ::= <positive length number> __regcall3__ <identifier>
1631   // <number> ::= [n] <non-negative decimal integer>
1632   // <identifier> ::= <unqualified source code identifier>
1633   Out << II->getLength() + sizeof("__regcall3__") - 1 << "__regcall3__"
1634       << II->getName();
1635 }
1636 
1637 void CXXNameMangler::mangleDeviceStubName(const IdentifierInfo *II) {
1638   // <source-name> ::= <positive length number> __device_stub__ <identifier>
1639   // <number> ::= [n] <non-negative decimal integer>
1640   // <identifier> ::= <unqualified source code identifier>
1641   Out << II->getLength() + sizeof("__device_stub__") - 1 << "__device_stub__"
1642       << II->getName();
1643 }
1644 
1645 void CXXNameMangler::mangleSourceName(const IdentifierInfo *II) {
1646   // <source-name> ::= <positive length number> <identifier>
1647   // <number> ::= [n] <non-negative decimal integer>
1648   // <identifier> ::= <unqualified source code identifier>
1649   Out << II->getLength() << II->getName();
1650 }
1651 
1652 void CXXNameMangler::mangleNestedName(GlobalDecl GD,
1653                                       const DeclContext *DC,
1654                                       const AbiTagList *AdditionalAbiTags,
1655                                       bool NoFunction) {
1656   const NamedDecl *ND = cast<NamedDecl>(GD.getDecl());
1657   // <nested-name>
1658   //   ::= N [<CV-qualifiers>] [<ref-qualifier>] <prefix> <unqualified-name> E
1659   //   ::= N [<CV-qualifiers>] [<ref-qualifier>] <template-prefix>
1660   //       <template-args> E
1661 
1662   Out << 'N';
1663   if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(ND)) {
1664     Qualifiers MethodQuals = Method->getMethodQualifiers();
1665     // We do not consider restrict a distinguishing attribute for overloading
1666     // purposes so we must not mangle it.
1667     MethodQuals.removeRestrict();
1668     mangleQualifiers(MethodQuals);
1669     mangleRefQualifier(Method->getRefQualifier());
1670   }
1671 
1672   // Check if we have a template.
1673   const TemplateArgumentList *TemplateArgs = nullptr;
1674   if (GlobalDecl TD = isTemplate(GD, TemplateArgs)) {
1675     mangleTemplatePrefix(TD, NoFunction);
1676     mangleTemplateArgs(asTemplateName(TD), *TemplateArgs);
1677   } else {
1678     manglePrefix(DC, NoFunction);
1679     mangleUnqualifiedName(GD, AdditionalAbiTags);
1680   }
1681 
1682   Out << 'E';
1683 }
1684 void CXXNameMangler::mangleNestedName(const TemplateDecl *TD,
1685                                       const TemplateArgument *TemplateArgs,
1686                                       unsigned NumTemplateArgs) {
1687   // <nested-name> ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
1688 
1689   Out << 'N';
1690 
1691   mangleTemplatePrefix(TD);
1692   mangleTemplateArgs(asTemplateName(TD), TemplateArgs, NumTemplateArgs);
1693 
1694   Out << 'E';
1695 }
1696 
1697 void CXXNameMangler::mangleNestedNameWithClosurePrefix(
1698     GlobalDecl GD, const NamedDecl *PrefixND,
1699     const AbiTagList *AdditionalAbiTags) {
1700   // A <closure-prefix> represents a variable or field, not a regular
1701   // DeclContext, so needs special handling. In this case we're mangling a
1702   // limited form of <nested-name>:
1703   //
1704   // <nested-name> ::= N <closure-prefix> <closure-type-name> E
1705 
1706   Out << 'N';
1707 
1708   mangleClosurePrefix(PrefixND);
1709   mangleUnqualifiedName(GD, AdditionalAbiTags);
1710 
1711   Out << 'E';
1712 }
1713 
1714 static GlobalDecl getParentOfLocalEntity(const DeclContext *DC) {
1715   GlobalDecl GD;
1716   // The Itanium spec says:
1717   // For entities in constructors and destructors, the mangling of the
1718   // complete object constructor or destructor is used as the base function
1719   // name, i.e. the C1 or D1 version.
1720   if (auto *CD = dyn_cast<CXXConstructorDecl>(DC))
1721     GD = GlobalDecl(CD, Ctor_Complete);
1722   else if (auto *DD = dyn_cast<CXXDestructorDecl>(DC))
1723     GD = GlobalDecl(DD, Dtor_Complete);
1724   else
1725     GD = GlobalDecl(cast<FunctionDecl>(DC));
1726   return GD;
1727 }
1728 
1729 void CXXNameMangler::mangleLocalName(GlobalDecl GD,
1730                                      const AbiTagList *AdditionalAbiTags) {
1731   const Decl *D = GD.getDecl();
1732   // <local-name> := Z <function encoding> E <entity name> [<discriminator>]
1733   //              := Z <function encoding> E s [<discriminator>]
1734   // <local-name> := Z <function encoding> E d [ <parameter number> ]
1735   //                 _ <entity name>
1736   // <discriminator> := _ <non-negative number>
1737   assert(isa<NamedDecl>(D) || isa<BlockDecl>(D));
1738   const RecordDecl *RD = GetLocalClassDecl(D);
1739   const DeclContext *DC = getEffectiveDeclContext(RD ? RD : D);
1740 
1741   Out << 'Z';
1742 
1743   {
1744     AbiTagState LocalAbiTags(AbiTags);
1745 
1746     if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(DC))
1747       mangleObjCMethodName(MD);
1748     else if (const BlockDecl *BD = dyn_cast<BlockDecl>(DC))
1749       mangleBlockForPrefix(BD);
1750     else
1751       mangleFunctionEncoding(getParentOfLocalEntity(DC));
1752 
1753     // Implicit ABI tags (from namespace) are not available in the following
1754     // entity; reset to actually emitted tags, which are available.
1755     LocalAbiTags.setUsedAbiTags(LocalAbiTags.getEmittedAbiTags());
1756   }
1757 
1758   Out << 'E';
1759 
1760   // GCC 5.3.0 doesn't emit derived ABI tags for local names but that seems to
1761   // be a bug that is fixed in trunk.
1762 
1763   if (RD) {
1764     // The parameter number is omitted for the last parameter, 0 for the
1765     // second-to-last parameter, 1 for the third-to-last parameter, etc. The
1766     // <entity name> will of course contain a <closure-type-name>: Its
1767     // numbering will be local to the particular argument in which it appears
1768     // -- other default arguments do not affect its encoding.
1769     const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD);
1770     if (CXXRD && CXXRD->isLambda()) {
1771       if (const ParmVarDecl *Parm
1772               = dyn_cast_or_null<ParmVarDecl>(CXXRD->getLambdaContextDecl())) {
1773         if (const FunctionDecl *Func
1774               = dyn_cast<FunctionDecl>(Parm->getDeclContext())) {
1775           Out << 'd';
1776           unsigned Num = Func->getNumParams() - Parm->getFunctionScopeIndex();
1777           if (Num > 1)
1778             mangleNumber(Num - 2);
1779           Out << '_';
1780         }
1781       }
1782     }
1783 
1784     // Mangle the name relative to the closest enclosing function.
1785     // equality ok because RD derived from ND above
1786     if (D == RD)  {
1787       mangleUnqualifiedName(RD, AdditionalAbiTags);
1788     } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
1789       if (const NamedDecl *PrefixND = getClosurePrefix(BD))
1790         mangleClosurePrefix(PrefixND, true /*NoFunction*/);
1791       else
1792         manglePrefix(getEffectiveDeclContext(BD), true /*NoFunction*/);
1793       assert(!AdditionalAbiTags && "Block cannot have additional abi tags");
1794       mangleUnqualifiedBlock(BD);
1795     } else {
1796       const NamedDecl *ND = cast<NamedDecl>(D);
1797       mangleNestedName(GD, getEffectiveDeclContext(ND), AdditionalAbiTags,
1798                        true /*NoFunction*/);
1799     }
1800   } else if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
1801     // Mangle a block in a default parameter; see above explanation for
1802     // lambdas.
1803     if (const ParmVarDecl *Parm
1804             = dyn_cast_or_null<ParmVarDecl>(BD->getBlockManglingContextDecl())) {
1805       if (const FunctionDecl *Func
1806             = dyn_cast<FunctionDecl>(Parm->getDeclContext())) {
1807         Out << 'd';
1808         unsigned Num = Func->getNumParams() - Parm->getFunctionScopeIndex();
1809         if (Num > 1)
1810           mangleNumber(Num - 2);
1811         Out << '_';
1812       }
1813     }
1814 
1815     assert(!AdditionalAbiTags && "Block cannot have additional abi tags");
1816     mangleUnqualifiedBlock(BD);
1817   } else {
1818     mangleUnqualifiedName(GD, AdditionalAbiTags);
1819   }
1820 
1821   if (const NamedDecl *ND = dyn_cast<NamedDecl>(RD ? RD : D)) {
1822     unsigned disc;
1823     if (Context.getNextDiscriminator(ND, disc)) {
1824       if (disc < 10)
1825         Out << '_' << disc;
1826       else
1827         Out << "__" << disc << '_';
1828     }
1829   }
1830 }
1831 
1832 void CXXNameMangler::mangleBlockForPrefix(const BlockDecl *Block) {
1833   if (GetLocalClassDecl(Block)) {
1834     mangleLocalName(Block, /* AdditionalAbiTags */ nullptr);
1835     return;
1836   }
1837   const DeclContext *DC = getEffectiveDeclContext(Block);
1838   if (isLocalContainerContext(DC)) {
1839     mangleLocalName(Block, /* AdditionalAbiTags */ nullptr);
1840     return;
1841   }
1842   if (const NamedDecl *PrefixND = getClosurePrefix(Block))
1843     mangleClosurePrefix(PrefixND);
1844   else
1845     manglePrefix(DC);
1846   mangleUnqualifiedBlock(Block);
1847 }
1848 
1849 void CXXNameMangler::mangleUnqualifiedBlock(const BlockDecl *Block) {
1850   // When trying to be ABI-compatibility with clang 12 and before, mangle a
1851   // <data-member-prefix> now, with no substitutions and no <template-args>.
1852   if (Decl *Context = Block->getBlockManglingContextDecl()) {
1853     if (getASTContext().getLangOpts().getClangABICompat() <=
1854             LangOptions::ClangABI::Ver12 &&
1855         (isa<VarDecl>(Context) || isa<FieldDecl>(Context)) &&
1856         Context->getDeclContext()->isRecord()) {
1857       const auto *ND = cast<NamedDecl>(Context);
1858       if (ND->getIdentifier()) {
1859         mangleSourceNameWithAbiTags(ND);
1860         Out << 'M';
1861       }
1862     }
1863   }
1864 
1865   // If we have a block mangling number, use it.
1866   unsigned Number = Block->getBlockManglingNumber();
1867   // Otherwise, just make up a number. It doesn't matter what it is because
1868   // the symbol in question isn't externally visible.
1869   if (!Number)
1870     Number = Context.getBlockId(Block, false);
1871   else {
1872     // Stored mangling numbers are 1-based.
1873     --Number;
1874   }
1875   Out << "Ub";
1876   if (Number > 0)
1877     Out << Number - 1;
1878   Out << '_';
1879 }
1880 
1881 // <template-param-decl>
1882 //   ::= Ty                              # template type parameter
1883 //   ::= Tn <type>                       # template non-type parameter
1884 //   ::= Tt <template-param-decl>* E     # template template parameter
1885 //   ::= Tp <template-param-decl>        # template parameter pack
1886 void CXXNameMangler::mangleTemplateParamDecl(const NamedDecl *Decl) {
1887   if (auto *Ty = dyn_cast<TemplateTypeParmDecl>(Decl)) {
1888     if (Ty->isParameterPack())
1889       Out << "Tp";
1890     Out << "Ty";
1891   } else if (auto *Tn = dyn_cast<NonTypeTemplateParmDecl>(Decl)) {
1892     if (Tn->isExpandedParameterPack()) {
1893       for (unsigned I = 0, N = Tn->getNumExpansionTypes(); I != N; ++I) {
1894         Out << "Tn";
1895         mangleType(Tn->getExpansionType(I));
1896       }
1897     } else {
1898       QualType T = Tn->getType();
1899       if (Tn->isParameterPack()) {
1900         Out << "Tp";
1901         if (auto *PackExpansion = T->getAs<PackExpansionType>())
1902           T = PackExpansion->getPattern();
1903       }
1904       Out << "Tn";
1905       mangleType(T);
1906     }
1907   } else if (auto *Tt = dyn_cast<TemplateTemplateParmDecl>(Decl)) {
1908     if (Tt->isExpandedParameterPack()) {
1909       for (unsigned I = 0, N = Tt->getNumExpansionTemplateParameters(); I != N;
1910            ++I) {
1911         Out << "Tt";
1912         for (auto *Param : *Tt->getExpansionTemplateParameters(I))
1913           mangleTemplateParamDecl(Param);
1914         Out << "E";
1915       }
1916     } else {
1917       if (Tt->isParameterPack())
1918         Out << "Tp";
1919       Out << "Tt";
1920       for (auto *Param : *Tt->getTemplateParameters())
1921         mangleTemplateParamDecl(Param);
1922       Out << "E";
1923     }
1924   }
1925 }
1926 
1927 void CXXNameMangler::mangleLambda(const CXXRecordDecl *Lambda) {
1928   // When trying to be ABI-compatibility with clang 12 and before, mangle a
1929   // <data-member-prefix> now, with no substitutions.
1930   if (Decl *Context = Lambda->getLambdaContextDecl()) {
1931     if (getASTContext().getLangOpts().getClangABICompat() <=
1932             LangOptions::ClangABI::Ver12 &&
1933         (isa<VarDecl>(Context) || isa<FieldDecl>(Context)) &&
1934         !isa<ParmVarDecl>(Context)) {
1935       if (const IdentifierInfo *Name
1936             = cast<NamedDecl>(Context)->getIdentifier()) {
1937         mangleSourceName(Name);
1938         const TemplateArgumentList *TemplateArgs = nullptr;
1939         if (GlobalDecl TD = isTemplate(cast<NamedDecl>(Context), TemplateArgs))
1940           mangleTemplateArgs(asTemplateName(TD), *TemplateArgs);
1941         Out << 'M';
1942       }
1943     }
1944   }
1945 
1946   Out << "Ul";
1947   mangleLambdaSig(Lambda);
1948   Out << "E";
1949 
1950   // The number is omitted for the first closure type with a given
1951   // <lambda-sig> in a given context; it is n-2 for the nth closure type
1952   // (in lexical order) with that same <lambda-sig> and context.
1953   //
1954   // The AST keeps track of the number for us.
1955   //
1956   // In CUDA/HIP, to ensure the consistent lamba numbering between the device-
1957   // and host-side compilations, an extra device mangle context may be created
1958   // if the host-side CXX ABI has different numbering for lambda. In such case,
1959   // if the mangle context is that device-side one, use the device-side lambda
1960   // mangling number for this lambda.
1961   llvm::Optional<unsigned> DeviceNumber =
1962       Context.getDiscriminatorOverride()(Context.getASTContext(), Lambda);
1963   unsigned Number = DeviceNumber.hasValue() ? *DeviceNumber
1964                                             : Lambda->getLambdaManglingNumber();
1965 
1966   assert(Number > 0 && "Lambda should be mangled as an unnamed class");
1967   if (Number > 1)
1968     mangleNumber(Number - 2);
1969   Out << '_';
1970 }
1971 
1972 void CXXNameMangler::mangleLambdaSig(const CXXRecordDecl *Lambda) {
1973   for (auto *D : Lambda->getLambdaExplicitTemplateParameters())
1974     mangleTemplateParamDecl(D);
1975   auto *Proto =
1976       Lambda->getLambdaTypeInfo()->getType()->castAs<FunctionProtoType>();
1977   mangleBareFunctionType(Proto, /*MangleReturnType=*/false,
1978                          Lambda->getLambdaStaticInvoker());
1979 }
1980 
1981 void CXXNameMangler::manglePrefix(NestedNameSpecifier *qualifier) {
1982   switch (qualifier->getKind()) {
1983   case NestedNameSpecifier::Global:
1984     // nothing
1985     return;
1986 
1987   case NestedNameSpecifier::Super:
1988     llvm_unreachable("Can't mangle __super specifier");
1989 
1990   case NestedNameSpecifier::Namespace:
1991     mangleName(qualifier->getAsNamespace());
1992     return;
1993 
1994   case NestedNameSpecifier::NamespaceAlias:
1995     mangleName(qualifier->getAsNamespaceAlias()->getNamespace());
1996     return;
1997 
1998   case NestedNameSpecifier::TypeSpec:
1999   case NestedNameSpecifier::TypeSpecWithTemplate:
2000     manglePrefix(QualType(qualifier->getAsType(), 0));
2001     return;
2002 
2003   case NestedNameSpecifier::Identifier:
2004     // Member expressions can have these without prefixes, but that
2005     // should end up in mangleUnresolvedPrefix instead.
2006     assert(qualifier->getPrefix());
2007     manglePrefix(qualifier->getPrefix());
2008 
2009     mangleSourceName(qualifier->getAsIdentifier());
2010     return;
2011   }
2012 
2013   llvm_unreachable("unexpected nested name specifier");
2014 }
2015 
2016 void CXXNameMangler::manglePrefix(const DeclContext *DC, bool NoFunction) {
2017   //  <prefix> ::= <prefix> <unqualified-name>
2018   //           ::= <template-prefix> <template-args>
2019   //           ::= <closure-prefix>
2020   //           ::= <template-param>
2021   //           ::= # empty
2022   //           ::= <substitution>
2023 
2024   DC = IgnoreLinkageSpecDecls(DC);
2025 
2026   if (DC->isTranslationUnit())
2027     return;
2028 
2029   if (NoFunction && isLocalContainerContext(DC))
2030     return;
2031 
2032   assert(!isLocalContainerContext(DC));
2033 
2034   const NamedDecl *ND = cast<NamedDecl>(DC);
2035   if (mangleSubstitution(ND))
2036     return;
2037 
2038   // Check if we have a template-prefix or a closure-prefix.
2039   const TemplateArgumentList *TemplateArgs = nullptr;
2040   if (GlobalDecl TD = isTemplate(ND, TemplateArgs)) {
2041     mangleTemplatePrefix(TD);
2042     mangleTemplateArgs(asTemplateName(TD), *TemplateArgs);
2043   } else if (const NamedDecl *PrefixND = getClosurePrefix(ND)) {
2044     mangleClosurePrefix(PrefixND, NoFunction);
2045     mangleUnqualifiedName(ND, nullptr);
2046   } else {
2047     manglePrefix(getEffectiveDeclContext(ND), NoFunction);
2048     mangleUnqualifiedName(ND, nullptr);
2049   }
2050 
2051   addSubstitution(ND);
2052 }
2053 
2054 void CXXNameMangler::mangleTemplatePrefix(TemplateName Template) {
2055   // <template-prefix> ::= <prefix> <template unqualified-name>
2056   //                   ::= <template-param>
2057   //                   ::= <substitution>
2058   if (TemplateDecl *TD = Template.getAsTemplateDecl())
2059     return mangleTemplatePrefix(TD);
2060 
2061   DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
2062   assert(Dependent && "unexpected template name kind");
2063 
2064   // Clang 11 and before mangled the substitution for a dependent template name
2065   // after already having emitted (a substitution for) the prefix.
2066   bool Clang11Compat = getASTContext().getLangOpts().getClangABICompat() <=
2067                        LangOptions::ClangABI::Ver11;
2068   if (!Clang11Compat && mangleSubstitution(Template))
2069     return;
2070 
2071   if (NestedNameSpecifier *Qualifier = Dependent->getQualifier())
2072     manglePrefix(Qualifier);
2073 
2074   if (Clang11Compat && mangleSubstitution(Template))
2075     return;
2076 
2077   if (const IdentifierInfo *Id = Dependent->getIdentifier())
2078     mangleSourceName(Id);
2079   else
2080     mangleOperatorName(Dependent->getOperator(), UnknownArity);
2081 
2082   addSubstitution(Template);
2083 }
2084 
2085 void CXXNameMangler::mangleTemplatePrefix(GlobalDecl GD,
2086                                           bool NoFunction) {
2087   const TemplateDecl *ND = cast<TemplateDecl>(GD.getDecl());
2088   // <template-prefix> ::= <prefix> <template unqualified-name>
2089   //                   ::= <template-param>
2090   //                   ::= <substitution>
2091   // <template-template-param> ::= <template-param>
2092   //                               <substitution>
2093 
2094   if (mangleSubstitution(ND))
2095     return;
2096 
2097   // <template-template-param> ::= <template-param>
2098   if (const auto *TTP = dyn_cast<TemplateTemplateParmDecl>(ND)) {
2099     mangleTemplateParameter(TTP->getDepth(), TTP->getIndex());
2100   } else {
2101     manglePrefix(getEffectiveDeclContext(ND), NoFunction);
2102     if (isa<BuiltinTemplateDecl>(ND) || isa<ConceptDecl>(ND))
2103       mangleUnqualifiedName(GD, nullptr);
2104     else
2105       mangleUnqualifiedName(GD.getWithDecl(ND->getTemplatedDecl()), nullptr);
2106   }
2107 
2108   addSubstitution(ND);
2109 }
2110 
2111 const NamedDecl *CXXNameMangler::getClosurePrefix(const Decl *ND) {
2112   if (getASTContext().getLangOpts().getClangABICompat() <=
2113       LangOptions::ClangABI::Ver12)
2114     return nullptr;
2115 
2116   const NamedDecl *Context = nullptr;
2117   if (auto *Block = dyn_cast<BlockDecl>(ND)) {
2118     Context = dyn_cast_or_null<NamedDecl>(Block->getBlockManglingContextDecl());
2119   } else if (auto *RD = dyn_cast<CXXRecordDecl>(ND)) {
2120     if (RD->isLambda())
2121       Context = dyn_cast_or_null<NamedDecl>(RD->getLambdaContextDecl());
2122   }
2123   if (!Context)
2124     return nullptr;
2125 
2126   // Only lambdas within the initializer of a non-local variable or non-static
2127   // data member get a <closure-prefix>.
2128   if ((isa<VarDecl>(Context) && cast<VarDecl>(Context)->hasGlobalStorage()) ||
2129       isa<FieldDecl>(Context))
2130     return Context;
2131 
2132   return nullptr;
2133 }
2134 
2135 void CXXNameMangler::mangleClosurePrefix(const NamedDecl *ND, bool NoFunction) {
2136   //  <closure-prefix> ::= [ <prefix> ] <unqualified-name> M
2137   //                   ::= <template-prefix> <template-args> M
2138   if (mangleSubstitution(ND))
2139     return;
2140 
2141   const TemplateArgumentList *TemplateArgs = nullptr;
2142   if (GlobalDecl TD = isTemplate(ND, TemplateArgs)) {
2143     mangleTemplatePrefix(TD, NoFunction);
2144     mangleTemplateArgs(asTemplateName(TD), *TemplateArgs);
2145   } else {
2146     manglePrefix(getEffectiveDeclContext(ND), NoFunction);
2147     mangleUnqualifiedName(ND, nullptr);
2148   }
2149 
2150   Out << 'M';
2151 
2152   addSubstitution(ND);
2153 }
2154 
2155 /// Mangles a template name under the production <type>.  Required for
2156 /// template template arguments.
2157 ///   <type> ::= <class-enum-type>
2158 ///          ::= <template-param>
2159 ///          ::= <substitution>
2160 void CXXNameMangler::mangleType(TemplateName TN) {
2161   if (mangleSubstitution(TN))
2162     return;
2163 
2164   TemplateDecl *TD = nullptr;
2165 
2166   switch (TN.getKind()) {
2167   case TemplateName::QualifiedTemplate:
2168     TD = TN.getAsQualifiedTemplateName()->getTemplateDecl();
2169     goto HaveDecl;
2170 
2171   case TemplateName::Template:
2172     TD = TN.getAsTemplateDecl();
2173     goto HaveDecl;
2174 
2175   HaveDecl:
2176     if (auto *TTP = dyn_cast<TemplateTemplateParmDecl>(TD))
2177       mangleTemplateParameter(TTP->getDepth(), TTP->getIndex());
2178     else
2179       mangleName(TD);
2180     break;
2181 
2182   case TemplateName::OverloadedTemplate:
2183   case TemplateName::AssumedTemplate:
2184     llvm_unreachable("can't mangle an overloaded template name as a <type>");
2185 
2186   case TemplateName::DependentTemplate: {
2187     const DependentTemplateName *Dependent = TN.getAsDependentTemplateName();
2188     assert(Dependent->isIdentifier());
2189 
2190     // <class-enum-type> ::= <name>
2191     // <name> ::= <nested-name>
2192     mangleUnresolvedPrefix(Dependent->getQualifier());
2193     mangleSourceName(Dependent->getIdentifier());
2194     break;
2195   }
2196 
2197   case TemplateName::SubstTemplateTemplateParm: {
2198     // Substituted template parameters are mangled as the substituted
2199     // template.  This will check for the substitution twice, which is
2200     // fine, but we have to return early so that we don't try to *add*
2201     // the substitution twice.
2202     SubstTemplateTemplateParmStorage *subst
2203       = TN.getAsSubstTemplateTemplateParm();
2204     mangleType(subst->getReplacement());
2205     return;
2206   }
2207 
2208   case TemplateName::SubstTemplateTemplateParmPack: {
2209     // FIXME: not clear how to mangle this!
2210     // template <template <class> class T...> class A {
2211     //   template <template <class> class U...> void foo(B<T,U> x...);
2212     // };
2213     Out << "_SUBSTPACK_";
2214     break;
2215   }
2216   }
2217 
2218   addSubstitution(TN);
2219 }
2220 
2221 bool CXXNameMangler::mangleUnresolvedTypeOrSimpleId(QualType Ty,
2222                                                     StringRef Prefix) {
2223   // Only certain other types are valid as prefixes;  enumerate them.
2224   switch (Ty->getTypeClass()) {
2225   case Type::Builtin:
2226   case Type::Complex:
2227   case Type::Adjusted:
2228   case Type::Decayed:
2229   case Type::Pointer:
2230   case Type::BlockPointer:
2231   case Type::LValueReference:
2232   case Type::RValueReference:
2233   case Type::MemberPointer:
2234   case Type::ConstantArray:
2235   case Type::IncompleteArray:
2236   case Type::VariableArray:
2237   case Type::DependentSizedArray:
2238   case Type::DependentAddressSpace:
2239   case Type::DependentVector:
2240   case Type::DependentSizedExtVector:
2241   case Type::Vector:
2242   case Type::ExtVector:
2243   case Type::ConstantMatrix:
2244   case Type::DependentSizedMatrix:
2245   case Type::FunctionProto:
2246   case Type::FunctionNoProto:
2247   case Type::Paren:
2248   case Type::Attributed:
2249   case Type::Auto:
2250   case Type::DeducedTemplateSpecialization:
2251   case Type::PackExpansion:
2252   case Type::ObjCObject:
2253   case Type::ObjCInterface:
2254   case Type::ObjCObjectPointer:
2255   case Type::ObjCTypeParam:
2256   case Type::Atomic:
2257   case Type::Pipe:
2258   case Type::MacroQualified:
2259   case Type::ExtInt:
2260   case Type::DependentExtInt:
2261     llvm_unreachable("type is illegal as a nested name specifier");
2262 
2263   case Type::SubstTemplateTypeParmPack:
2264     // FIXME: not clear how to mangle this!
2265     // template <class T...> class A {
2266     //   template <class U...> void foo(decltype(T::foo(U())) x...);
2267     // };
2268     Out << "_SUBSTPACK_";
2269     break;
2270 
2271   // <unresolved-type> ::= <template-param>
2272   //                   ::= <decltype>
2273   //                   ::= <template-template-param> <template-args>
2274   // (this last is not official yet)
2275   case Type::TypeOfExpr:
2276   case Type::TypeOf:
2277   case Type::Decltype:
2278   case Type::TemplateTypeParm:
2279   case Type::UnaryTransform:
2280   case Type::SubstTemplateTypeParm:
2281   unresolvedType:
2282     // Some callers want a prefix before the mangled type.
2283     Out << Prefix;
2284 
2285     // This seems to do everything we want.  It's not really
2286     // sanctioned for a substituted template parameter, though.
2287     mangleType(Ty);
2288 
2289     // We never want to print 'E' directly after an unresolved-type,
2290     // so we return directly.
2291     return true;
2292 
2293   case Type::Typedef:
2294     mangleSourceNameWithAbiTags(cast<TypedefType>(Ty)->getDecl());
2295     break;
2296 
2297   case Type::UnresolvedUsing:
2298     mangleSourceNameWithAbiTags(
2299         cast<UnresolvedUsingType>(Ty)->getDecl());
2300     break;
2301 
2302   case Type::Enum:
2303   case Type::Record:
2304     mangleSourceNameWithAbiTags(cast<TagType>(Ty)->getDecl());
2305     break;
2306 
2307   case Type::TemplateSpecialization: {
2308     const TemplateSpecializationType *TST =
2309         cast<TemplateSpecializationType>(Ty);
2310     TemplateName TN = TST->getTemplateName();
2311     switch (TN.getKind()) {
2312     case TemplateName::Template:
2313     case TemplateName::QualifiedTemplate: {
2314       TemplateDecl *TD = TN.getAsTemplateDecl();
2315 
2316       // If the base is a template template parameter, this is an
2317       // unresolved type.
2318       assert(TD && "no template for template specialization type");
2319       if (isa<TemplateTemplateParmDecl>(TD))
2320         goto unresolvedType;
2321 
2322       mangleSourceNameWithAbiTags(TD);
2323       break;
2324     }
2325 
2326     case TemplateName::OverloadedTemplate:
2327     case TemplateName::AssumedTemplate:
2328     case TemplateName::DependentTemplate:
2329       llvm_unreachable("invalid base for a template specialization type");
2330 
2331     case TemplateName::SubstTemplateTemplateParm: {
2332       SubstTemplateTemplateParmStorage *subst =
2333           TN.getAsSubstTemplateTemplateParm();
2334       mangleExistingSubstitution(subst->getReplacement());
2335       break;
2336     }
2337 
2338     case TemplateName::SubstTemplateTemplateParmPack: {
2339       // FIXME: not clear how to mangle this!
2340       // template <template <class U> class T...> class A {
2341       //   template <class U...> void foo(decltype(T<U>::foo) x...);
2342       // };
2343       Out << "_SUBSTPACK_";
2344       break;
2345     }
2346     }
2347 
2348     // Note: we don't pass in the template name here. We are mangling the
2349     // original source-level template arguments, so we shouldn't consider
2350     // conversions to the corresponding template parameter.
2351     // FIXME: Other compilers mangle partially-resolved template arguments in
2352     // unresolved-qualifier-levels.
2353     mangleTemplateArgs(TemplateName(), TST->getArgs(), TST->getNumArgs());
2354     break;
2355   }
2356 
2357   case Type::InjectedClassName:
2358     mangleSourceNameWithAbiTags(
2359         cast<InjectedClassNameType>(Ty)->getDecl());
2360     break;
2361 
2362   case Type::DependentName:
2363     mangleSourceName(cast<DependentNameType>(Ty)->getIdentifier());
2364     break;
2365 
2366   case Type::DependentTemplateSpecialization: {
2367     const DependentTemplateSpecializationType *DTST =
2368         cast<DependentTemplateSpecializationType>(Ty);
2369     TemplateName Template = getASTContext().getDependentTemplateName(
2370         DTST->getQualifier(), DTST->getIdentifier());
2371     mangleSourceName(DTST->getIdentifier());
2372     mangleTemplateArgs(Template, DTST->getArgs(), DTST->getNumArgs());
2373     break;
2374   }
2375 
2376   case Type::Elaborated:
2377     return mangleUnresolvedTypeOrSimpleId(
2378         cast<ElaboratedType>(Ty)->getNamedType(), Prefix);
2379   }
2380 
2381   return false;
2382 }
2383 
2384 void CXXNameMangler::mangleOperatorName(DeclarationName Name, unsigned Arity) {
2385   switch (Name.getNameKind()) {
2386   case DeclarationName::CXXConstructorName:
2387   case DeclarationName::CXXDestructorName:
2388   case DeclarationName::CXXDeductionGuideName:
2389   case DeclarationName::CXXUsingDirective:
2390   case DeclarationName::Identifier:
2391   case DeclarationName::ObjCMultiArgSelector:
2392   case DeclarationName::ObjCOneArgSelector:
2393   case DeclarationName::ObjCZeroArgSelector:
2394     llvm_unreachable("Not an operator name");
2395 
2396   case DeclarationName::CXXConversionFunctionName:
2397     // <operator-name> ::= cv <type>    # (cast)
2398     Out << "cv";
2399     mangleType(Name.getCXXNameType());
2400     break;
2401 
2402   case DeclarationName::CXXLiteralOperatorName:
2403     Out << "li";
2404     mangleSourceName(Name.getCXXLiteralIdentifier());
2405     return;
2406 
2407   case DeclarationName::CXXOperatorName:
2408     mangleOperatorName(Name.getCXXOverloadedOperator(), Arity);
2409     break;
2410   }
2411 }
2412 
2413 void
2414 CXXNameMangler::mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity) {
2415   switch (OO) {
2416   // <operator-name> ::= nw     # new
2417   case OO_New: Out << "nw"; break;
2418   //              ::= na        # new[]
2419   case OO_Array_New: Out << "na"; break;
2420   //              ::= dl        # delete
2421   case OO_Delete: Out << "dl"; break;
2422   //              ::= da        # delete[]
2423   case OO_Array_Delete: Out << "da"; break;
2424   //              ::= ps        # + (unary)
2425   //              ::= pl        # + (binary or unknown)
2426   case OO_Plus:
2427     Out << (Arity == 1? "ps" : "pl"); break;
2428   //              ::= ng        # - (unary)
2429   //              ::= mi        # - (binary or unknown)
2430   case OO_Minus:
2431     Out << (Arity == 1? "ng" : "mi"); break;
2432   //              ::= ad        # & (unary)
2433   //              ::= an        # & (binary or unknown)
2434   case OO_Amp:
2435     Out << (Arity == 1? "ad" : "an"); break;
2436   //              ::= de        # * (unary)
2437   //              ::= ml        # * (binary or unknown)
2438   case OO_Star:
2439     // Use binary when unknown.
2440     Out << (Arity == 1? "de" : "ml"); break;
2441   //              ::= co        # ~
2442   case OO_Tilde: Out << "co"; break;
2443   //              ::= dv        # /
2444   case OO_Slash: Out << "dv"; break;
2445   //              ::= rm        # %
2446   case OO_Percent: Out << "rm"; break;
2447   //              ::= or        # |
2448   case OO_Pipe: Out << "or"; break;
2449   //              ::= eo        # ^
2450   case OO_Caret: Out << "eo"; break;
2451   //              ::= aS        # =
2452   case OO_Equal: Out << "aS"; break;
2453   //              ::= pL        # +=
2454   case OO_PlusEqual: Out << "pL"; break;
2455   //              ::= mI        # -=
2456   case OO_MinusEqual: Out << "mI"; break;
2457   //              ::= mL        # *=
2458   case OO_StarEqual: Out << "mL"; break;
2459   //              ::= dV        # /=
2460   case OO_SlashEqual: Out << "dV"; break;
2461   //              ::= rM        # %=
2462   case OO_PercentEqual: Out << "rM"; break;
2463   //              ::= aN        # &=
2464   case OO_AmpEqual: Out << "aN"; break;
2465   //              ::= oR        # |=
2466   case OO_PipeEqual: Out << "oR"; break;
2467   //              ::= eO        # ^=
2468   case OO_CaretEqual: Out << "eO"; break;
2469   //              ::= ls        # <<
2470   case OO_LessLess: Out << "ls"; break;
2471   //              ::= rs        # >>
2472   case OO_GreaterGreater: Out << "rs"; break;
2473   //              ::= lS        # <<=
2474   case OO_LessLessEqual: Out << "lS"; break;
2475   //              ::= rS        # >>=
2476   case OO_GreaterGreaterEqual: Out << "rS"; break;
2477   //              ::= eq        # ==
2478   case OO_EqualEqual: Out << "eq"; break;
2479   //              ::= ne        # !=
2480   case OO_ExclaimEqual: Out << "ne"; break;
2481   //              ::= lt        # <
2482   case OO_Less: Out << "lt"; break;
2483   //              ::= gt        # >
2484   case OO_Greater: Out << "gt"; break;
2485   //              ::= le        # <=
2486   case OO_LessEqual: Out << "le"; break;
2487   //              ::= ge        # >=
2488   case OO_GreaterEqual: Out << "ge"; break;
2489   //              ::= nt        # !
2490   case OO_Exclaim: Out << "nt"; break;
2491   //              ::= aa        # &&
2492   case OO_AmpAmp: Out << "aa"; break;
2493   //              ::= oo        # ||
2494   case OO_PipePipe: Out << "oo"; break;
2495   //              ::= pp        # ++
2496   case OO_PlusPlus: Out << "pp"; break;
2497   //              ::= mm        # --
2498   case OO_MinusMinus: Out << "mm"; break;
2499   //              ::= cm        # ,
2500   case OO_Comma: Out << "cm"; break;
2501   //              ::= pm        # ->*
2502   case OO_ArrowStar: Out << "pm"; break;
2503   //              ::= pt        # ->
2504   case OO_Arrow: Out << "pt"; break;
2505   //              ::= cl        # ()
2506   case OO_Call: Out << "cl"; break;
2507   //              ::= ix        # []
2508   case OO_Subscript: Out << "ix"; break;
2509 
2510   //              ::= qu        # ?
2511   // The conditional operator can't be overloaded, but we still handle it when
2512   // mangling expressions.
2513   case OO_Conditional: Out << "qu"; break;
2514   // Proposal on cxx-abi-dev, 2015-10-21.
2515   //              ::= aw        # co_await
2516   case OO_Coawait: Out << "aw"; break;
2517   // Proposed in cxx-abi github issue 43.
2518   //              ::= ss        # <=>
2519   case OO_Spaceship: Out << "ss"; break;
2520 
2521   case OO_None:
2522   case NUM_OVERLOADED_OPERATORS:
2523     llvm_unreachable("Not an overloaded operator");
2524   }
2525 }
2526 
2527 void CXXNameMangler::mangleQualifiers(Qualifiers Quals, const DependentAddressSpaceType *DAST) {
2528   // Vendor qualifiers come first and if they are order-insensitive they must
2529   // be emitted in reversed alphabetical order, see Itanium ABI 5.1.5.
2530 
2531   // <type> ::= U <addrspace-expr>
2532   if (DAST) {
2533     Out << "U2ASI";
2534     mangleExpression(DAST->getAddrSpaceExpr());
2535     Out << "E";
2536   }
2537 
2538   // Address space qualifiers start with an ordinary letter.
2539   if (Quals.hasAddressSpace()) {
2540     // Address space extension:
2541     //
2542     //   <type> ::= U <target-addrspace>
2543     //   <type> ::= U <OpenCL-addrspace>
2544     //   <type> ::= U <CUDA-addrspace>
2545 
2546     SmallString<64> ASString;
2547     LangAS AS = Quals.getAddressSpace();
2548 
2549     if (Context.getASTContext().addressSpaceMapManglingFor(AS)) {
2550       //  <target-addrspace> ::= "AS" <address-space-number>
2551       unsigned TargetAS = Context.getASTContext().getTargetAddressSpace(AS);
2552       if (TargetAS != 0 ||
2553           Context.getASTContext().getTargetAddressSpace(LangAS::Default) != 0)
2554         ASString = "AS" + llvm::utostr(TargetAS);
2555     } else {
2556       switch (AS) {
2557       default: llvm_unreachable("Not a language specific address space");
2558       //  <OpenCL-addrspace> ::= "CL" [ "global" | "local" | "constant" |
2559       //                                "private"| "generic" | "device" |
2560       //                                "host" ]
2561       case LangAS::opencl_global:
2562         ASString = "CLglobal";
2563         break;
2564       case LangAS::opencl_global_device:
2565         ASString = "CLdevice";
2566         break;
2567       case LangAS::opencl_global_host:
2568         ASString = "CLhost";
2569         break;
2570       case LangAS::opencl_local:
2571         ASString = "CLlocal";
2572         break;
2573       case LangAS::opencl_constant:
2574         ASString = "CLconstant";
2575         break;
2576       case LangAS::opencl_private:
2577         ASString = "CLprivate";
2578         break;
2579       case LangAS::opencl_generic:
2580         ASString = "CLgeneric";
2581         break;
2582       //  <SYCL-addrspace> ::= "SY" [ "global" | "local" | "private" |
2583       //                              "device" | "host" ]
2584       case LangAS::sycl_global:
2585         ASString = "SYglobal";
2586         break;
2587       case LangAS::sycl_global_device:
2588         ASString = "SYdevice";
2589         break;
2590       case LangAS::sycl_global_host:
2591         ASString = "SYhost";
2592         break;
2593       case LangAS::sycl_local:
2594         ASString = "SYlocal";
2595         break;
2596       case LangAS::sycl_private:
2597         ASString = "SYprivate";
2598         break;
2599       //  <CUDA-addrspace> ::= "CU" [ "device" | "constant" | "shared" ]
2600       case LangAS::cuda_device:
2601         ASString = "CUdevice";
2602         break;
2603       case LangAS::cuda_constant:
2604         ASString = "CUconstant";
2605         break;
2606       case LangAS::cuda_shared:
2607         ASString = "CUshared";
2608         break;
2609       //  <ptrsize-addrspace> ::= [ "ptr32_sptr" | "ptr32_uptr" | "ptr64" ]
2610       case LangAS::ptr32_sptr:
2611         ASString = "ptr32_sptr";
2612         break;
2613       case LangAS::ptr32_uptr:
2614         ASString = "ptr32_uptr";
2615         break;
2616       case LangAS::ptr64:
2617         ASString = "ptr64";
2618         break;
2619       }
2620     }
2621     if (!ASString.empty())
2622       mangleVendorQualifier(ASString);
2623   }
2624 
2625   // The ARC ownership qualifiers start with underscores.
2626   // Objective-C ARC Extension:
2627   //
2628   //   <type> ::= U "__strong"
2629   //   <type> ::= U "__weak"
2630   //   <type> ::= U "__autoreleasing"
2631   //
2632   // Note: we emit __weak first to preserve the order as
2633   // required by the Itanium ABI.
2634   if (Quals.getObjCLifetime() == Qualifiers::OCL_Weak)
2635     mangleVendorQualifier("__weak");
2636 
2637   // __unaligned (from -fms-extensions)
2638   if (Quals.hasUnaligned())
2639     mangleVendorQualifier("__unaligned");
2640 
2641   // Remaining ARC ownership qualifiers.
2642   switch (Quals.getObjCLifetime()) {
2643   case Qualifiers::OCL_None:
2644     break;
2645 
2646   case Qualifiers::OCL_Weak:
2647     // Do nothing as we already handled this case above.
2648     break;
2649 
2650   case Qualifiers::OCL_Strong:
2651     mangleVendorQualifier("__strong");
2652     break;
2653 
2654   case Qualifiers::OCL_Autoreleasing:
2655     mangleVendorQualifier("__autoreleasing");
2656     break;
2657 
2658   case Qualifiers::OCL_ExplicitNone:
2659     // The __unsafe_unretained qualifier is *not* mangled, so that
2660     // __unsafe_unretained types in ARC produce the same manglings as the
2661     // equivalent (but, naturally, unqualified) types in non-ARC, providing
2662     // better ABI compatibility.
2663     //
2664     // It's safe to do this because unqualified 'id' won't show up
2665     // in any type signatures that need to be mangled.
2666     break;
2667   }
2668 
2669   // <CV-qualifiers> ::= [r] [V] [K]    # restrict (C99), volatile, const
2670   if (Quals.hasRestrict())
2671     Out << 'r';
2672   if (Quals.hasVolatile())
2673     Out << 'V';
2674   if (Quals.hasConst())
2675     Out << 'K';
2676 }
2677 
2678 void CXXNameMangler::mangleVendorQualifier(StringRef name) {
2679   Out << 'U' << name.size() << name;
2680 }
2681 
2682 void CXXNameMangler::mangleRefQualifier(RefQualifierKind RefQualifier) {
2683   // <ref-qualifier> ::= R                # lvalue reference
2684   //                 ::= O                # rvalue-reference
2685   switch (RefQualifier) {
2686   case RQ_None:
2687     break;
2688 
2689   case RQ_LValue:
2690     Out << 'R';
2691     break;
2692 
2693   case RQ_RValue:
2694     Out << 'O';
2695     break;
2696   }
2697 }
2698 
2699 void CXXNameMangler::mangleObjCMethodName(const ObjCMethodDecl *MD) {
2700   Context.mangleObjCMethodNameAsSourceName(MD, Out);
2701 }
2702 
2703 static bool isTypeSubstitutable(Qualifiers Quals, const Type *Ty,
2704                                 ASTContext &Ctx) {
2705   if (Quals)
2706     return true;
2707   if (Ty->isSpecificBuiltinType(BuiltinType::ObjCSel))
2708     return true;
2709   if (Ty->isOpenCLSpecificType())
2710     return true;
2711   if (Ty->isBuiltinType())
2712     return false;
2713   // Through to Clang 6.0, we accidentally treated undeduced auto types as
2714   // substitution candidates.
2715   if (Ctx.getLangOpts().getClangABICompat() > LangOptions::ClangABI::Ver6 &&
2716       isa<AutoType>(Ty))
2717     return false;
2718   // A placeholder type for class template deduction is substitutable with
2719   // its corresponding template name; this is handled specially when mangling
2720   // the type.
2721   if (auto *DeducedTST = Ty->getAs<DeducedTemplateSpecializationType>())
2722     if (DeducedTST->getDeducedType().isNull())
2723       return false;
2724   return true;
2725 }
2726 
2727 void CXXNameMangler::mangleType(QualType T) {
2728   // If our type is instantiation-dependent but not dependent, we mangle
2729   // it as it was written in the source, removing any top-level sugar.
2730   // Otherwise, use the canonical type.
2731   //
2732   // FIXME: This is an approximation of the instantiation-dependent name
2733   // mangling rules, since we should really be using the type as written and
2734   // augmented via semantic analysis (i.e., with implicit conversions and
2735   // default template arguments) for any instantiation-dependent type.
2736   // Unfortunately, that requires several changes to our AST:
2737   //   - Instantiation-dependent TemplateSpecializationTypes will need to be
2738   //     uniqued, so that we can handle substitutions properly
2739   //   - Default template arguments will need to be represented in the
2740   //     TemplateSpecializationType, since they need to be mangled even though
2741   //     they aren't written.
2742   //   - Conversions on non-type template arguments need to be expressed, since
2743   //     they can affect the mangling of sizeof/alignof.
2744   //
2745   // FIXME: This is wrong when mapping to the canonical type for a dependent
2746   // type discards instantiation-dependent portions of the type, such as for:
2747   //
2748   //   template<typename T, int N> void f(T (&)[sizeof(N)]);
2749   //   template<typename T> void f(T() throw(typename T::type)); (pre-C++17)
2750   //
2751   // It's also wrong in the opposite direction when instantiation-dependent,
2752   // canonically-equivalent types differ in some irrelevant portion of inner
2753   // type sugar. In such cases, we fail to form correct substitutions, eg:
2754   //
2755   //   template<int N> void f(A<sizeof(N)> *, A<sizeof(N)> (*));
2756   //
2757   // We should instead canonicalize the non-instantiation-dependent parts,
2758   // regardless of whether the type as a whole is dependent or instantiation
2759   // dependent.
2760   if (!T->isInstantiationDependentType() || T->isDependentType())
2761     T = T.getCanonicalType();
2762   else {
2763     // Desugar any types that are purely sugar.
2764     do {
2765       // Don't desugar through template specialization types that aren't
2766       // type aliases. We need to mangle the template arguments as written.
2767       if (const TemplateSpecializationType *TST
2768                                       = dyn_cast<TemplateSpecializationType>(T))
2769         if (!TST->isTypeAlias())
2770           break;
2771 
2772       // FIXME: We presumably shouldn't strip off ElaboratedTypes with
2773       // instantation-dependent qualifiers. See
2774       // https://github.com/itanium-cxx-abi/cxx-abi/issues/114.
2775 
2776       QualType Desugared
2777         = T.getSingleStepDesugaredType(Context.getASTContext());
2778       if (Desugared == T)
2779         break;
2780 
2781       T = Desugared;
2782     } while (true);
2783   }
2784   SplitQualType split = T.split();
2785   Qualifiers quals = split.Quals;
2786   const Type *ty = split.Ty;
2787 
2788   bool isSubstitutable =
2789     isTypeSubstitutable(quals, ty, Context.getASTContext());
2790   if (isSubstitutable && mangleSubstitution(T))
2791     return;
2792 
2793   // If we're mangling a qualified array type, push the qualifiers to
2794   // the element type.
2795   if (quals && isa<ArrayType>(T)) {
2796     ty = Context.getASTContext().getAsArrayType(T);
2797     quals = Qualifiers();
2798 
2799     // Note that we don't update T: we want to add the
2800     // substitution at the original type.
2801   }
2802 
2803   if (quals || ty->isDependentAddressSpaceType()) {
2804     if (const DependentAddressSpaceType *DAST =
2805         dyn_cast<DependentAddressSpaceType>(ty)) {
2806       SplitQualType splitDAST = DAST->getPointeeType().split();
2807       mangleQualifiers(splitDAST.Quals, DAST);
2808       mangleType(QualType(splitDAST.Ty, 0));
2809     } else {
2810       mangleQualifiers(quals);
2811 
2812       // Recurse:  even if the qualified type isn't yet substitutable,
2813       // the unqualified type might be.
2814       mangleType(QualType(ty, 0));
2815     }
2816   } else {
2817     switch (ty->getTypeClass()) {
2818 #define ABSTRACT_TYPE(CLASS, PARENT)
2819 #define NON_CANONICAL_TYPE(CLASS, PARENT) \
2820     case Type::CLASS: \
2821       llvm_unreachable("can't mangle non-canonical type " #CLASS "Type"); \
2822       return;
2823 #define TYPE(CLASS, PARENT) \
2824     case Type::CLASS: \
2825       mangleType(static_cast<const CLASS##Type*>(ty)); \
2826       break;
2827 #include "clang/AST/TypeNodes.inc"
2828     }
2829   }
2830 
2831   // Add the substitution.
2832   if (isSubstitutable)
2833     addSubstitution(T);
2834 }
2835 
2836 void CXXNameMangler::mangleNameOrStandardSubstitution(const NamedDecl *ND) {
2837   if (!mangleStandardSubstitution(ND))
2838     mangleName(ND);
2839 }
2840 
2841 void CXXNameMangler::mangleType(const BuiltinType *T) {
2842   //  <type>         ::= <builtin-type>
2843   //  <builtin-type> ::= v  # void
2844   //                 ::= w  # wchar_t
2845   //                 ::= b  # bool
2846   //                 ::= c  # char
2847   //                 ::= a  # signed char
2848   //                 ::= h  # unsigned char
2849   //                 ::= s  # short
2850   //                 ::= t  # unsigned short
2851   //                 ::= i  # int
2852   //                 ::= j  # unsigned int
2853   //                 ::= l  # long
2854   //                 ::= m  # unsigned long
2855   //                 ::= x  # long long, __int64
2856   //                 ::= y  # unsigned long long, __int64
2857   //                 ::= n  # __int128
2858   //                 ::= o  # unsigned __int128
2859   //                 ::= f  # float
2860   //                 ::= d  # double
2861   //                 ::= e  # long double, __float80
2862   //                 ::= g  # __float128
2863   //                 ::= g  # __ibm128
2864   // UNSUPPORTED:    ::= Dd # IEEE 754r decimal floating point (64 bits)
2865   // UNSUPPORTED:    ::= De # IEEE 754r decimal floating point (128 bits)
2866   // UNSUPPORTED:    ::= Df # IEEE 754r decimal floating point (32 bits)
2867   //                 ::= Dh # IEEE 754r half-precision floating point (16 bits)
2868   //                 ::= DF <number> _ # ISO/IEC TS 18661 binary floating point type _FloatN (N bits);
2869   //                 ::= Di # char32_t
2870   //                 ::= Ds # char16_t
2871   //                 ::= Dn # std::nullptr_t (i.e., decltype(nullptr))
2872   //                 ::= u <source-name>    # vendor extended type
2873   std::string type_name;
2874   switch (T->getKind()) {
2875   case BuiltinType::Void:
2876     Out << 'v';
2877     break;
2878   case BuiltinType::Bool:
2879     Out << 'b';
2880     break;
2881   case BuiltinType::Char_U:
2882   case BuiltinType::Char_S:
2883     Out << 'c';
2884     break;
2885   case BuiltinType::UChar:
2886     Out << 'h';
2887     break;
2888   case BuiltinType::UShort:
2889     Out << 't';
2890     break;
2891   case BuiltinType::UInt:
2892     Out << 'j';
2893     break;
2894   case BuiltinType::ULong:
2895     Out << 'm';
2896     break;
2897   case BuiltinType::ULongLong:
2898     Out << 'y';
2899     break;
2900   case BuiltinType::UInt128:
2901     Out << 'o';
2902     break;
2903   case BuiltinType::SChar:
2904     Out << 'a';
2905     break;
2906   case BuiltinType::WChar_S:
2907   case BuiltinType::WChar_U:
2908     Out << 'w';
2909     break;
2910   case BuiltinType::Char8:
2911     Out << "Du";
2912     break;
2913   case BuiltinType::Char16:
2914     Out << "Ds";
2915     break;
2916   case BuiltinType::Char32:
2917     Out << "Di";
2918     break;
2919   case BuiltinType::Short:
2920     Out << 's';
2921     break;
2922   case BuiltinType::Int:
2923     Out << 'i';
2924     break;
2925   case BuiltinType::Long:
2926     Out << 'l';
2927     break;
2928   case BuiltinType::LongLong:
2929     Out << 'x';
2930     break;
2931   case BuiltinType::Int128:
2932     Out << 'n';
2933     break;
2934   case BuiltinType::Float16:
2935     Out << "DF16_";
2936     break;
2937   case BuiltinType::ShortAccum:
2938   case BuiltinType::Accum:
2939   case BuiltinType::LongAccum:
2940   case BuiltinType::UShortAccum:
2941   case BuiltinType::UAccum:
2942   case BuiltinType::ULongAccum:
2943   case BuiltinType::ShortFract:
2944   case BuiltinType::Fract:
2945   case BuiltinType::LongFract:
2946   case BuiltinType::UShortFract:
2947   case BuiltinType::UFract:
2948   case BuiltinType::ULongFract:
2949   case BuiltinType::SatShortAccum:
2950   case BuiltinType::SatAccum:
2951   case BuiltinType::SatLongAccum:
2952   case BuiltinType::SatUShortAccum:
2953   case BuiltinType::SatUAccum:
2954   case BuiltinType::SatULongAccum:
2955   case BuiltinType::SatShortFract:
2956   case BuiltinType::SatFract:
2957   case BuiltinType::SatLongFract:
2958   case BuiltinType::SatUShortFract:
2959   case BuiltinType::SatUFract:
2960   case BuiltinType::SatULongFract:
2961     llvm_unreachable("Fixed point types are disabled for c++");
2962   case BuiltinType::Half:
2963     Out << "Dh";
2964     break;
2965   case BuiltinType::Float:
2966     Out << 'f';
2967     break;
2968   case BuiltinType::Double:
2969     Out << 'd';
2970     break;
2971   case BuiltinType::LongDouble: {
2972     const TargetInfo *TI = getASTContext().getLangOpts().OpenMP &&
2973                                    getASTContext().getLangOpts().OpenMPIsDevice
2974                                ? getASTContext().getAuxTargetInfo()
2975                                : &getASTContext().getTargetInfo();
2976     Out << TI->getLongDoubleMangling();
2977     break;
2978   }
2979   case BuiltinType::Float128: {
2980     const TargetInfo *TI = getASTContext().getLangOpts().OpenMP &&
2981                                    getASTContext().getLangOpts().OpenMPIsDevice
2982                                ? getASTContext().getAuxTargetInfo()
2983                                : &getASTContext().getTargetInfo();
2984     Out << TI->getFloat128Mangling();
2985     break;
2986   }
2987   case BuiltinType::BFloat16: {
2988     const TargetInfo *TI = &getASTContext().getTargetInfo();
2989     Out << TI->getBFloat16Mangling();
2990     break;
2991   }
2992   case BuiltinType::Ibm128: {
2993     const TargetInfo *TI = &getASTContext().getTargetInfo();
2994     Out << TI->getIbm128Mangling();
2995     break;
2996   }
2997   case BuiltinType::NullPtr:
2998     Out << "Dn";
2999     break;
3000 
3001 #define BUILTIN_TYPE(Id, SingletonId)
3002 #define PLACEHOLDER_TYPE(Id, SingletonId) \
3003   case BuiltinType::Id:
3004 #include "clang/AST/BuiltinTypes.def"
3005   case BuiltinType::Dependent:
3006     if (!NullOut)
3007       llvm_unreachable("mangling a placeholder type");
3008     break;
3009   case BuiltinType::ObjCId:
3010     Out << "11objc_object";
3011     break;
3012   case BuiltinType::ObjCClass:
3013     Out << "10objc_class";
3014     break;
3015   case BuiltinType::ObjCSel:
3016     Out << "13objc_selector";
3017     break;
3018 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
3019   case BuiltinType::Id: \
3020     type_name = "ocl_" #ImgType "_" #Suffix; \
3021     Out << type_name.size() << type_name; \
3022     break;
3023 #include "clang/Basic/OpenCLImageTypes.def"
3024   case BuiltinType::OCLSampler:
3025     Out << "11ocl_sampler";
3026     break;
3027   case BuiltinType::OCLEvent:
3028     Out << "9ocl_event";
3029     break;
3030   case BuiltinType::OCLClkEvent:
3031     Out << "12ocl_clkevent";
3032     break;
3033   case BuiltinType::OCLQueue:
3034     Out << "9ocl_queue";
3035     break;
3036   case BuiltinType::OCLReserveID:
3037     Out << "13ocl_reserveid";
3038     break;
3039 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
3040   case BuiltinType::Id: \
3041     type_name = "ocl_" #ExtType; \
3042     Out << type_name.size() << type_name; \
3043     break;
3044 #include "clang/Basic/OpenCLExtensionTypes.def"
3045   // The SVE types are effectively target-specific.  The mangling scheme
3046   // is defined in the appendices to the Procedure Call Standard for the
3047   // Arm Architecture.
3048 #define SVE_VECTOR_TYPE(InternalName, MangledName, Id, SingletonId, NumEls,    \
3049                         ElBits, IsSigned, IsFP, IsBF)                          \
3050   case BuiltinType::Id:                                                        \
3051     type_name = MangledName;                                                   \
3052     Out << (type_name == InternalName ? "u" : "") << type_name.size()          \
3053         << type_name;                                                          \
3054     break;
3055 #define SVE_PREDICATE_TYPE(InternalName, MangledName, Id, SingletonId, NumEls) \
3056   case BuiltinType::Id:                                                        \
3057     type_name = MangledName;                                                   \
3058     Out << (type_name == InternalName ? "u" : "") << type_name.size()          \
3059         << type_name;                                                          \
3060     break;
3061 #include "clang/Basic/AArch64SVEACLETypes.def"
3062 #define PPC_VECTOR_TYPE(Name, Id, Size) \
3063   case BuiltinType::Id: \
3064     type_name = #Name; \
3065     Out << 'u' << type_name.size() << type_name; \
3066     break;
3067 #include "clang/Basic/PPCTypes.def"
3068     // TODO: Check the mangling scheme for RISC-V V.
3069 #define RVV_TYPE(Name, Id, SingletonId)                                        \
3070   case BuiltinType::Id:                                                        \
3071     type_name = Name;                                                          \
3072     Out << 'u' << type_name.size() << type_name;                               \
3073     break;
3074 #include "clang/Basic/RISCVVTypes.def"
3075   }
3076 }
3077 
3078 StringRef CXXNameMangler::getCallingConvQualifierName(CallingConv CC) {
3079   switch (CC) {
3080   case CC_C:
3081     return "";
3082 
3083   case CC_X86VectorCall:
3084   case CC_X86Pascal:
3085   case CC_X86RegCall:
3086   case CC_AAPCS:
3087   case CC_AAPCS_VFP:
3088   case CC_AArch64VectorCall:
3089   case CC_IntelOclBicc:
3090   case CC_SpirFunction:
3091   case CC_OpenCLKernel:
3092   case CC_PreserveMost:
3093   case CC_PreserveAll:
3094     // FIXME: we should be mangling all of the above.
3095     return "";
3096 
3097   case CC_X86ThisCall:
3098     // FIXME: To match mingw GCC, thiscall should only be mangled in when it is
3099     // used explicitly. At this point, we don't have that much information in
3100     // the AST, since clang tends to bake the convention into the canonical
3101     // function type. thiscall only rarely used explicitly, so don't mangle it
3102     // for now.
3103     return "";
3104 
3105   case CC_X86StdCall:
3106     return "stdcall";
3107   case CC_X86FastCall:
3108     return "fastcall";
3109   case CC_X86_64SysV:
3110     return "sysv_abi";
3111   case CC_Win64:
3112     return "ms_abi";
3113   case CC_Swift:
3114     return "swiftcall";
3115   case CC_SwiftAsync:
3116     return "swiftasynccall";
3117   }
3118   llvm_unreachable("bad calling convention");
3119 }
3120 
3121 void CXXNameMangler::mangleExtFunctionInfo(const FunctionType *T) {
3122   // Fast path.
3123   if (T->getExtInfo() == FunctionType::ExtInfo())
3124     return;
3125 
3126   // Vendor-specific qualifiers are emitted in reverse alphabetical order.
3127   // This will get more complicated in the future if we mangle other
3128   // things here; but for now, since we mangle ns_returns_retained as
3129   // a qualifier on the result type, we can get away with this:
3130   StringRef CCQualifier = getCallingConvQualifierName(T->getExtInfo().getCC());
3131   if (!CCQualifier.empty())
3132     mangleVendorQualifier(CCQualifier);
3133 
3134   // FIXME: regparm
3135   // FIXME: noreturn
3136 }
3137 
3138 void
3139 CXXNameMangler::mangleExtParameterInfo(FunctionProtoType::ExtParameterInfo PI) {
3140   // Vendor-specific qualifiers are emitted in reverse alphabetical order.
3141 
3142   // Note that these are *not* substitution candidates.  Demanglers might
3143   // have trouble with this if the parameter type is fully substituted.
3144 
3145   switch (PI.getABI()) {
3146   case ParameterABI::Ordinary:
3147     break;
3148 
3149   // All of these start with "swift", so they come before "ns_consumed".
3150   case ParameterABI::SwiftContext:
3151   case ParameterABI::SwiftAsyncContext:
3152   case ParameterABI::SwiftErrorResult:
3153   case ParameterABI::SwiftIndirectResult:
3154     mangleVendorQualifier(getParameterABISpelling(PI.getABI()));
3155     break;
3156   }
3157 
3158   if (PI.isConsumed())
3159     mangleVendorQualifier("ns_consumed");
3160 
3161   if (PI.isNoEscape())
3162     mangleVendorQualifier("noescape");
3163 }
3164 
3165 // <type>          ::= <function-type>
3166 // <function-type> ::= [<CV-qualifiers>] F [Y]
3167 //                      <bare-function-type> [<ref-qualifier>] E
3168 void CXXNameMangler::mangleType(const FunctionProtoType *T) {
3169   mangleExtFunctionInfo(T);
3170 
3171   // Mangle CV-qualifiers, if present.  These are 'this' qualifiers,
3172   // e.g. "const" in "int (A::*)() const".
3173   mangleQualifiers(T->getMethodQuals());
3174 
3175   // Mangle instantiation-dependent exception-specification, if present,
3176   // per cxx-abi-dev proposal on 2016-10-11.
3177   if (T->hasInstantiationDependentExceptionSpec()) {
3178     if (isComputedNoexcept(T->getExceptionSpecType())) {
3179       Out << "DO";
3180       mangleExpression(T->getNoexceptExpr());
3181       Out << "E";
3182     } else {
3183       assert(T->getExceptionSpecType() == EST_Dynamic);
3184       Out << "Dw";
3185       for (auto ExceptTy : T->exceptions())
3186         mangleType(ExceptTy);
3187       Out << "E";
3188     }
3189   } else if (T->isNothrow()) {
3190     Out << "Do";
3191   }
3192 
3193   Out << 'F';
3194 
3195   // FIXME: We don't have enough information in the AST to produce the 'Y'
3196   // encoding for extern "C" function types.
3197   mangleBareFunctionType(T, /*MangleReturnType=*/true);
3198 
3199   // Mangle the ref-qualifier, if present.
3200   mangleRefQualifier(T->getRefQualifier());
3201 
3202   Out << 'E';
3203 }
3204 
3205 void CXXNameMangler::mangleType(const FunctionNoProtoType *T) {
3206   // Function types without prototypes can arise when mangling a function type
3207   // within an overloadable function in C. We mangle these as the absence of any
3208   // parameter types (not even an empty parameter list).
3209   Out << 'F';
3210 
3211   FunctionTypeDepthState saved = FunctionTypeDepth.push();
3212 
3213   FunctionTypeDepth.enterResultType();
3214   mangleType(T->getReturnType());
3215   FunctionTypeDepth.leaveResultType();
3216 
3217   FunctionTypeDepth.pop(saved);
3218   Out << 'E';
3219 }
3220 
3221 void CXXNameMangler::mangleBareFunctionType(const FunctionProtoType *Proto,
3222                                             bool MangleReturnType,
3223                                             const FunctionDecl *FD) {
3224   // Record that we're in a function type.  See mangleFunctionParam
3225   // for details on what we're trying to achieve here.
3226   FunctionTypeDepthState saved = FunctionTypeDepth.push();
3227 
3228   // <bare-function-type> ::= <signature type>+
3229   if (MangleReturnType) {
3230     FunctionTypeDepth.enterResultType();
3231 
3232     // Mangle ns_returns_retained as an order-sensitive qualifier here.
3233     if (Proto->getExtInfo().getProducesResult() && FD == nullptr)
3234       mangleVendorQualifier("ns_returns_retained");
3235 
3236     // Mangle the return type without any direct ARC ownership qualifiers.
3237     QualType ReturnTy = Proto->getReturnType();
3238     if (ReturnTy.getObjCLifetime()) {
3239       auto SplitReturnTy = ReturnTy.split();
3240       SplitReturnTy.Quals.removeObjCLifetime();
3241       ReturnTy = getASTContext().getQualifiedType(SplitReturnTy);
3242     }
3243     mangleType(ReturnTy);
3244 
3245     FunctionTypeDepth.leaveResultType();
3246   }
3247 
3248   if (Proto->getNumParams() == 0 && !Proto->isVariadic()) {
3249     //   <builtin-type> ::= v   # void
3250     Out << 'v';
3251 
3252     FunctionTypeDepth.pop(saved);
3253     return;
3254   }
3255 
3256   assert(!FD || FD->getNumParams() == Proto->getNumParams());
3257   for (unsigned I = 0, E = Proto->getNumParams(); I != E; ++I) {
3258     // Mangle extended parameter info as order-sensitive qualifiers here.
3259     if (Proto->hasExtParameterInfos() && FD == nullptr) {
3260       mangleExtParameterInfo(Proto->getExtParameterInfo(I));
3261     }
3262 
3263     // Mangle the type.
3264     QualType ParamTy = Proto->getParamType(I);
3265     mangleType(Context.getASTContext().getSignatureParameterType(ParamTy));
3266 
3267     if (FD) {
3268       if (auto *Attr = FD->getParamDecl(I)->getAttr<PassObjectSizeAttr>()) {
3269         // Attr can only take 1 character, so we can hardcode the length below.
3270         assert(Attr->getType() <= 9 && Attr->getType() >= 0);
3271         if (Attr->isDynamic())
3272           Out << "U25pass_dynamic_object_size" << Attr->getType();
3273         else
3274           Out << "U17pass_object_size" << Attr->getType();
3275       }
3276     }
3277   }
3278 
3279   FunctionTypeDepth.pop(saved);
3280 
3281   // <builtin-type>      ::= z  # ellipsis
3282   if (Proto->isVariadic())
3283     Out << 'z';
3284 }
3285 
3286 // <type>            ::= <class-enum-type>
3287 // <class-enum-type> ::= <name>
3288 void CXXNameMangler::mangleType(const UnresolvedUsingType *T) {
3289   mangleName(T->getDecl());
3290 }
3291 
3292 // <type>            ::= <class-enum-type>
3293 // <class-enum-type> ::= <name>
3294 void CXXNameMangler::mangleType(const EnumType *T) {
3295   mangleType(static_cast<const TagType*>(T));
3296 }
3297 void CXXNameMangler::mangleType(const RecordType *T) {
3298   mangleType(static_cast<const TagType*>(T));
3299 }
3300 void CXXNameMangler::mangleType(const TagType *T) {
3301   mangleName(T->getDecl());
3302 }
3303 
3304 // <type>       ::= <array-type>
3305 // <array-type> ::= A <positive dimension number> _ <element type>
3306 //              ::= A [<dimension expression>] _ <element type>
3307 void CXXNameMangler::mangleType(const ConstantArrayType *T) {
3308   Out << 'A' << T->getSize() << '_';
3309   mangleType(T->getElementType());
3310 }
3311 void CXXNameMangler::mangleType(const VariableArrayType *T) {
3312   Out << 'A';
3313   // decayed vla types (size 0) will just be skipped.
3314   if (T->getSizeExpr())
3315     mangleExpression(T->getSizeExpr());
3316   Out << '_';
3317   mangleType(T->getElementType());
3318 }
3319 void CXXNameMangler::mangleType(const DependentSizedArrayType *T) {
3320   Out << 'A';
3321   // A DependentSizedArrayType might not have size expression as below
3322   //
3323   // template<int ...N> int arr[] = {N...};
3324   if (T->getSizeExpr())
3325     mangleExpression(T->getSizeExpr());
3326   Out << '_';
3327   mangleType(T->getElementType());
3328 }
3329 void CXXNameMangler::mangleType(const IncompleteArrayType *T) {
3330   Out << "A_";
3331   mangleType(T->getElementType());
3332 }
3333 
3334 // <type>                   ::= <pointer-to-member-type>
3335 // <pointer-to-member-type> ::= M <class type> <member type>
3336 void CXXNameMangler::mangleType(const MemberPointerType *T) {
3337   Out << 'M';
3338   mangleType(QualType(T->getClass(), 0));
3339   QualType PointeeType = T->getPointeeType();
3340   if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(PointeeType)) {
3341     mangleType(FPT);
3342 
3343     // Itanium C++ ABI 5.1.8:
3344     //
3345     //   The type of a non-static member function is considered to be different,
3346     //   for the purposes of substitution, from the type of a namespace-scope or
3347     //   static member function whose type appears similar. The types of two
3348     //   non-static member functions are considered to be different, for the
3349     //   purposes of substitution, if the functions are members of different
3350     //   classes. In other words, for the purposes of substitution, the class of
3351     //   which the function is a member is considered part of the type of
3352     //   function.
3353 
3354     // Given that we already substitute member function pointers as a
3355     // whole, the net effect of this rule is just to unconditionally
3356     // suppress substitution on the function type in a member pointer.
3357     // We increment the SeqID here to emulate adding an entry to the
3358     // substitution table.
3359     ++SeqID;
3360   } else
3361     mangleType(PointeeType);
3362 }
3363 
3364 // <type>           ::= <template-param>
3365 void CXXNameMangler::mangleType(const TemplateTypeParmType *T) {
3366   mangleTemplateParameter(T->getDepth(), T->getIndex());
3367 }
3368 
3369 // <type>           ::= <template-param>
3370 void CXXNameMangler::mangleType(const SubstTemplateTypeParmPackType *T) {
3371   // FIXME: not clear how to mangle this!
3372   // template <class T...> class A {
3373   //   template <class U...> void foo(T(*)(U) x...);
3374   // };
3375   Out << "_SUBSTPACK_";
3376 }
3377 
3378 // <type> ::= P <type>   # pointer-to
3379 void CXXNameMangler::mangleType(const PointerType *T) {
3380   Out << 'P';
3381   mangleType(T->getPointeeType());
3382 }
3383 void CXXNameMangler::mangleType(const ObjCObjectPointerType *T) {
3384   Out << 'P';
3385   mangleType(T->getPointeeType());
3386 }
3387 
3388 // <type> ::= R <type>   # reference-to
3389 void CXXNameMangler::mangleType(const LValueReferenceType *T) {
3390   Out << 'R';
3391   mangleType(T->getPointeeType());
3392 }
3393 
3394 // <type> ::= O <type>   # rvalue reference-to (C++0x)
3395 void CXXNameMangler::mangleType(const RValueReferenceType *T) {
3396   Out << 'O';
3397   mangleType(T->getPointeeType());
3398 }
3399 
3400 // <type> ::= C <type>   # complex pair (C 2000)
3401 void CXXNameMangler::mangleType(const ComplexType *T) {
3402   Out << 'C';
3403   mangleType(T->getElementType());
3404 }
3405 
3406 // ARM's ABI for Neon vector types specifies that they should be mangled as
3407 // if they are structs (to match ARM's initial implementation).  The
3408 // vector type must be one of the special types predefined by ARM.
3409 void CXXNameMangler::mangleNeonVectorType(const VectorType *T) {
3410   QualType EltType = T->getElementType();
3411   assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType");
3412   const char *EltName = nullptr;
3413   if (T->getVectorKind() == VectorType::NeonPolyVector) {
3414     switch (cast<BuiltinType>(EltType)->getKind()) {
3415     case BuiltinType::SChar:
3416     case BuiltinType::UChar:
3417       EltName = "poly8_t";
3418       break;
3419     case BuiltinType::Short:
3420     case BuiltinType::UShort:
3421       EltName = "poly16_t";
3422       break;
3423     case BuiltinType::LongLong:
3424     case BuiltinType::ULongLong:
3425       EltName = "poly64_t";
3426       break;
3427     default: llvm_unreachable("unexpected Neon polynomial vector element type");
3428     }
3429   } else {
3430     switch (cast<BuiltinType>(EltType)->getKind()) {
3431     case BuiltinType::SChar:     EltName = "int8_t"; break;
3432     case BuiltinType::UChar:     EltName = "uint8_t"; break;
3433     case BuiltinType::Short:     EltName = "int16_t"; break;
3434     case BuiltinType::UShort:    EltName = "uint16_t"; break;
3435     case BuiltinType::Int:       EltName = "int32_t"; break;
3436     case BuiltinType::UInt:      EltName = "uint32_t"; break;
3437     case BuiltinType::LongLong:  EltName = "int64_t"; break;
3438     case BuiltinType::ULongLong: EltName = "uint64_t"; break;
3439     case BuiltinType::Double:    EltName = "float64_t"; break;
3440     case BuiltinType::Float:     EltName = "float32_t"; break;
3441     case BuiltinType::Half:      EltName = "float16_t"; break;
3442     case BuiltinType::BFloat16:  EltName = "bfloat16_t"; break;
3443     default:
3444       llvm_unreachable("unexpected Neon vector element type");
3445     }
3446   }
3447   const char *BaseName = nullptr;
3448   unsigned BitSize = (T->getNumElements() *
3449                       getASTContext().getTypeSize(EltType));
3450   if (BitSize == 64)
3451     BaseName = "__simd64_";
3452   else {
3453     assert(BitSize == 128 && "Neon vector type not 64 or 128 bits");
3454     BaseName = "__simd128_";
3455   }
3456   Out << strlen(BaseName) + strlen(EltName);
3457   Out << BaseName << EltName;
3458 }
3459 
3460 void CXXNameMangler::mangleNeonVectorType(const DependentVectorType *T) {
3461   DiagnosticsEngine &Diags = Context.getDiags();
3462   unsigned DiagID = Diags.getCustomDiagID(
3463       DiagnosticsEngine::Error,
3464       "cannot mangle this dependent neon vector type yet");
3465   Diags.Report(T->getAttributeLoc(), DiagID);
3466 }
3467 
3468 static StringRef mangleAArch64VectorBase(const BuiltinType *EltType) {
3469   switch (EltType->getKind()) {
3470   case BuiltinType::SChar:
3471     return "Int8";
3472   case BuiltinType::Short:
3473     return "Int16";
3474   case BuiltinType::Int:
3475     return "Int32";
3476   case BuiltinType::Long:
3477   case BuiltinType::LongLong:
3478     return "Int64";
3479   case BuiltinType::UChar:
3480     return "Uint8";
3481   case BuiltinType::UShort:
3482     return "Uint16";
3483   case BuiltinType::UInt:
3484     return "Uint32";
3485   case BuiltinType::ULong:
3486   case BuiltinType::ULongLong:
3487     return "Uint64";
3488   case BuiltinType::Half:
3489     return "Float16";
3490   case BuiltinType::Float:
3491     return "Float32";
3492   case BuiltinType::Double:
3493     return "Float64";
3494   case BuiltinType::BFloat16:
3495     return "Bfloat16";
3496   default:
3497     llvm_unreachable("Unexpected vector element base type");
3498   }
3499 }
3500 
3501 // AArch64's ABI for Neon vector types specifies that they should be mangled as
3502 // the equivalent internal name. The vector type must be one of the special
3503 // types predefined by ARM.
3504 void CXXNameMangler::mangleAArch64NeonVectorType(const VectorType *T) {
3505   QualType EltType = T->getElementType();
3506   assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType");
3507   unsigned BitSize =
3508       (T->getNumElements() * getASTContext().getTypeSize(EltType));
3509   (void)BitSize; // Silence warning.
3510 
3511   assert((BitSize == 64 || BitSize == 128) &&
3512          "Neon vector type not 64 or 128 bits");
3513 
3514   StringRef EltName;
3515   if (T->getVectorKind() == VectorType::NeonPolyVector) {
3516     switch (cast<BuiltinType>(EltType)->getKind()) {
3517     case BuiltinType::UChar:
3518       EltName = "Poly8";
3519       break;
3520     case BuiltinType::UShort:
3521       EltName = "Poly16";
3522       break;
3523     case BuiltinType::ULong:
3524     case BuiltinType::ULongLong:
3525       EltName = "Poly64";
3526       break;
3527     default:
3528       llvm_unreachable("unexpected Neon polynomial vector element type");
3529     }
3530   } else
3531     EltName = mangleAArch64VectorBase(cast<BuiltinType>(EltType));
3532 
3533   std::string TypeName =
3534       ("__" + EltName + "x" + Twine(T->getNumElements()) + "_t").str();
3535   Out << TypeName.length() << TypeName;
3536 }
3537 void CXXNameMangler::mangleAArch64NeonVectorType(const DependentVectorType *T) {
3538   DiagnosticsEngine &Diags = Context.getDiags();
3539   unsigned DiagID = Diags.getCustomDiagID(
3540       DiagnosticsEngine::Error,
3541       "cannot mangle this dependent neon vector type yet");
3542   Diags.Report(T->getAttributeLoc(), DiagID);
3543 }
3544 
3545 // The AArch64 ACLE specifies that fixed-length SVE vector and predicate types
3546 // defined with the 'arm_sve_vector_bits' attribute map to the same AAPCS64
3547 // type as the sizeless variants.
3548 //
3549 // The mangling scheme for VLS types is implemented as a "pseudo" template:
3550 //
3551 //   '__SVE_VLS<<type>, <vector length>>'
3552 //
3553 // Combining the existing SVE type and a specific vector length (in bits).
3554 // For example:
3555 //
3556 //   typedef __SVInt32_t foo __attribute__((arm_sve_vector_bits(512)));
3557 //
3558 // is described as '__SVE_VLS<__SVInt32_t, 512u>' and mangled as:
3559 //
3560 //   "9__SVE_VLSI" + base type mangling + "Lj" + __ARM_FEATURE_SVE_BITS + "EE"
3561 //
3562 //   i.e. 9__SVE_VLSIu11__SVInt32_tLj512EE
3563 //
3564 // The latest ACLE specification (00bet5) does not contain details of this
3565 // mangling scheme, it will be specified in the next revision. The mangling
3566 // scheme is otherwise defined in the appendices to the Procedure Call Standard
3567 // for the Arm Architecture, see
3568 // https://github.com/ARM-software/abi-aa/blob/master/aapcs64/aapcs64.rst#appendix-c-mangling
3569 void CXXNameMangler::mangleAArch64FixedSveVectorType(const VectorType *T) {
3570   assert((T->getVectorKind() == VectorType::SveFixedLengthDataVector ||
3571           T->getVectorKind() == VectorType::SveFixedLengthPredicateVector) &&
3572          "expected fixed-length SVE vector!");
3573 
3574   QualType EltType = T->getElementType();
3575   assert(EltType->isBuiltinType() &&
3576          "expected builtin type for fixed-length SVE vector!");
3577 
3578   StringRef TypeName;
3579   switch (cast<BuiltinType>(EltType)->getKind()) {
3580   case BuiltinType::SChar:
3581     TypeName = "__SVInt8_t";
3582     break;
3583   case BuiltinType::UChar: {
3584     if (T->getVectorKind() == VectorType::SveFixedLengthDataVector)
3585       TypeName = "__SVUint8_t";
3586     else
3587       TypeName = "__SVBool_t";
3588     break;
3589   }
3590   case BuiltinType::Short:
3591     TypeName = "__SVInt16_t";
3592     break;
3593   case BuiltinType::UShort:
3594     TypeName = "__SVUint16_t";
3595     break;
3596   case BuiltinType::Int:
3597     TypeName = "__SVInt32_t";
3598     break;
3599   case BuiltinType::UInt:
3600     TypeName = "__SVUint32_t";
3601     break;
3602   case BuiltinType::Long:
3603     TypeName = "__SVInt64_t";
3604     break;
3605   case BuiltinType::ULong:
3606     TypeName = "__SVUint64_t";
3607     break;
3608   case BuiltinType::Half:
3609     TypeName = "__SVFloat16_t";
3610     break;
3611   case BuiltinType::Float:
3612     TypeName = "__SVFloat32_t";
3613     break;
3614   case BuiltinType::Double:
3615     TypeName = "__SVFloat64_t";
3616     break;
3617   case BuiltinType::BFloat16:
3618     TypeName = "__SVBfloat16_t";
3619     break;
3620   default:
3621     llvm_unreachable("unexpected element type for fixed-length SVE vector!");
3622   }
3623 
3624   unsigned VecSizeInBits = getASTContext().getTypeInfo(T).Width;
3625 
3626   if (T->getVectorKind() == VectorType::SveFixedLengthPredicateVector)
3627     VecSizeInBits *= 8;
3628 
3629   Out << "9__SVE_VLSI" << 'u' << TypeName.size() << TypeName << "Lj"
3630       << VecSizeInBits << "EE";
3631 }
3632 
3633 void CXXNameMangler::mangleAArch64FixedSveVectorType(
3634     const DependentVectorType *T) {
3635   DiagnosticsEngine &Diags = Context.getDiags();
3636   unsigned DiagID = Diags.getCustomDiagID(
3637       DiagnosticsEngine::Error,
3638       "cannot mangle this dependent fixed-length SVE vector type yet");
3639   Diags.Report(T->getAttributeLoc(), DiagID);
3640 }
3641 
3642 // GNU extension: vector types
3643 // <type>                  ::= <vector-type>
3644 // <vector-type>           ::= Dv <positive dimension number> _
3645 //                                    <extended element type>
3646 //                         ::= Dv [<dimension expression>] _ <element type>
3647 // <extended element type> ::= <element type>
3648 //                         ::= p # AltiVec vector pixel
3649 //                         ::= b # Altivec vector bool
3650 void CXXNameMangler::mangleType(const VectorType *T) {
3651   if ((T->getVectorKind() == VectorType::NeonVector ||
3652        T->getVectorKind() == VectorType::NeonPolyVector)) {
3653     llvm::Triple Target = getASTContext().getTargetInfo().getTriple();
3654     llvm::Triple::ArchType Arch =
3655         getASTContext().getTargetInfo().getTriple().getArch();
3656     if ((Arch == llvm::Triple::aarch64 ||
3657          Arch == llvm::Triple::aarch64_be) && !Target.isOSDarwin())
3658       mangleAArch64NeonVectorType(T);
3659     else
3660       mangleNeonVectorType(T);
3661     return;
3662   } else if (T->getVectorKind() == VectorType::SveFixedLengthDataVector ||
3663              T->getVectorKind() == VectorType::SveFixedLengthPredicateVector) {
3664     mangleAArch64FixedSveVectorType(T);
3665     return;
3666   }
3667   Out << "Dv" << T->getNumElements() << '_';
3668   if (T->getVectorKind() == VectorType::AltiVecPixel)
3669     Out << 'p';
3670   else if (T->getVectorKind() == VectorType::AltiVecBool)
3671     Out << 'b';
3672   else
3673     mangleType(T->getElementType());
3674 }
3675 
3676 void CXXNameMangler::mangleType(const DependentVectorType *T) {
3677   if ((T->getVectorKind() == VectorType::NeonVector ||
3678        T->getVectorKind() == VectorType::NeonPolyVector)) {
3679     llvm::Triple Target = getASTContext().getTargetInfo().getTriple();
3680     llvm::Triple::ArchType Arch =
3681         getASTContext().getTargetInfo().getTriple().getArch();
3682     if ((Arch == llvm::Triple::aarch64 || Arch == llvm::Triple::aarch64_be) &&
3683         !Target.isOSDarwin())
3684       mangleAArch64NeonVectorType(T);
3685     else
3686       mangleNeonVectorType(T);
3687     return;
3688   } else if (T->getVectorKind() == VectorType::SveFixedLengthDataVector ||
3689              T->getVectorKind() == VectorType::SveFixedLengthPredicateVector) {
3690     mangleAArch64FixedSveVectorType(T);
3691     return;
3692   }
3693 
3694   Out << "Dv";
3695   mangleExpression(T->getSizeExpr());
3696   Out << '_';
3697   if (T->getVectorKind() == VectorType::AltiVecPixel)
3698     Out << 'p';
3699   else if (T->getVectorKind() == VectorType::AltiVecBool)
3700     Out << 'b';
3701   else
3702     mangleType(T->getElementType());
3703 }
3704 
3705 void CXXNameMangler::mangleType(const ExtVectorType *T) {
3706   mangleType(static_cast<const VectorType*>(T));
3707 }
3708 void CXXNameMangler::mangleType(const DependentSizedExtVectorType *T) {
3709   Out << "Dv";
3710   mangleExpression(T->getSizeExpr());
3711   Out << '_';
3712   mangleType(T->getElementType());
3713 }
3714 
3715 void CXXNameMangler::mangleType(const ConstantMatrixType *T) {
3716   // Mangle matrix types as a vendor extended type:
3717   // u<Len>matrix_typeI<Rows><Columns><element type>E
3718 
3719   StringRef VendorQualifier = "matrix_type";
3720   Out << "u" << VendorQualifier.size() << VendorQualifier;
3721 
3722   Out << "I";
3723   auto &ASTCtx = getASTContext();
3724   unsigned BitWidth = ASTCtx.getTypeSize(ASTCtx.getSizeType());
3725   llvm::APSInt Rows(BitWidth);
3726   Rows = T->getNumRows();
3727   mangleIntegerLiteral(ASTCtx.getSizeType(), Rows);
3728   llvm::APSInt Columns(BitWidth);
3729   Columns = T->getNumColumns();
3730   mangleIntegerLiteral(ASTCtx.getSizeType(), Columns);
3731   mangleType(T->getElementType());
3732   Out << "E";
3733 }
3734 
3735 void CXXNameMangler::mangleType(const DependentSizedMatrixType *T) {
3736   // Mangle matrix types as a vendor extended type:
3737   // u<Len>matrix_typeI<row expr><column expr><element type>E
3738   StringRef VendorQualifier = "matrix_type";
3739   Out << "u" << VendorQualifier.size() << VendorQualifier;
3740 
3741   Out << "I";
3742   mangleTemplateArgExpr(T->getRowExpr());
3743   mangleTemplateArgExpr(T->getColumnExpr());
3744   mangleType(T->getElementType());
3745   Out << "E";
3746 }
3747 
3748 void CXXNameMangler::mangleType(const DependentAddressSpaceType *T) {
3749   SplitQualType split = T->getPointeeType().split();
3750   mangleQualifiers(split.Quals, T);
3751   mangleType(QualType(split.Ty, 0));
3752 }
3753 
3754 void CXXNameMangler::mangleType(const PackExpansionType *T) {
3755   // <type>  ::= Dp <type>          # pack expansion (C++0x)
3756   Out << "Dp";
3757   mangleType(T->getPattern());
3758 }
3759 
3760 void CXXNameMangler::mangleType(const ObjCInterfaceType *T) {
3761   mangleSourceName(T->getDecl()->getIdentifier());
3762 }
3763 
3764 void CXXNameMangler::mangleType(const ObjCObjectType *T) {
3765   // Treat __kindof as a vendor extended type qualifier.
3766   if (T->isKindOfType())
3767     Out << "U8__kindof";
3768 
3769   if (!T->qual_empty()) {
3770     // Mangle protocol qualifiers.
3771     SmallString<64> QualStr;
3772     llvm::raw_svector_ostream QualOS(QualStr);
3773     QualOS << "objcproto";
3774     for (const auto *I : T->quals()) {
3775       StringRef name = I->getName();
3776       QualOS << name.size() << name;
3777     }
3778     Out << 'U' << QualStr.size() << QualStr;
3779   }
3780 
3781   mangleType(T->getBaseType());
3782 
3783   if (T->isSpecialized()) {
3784     // Mangle type arguments as I <type>+ E
3785     Out << 'I';
3786     for (auto typeArg : T->getTypeArgs())
3787       mangleType(typeArg);
3788     Out << 'E';
3789   }
3790 }
3791 
3792 void CXXNameMangler::mangleType(const BlockPointerType *T) {
3793   Out << "U13block_pointer";
3794   mangleType(T->getPointeeType());
3795 }
3796 
3797 void CXXNameMangler::mangleType(const InjectedClassNameType *T) {
3798   // Mangle injected class name types as if the user had written the
3799   // specialization out fully.  It may not actually be possible to see
3800   // this mangling, though.
3801   mangleType(T->getInjectedSpecializationType());
3802 }
3803 
3804 void CXXNameMangler::mangleType(const TemplateSpecializationType *T) {
3805   if (TemplateDecl *TD = T->getTemplateName().getAsTemplateDecl()) {
3806     mangleTemplateName(TD, T->getArgs(), T->getNumArgs());
3807   } else {
3808     if (mangleSubstitution(QualType(T, 0)))
3809       return;
3810 
3811     mangleTemplatePrefix(T->getTemplateName());
3812 
3813     // FIXME: GCC does not appear to mangle the template arguments when
3814     // the template in question is a dependent template name. Should we
3815     // emulate that badness?
3816     mangleTemplateArgs(T->getTemplateName(), T->getArgs(), T->getNumArgs());
3817     addSubstitution(QualType(T, 0));
3818   }
3819 }
3820 
3821 void CXXNameMangler::mangleType(const DependentNameType *T) {
3822   // Proposal by cxx-abi-dev, 2014-03-26
3823   // <class-enum-type> ::= <name>    # non-dependent or dependent type name or
3824   //                                 # dependent elaborated type specifier using
3825   //                                 # 'typename'
3826   //                   ::= Ts <name> # dependent elaborated type specifier using
3827   //                                 # 'struct' or 'class'
3828   //                   ::= Tu <name> # dependent elaborated type specifier using
3829   //                                 # 'union'
3830   //                   ::= Te <name> # dependent elaborated type specifier using
3831   //                                 # 'enum'
3832   switch (T->getKeyword()) {
3833     case ETK_None:
3834     case ETK_Typename:
3835       break;
3836     case ETK_Struct:
3837     case ETK_Class:
3838     case ETK_Interface:
3839       Out << "Ts";
3840       break;
3841     case ETK_Union:
3842       Out << "Tu";
3843       break;
3844     case ETK_Enum:
3845       Out << "Te";
3846       break;
3847   }
3848   // Typename types are always nested
3849   Out << 'N';
3850   manglePrefix(T->getQualifier());
3851   mangleSourceName(T->getIdentifier());
3852   Out << 'E';
3853 }
3854 
3855 void CXXNameMangler::mangleType(const DependentTemplateSpecializationType *T) {
3856   // Dependently-scoped template types are nested if they have a prefix.
3857   Out << 'N';
3858 
3859   // TODO: avoid making this TemplateName.
3860   TemplateName Prefix =
3861     getASTContext().getDependentTemplateName(T->getQualifier(),
3862                                              T->getIdentifier());
3863   mangleTemplatePrefix(Prefix);
3864 
3865   // FIXME: GCC does not appear to mangle the template arguments when
3866   // the template in question is a dependent template name. Should we
3867   // emulate that badness?
3868   mangleTemplateArgs(Prefix, T->getArgs(), T->getNumArgs());
3869   Out << 'E';
3870 }
3871 
3872 void CXXNameMangler::mangleType(const TypeOfType *T) {
3873   // FIXME: this is pretty unsatisfactory, but there isn't an obvious
3874   // "extension with parameters" mangling.
3875   Out << "u6typeof";
3876 }
3877 
3878 void CXXNameMangler::mangleType(const TypeOfExprType *T) {
3879   // FIXME: this is pretty unsatisfactory, but there isn't an obvious
3880   // "extension with parameters" mangling.
3881   Out << "u6typeof";
3882 }
3883 
3884 void CXXNameMangler::mangleType(const DecltypeType *T) {
3885   Expr *E = T->getUnderlyingExpr();
3886 
3887   // type ::= Dt <expression> E  # decltype of an id-expression
3888   //                             #   or class member access
3889   //      ::= DT <expression> E  # decltype of an expression
3890 
3891   // This purports to be an exhaustive list of id-expressions and
3892   // class member accesses.  Note that we do not ignore parentheses;
3893   // parentheses change the semantics of decltype for these
3894   // expressions (and cause the mangler to use the other form).
3895   if (isa<DeclRefExpr>(E) ||
3896       isa<MemberExpr>(E) ||
3897       isa<UnresolvedLookupExpr>(E) ||
3898       isa<DependentScopeDeclRefExpr>(E) ||
3899       isa<CXXDependentScopeMemberExpr>(E) ||
3900       isa<UnresolvedMemberExpr>(E))
3901     Out << "Dt";
3902   else
3903     Out << "DT";
3904   mangleExpression(E);
3905   Out << 'E';
3906 }
3907 
3908 void CXXNameMangler::mangleType(const UnaryTransformType *T) {
3909   // If this is dependent, we need to record that. If not, we simply
3910   // mangle it as the underlying type since they are equivalent.
3911   if (T->isDependentType()) {
3912     Out << 'U';
3913 
3914     switch (T->getUTTKind()) {
3915       case UnaryTransformType::EnumUnderlyingType:
3916         Out << "3eut";
3917         break;
3918     }
3919   }
3920 
3921   mangleType(T->getBaseType());
3922 }
3923 
3924 void CXXNameMangler::mangleType(const AutoType *T) {
3925   assert(T->getDeducedType().isNull() &&
3926          "Deduced AutoType shouldn't be handled here!");
3927   assert(T->getKeyword() != AutoTypeKeyword::GNUAutoType &&
3928          "shouldn't need to mangle __auto_type!");
3929   // <builtin-type> ::= Da # auto
3930   //                ::= Dc # decltype(auto)
3931   Out << (T->isDecltypeAuto() ? "Dc" : "Da");
3932 }
3933 
3934 void CXXNameMangler::mangleType(const DeducedTemplateSpecializationType *T) {
3935   QualType Deduced = T->getDeducedType();
3936   if (!Deduced.isNull())
3937     return mangleType(Deduced);
3938 
3939   TemplateDecl *TD = T->getTemplateName().getAsTemplateDecl();
3940   assert(TD && "shouldn't form deduced TST unless we know we have a template");
3941 
3942   if (mangleSubstitution(TD))
3943     return;
3944 
3945   mangleName(GlobalDecl(TD));
3946   addSubstitution(TD);
3947 }
3948 
3949 void CXXNameMangler::mangleType(const AtomicType *T) {
3950   // <type> ::= U <source-name> <type>  # vendor extended type qualifier
3951   // (Until there's a standardized mangling...)
3952   Out << "U7_Atomic";
3953   mangleType(T->getValueType());
3954 }
3955 
3956 void CXXNameMangler::mangleType(const PipeType *T) {
3957   // Pipe type mangling rules are described in SPIR 2.0 specification
3958   // A.1 Data types and A.3 Summary of changes
3959   // <type> ::= 8ocl_pipe
3960   Out << "8ocl_pipe";
3961 }
3962 
3963 void CXXNameMangler::mangleType(const ExtIntType *T) {
3964   Out << "U7_ExtInt";
3965   llvm::APSInt BW(32, true);
3966   BW = T->getNumBits();
3967   TemplateArgument TA(Context.getASTContext(), BW, getASTContext().IntTy);
3968   mangleTemplateArgs(TemplateName(), &TA, 1);
3969   if (T->isUnsigned())
3970     Out << "j";
3971   else
3972     Out << "i";
3973 }
3974 
3975 void CXXNameMangler::mangleType(const DependentExtIntType *T) {
3976   Out << "U7_ExtInt";
3977   TemplateArgument TA(T->getNumBitsExpr());
3978   mangleTemplateArgs(TemplateName(), &TA, 1);
3979   if (T->isUnsigned())
3980     Out << "j";
3981   else
3982     Out << "i";
3983 }
3984 
3985 void CXXNameMangler::mangleIntegerLiteral(QualType T,
3986                                           const llvm::APSInt &Value) {
3987   //  <expr-primary> ::= L <type> <value number> E # integer literal
3988   Out << 'L';
3989 
3990   mangleType(T);
3991   if (T->isBooleanType()) {
3992     // Boolean values are encoded as 0/1.
3993     Out << (Value.getBoolValue() ? '1' : '0');
3994   } else {
3995     mangleNumber(Value);
3996   }
3997   Out << 'E';
3998 
3999 }
4000 
4001 void CXXNameMangler::mangleMemberExprBase(const Expr *Base, bool IsArrow) {
4002   // Ignore member expressions involving anonymous unions.
4003   while (const auto *RT = Base->getType()->getAs<RecordType>()) {
4004     if (!RT->getDecl()->isAnonymousStructOrUnion())
4005       break;
4006     const auto *ME = dyn_cast<MemberExpr>(Base);
4007     if (!ME)
4008       break;
4009     Base = ME->getBase();
4010     IsArrow = ME->isArrow();
4011   }
4012 
4013   if (Base->isImplicitCXXThis()) {
4014     // Note: GCC mangles member expressions to the implicit 'this' as
4015     // *this., whereas we represent them as this->. The Itanium C++ ABI
4016     // does not specify anything here, so we follow GCC.
4017     Out << "dtdefpT";
4018   } else {
4019     Out << (IsArrow ? "pt" : "dt");
4020     mangleExpression(Base);
4021   }
4022 }
4023 
4024 /// Mangles a member expression.
4025 void CXXNameMangler::mangleMemberExpr(const Expr *base,
4026                                       bool isArrow,
4027                                       NestedNameSpecifier *qualifier,
4028                                       NamedDecl *firstQualifierLookup,
4029                                       DeclarationName member,
4030                                       const TemplateArgumentLoc *TemplateArgs,
4031                                       unsigned NumTemplateArgs,
4032                                       unsigned arity) {
4033   // <expression> ::= dt <expression> <unresolved-name>
4034   //              ::= pt <expression> <unresolved-name>
4035   if (base)
4036     mangleMemberExprBase(base, isArrow);
4037   mangleUnresolvedName(qualifier, member, TemplateArgs, NumTemplateArgs, arity);
4038 }
4039 
4040 /// Look at the callee of the given call expression and determine if
4041 /// it's a parenthesized id-expression which would have triggered ADL
4042 /// otherwise.
4043 static bool isParenthesizedADLCallee(const CallExpr *call) {
4044   const Expr *callee = call->getCallee();
4045   const Expr *fn = callee->IgnoreParens();
4046 
4047   // Must be parenthesized.  IgnoreParens() skips __extension__ nodes,
4048   // too, but for those to appear in the callee, it would have to be
4049   // parenthesized.
4050   if (callee == fn) return false;
4051 
4052   // Must be an unresolved lookup.
4053   const UnresolvedLookupExpr *lookup = dyn_cast<UnresolvedLookupExpr>(fn);
4054   if (!lookup) return false;
4055 
4056   assert(!lookup->requiresADL());
4057 
4058   // Must be an unqualified lookup.
4059   if (lookup->getQualifier()) return false;
4060 
4061   // Must not have found a class member.  Note that if one is a class
4062   // member, they're all class members.
4063   if (lookup->getNumDecls() > 0 &&
4064       (*lookup->decls_begin())->isCXXClassMember())
4065     return false;
4066 
4067   // Otherwise, ADL would have been triggered.
4068   return true;
4069 }
4070 
4071 void CXXNameMangler::mangleCastExpression(const Expr *E, StringRef CastEncoding) {
4072   const ExplicitCastExpr *ECE = cast<ExplicitCastExpr>(E);
4073   Out << CastEncoding;
4074   mangleType(ECE->getType());
4075   mangleExpression(ECE->getSubExpr());
4076 }
4077 
4078 void CXXNameMangler::mangleInitListElements(const InitListExpr *InitList) {
4079   if (auto *Syntactic = InitList->getSyntacticForm())
4080     InitList = Syntactic;
4081   for (unsigned i = 0, e = InitList->getNumInits(); i != e; ++i)
4082     mangleExpression(InitList->getInit(i));
4083 }
4084 
4085 void CXXNameMangler::mangleExpression(const Expr *E, unsigned Arity,
4086                                       bool AsTemplateArg) {
4087   // <expression> ::= <unary operator-name> <expression>
4088   //              ::= <binary operator-name> <expression> <expression>
4089   //              ::= <trinary operator-name> <expression> <expression> <expression>
4090   //              ::= cv <type> expression           # conversion with one argument
4091   //              ::= cv <type> _ <expression>* E # conversion with a different number of arguments
4092   //              ::= dc <type> <expression>         # dynamic_cast<type> (expression)
4093   //              ::= sc <type> <expression>         # static_cast<type> (expression)
4094   //              ::= cc <type> <expression>         # const_cast<type> (expression)
4095   //              ::= rc <type> <expression>         # reinterpret_cast<type> (expression)
4096   //              ::= st <type>                      # sizeof (a type)
4097   //              ::= at <type>                      # alignof (a type)
4098   //              ::= <template-param>
4099   //              ::= <function-param>
4100   //              ::= fpT                            # 'this' expression (part of <function-param>)
4101   //              ::= sr <type> <unqualified-name>                   # dependent name
4102   //              ::= sr <type> <unqualified-name> <template-args>   # dependent template-id
4103   //              ::= ds <expression> <expression>                   # expr.*expr
4104   //              ::= sZ <template-param>                            # size of a parameter pack
4105   //              ::= sZ <function-param>    # size of a function parameter pack
4106   //              ::= u <source-name> <template-arg>* E # vendor extended expression
4107   //              ::= <expr-primary>
4108   // <expr-primary> ::= L <type> <value number> E    # integer literal
4109   //                ::= L <type> <value float> E     # floating literal
4110   //                ::= L <type> <string type> E     # string literal
4111   //                ::= L <nullptr type> E           # nullptr literal "LDnE"
4112   //                ::= L <pointer type> 0 E         # null pointer template argument
4113   //                ::= L <type> <real-part float> _ <imag-part float> E    # complex floating point literal (C99); not used by clang
4114   //                ::= L <mangled-name> E           # external name
4115   QualType ImplicitlyConvertedToType;
4116 
4117   // A top-level expression that's not <expr-primary> needs to be wrapped in
4118   // X...E in a template arg.
4119   bool IsPrimaryExpr = true;
4120   auto NotPrimaryExpr = [&] {
4121     if (AsTemplateArg && IsPrimaryExpr)
4122       Out << 'X';
4123     IsPrimaryExpr = false;
4124   };
4125 
4126   auto MangleDeclRefExpr = [&](const NamedDecl *D) {
4127     switch (D->getKind()) {
4128     default:
4129       //  <expr-primary> ::= L <mangled-name> E # external name
4130       Out << 'L';
4131       mangle(D);
4132       Out << 'E';
4133       break;
4134 
4135     case Decl::ParmVar:
4136       NotPrimaryExpr();
4137       mangleFunctionParam(cast<ParmVarDecl>(D));
4138       break;
4139 
4140     case Decl::EnumConstant: {
4141       // <expr-primary>
4142       const EnumConstantDecl *ED = cast<EnumConstantDecl>(D);
4143       mangleIntegerLiteral(ED->getType(), ED->getInitVal());
4144       break;
4145     }
4146 
4147     case Decl::NonTypeTemplateParm:
4148       NotPrimaryExpr();
4149       const NonTypeTemplateParmDecl *PD = cast<NonTypeTemplateParmDecl>(D);
4150       mangleTemplateParameter(PD->getDepth(), PD->getIndex());
4151       break;
4152     }
4153   };
4154 
4155   // 'goto recurse' is used when handling a simple "unwrapping" node which
4156   // produces no output, where ImplicitlyConvertedToType and AsTemplateArg need
4157   // to be preserved.
4158 recurse:
4159   switch (E->getStmtClass()) {
4160   case Expr::NoStmtClass:
4161 #define ABSTRACT_STMT(Type)
4162 #define EXPR(Type, Base)
4163 #define STMT(Type, Base) \
4164   case Expr::Type##Class:
4165 #include "clang/AST/StmtNodes.inc"
4166     // fallthrough
4167 
4168   // These all can only appear in local or variable-initialization
4169   // contexts and so should never appear in a mangling.
4170   case Expr::AddrLabelExprClass:
4171   case Expr::DesignatedInitUpdateExprClass:
4172   case Expr::ImplicitValueInitExprClass:
4173   case Expr::ArrayInitLoopExprClass:
4174   case Expr::ArrayInitIndexExprClass:
4175   case Expr::NoInitExprClass:
4176   case Expr::ParenListExprClass:
4177   case Expr::LambdaExprClass:
4178   case Expr::MSPropertyRefExprClass:
4179   case Expr::MSPropertySubscriptExprClass:
4180   case Expr::TypoExprClass: // This should no longer exist in the AST by now.
4181   case Expr::RecoveryExprClass:
4182   case Expr::OMPArraySectionExprClass:
4183   case Expr::OMPArrayShapingExprClass:
4184   case Expr::OMPIteratorExprClass:
4185   case Expr::CXXInheritedCtorInitExprClass:
4186     llvm_unreachable("unexpected statement kind");
4187 
4188   case Expr::ConstantExprClass:
4189     E = cast<ConstantExpr>(E)->getSubExpr();
4190     goto recurse;
4191 
4192   // FIXME: invent manglings for all these.
4193   case Expr::BlockExprClass:
4194   case Expr::ChooseExprClass:
4195   case Expr::CompoundLiteralExprClass:
4196   case Expr::ExtVectorElementExprClass:
4197   case Expr::GenericSelectionExprClass:
4198   case Expr::ObjCEncodeExprClass:
4199   case Expr::ObjCIsaExprClass:
4200   case Expr::ObjCIvarRefExprClass:
4201   case Expr::ObjCMessageExprClass:
4202   case Expr::ObjCPropertyRefExprClass:
4203   case Expr::ObjCProtocolExprClass:
4204   case Expr::ObjCSelectorExprClass:
4205   case Expr::ObjCStringLiteralClass:
4206   case Expr::ObjCBoxedExprClass:
4207   case Expr::ObjCArrayLiteralClass:
4208   case Expr::ObjCDictionaryLiteralClass:
4209   case Expr::ObjCSubscriptRefExprClass:
4210   case Expr::ObjCIndirectCopyRestoreExprClass:
4211   case Expr::ObjCAvailabilityCheckExprClass:
4212   case Expr::OffsetOfExprClass:
4213   case Expr::PredefinedExprClass:
4214   case Expr::ShuffleVectorExprClass:
4215   case Expr::ConvertVectorExprClass:
4216   case Expr::StmtExprClass:
4217   case Expr::TypeTraitExprClass:
4218   case Expr::RequiresExprClass:
4219   case Expr::ArrayTypeTraitExprClass:
4220   case Expr::ExpressionTraitExprClass:
4221   case Expr::VAArgExprClass:
4222   case Expr::CUDAKernelCallExprClass:
4223   case Expr::AsTypeExprClass:
4224   case Expr::PseudoObjectExprClass:
4225   case Expr::AtomicExprClass:
4226   case Expr::SourceLocExprClass:
4227   case Expr::BuiltinBitCastExprClass:
4228   {
4229     NotPrimaryExpr();
4230     if (!NullOut) {
4231       // As bad as this diagnostic is, it's better than crashing.
4232       DiagnosticsEngine &Diags = Context.getDiags();
4233       unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error,
4234                                        "cannot yet mangle expression type %0");
4235       Diags.Report(E->getExprLoc(), DiagID)
4236         << E->getStmtClassName() << E->getSourceRange();
4237       return;
4238     }
4239     break;
4240   }
4241 
4242   case Expr::CXXUuidofExprClass: {
4243     NotPrimaryExpr();
4244     const CXXUuidofExpr *UE = cast<CXXUuidofExpr>(E);
4245     // As of clang 12, uuidof uses the vendor extended expression
4246     // mangling. Previously, it used a special-cased nonstandard extension.
4247     if (Context.getASTContext().getLangOpts().getClangABICompat() >
4248         LangOptions::ClangABI::Ver11) {
4249       Out << "u8__uuidof";
4250       if (UE->isTypeOperand())
4251         mangleType(UE->getTypeOperand(Context.getASTContext()));
4252       else
4253         mangleTemplateArgExpr(UE->getExprOperand());
4254       Out << 'E';
4255     } else {
4256       if (UE->isTypeOperand()) {
4257         QualType UuidT = UE->getTypeOperand(Context.getASTContext());
4258         Out << "u8__uuidoft";
4259         mangleType(UuidT);
4260       } else {
4261         Expr *UuidExp = UE->getExprOperand();
4262         Out << "u8__uuidofz";
4263         mangleExpression(UuidExp);
4264       }
4265     }
4266     break;
4267   }
4268 
4269   // Even gcc-4.5 doesn't mangle this.
4270   case Expr::BinaryConditionalOperatorClass: {
4271     NotPrimaryExpr();
4272     DiagnosticsEngine &Diags = Context.getDiags();
4273     unsigned DiagID =
4274       Diags.getCustomDiagID(DiagnosticsEngine::Error,
4275                 "?: operator with omitted middle operand cannot be mangled");
4276     Diags.Report(E->getExprLoc(), DiagID)
4277       << E->getStmtClassName() << E->getSourceRange();
4278     return;
4279   }
4280 
4281   // These are used for internal purposes and cannot be meaningfully mangled.
4282   case Expr::OpaqueValueExprClass:
4283     llvm_unreachable("cannot mangle opaque value; mangling wrong thing?");
4284 
4285   case Expr::InitListExprClass: {
4286     NotPrimaryExpr();
4287     Out << "il";
4288     mangleInitListElements(cast<InitListExpr>(E));
4289     Out << "E";
4290     break;
4291   }
4292 
4293   case Expr::DesignatedInitExprClass: {
4294     NotPrimaryExpr();
4295     auto *DIE = cast<DesignatedInitExpr>(E);
4296     for (const auto &Designator : DIE->designators()) {
4297       if (Designator.isFieldDesignator()) {
4298         Out << "di";
4299         mangleSourceName(Designator.getFieldName());
4300       } else if (Designator.isArrayDesignator()) {
4301         Out << "dx";
4302         mangleExpression(DIE->getArrayIndex(Designator));
4303       } else {
4304         assert(Designator.isArrayRangeDesignator() &&
4305                "unknown designator kind");
4306         Out << "dX";
4307         mangleExpression(DIE->getArrayRangeStart(Designator));
4308         mangleExpression(DIE->getArrayRangeEnd(Designator));
4309       }
4310     }
4311     mangleExpression(DIE->getInit());
4312     break;
4313   }
4314 
4315   case Expr::CXXDefaultArgExprClass:
4316     E = cast<CXXDefaultArgExpr>(E)->getExpr();
4317     goto recurse;
4318 
4319   case Expr::CXXDefaultInitExprClass:
4320     E = cast<CXXDefaultInitExpr>(E)->getExpr();
4321     goto recurse;
4322 
4323   case Expr::CXXStdInitializerListExprClass:
4324     E = cast<CXXStdInitializerListExpr>(E)->getSubExpr();
4325     goto recurse;
4326 
4327   case Expr::SubstNonTypeTemplateParmExprClass:
4328     E = cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement();
4329     goto recurse;
4330 
4331   case Expr::UserDefinedLiteralClass:
4332     // We follow g++'s approach of mangling a UDL as a call to the literal
4333     // operator.
4334   case Expr::CXXMemberCallExprClass: // fallthrough
4335   case Expr::CallExprClass: {
4336     NotPrimaryExpr();
4337     const CallExpr *CE = cast<CallExpr>(E);
4338 
4339     // <expression> ::= cp <simple-id> <expression>* E
4340     // We use this mangling only when the call would use ADL except
4341     // for being parenthesized.  Per discussion with David
4342     // Vandervoorde, 2011.04.25.
4343     if (isParenthesizedADLCallee(CE)) {
4344       Out << "cp";
4345       // The callee here is a parenthesized UnresolvedLookupExpr with
4346       // no qualifier and should always get mangled as a <simple-id>
4347       // anyway.
4348 
4349     // <expression> ::= cl <expression>* E
4350     } else {
4351       Out << "cl";
4352     }
4353 
4354     unsigned CallArity = CE->getNumArgs();
4355     for (const Expr *Arg : CE->arguments())
4356       if (isa<PackExpansionExpr>(Arg))
4357         CallArity = UnknownArity;
4358 
4359     mangleExpression(CE->getCallee(), CallArity);
4360     for (const Expr *Arg : CE->arguments())
4361       mangleExpression(Arg);
4362     Out << 'E';
4363     break;
4364   }
4365 
4366   case Expr::CXXNewExprClass: {
4367     NotPrimaryExpr();
4368     const CXXNewExpr *New = cast<CXXNewExpr>(E);
4369     if (New->isGlobalNew()) Out << "gs";
4370     Out << (New->isArray() ? "na" : "nw");
4371     for (CXXNewExpr::const_arg_iterator I = New->placement_arg_begin(),
4372            E = New->placement_arg_end(); I != E; ++I)
4373       mangleExpression(*I);
4374     Out << '_';
4375     mangleType(New->getAllocatedType());
4376     if (New->hasInitializer()) {
4377       if (New->getInitializationStyle() == CXXNewExpr::ListInit)
4378         Out << "il";
4379       else
4380         Out << "pi";
4381       const Expr *Init = New->getInitializer();
4382       if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) {
4383         // Directly inline the initializers.
4384         for (CXXConstructExpr::const_arg_iterator I = CCE->arg_begin(),
4385                                                   E = CCE->arg_end();
4386              I != E; ++I)
4387           mangleExpression(*I);
4388       } else if (const ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init)) {
4389         for (unsigned i = 0, e = PLE->getNumExprs(); i != e; ++i)
4390           mangleExpression(PLE->getExpr(i));
4391       } else if (New->getInitializationStyle() == CXXNewExpr::ListInit &&
4392                  isa<InitListExpr>(Init)) {
4393         // Only take InitListExprs apart for list-initialization.
4394         mangleInitListElements(cast<InitListExpr>(Init));
4395       } else
4396         mangleExpression(Init);
4397     }
4398     Out << 'E';
4399     break;
4400   }
4401 
4402   case Expr::CXXPseudoDestructorExprClass: {
4403     NotPrimaryExpr();
4404     const auto *PDE = cast<CXXPseudoDestructorExpr>(E);
4405     if (const Expr *Base = PDE->getBase())
4406       mangleMemberExprBase(Base, PDE->isArrow());
4407     NestedNameSpecifier *Qualifier = PDE->getQualifier();
4408     if (TypeSourceInfo *ScopeInfo = PDE->getScopeTypeInfo()) {
4409       if (Qualifier) {
4410         mangleUnresolvedPrefix(Qualifier,
4411                                /*recursive=*/true);
4412         mangleUnresolvedTypeOrSimpleId(ScopeInfo->getType());
4413         Out << 'E';
4414       } else {
4415         Out << "sr";
4416         if (!mangleUnresolvedTypeOrSimpleId(ScopeInfo->getType()))
4417           Out << 'E';
4418       }
4419     } else if (Qualifier) {
4420       mangleUnresolvedPrefix(Qualifier);
4421     }
4422     // <base-unresolved-name> ::= dn <destructor-name>
4423     Out << "dn";
4424     QualType DestroyedType = PDE->getDestroyedType();
4425     mangleUnresolvedTypeOrSimpleId(DestroyedType);
4426     break;
4427   }
4428 
4429   case Expr::MemberExprClass: {
4430     NotPrimaryExpr();
4431     const MemberExpr *ME = cast<MemberExpr>(E);
4432     mangleMemberExpr(ME->getBase(), ME->isArrow(),
4433                      ME->getQualifier(), nullptr,
4434                      ME->getMemberDecl()->getDeclName(),
4435                      ME->getTemplateArgs(), ME->getNumTemplateArgs(),
4436                      Arity);
4437     break;
4438   }
4439 
4440   case Expr::UnresolvedMemberExprClass: {
4441     NotPrimaryExpr();
4442     const UnresolvedMemberExpr *ME = cast<UnresolvedMemberExpr>(E);
4443     mangleMemberExpr(ME->isImplicitAccess() ? nullptr : ME->getBase(),
4444                      ME->isArrow(), ME->getQualifier(), nullptr,
4445                      ME->getMemberName(),
4446                      ME->getTemplateArgs(), ME->getNumTemplateArgs(),
4447                      Arity);
4448     break;
4449   }
4450 
4451   case Expr::CXXDependentScopeMemberExprClass: {
4452     NotPrimaryExpr();
4453     const CXXDependentScopeMemberExpr *ME
4454       = cast<CXXDependentScopeMemberExpr>(E);
4455     mangleMemberExpr(ME->isImplicitAccess() ? nullptr : ME->getBase(),
4456                      ME->isArrow(), ME->getQualifier(),
4457                      ME->getFirstQualifierFoundInScope(),
4458                      ME->getMember(),
4459                      ME->getTemplateArgs(), ME->getNumTemplateArgs(),
4460                      Arity);
4461     break;
4462   }
4463 
4464   case Expr::UnresolvedLookupExprClass: {
4465     NotPrimaryExpr();
4466     const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E);
4467     mangleUnresolvedName(ULE->getQualifier(), ULE->getName(),
4468                          ULE->getTemplateArgs(), ULE->getNumTemplateArgs(),
4469                          Arity);
4470     break;
4471   }
4472 
4473   case Expr::CXXUnresolvedConstructExprClass: {
4474     NotPrimaryExpr();
4475     const CXXUnresolvedConstructExpr *CE = cast<CXXUnresolvedConstructExpr>(E);
4476     unsigned N = CE->getNumArgs();
4477 
4478     if (CE->isListInitialization()) {
4479       assert(N == 1 && "unexpected form for list initialization");
4480       auto *IL = cast<InitListExpr>(CE->getArg(0));
4481       Out << "tl";
4482       mangleType(CE->getType());
4483       mangleInitListElements(IL);
4484       Out << "E";
4485       break;
4486     }
4487 
4488     Out << "cv";
4489     mangleType(CE->getType());
4490     if (N != 1) Out << '_';
4491     for (unsigned I = 0; I != N; ++I) mangleExpression(CE->getArg(I));
4492     if (N != 1) Out << 'E';
4493     break;
4494   }
4495 
4496   case Expr::CXXConstructExprClass: {
4497     // An implicit cast is silent, thus may contain <expr-primary>.
4498     const auto *CE = cast<CXXConstructExpr>(E);
4499     if (!CE->isListInitialization() || CE->isStdInitListInitialization()) {
4500       assert(
4501           CE->getNumArgs() >= 1 &&
4502           (CE->getNumArgs() == 1 || isa<CXXDefaultArgExpr>(CE->getArg(1))) &&
4503           "implicit CXXConstructExpr must have one argument");
4504       E = cast<CXXConstructExpr>(E)->getArg(0);
4505       goto recurse;
4506     }
4507     NotPrimaryExpr();
4508     Out << "il";
4509     for (auto *E : CE->arguments())
4510       mangleExpression(E);
4511     Out << "E";
4512     break;
4513   }
4514 
4515   case Expr::CXXTemporaryObjectExprClass: {
4516     NotPrimaryExpr();
4517     const auto *CE = cast<CXXTemporaryObjectExpr>(E);
4518     unsigned N = CE->getNumArgs();
4519     bool List = CE->isListInitialization();
4520 
4521     if (List)
4522       Out << "tl";
4523     else
4524       Out << "cv";
4525     mangleType(CE->getType());
4526     if (!List && N != 1)
4527       Out << '_';
4528     if (CE->isStdInitListInitialization()) {
4529       // We implicitly created a std::initializer_list<T> for the first argument
4530       // of a constructor of type U in an expression of the form U{a, b, c}.
4531       // Strip all the semantic gunk off the initializer list.
4532       auto *SILE =
4533           cast<CXXStdInitializerListExpr>(CE->getArg(0)->IgnoreImplicit());
4534       auto *ILE = cast<InitListExpr>(SILE->getSubExpr()->IgnoreImplicit());
4535       mangleInitListElements(ILE);
4536     } else {
4537       for (auto *E : CE->arguments())
4538         mangleExpression(E);
4539     }
4540     if (List || N != 1)
4541       Out << 'E';
4542     break;
4543   }
4544 
4545   case Expr::CXXScalarValueInitExprClass:
4546     NotPrimaryExpr();
4547     Out << "cv";
4548     mangleType(E->getType());
4549     Out << "_E";
4550     break;
4551 
4552   case Expr::CXXNoexceptExprClass:
4553     NotPrimaryExpr();
4554     Out << "nx";
4555     mangleExpression(cast<CXXNoexceptExpr>(E)->getOperand());
4556     break;
4557 
4558   case Expr::UnaryExprOrTypeTraitExprClass: {
4559     // Non-instantiation-dependent traits are an <expr-primary> integer literal.
4560     const UnaryExprOrTypeTraitExpr *SAE = cast<UnaryExprOrTypeTraitExpr>(E);
4561 
4562     if (!SAE->isInstantiationDependent()) {
4563       // Itanium C++ ABI:
4564       //   If the operand of a sizeof or alignof operator is not
4565       //   instantiation-dependent it is encoded as an integer literal
4566       //   reflecting the result of the operator.
4567       //
4568       //   If the result of the operator is implicitly converted to a known
4569       //   integer type, that type is used for the literal; otherwise, the type
4570       //   of std::size_t or std::ptrdiff_t is used.
4571       QualType T = (ImplicitlyConvertedToType.isNull() ||
4572                     !ImplicitlyConvertedToType->isIntegerType())? SAE->getType()
4573                                                     : ImplicitlyConvertedToType;
4574       llvm::APSInt V = SAE->EvaluateKnownConstInt(Context.getASTContext());
4575       mangleIntegerLiteral(T, V);
4576       break;
4577     }
4578 
4579     NotPrimaryExpr(); // But otherwise, they are not.
4580 
4581     auto MangleAlignofSizeofArg = [&] {
4582       if (SAE->isArgumentType()) {
4583         Out << 't';
4584         mangleType(SAE->getArgumentType());
4585       } else {
4586         Out << 'z';
4587         mangleExpression(SAE->getArgumentExpr());
4588       }
4589     };
4590 
4591     switch(SAE->getKind()) {
4592     case UETT_SizeOf:
4593       Out << 's';
4594       MangleAlignofSizeofArg();
4595       break;
4596     case UETT_PreferredAlignOf:
4597       // As of clang 12, we mangle __alignof__ differently than alignof. (They
4598       // have acted differently since Clang 8, but were previously mangled the
4599       // same.)
4600       if (Context.getASTContext().getLangOpts().getClangABICompat() >
4601           LangOptions::ClangABI::Ver11) {
4602         Out << "u11__alignof__";
4603         if (SAE->isArgumentType())
4604           mangleType(SAE->getArgumentType());
4605         else
4606           mangleTemplateArgExpr(SAE->getArgumentExpr());
4607         Out << 'E';
4608         break;
4609       }
4610       LLVM_FALLTHROUGH;
4611     case UETT_AlignOf:
4612       Out << 'a';
4613       MangleAlignofSizeofArg();
4614       break;
4615     case UETT_VecStep: {
4616       DiagnosticsEngine &Diags = Context.getDiags();
4617       unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error,
4618                                      "cannot yet mangle vec_step expression");
4619       Diags.Report(DiagID);
4620       return;
4621     }
4622     case UETT_OpenMPRequiredSimdAlign: {
4623       DiagnosticsEngine &Diags = Context.getDiags();
4624       unsigned DiagID = Diags.getCustomDiagID(
4625           DiagnosticsEngine::Error,
4626           "cannot yet mangle __builtin_omp_required_simd_align expression");
4627       Diags.Report(DiagID);
4628       return;
4629     }
4630     }
4631     break;
4632   }
4633 
4634   case Expr::CXXThrowExprClass: {
4635     NotPrimaryExpr();
4636     const CXXThrowExpr *TE = cast<CXXThrowExpr>(E);
4637     //  <expression> ::= tw <expression>  # throw expression
4638     //               ::= tr               # rethrow
4639     if (TE->getSubExpr()) {
4640       Out << "tw";
4641       mangleExpression(TE->getSubExpr());
4642     } else {
4643       Out << "tr";
4644     }
4645     break;
4646   }
4647 
4648   case Expr::CXXTypeidExprClass: {
4649     NotPrimaryExpr();
4650     const CXXTypeidExpr *TIE = cast<CXXTypeidExpr>(E);
4651     //  <expression> ::= ti <type>        # typeid (type)
4652     //               ::= te <expression>  # typeid (expression)
4653     if (TIE->isTypeOperand()) {
4654       Out << "ti";
4655       mangleType(TIE->getTypeOperand(Context.getASTContext()));
4656     } else {
4657       Out << "te";
4658       mangleExpression(TIE->getExprOperand());
4659     }
4660     break;
4661   }
4662 
4663   case Expr::CXXDeleteExprClass: {
4664     NotPrimaryExpr();
4665     const CXXDeleteExpr *DE = cast<CXXDeleteExpr>(E);
4666     //  <expression> ::= [gs] dl <expression>  # [::] delete expr
4667     //               ::= [gs] da <expression>  # [::] delete [] expr
4668     if (DE->isGlobalDelete()) Out << "gs";
4669     Out << (DE->isArrayForm() ? "da" : "dl");
4670     mangleExpression(DE->getArgument());
4671     break;
4672   }
4673 
4674   case Expr::UnaryOperatorClass: {
4675     NotPrimaryExpr();
4676     const UnaryOperator *UO = cast<UnaryOperator>(E);
4677     mangleOperatorName(UnaryOperator::getOverloadedOperator(UO->getOpcode()),
4678                        /*Arity=*/1);
4679     mangleExpression(UO->getSubExpr());
4680     break;
4681   }
4682 
4683   case Expr::ArraySubscriptExprClass: {
4684     NotPrimaryExpr();
4685     const ArraySubscriptExpr *AE = cast<ArraySubscriptExpr>(E);
4686 
4687     // Array subscript is treated as a syntactically weird form of
4688     // binary operator.
4689     Out << "ix";
4690     mangleExpression(AE->getLHS());
4691     mangleExpression(AE->getRHS());
4692     break;
4693   }
4694 
4695   case Expr::MatrixSubscriptExprClass: {
4696     NotPrimaryExpr();
4697     const MatrixSubscriptExpr *ME = cast<MatrixSubscriptExpr>(E);
4698     Out << "ixix";
4699     mangleExpression(ME->getBase());
4700     mangleExpression(ME->getRowIdx());
4701     mangleExpression(ME->getColumnIdx());
4702     break;
4703   }
4704 
4705   case Expr::CompoundAssignOperatorClass: // fallthrough
4706   case Expr::BinaryOperatorClass: {
4707     NotPrimaryExpr();
4708     const BinaryOperator *BO = cast<BinaryOperator>(E);
4709     if (BO->getOpcode() == BO_PtrMemD)
4710       Out << "ds";
4711     else
4712       mangleOperatorName(BinaryOperator::getOverloadedOperator(BO->getOpcode()),
4713                          /*Arity=*/2);
4714     mangleExpression(BO->getLHS());
4715     mangleExpression(BO->getRHS());
4716     break;
4717   }
4718 
4719   case Expr::CXXRewrittenBinaryOperatorClass: {
4720     NotPrimaryExpr();
4721     // The mangled form represents the original syntax.
4722     CXXRewrittenBinaryOperator::DecomposedForm Decomposed =
4723         cast<CXXRewrittenBinaryOperator>(E)->getDecomposedForm();
4724     mangleOperatorName(BinaryOperator::getOverloadedOperator(Decomposed.Opcode),
4725                        /*Arity=*/2);
4726     mangleExpression(Decomposed.LHS);
4727     mangleExpression(Decomposed.RHS);
4728     break;
4729   }
4730 
4731   case Expr::ConditionalOperatorClass: {
4732     NotPrimaryExpr();
4733     const ConditionalOperator *CO = cast<ConditionalOperator>(E);
4734     mangleOperatorName(OO_Conditional, /*Arity=*/3);
4735     mangleExpression(CO->getCond());
4736     mangleExpression(CO->getLHS(), Arity);
4737     mangleExpression(CO->getRHS(), Arity);
4738     break;
4739   }
4740 
4741   case Expr::ImplicitCastExprClass: {
4742     ImplicitlyConvertedToType = E->getType();
4743     E = cast<ImplicitCastExpr>(E)->getSubExpr();
4744     goto recurse;
4745   }
4746 
4747   case Expr::ObjCBridgedCastExprClass: {
4748     NotPrimaryExpr();
4749     // Mangle ownership casts as a vendor extended operator __bridge,
4750     // __bridge_transfer, or __bridge_retain.
4751     StringRef Kind = cast<ObjCBridgedCastExpr>(E)->getBridgeKindName();
4752     Out << "v1U" << Kind.size() << Kind;
4753     mangleCastExpression(E, "cv");
4754     break;
4755   }
4756 
4757   case Expr::CStyleCastExprClass:
4758     NotPrimaryExpr();
4759     mangleCastExpression(E, "cv");
4760     break;
4761 
4762   case Expr::CXXFunctionalCastExprClass: {
4763     NotPrimaryExpr();
4764     auto *Sub = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreImplicit();
4765     // FIXME: Add isImplicit to CXXConstructExpr.
4766     if (auto *CCE = dyn_cast<CXXConstructExpr>(Sub))
4767       if (CCE->getParenOrBraceRange().isInvalid())
4768         Sub = CCE->getArg(0)->IgnoreImplicit();
4769     if (auto *StdInitList = dyn_cast<CXXStdInitializerListExpr>(Sub))
4770       Sub = StdInitList->getSubExpr()->IgnoreImplicit();
4771     if (auto *IL = dyn_cast<InitListExpr>(Sub)) {
4772       Out << "tl";
4773       mangleType(E->getType());
4774       mangleInitListElements(IL);
4775       Out << "E";
4776     } else {
4777       mangleCastExpression(E, "cv");
4778     }
4779     break;
4780   }
4781 
4782   case Expr::CXXStaticCastExprClass:
4783     NotPrimaryExpr();
4784     mangleCastExpression(E, "sc");
4785     break;
4786   case Expr::CXXDynamicCastExprClass:
4787     NotPrimaryExpr();
4788     mangleCastExpression(E, "dc");
4789     break;
4790   case Expr::CXXReinterpretCastExprClass:
4791     NotPrimaryExpr();
4792     mangleCastExpression(E, "rc");
4793     break;
4794   case Expr::CXXConstCastExprClass:
4795     NotPrimaryExpr();
4796     mangleCastExpression(E, "cc");
4797     break;
4798   case Expr::CXXAddrspaceCastExprClass:
4799     NotPrimaryExpr();
4800     mangleCastExpression(E, "ac");
4801     break;
4802 
4803   case Expr::CXXOperatorCallExprClass: {
4804     NotPrimaryExpr();
4805     const CXXOperatorCallExpr *CE = cast<CXXOperatorCallExpr>(E);
4806     unsigned NumArgs = CE->getNumArgs();
4807     // A CXXOperatorCallExpr for OO_Arrow models only semantics, not syntax
4808     // (the enclosing MemberExpr covers the syntactic portion).
4809     if (CE->getOperator() != OO_Arrow)
4810       mangleOperatorName(CE->getOperator(), /*Arity=*/NumArgs);
4811     // Mangle the arguments.
4812     for (unsigned i = 0; i != NumArgs; ++i)
4813       mangleExpression(CE->getArg(i));
4814     break;
4815   }
4816 
4817   case Expr::ParenExprClass:
4818     E = cast<ParenExpr>(E)->getSubExpr();
4819     goto recurse;
4820 
4821   case Expr::ConceptSpecializationExprClass: {
4822     //  <expr-primary> ::= L <mangled-name> E # external name
4823     Out << "L_Z";
4824     auto *CSE = cast<ConceptSpecializationExpr>(E);
4825     mangleTemplateName(CSE->getNamedConcept(),
4826                        CSE->getTemplateArguments().data(),
4827                        CSE->getTemplateArguments().size());
4828     Out << 'E';
4829     break;
4830   }
4831 
4832   case Expr::DeclRefExprClass:
4833     // MangleDeclRefExpr helper handles primary-vs-nonprimary
4834     MangleDeclRefExpr(cast<DeclRefExpr>(E)->getDecl());
4835     break;
4836 
4837   case Expr::SubstNonTypeTemplateParmPackExprClass:
4838     NotPrimaryExpr();
4839     // FIXME: not clear how to mangle this!
4840     // template <unsigned N...> class A {
4841     //   template <class U...> void foo(U (&x)[N]...);
4842     // };
4843     Out << "_SUBSTPACK_";
4844     break;
4845 
4846   case Expr::FunctionParmPackExprClass: {
4847     NotPrimaryExpr();
4848     // FIXME: not clear how to mangle this!
4849     const FunctionParmPackExpr *FPPE = cast<FunctionParmPackExpr>(E);
4850     Out << "v110_SUBSTPACK";
4851     MangleDeclRefExpr(FPPE->getParameterPack());
4852     break;
4853   }
4854 
4855   case Expr::DependentScopeDeclRefExprClass: {
4856     NotPrimaryExpr();
4857     const DependentScopeDeclRefExpr *DRE = cast<DependentScopeDeclRefExpr>(E);
4858     mangleUnresolvedName(DRE->getQualifier(), DRE->getDeclName(),
4859                          DRE->getTemplateArgs(), DRE->getNumTemplateArgs(),
4860                          Arity);
4861     break;
4862   }
4863 
4864   case Expr::CXXBindTemporaryExprClass:
4865     E = cast<CXXBindTemporaryExpr>(E)->getSubExpr();
4866     goto recurse;
4867 
4868   case Expr::ExprWithCleanupsClass:
4869     E = cast<ExprWithCleanups>(E)->getSubExpr();
4870     goto recurse;
4871 
4872   case Expr::FloatingLiteralClass: {
4873     // <expr-primary>
4874     const FloatingLiteral *FL = cast<FloatingLiteral>(E);
4875     mangleFloatLiteral(FL->getType(), FL->getValue());
4876     break;
4877   }
4878 
4879   case Expr::FixedPointLiteralClass:
4880     // Currently unimplemented -- might be <expr-primary> in future?
4881     mangleFixedPointLiteral();
4882     break;
4883 
4884   case Expr::CharacterLiteralClass:
4885     // <expr-primary>
4886     Out << 'L';
4887     mangleType(E->getType());
4888     Out << cast<CharacterLiteral>(E)->getValue();
4889     Out << 'E';
4890     break;
4891 
4892   // FIXME. __objc_yes/__objc_no are mangled same as true/false
4893   case Expr::ObjCBoolLiteralExprClass:
4894     // <expr-primary>
4895     Out << "Lb";
4896     Out << (cast<ObjCBoolLiteralExpr>(E)->getValue() ? '1' : '0');
4897     Out << 'E';
4898     break;
4899 
4900   case Expr::CXXBoolLiteralExprClass:
4901     // <expr-primary>
4902     Out << "Lb";
4903     Out << (cast<CXXBoolLiteralExpr>(E)->getValue() ? '1' : '0');
4904     Out << 'E';
4905     break;
4906 
4907   case Expr::IntegerLiteralClass: {
4908     // <expr-primary>
4909     llvm::APSInt Value(cast<IntegerLiteral>(E)->getValue());
4910     if (E->getType()->isSignedIntegerType())
4911       Value.setIsSigned(true);
4912     mangleIntegerLiteral(E->getType(), Value);
4913     break;
4914   }
4915 
4916   case Expr::ImaginaryLiteralClass: {
4917     // <expr-primary>
4918     const ImaginaryLiteral *IE = cast<ImaginaryLiteral>(E);
4919     // Mangle as if a complex literal.
4920     // Proposal from David Vandevoorde, 2010.06.30.
4921     Out << 'L';
4922     mangleType(E->getType());
4923     if (const FloatingLiteral *Imag =
4924           dyn_cast<FloatingLiteral>(IE->getSubExpr())) {
4925       // Mangle a floating-point zero of the appropriate type.
4926       mangleFloat(llvm::APFloat(Imag->getValue().getSemantics()));
4927       Out << '_';
4928       mangleFloat(Imag->getValue());
4929     } else {
4930       Out << "0_";
4931       llvm::APSInt Value(cast<IntegerLiteral>(IE->getSubExpr())->getValue());
4932       if (IE->getSubExpr()->getType()->isSignedIntegerType())
4933         Value.setIsSigned(true);
4934       mangleNumber(Value);
4935     }
4936     Out << 'E';
4937     break;
4938   }
4939 
4940   case Expr::StringLiteralClass: {
4941     // <expr-primary>
4942     // Revised proposal from David Vandervoorde, 2010.07.15.
4943     Out << 'L';
4944     assert(isa<ConstantArrayType>(E->getType()));
4945     mangleType(E->getType());
4946     Out << 'E';
4947     break;
4948   }
4949 
4950   case Expr::GNUNullExprClass:
4951     // <expr-primary>
4952     // Mangle as if an integer literal 0.
4953     mangleIntegerLiteral(E->getType(), llvm::APSInt(32));
4954     break;
4955 
4956   case Expr::CXXNullPtrLiteralExprClass: {
4957     // <expr-primary>
4958     Out << "LDnE";
4959     break;
4960   }
4961 
4962   case Expr::PackExpansionExprClass:
4963     NotPrimaryExpr();
4964     Out << "sp";
4965     mangleExpression(cast<PackExpansionExpr>(E)->getPattern());
4966     break;
4967 
4968   case Expr::SizeOfPackExprClass: {
4969     NotPrimaryExpr();
4970     auto *SPE = cast<SizeOfPackExpr>(E);
4971     if (SPE->isPartiallySubstituted()) {
4972       Out << "sP";
4973       for (const auto &A : SPE->getPartialArguments())
4974         mangleTemplateArg(A, false);
4975       Out << "E";
4976       break;
4977     }
4978 
4979     Out << "sZ";
4980     const NamedDecl *Pack = SPE->getPack();
4981     if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Pack))
4982       mangleTemplateParameter(TTP->getDepth(), TTP->getIndex());
4983     else if (const NonTypeTemplateParmDecl *NTTP
4984                 = dyn_cast<NonTypeTemplateParmDecl>(Pack))
4985       mangleTemplateParameter(NTTP->getDepth(), NTTP->getIndex());
4986     else if (const TemplateTemplateParmDecl *TempTP
4987                                     = dyn_cast<TemplateTemplateParmDecl>(Pack))
4988       mangleTemplateParameter(TempTP->getDepth(), TempTP->getIndex());
4989     else
4990       mangleFunctionParam(cast<ParmVarDecl>(Pack));
4991     break;
4992   }
4993 
4994   case Expr::MaterializeTemporaryExprClass:
4995     E = cast<MaterializeTemporaryExpr>(E)->getSubExpr();
4996     goto recurse;
4997 
4998   case Expr::CXXFoldExprClass: {
4999     NotPrimaryExpr();
5000     auto *FE = cast<CXXFoldExpr>(E);
5001     if (FE->isLeftFold())
5002       Out << (FE->getInit() ? "fL" : "fl");
5003     else
5004       Out << (FE->getInit() ? "fR" : "fr");
5005 
5006     if (FE->getOperator() == BO_PtrMemD)
5007       Out << "ds";
5008     else
5009       mangleOperatorName(
5010           BinaryOperator::getOverloadedOperator(FE->getOperator()),
5011           /*Arity=*/2);
5012 
5013     if (FE->getLHS())
5014       mangleExpression(FE->getLHS());
5015     if (FE->getRHS())
5016       mangleExpression(FE->getRHS());
5017     break;
5018   }
5019 
5020   case Expr::CXXThisExprClass:
5021     NotPrimaryExpr();
5022     Out << "fpT";
5023     break;
5024 
5025   case Expr::CoawaitExprClass:
5026     // FIXME: Propose a non-vendor mangling.
5027     NotPrimaryExpr();
5028     Out << "v18co_await";
5029     mangleExpression(cast<CoawaitExpr>(E)->getOperand());
5030     break;
5031 
5032   case Expr::DependentCoawaitExprClass:
5033     // FIXME: Propose a non-vendor mangling.
5034     NotPrimaryExpr();
5035     Out << "v18co_await";
5036     mangleExpression(cast<DependentCoawaitExpr>(E)->getOperand());
5037     break;
5038 
5039   case Expr::CoyieldExprClass:
5040     // FIXME: Propose a non-vendor mangling.
5041     NotPrimaryExpr();
5042     Out << "v18co_yield";
5043     mangleExpression(cast<CoawaitExpr>(E)->getOperand());
5044     break;
5045   case Expr::SYCLUniqueStableNameExprClass: {
5046     const auto *USN = cast<SYCLUniqueStableNameExpr>(E);
5047     NotPrimaryExpr();
5048 
5049     Out << "u33__builtin_sycl_unique_stable_name";
5050     mangleType(USN->getTypeSourceInfo()->getType());
5051 
5052     Out << "E";
5053     break;
5054   }
5055   }
5056 
5057   if (AsTemplateArg && !IsPrimaryExpr)
5058     Out << 'E';
5059 }
5060 
5061 /// Mangle an expression which refers to a parameter variable.
5062 ///
5063 /// <expression>     ::= <function-param>
5064 /// <function-param> ::= fp <top-level CV-qualifiers> _      # L == 0, I == 0
5065 /// <function-param> ::= fp <top-level CV-qualifiers>
5066 ///                      <parameter-2 non-negative number> _ # L == 0, I > 0
5067 /// <function-param> ::= fL <L-1 non-negative number>
5068 ///                      p <top-level CV-qualifiers> _       # L > 0, I == 0
5069 /// <function-param> ::= fL <L-1 non-negative number>
5070 ///                      p <top-level CV-qualifiers>
5071 ///                      <I-1 non-negative number> _         # L > 0, I > 0
5072 ///
5073 /// L is the nesting depth of the parameter, defined as 1 if the
5074 /// parameter comes from the innermost function prototype scope
5075 /// enclosing the current context, 2 if from the next enclosing
5076 /// function prototype scope, and so on, with one special case: if
5077 /// we've processed the full parameter clause for the innermost
5078 /// function type, then L is one less.  This definition conveniently
5079 /// makes it irrelevant whether a function's result type was written
5080 /// trailing or leading, but is otherwise overly complicated; the
5081 /// numbering was first designed without considering references to
5082 /// parameter in locations other than return types, and then the
5083 /// mangling had to be generalized without changing the existing
5084 /// manglings.
5085 ///
5086 /// I is the zero-based index of the parameter within its parameter
5087 /// declaration clause.  Note that the original ABI document describes
5088 /// this using 1-based ordinals.
5089 void CXXNameMangler::mangleFunctionParam(const ParmVarDecl *parm) {
5090   unsigned parmDepth = parm->getFunctionScopeDepth();
5091   unsigned parmIndex = parm->getFunctionScopeIndex();
5092 
5093   // Compute 'L'.
5094   // parmDepth does not include the declaring function prototype.
5095   // FunctionTypeDepth does account for that.
5096   assert(parmDepth < FunctionTypeDepth.getDepth());
5097   unsigned nestingDepth = FunctionTypeDepth.getDepth() - parmDepth;
5098   if (FunctionTypeDepth.isInResultType())
5099     nestingDepth--;
5100 
5101   if (nestingDepth == 0) {
5102     Out << "fp";
5103   } else {
5104     Out << "fL" << (nestingDepth - 1) << 'p';
5105   }
5106 
5107   // Top-level qualifiers.  We don't have to worry about arrays here,
5108   // because parameters declared as arrays should already have been
5109   // transformed to have pointer type. FIXME: apparently these don't
5110   // get mangled if used as an rvalue of a known non-class type?
5111   assert(!parm->getType()->isArrayType()
5112          && "parameter's type is still an array type?");
5113 
5114   if (const DependentAddressSpaceType *DAST =
5115       dyn_cast<DependentAddressSpaceType>(parm->getType())) {
5116     mangleQualifiers(DAST->getPointeeType().getQualifiers(), DAST);
5117   } else {
5118     mangleQualifiers(parm->getType().getQualifiers());
5119   }
5120 
5121   // Parameter index.
5122   if (parmIndex != 0) {
5123     Out << (parmIndex - 1);
5124   }
5125   Out << '_';
5126 }
5127 
5128 void CXXNameMangler::mangleCXXCtorType(CXXCtorType T,
5129                                        const CXXRecordDecl *InheritedFrom) {
5130   // <ctor-dtor-name> ::= C1  # complete object constructor
5131   //                  ::= C2  # base object constructor
5132   //                  ::= CI1 <type> # complete inheriting constructor
5133   //                  ::= CI2 <type> # base inheriting constructor
5134   //
5135   // In addition, C5 is a comdat name with C1 and C2 in it.
5136   Out << 'C';
5137   if (InheritedFrom)
5138     Out << 'I';
5139   switch (T) {
5140   case Ctor_Complete:
5141     Out << '1';
5142     break;
5143   case Ctor_Base:
5144     Out << '2';
5145     break;
5146   case Ctor_Comdat:
5147     Out << '5';
5148     break;
5149   case Ctor_DefaultClosure:
5150   case Ctor_CopyingClosure:
5151     llvm_unreachable("closure constructors don't exist for the Itanium ABI!");
5152   }
5153   if (InheritedFrom)
5154     mangleName(InheritedFrom);
5155 }
5156 
5157 void CXXNameMangler::mangleCXXDtorType(CXXDtorType T) {
5158   // <ctor-dtor-name> ::= D0  # deleting destructor
5159   //                  ::= D1  # complete object destructor
5160   //                  ::= D2  # base object destructor
5161   //
5162   // In addition, D5 is a comdat name with D1, D2 and, if virtual, D0 in it.
5163   switch (T) {
5164   case Dtor_Deleting:
5165     Out << "D0";
5166     break;
5167   case Dtor_Complete:
5168     Out << "D1";
5169     break;
5170   case Dtor_Base:
5171     Out << "D2";
5172     break;
5173   case Dtor_Comdat:
5174     Out << "D5";
5175     break;
5176   }
5177 }
5178 
5179 namespace {
5180 // Helper to provide ancillary information on a template used to mangle its
5181 // arguments.
5182 struct TemplateArgManglingInfo {
5183   TemplateDecl *ResolvedTemplate = nullptr;
5184   bool SeenPackExpansionIntoNonPack = false;
5185   const NamedDecl *UnresolvedExpandedPack = nullptr;
5186 
5187   TemplateArgManglingInfo(TemplateName TN) {
5188     if (TemplateDecl *TD = TN.getAsTemplateDecl())
5189       ResolvedTemplate = TD;
5190   }
5191 
5192   /// Do we need to mangle template arguments with exactly correct types?
5193   ///
5194   /// This should be called exactly once for each parameter / argument pair, in
5195   /// order.
5196   bool needExactType(unsigned ParamIdx, const TemplateArgument &Arg) {
5197     // We need correct types when the template-name is unresolved or when it
5198     // names a template that is able to be overloaded.
5199     if (!ResolvedTemplate || SeenPackExpansionIntoNonPack)
5200       return true;
5201 
5202     // Move to the next parameter.
5203     const NamedDecl *Param = UnresolvedExpandedPack;
5204     if (!Param) {
5205       assert(ParamIdx < ResolvedTemplate->getTemplateParameters()->size() &&
5206              "no parameter for argument");
5207       Param = ResolvedTemplate->getTemplateParameters()->getParam(ParamIdx);
5208 
5209       // If we reach an expanded parameter pack whose argument isn't in pack
5210       // form, that means Sema couldn't figure out which arguments belonged to
5211       // it, because it contains a pack expansion. Track the expanded pack for
5212       // all further template arguments until we hit that pack expansion.
5213       if (Param->isParameterPack() && Arg.getKind() != TemplateArgument::Pack) {
5214         assert(getExpandedPackSize(Param) &&
5215                "failed to form pack argument for parameter pack");
5216         UnresolvedExpandedPack = Param;
5217       }
5218     }
5219 
5220     // If we encounter a pack argument that is expanded into a non-pack
5221     // parameter, we can no longer track parameter / argument correspondence,
5222     // and need to use exact types from this point onwards.
5223     if (Arg.isPackExpansion() &&
5224         (!Param->isParameterPack() || UnresolvedExpandedPack)) {
5225       SeenPackExpansionIntoNonPack = true;
5226       return true;
5227     }
5228 
5229     // We need exact types for function template arguments because they might be
5230     // overloaded on template parameter type. As a special case, a member
5231     // function template of a generic lambda is not overloadable.
5232     if (auto *FTD = dyn_cast<FunctionTemplateDecl>(ResolvedTemplate)) {
5233       auto *RD = dyn_cast<CXXRecordDecl>(FTD->getDeclContext());
5234       if (!RD || !RD->isGenericLambda())
5235         return true;
5236     }
5237 
5238     // Otherwise, we only need a correct type if the parameter has a deduced
5239     // type.
5240     //
5241     // Note: for an expanded parameter pack, getType() returns the type prior
5242     // to expansion. We could ask for the expanded type with getExpansionType(),
5243     // but it doesn't matter because substitution and expansion don't affect
5244     // whether a deduced type appears in the type.
5245     auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param);
5246     return NTTP && NTTP->getType()->getContainedDeducedType();
5247   }
5248 };
5249 }
5250 
5251 void CXXNameMangler::mangleTemplateArgs(TemplateName TN,
5252                                         const TemplateArgumentLoc *TemplateArgs,
5253                                         unsigned NumTemplateArgs) {
5254   // <template-args> ::= I <template-arg>+ E
5255   Out << 'I';
5256   TemplateArgManglingInfo Info(TN);
5257   for (unsigned i = 0; i != NumTemplateArgs; ++i)
5258     mangleTemplateArg(TemplateArgs[i].getArgument(),
5259                       Info.needExactType(i, TemplateArgs[i].getArgument()));
5260   Out << 'E';
5261 }
5262 
5263 void CXXNameMangler::mangleTemplateArgs(TemplateName TN,
5264                                         const TemplateArgumentList &AL) {
5265   // <template-args> ::= I <template-arg>+ E
5266   Out << 'I';
5267   TemplateArgManglingInfo Info(TN);
5268   for (unsigned i = 0, e = AL.size(); i != e; ++i)
5269     mangleTemplateArg(AL[i], Info.needExactType(i, AL[i]));
5270   Out << 'E';
5271 }
5272 
5273 void CXXNameMangler::mangleTemplateArgs(TemplateName TN,
5274                                         const TemplateArgument *TemplateArgs,
5275                                         unsigned NumTemplateArgs) {
5276   // <template-args> ::= I <template-arg>+ E
5277   Out << 'I';
5278   TemplateArgManglingInfo Info(TN);
5279   for (unsigned i = 0; i != NumTemplateArgs; ++i)
5280     mangleTemplateArg(TemplateArgs[i], Info.needExactType(i, TemplateArgs[i]));
5281   Out << 'E';
5282 }
5283 
5284 void CXXNameMangler::mangleTemplateArg(TemplateArgument A, bool NeedExactType) {
5285   // <template-arg> ::= <type>              # type or template
5286   //                ::= X <expression> E    # expression
5287   //                ::= <expr-primary>      # simple expressions
5288   //                ::= J <template-arg>* E # argument pack
5289   if (!A.isInstantiationDependent() || A.isDependent())
5290     A = Context.getASTContext().getCanonicalTemplateArgument(A);
5291 
5292   switch (A.getKind()) {
5293   case TemplateArgument::Null:
5294     llvm_unreachable("Cannot mangle NULL template argument");
5295 
5296   case TemplateArgument::Type:
5297     mangleType(A.getAsType());
5298     break;
5299   case TemplateArgument::Template:
5300     // This is mangled as <type>.
5301     mangleType(A.getAsTemplate());
5302     break;
5303   case TemplateArgument::TemplateExpansion:
5304     // <type>  ::= Dp <type>          # pack expansion (C++0x)
5305     Out << "Dp";
5306     mangleType(A.getAsTemplateOrTemplatePattern());
5307     break;
5308   case TemplateArgument::Expression:
5309     mangleTemplateArgExpr(A.getAsExpr());
5310     break;
5311   case TemplateArgument::Integral:
5312     mangleIntegerLiteral(A.getIntegralType(), A.getAsIntegral());
5313     break;
5314   case TemplateArgument::Declaration: {
5315     //  <expr-primary> ::= L <mangled-name> E # external name
5316     ValueDecl *D = A.getAsDecl();
5317 
5318     // Template parameter objects are modeled by reproducing a source form
5319     // produced as if by aggregate initialization.
5320     if (A.getParamTypeForDecl()->isRecordType()) {
5321       auto *TPO = cast<TemplateParamObjectDecl>(D);
5322       mangleValueInTemplateArg(TPO->getType().getUnqualifiedType(),
5323                                TPO->getValue(), /*TopLevel=*/true,
5324                                NeedExactType);
5325       break;
5326     }
5327 
5328     ASTContext &Ctx = Context.getASTContext();
5329     APValue Value;
5330     if (D->isCXXInstanceMember())
5331       // Simple pointer-to-member with no conversion.
5332       Value = APValue(D, /*IsDerivedMember=*/false, /*Path=*/{});
5333     else if (D->getType()->isArrayType() &&
5334              Ctx.hasSimilarType(Ctx.getDecayedType(D->getType()),
5335                                 A.getParamTypeForDecl()) &&
5336              Ctx.getLangOpts().getClangABICompat() >
5337                  LangOptions::ClangABI::Ver11)
5338       // Build a value corresponding to this implicit array-to-pointer decay.
5339       Value = APValue(APValue::LValueBase(D), CharUnits::Zero(),
5340                       {APValue::LValuePathEntry::ArrayIndex(0)},
5341                       /*OnePastTheEnd=*/false);
5342     else
5343       // Regular pointer or reference to a declaration.
5344       Value = APValue(APValue::LValueBase(D), CharUnits::Zero(),
5345                       ArrayRef<APValue::LValuePathEntry>(),
5346                       /*OnePastTheEnd=*/false);
5347     mangleValueInTemplateArg(A.getParamTypeForDecl(), Value, /*TopLevel=*/true,
5348                              NeedExactType);
5349     break;
5350   }
5351   case TemplateArgument::NullPtr: {
5352     mangleNullPointer(A.getNullPtrType());
5353     break;
5354   }
5355   case TemplateArgument::Pack: {
5356     //  <template-arg> ::= J <template-arg>* E
5357     Out << 'J';
5358     for (const auto &P : A.pack_elements())
5359       mangleTemplateArg(P, NeedExactType);
5360     Out << 'E';
5361   }
5362   }
5363 }
5364 
5365 void CXXNameMangler::mangleTemplateArgExpr(const Expr *E) {
5366   ASTContext &Ctx = Context.getASTContext();
5367   if (Ctx.getLangOpts().getClangABICompat() > LangOptions::ClangABI::Ver11) {
5368     mangleExpression(E, UnknownArity, /*AsTemplateArg=*/true);
5369     return;
5370   }
5371 
5372   // Prior to Clang 12, we didn't omit the X .. E around <expr-primary>
5373   // correctly in cases where the template argument was
5374   // constructed from an expression rather than an already-evaluated
5375   // literal. In such a case, we would then e.g. emit 'XLi0EE' instead of
5376   // 'Li0E'.
5377   //
5378   // We did special-case DeclRefExpr to attempt to DTRT for that one
5379   // expression-kind, but while doing so, unfortunately handled ParmVarDecl
5380   // (subtype of VarDecl) _incorrectly_, and emitted 'L_Z .. E' instead of
5381   // the proper 'Xfp_E'.
5382   E = E->IgnoreParenImpCasts();
5383   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
5384     const ValueDecl *D = DRE->getDecl();
5385     if (isa<VarDecl>(D) || isa<FunctionDecl>(D)) {
5386       Out << 'L';
5387       mangle(D);
5388       Out << 'E';
5389       return;
5390     }
5391   }
5392   Out << 'X';
5393   mangleExpression(E);
5394   Out << 'E';
5395 }
5396 
5397 /// Determine whether a given value is equivalent to zero-initialization for
5398 /// the purpose of discarding a trailing portion of a 'tl' mangling.
5399 ///
5400 /// Note that this is not in general equivalent to determining whether the
5401 /// value has an all-zeroes bit pattern.
5402 static bool isZeroInitialized(QualType T, const APValue &V) {
5403   // FIXME: mangleValueInTemplateArg has quadratic time complexity in
5404   // pathological cases due to using this, but it's a little awkward
5405   // to do this in linear time in general.
5406   switch (V.getKind()) {
5407   case APValue::None:
5408   case APValue::Indeterminate:
5409   case APValue::AddrLabelDiff:
5410     return false;
5411 
5412   case APValue::Struct: {
5413     const CXXRecordDecl *RD = T->getAsCXXRecordDecl();
5414     assert(RD && "unexpected type for record value");
5415     unsigned I = 0;
5416     for (const CXXBaseSpecifier &BS : RD->bases()) {
5417       if (!isZeroInitialized(BS.getType(), V.getStructBase(I)))
5418         return false;
5419       ++I;
5420     }
5421     I = 0;
5422     for (const FieldDecl *FD : RD->fields()) {
5423       if (!FD->isUnnamedBitfield() &&
5424           !isZeroInitialized(FD->getType(), V.getStructField(I)))
5425         return false;
5426       ++I;
5427     }
5428     return true;
5429   }
5430 
5431   case APValue::Union: {
5432     const CXXRecordDecl *RD = T->getAsCXXRecordDecl();
5433     assert(RD && "unexpected type for union value");
5434     // Zero-initialization zeroes the first non-unnamed-bitfield field, if any.
5435     for (const FieldDecl *FD : RD->fields()) {
5436       if (!FD->isUnnamedBitfield())
5437         return V.getUnionField() && declaresSameEntity(FD, V.getUnionField()) &&
5438                isZeroInitialized(FD->getType(), V.getUnionValue());
5439     }
5440     // If there are no fields (other than unnamed bitfields), the value is
5441     // necessarily zero-initialized.
5442     return true;
5443   }
5444 
5445   case APValue::Array: {
5446     QualType ElemT(T->getArrayElementTypeNoTypeQual(), 0);
5447     for (unsigned I = 0, N = V.getArrayInitializedElts(); I != N; ++I)
5448       if (!isZeroInitialized(ElemT, V.getArrayInitializedElt(I)))
5449         return false;
5450     return !V.hasArrayFiller() || isZeroInitialized(ElemT, V.getArrayFiller());
5451   }
5452 
5453   case APValue::Vector: {
5454     const VectorType *VT = T->castAs<VectorType>();
5455     for (unsigned I = 0, N = V.getVectorLength(); I != N; ++I)
5456       if (!isZeroInitialized(VT->getElementType(), V.getVectorElt(I)))
5457         return false;
5458     return true;
5459   }
5460 
5461   case APValue::Int:
5462     return !V.getInt();
5463 
5464   case APValue::Float:
5465     return V.getFloat().isPosZero();
5466 
5467   case APValue::FixedPoint:
5468     return !V.getFixedPoint().getValue();
5469 
5470   case APValue::ComplexFloat:
5471     return V.getComplexFloatReal().isPosZero() &&
5472            V.getComplexFloatImag().isPosZero();
5473 
5474   case APValue::ComplexInt:
5475     return !V.getComplexIntReal() && !V.getComplexIntImag();
5476 
5477   case APValue::LValue:
5478     return V.isNullPointer();
5479 
5480   case APValue::MemberPointer:
5481     return !V.getMemberPointerDecl();
5482   }
5483 
5484   llvm_unreachable("Unhandled APValue::ValueKind enum");
5485 }
5486 
5487 static QualType getLValueType(ASTContext &Ctx, const APValue &LV) {
5488   QualType T = LV.getLValueBase().getType();
5489   for (APValue::LValuePathEntry E : LV.getLValuePath()) {
5490     if (const ArrayType *AT = Ctx.getAsArrayType(T))
5491       T = AT->getElementType();
5492     else if (const FieldDecl *FD =
5493                  dyn_cast<FieldDecl>(E.getAsBaseOrMember().getPointer()))
5494       T = FD->getType();
5495     else
5496       T = Ctx.getRecordType(
5497           cast<CXXRecordDecl>(E.getAsBaseOrMember().getPointer()));
5498   }
5499   return T;
5500 }
5501 
5502 void CXXNameMangler::mangleValueInTemplateArg(QualType T, const APValue &V,
5503                                               bool TopLevel,
5504                                               bool NeedExactType) {
5505   // Ignore all top-level cv-qualifiers, to match GCC.
5506   Qualifiers Quals;
5507   T = getASTContext().getUnqualifiedArrayType(T, Quals);
5508 
5509   // A top-level expression that's not a primary expression is wrapped in X...E.
5510   bool IsPrimaryExpr = true;
5511   auto NotPrimaryExpr = [&] {
5512     if (TopLevel && IsPrimaryExpr)
5513       Out << 'X';
5514     IsPrimaryExpr = false;
5515   };
5516 
5517   // Proposed in https://github.com/itanium-cxx-abi/cxx-abi/issues/63.
5518   switch (V.getKind()) {
5519   case APValue::None:
5520   case APValue::Indeterminate:
5521     Out << 'L';
5522     mangleType(T);
5523     Out << 'E';
5524     break;
5525 
5526   case APValue::AddrLabelDiff:
5527     llvm_unreachable("unexpected value kind in template argument");
5528 
5529   case APValue::Struct: {
5530     const CXXRecordDecl *RD = T->getAsCXXRecordDecl();
5531     assert(RD && "unexpected type for record value");
5532 
5533     // Drop trailing zero-initialized elements.
5534     llvm::SmallVector<const FieldDecl *, 16> Fields(RD->field_begin(),
5535                                                     RD->field_end());
5536     while (
5537         !Fields.empty() &&
5538         (Fields.back()->isUnnamedBitfield() ||
5539          isZeroInitialized(Fields.back()->getType(),
5540                            V.getStructField(Fields.back()->getFieldIndex())))) {
5541       Fields.pop_back();
5542     }
5543     llvm::ArrayRef<CXXBaseSpecifier> Bases(RD->bases_begin(), RD->bases_end());
5544     if (Fields.empty()) {
5545       while (!Bases.empty() &&
5546              isZeroInitialized(Bases.back().getType(),
5547                                V.getStructBase(Bases.size() - 1)))
5548         Bases = Bases.drop_back();
5549     }
5550 
5551     // <expression> ::= tl <type> <braced-expression>* E
5552     NotPrimaryExpr();
5553     Out << "tl";
5554     mangleType(T);
5555     for (unsigned I = 0, N = Bases.size(); I != N; ++I)
5556       mangleValueInTemplateArg(Bases[I].getType(), V.getStructBase(I), false);
5557     for (unsigned I = 0, N = Fields.size(); I != N; ++I) {
5558       if (Fields[I]->isUnnamedBitfield())
5559         continue;
5560       mangleValueInTemplateArg(Fields[I]->getType(),
5561                                V.getStructField(Fields[I]->getFieldIndex()),
5562                                false);
5563     }
5564     Out << 'E';
5565     break;
5566   }
5567 
5568   case APValue::Union: {
5569     assert(T->getAsCXXRecordDecl() && "unexpected type for union value");
5570     const FieldDecl *FD = V.getUnionField();
5571 
5572     if (!FD) {
5573       Out << 'L';
5574       mangleType(T);
5575       Out << 'E';
5576       break;
5577     }
5578 
5579     // <braced-expression> ::= di <field source-name> <braced-expression>
5580     NotPrimaryExpr();
5581     Out << "tl";
5582     mangleType(T);
5583     if (!isZeroInitialized(T, V)) {
5584       Out << "di";
5585       mangleSourceName(FD->getIdentifier());
5586       mangleValueInTemplateArg(FD->getType(), V.getUnionValue(), false);
5587     }
5588     Out << 'E';
5589     break;
5590   }
5591 
5592   case APValue::Array: {
5593     QualType ElemT(T->getArrayElementTypeNoTypeQual(), 0);
5594 
5595     NotPrimaryExpr();
5596     Out << "tl";
5597     mangleType(T);
5598 
5599     // Drop trailing zero-initialized elements.
5600     unsigned N = V.getArraySize();
5601     if (!V.hasArrayFiller() || isZeroInitialized(ElemT, V.getArrayFiller())) {
5602       N = V.getArrayInitializedElts();
5603       while (N && isZeroInitialized(ElemT, V.getArrayInitializedElt(N - 1)))
5604         --N;
5605     }
5606 
5607     for (unsigned I = 0; I != N; ++I) {
5608       const APValue &Elem = I < V.getArrayInitializedElts()
5609                                 ? V.getArrayInitializedElt(I)
5610                                 : V.getArrayFiller();
5611       mangleValueInTemplateArg(ElemT, Elem, false);
5612     }
5613     Out << 'E';
5614     break;
5615   }
5616 
5617   case APValue::Vector: {
5618     const VectorType *VT = T->castAs<VectorType>();
5619 
5620     NotPrimaryExpr();
5621     Out << "tl";
5622     mangleType(T);
5623     unsigned N = V.getVectorLength();
5624     while (N && isZeroInitialized(VT->getElementType(), V.getVectorElt(N - 1)))
5625       --N;
5626     for (unsigned I = 0; I != N; ++I)
5627       mangleValueInTemplateArg(VT->getElementType(), V.getVectorElt(I), false);
5628     Out << 'E';
5629     break;
5630   }
5631 
5632   case APValue::Int:
5633     mangleIntegerLiteral(T, V.getInt());
5634     break;
5635 
5636   case APValue::Float:
5637     mangleFloatLiteral(T, V.getFloat());
5638     break;
5639 
5640   case APValue::FixedPoint:
5641     mangleFixedPointLiteral();
5642     break;
5643 
5644   case APValue::ComplexFloat: {
5645     const ComplexType *CT = T->castAs<ComplexType>();
5646     NotPrimaryExpr();
5647     Out << "tl";
5648     mangleType(T);
5649     if (!V.getComplexFloatReal().isPosZero() ||
5650         !V.getComplexFloatImag().isPosZero())
5651       mangleFloatLiteral(CT->getElementType(), V.getComplexFloatReal());
5652     if (!V.getComplexFloatImag().isPosZero())
5653       mangleFloatLiteral(CT->getElementType(), V.getComplexFloatImag());
5654     Out << 'E';
5655     break;
5656   }
5657 
5658   case APValue::ComplexInt: {
5659     const ComplexType *CT = T->castAs<ComplexType>();
5660     NotPrimaryExpr();
5661     Out << "tl";
5662     mangleType(T);
5663     if (V.getComplexIntReal().getBoolValue() ||
5664         V.getComplexIntImag().getBoolValue())
5665       mangleIntegerLiteral(CT->getElementType(), V.getComplexIntReal());
5666     if (V.getComplexIntImag().getBoolValue())
5667       mangleIntegerLiteral(CT->getElementType(), V.getComplexIntImag());
5668     Out << 'E';
5669     break;
5670   }
5671 
5672   case APValue::LValue: {
5673     // Proposed in https://github.com/itanium-cxx-abi/cxx-abi/issues/47.
5674     assert((T->isPointerType() || T->isReferenceType()) &&
5675            "unexpected type for LValue template arg");
5676 
5677     if (V.isNullPointer()) {
5678       mangleNullPointer(T);
5679       break;
5680     }
5681 
5682     APValue::LValueBase B = V.getLValueBase();
5683     if (!B) {
5684       // Non-standard mangling for integer cast to a pointer; this can only
5685       // occur as an extension.
5686       CharUnits Offset = V.getLValueOffset();
5687       if (Offset.isZero()) {
5688         // This is reinterpret_cast<T*>(0), not a null pointer. Mangle this as
5689         // a cast, because L <type> 0 E means something else.
5690         NotPrimaryExpr();
5691         Out << "rc";
5692         mangleType(T);
5693         Out << "Li0E";
5694         if (TopLevel)
5695           Out << 'E';
5696       } else {
5697         Out << "L";
5698         mangleType(T);
5699         Out << Offset.getQuantity() << 'E';
5700       }
5701       break;
5702     }
5703 
5704     ASTContext &Ctx = Context.getASTContext();
5705 
5706     enum { Base, Offset, Path } Kind;
5707     if (!V.hasLValuePath()) {
5708       // Mangle as (T*)((char*)&base + N).
5709       if (T->isReferenceType()) {
5710         NotPrimaryExpr();
5711         Out << "decvP";
5712         mangleType(T->getPointeeType());
5713       } else {
5714         NotPrimaryExpr();
5715         Out << "cv";
5716         mangleType(T);
5717       }
5718       Out << "plcvPcad";
5719       Kind = Offset;
5720     } else {
5721       if (!V.getLValuePath().empty() || V.isLValueOnePastTheEnd()) {
5722         NotPrimaryExpr();
5723         // A final conversion to the template parameter's type is usually
5724         // folded into the 'so' mangling, but we can't do that for 'void*'
5725         // parameters without introducing collisions.
5726         if (NeedExactType && T->isVoidPointerType()) {
5727           Out << "cv";
5728           mangleType(T);
5729         }
5730         if (T->isPointerType())
5731           Out << "ad";
5732         Out << "so";
5733         mangleType(T->isVoidPointerType()
5734                        ? getLValueType(Ctx, V).getUnqualifiedType()
5735                        : T->getPointeeType());
5736         Kind = Path;
5737       } else {
5738         if (NeedExactType &&
5739             !Ctx.hasSameType(T->getPointeeType(), getLValueType(Ctx, V)) &&
5740             Ctx.getLangOpts().getClangABICompat() >
5741                 LangOptions::ClangABI::Ver11) {
5742           NotPrimaryExpr();
5743           Out << "cv";
5744           mangleType(T);
5745         }
5746         if (T->isPointerType()) {
5747           NotPrimaryExpr();
5748           Out << "ad";
5749         }
5750         Kind = Base;
5751       }
5752     }
5753 
5754     QualType TypeSoFar = B.getType();
5755     if (auto *VD = B.dyn_cast<const ValueDecl*>()) {
5756       Out << 'L';
5757       mangle(VD);
5758       Out << 'E';
5759     } else if (auto *E = B.dyn_cast<const Expr*>()) {
5760       NotPrimaryExpr();
5761       mangleExpression(E);
5762     } else if (auto TI = B.dyn_cast<TypeInfoLValue>()) {
5763       NotPrimaryExpr();
5764       Out << "ti";
5765       mangleType(QualType(TI.getType(), 0));
5766     } else {
5767       // We should never see dynamic allocations here.
5768       llvm_unreachable("unexpected lvalue base kind in template argument");
5769     }
5770 
5771     switch (Kind) {
5772     case Base:
5773       break;
5774 
5775     case Offset:
5776       Out << 'L';
5777       mangleType(Ctx.getPointerDiffType());
5778       mangleNumber(V.getLValueOffset().getQuantity());
5779       Out << 'E';
5780       break;
5781 
5782     case Path:
5783       // <expression> ::= so <referent type> <expr> [<offset number>]
5784       //                  <union-selector>* [p] E
5785       if (!V.getLValueOffset().isZero())
5786         mangleNumber(V.getLValueOffset().getQuantity());
5787 
5788       // We model a past-the-end array pointer as array indexing with index N,
5789       // not with the "past the end" flag. Compensate for that.
5790       bool OnePastTheEnd = V.isLValueOnePastTheEnd();
5791 
5792       for (APValue::LValuePathEntry E : V.getLValuePath()) {
5793         if (auto *AT = TypeSoFar->getAsArrayTypeUnsafe()) {
5794           if (auto *CAT = dyn_cast<ConstantArrayType>(AT))
5795             OnePastTheEnd |= CAT->getSize() == E.getAsArrayIndex();
5796           TypeSoFar = AT->getElementType();
5797         } else {
5798           const Decl *D = E.getAsBaseOrMember().getPointer();
5799           if (auto *FD = dyn_cast<FieldDecl>(D)) {
5800             // <union-selector> ::= _ <number>
5801             if (FD->getParent()->isUnion()) {
5802               Out << '_';
5803               if (FD->getFieldIndex())
5804                 Out << (FD->getFieldIndex() - 1);
5805             }
5806             TypeSoFar = FD->getType();
5807           } else {
5808             TypeSoFar = Ctx.getRecordType(cast<CXXRecordDecl>(D));
5809           }
5810         }
5811       }
5812 
5813       if (OnePastTheEnd)
5814         Out << 'p';
5815       Out << 'E';
5816       break;
5817     }
5818 
5819     break;
5820   }
5821 
5822   case APValue::MemberPointer:
5823     // Proposed in https://github.com/itanium-cxx-abi/cxx-abi/issues/47.
5824     if (!V.getMemberPointerDecl()) {
5825       mangleNullPointer(T);
5826       break;
5827     }
5828 
5829     ASTContext &Ctx = Context.getASTContext();
5830 
5831     NotPrimaryExpr();
5832     if (!V.getMemberPointerPath().empty()) {
5833       Out << "mc";
5834       mangleType(T);
5835     } else if (NeedExactType &&
5836                !Ctx.hasSameType(
5837                    T->castAs<MemberPointerType>()->getPointeeType(),
5838                    V.getMemberPointerDecl()->getType()) &&
5839                Ctx.getLangOpts().getClangABICompat() >
5840                    LangOptions::ClangABI::Ver11) {
5841       Out << "cv";
5842       mangleType(T);
5843     }
5844     Out << "adL";
5845     mangle(V.getMemberPointerDecl());
5846     Out << 'E';
5847     if (!V.getMemberPointerPath().empty()) {
5848       CharUnits Offset =
5849           Context.getASTContext().getMemberPointerPathAdjustment(V);
5850       if (!Offset.isZero())
5851         mangleNumber(Offset.getQuantity());
5852       Out << 'E';
5853     }
5854     break;
5855   }
5856 
5857   if (TopLevel && !IsPrimaryExpr)
5858     Out << 'E';
5859 }
5860 
5861 void CXXNameMangler::mangleTemplateParameter(unsigned Depth, unsigned Index) {
5862   // <template-param> ::= T_    # first template parameter
5863   //                  ::= T <parameter-2 non-negative number> _
5864   //                  ::= TL <L-1 non-negative number> __
5865   //                  ::= TL <L-1 non-negative number> _
5866   //                         <parameter-2 non-negative number> _
5867   //
5868   // The latter two manglings are from a proposal here:
5869   // https://github.com/itanium-cxx-abi/cxx-abi/issues/31#issuecomment-528122117
5870   Out << 'T';
5871   if (Depth != 0)
5872     Out << 'L' << (Depth - 1) << '_';
5873   if (Index != 0)
5874     Out << (Index - 1);
5875   Out << '_';
5876 }
5877 
5878 void CXXNameMangler::mangleSeqID(unsigned SeqID) {
5879   if (SeqID == 1)
5880     Out << '0';
5881   else if (SeqID > 1) {
5882     SeqID--;
5883 
5884     // <seq-id> is encoded in base-36, using digits and upper case letters.
5885     char Buffer[7]; // log(2**32) / log(36) ~= 7
5886     MutableArrayRef<char> BufferRef(Buffer);
5887     MutableArrayRef<char>::reverse_iterator I = BufferRef.rbegin();
5888 
5889     for (; SeqID != 0; SeqID /= 36) {
5890       unsigned C = SeqID % 36;
5891       *I++ = (C < 10 ? '0' + C : 'A' + C - 10);
5892     }
5893 
5894     Out.write(I.base(), I - BufferRef.rbegin());
5895   }
5896   Out << '_';
5897 }
5898 
5899 void CXXNameMangler::mangleExistingSubstitution(TemplateName tname) {
5900   bool result = mangleSubstitution(tname);
5901   assert(result && "no existing substitution for template name");
5902   (void) result;
5903 }
5904 
5905 // <substitution> ::= S <seq-id> _
5906 //                ::= S_
5907 bool CXXNameMangler::mangleSubstitution(const NamedDecl *ND) {
5908   // Try one of the standard substitutions first.
5909   if (mangleStandardSubstitution(ND))
5910     return true;
5911 
5912   ND = cast<NamedDecl>(ND->getCanonicalDecl());
5913   return mangleSubstitution(reinterpret_cast<uintptr_t>(ND));
5914 }
5915 
5916 /// Determine whether the given type has any qualifiers that are relevant for
5917 /// substitutions.
5918 static bool hasMangledSubstitutionQualifiers(QualType T) {
5919   Qualifiers Qs = T.getQualifiers();
5920   return Qs.getCVRQualifiers() || Qs.hasAddressSpace() || Qs.hasUnaligned();
5921 }
5922 
5923 bool CXXNameMangler::mangleSubstitution(QualType T) {
5924   if (!hasMangledSubstitutionQualifiers(T)) {
5925     if (const RecordType *RT = T->getAs<RecordType>())
5926       return mangleSubstitution(RT->getDecl());
5927   }
5928 
5929   uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
5930 
5931   return mangleSubstitution(TypePtr);
5932 }
5933 
5934 bool CXXNameMangler::mangleSubstitution(TemplateName Template) {
5935   if (TemplateDecl *TD = Template.getAsTemplateDecl())
5936     return mangleSubstitution(TD);
5937 
5938   Template = Context.getASTContext().getCanonicalTemplateName(Template);
5939   return mangleSubstitution(
5940                       reinterpret_cast<uintptr_t>(Template.getAsVoidPointer()));
5941 }
5942 
5943 bool CXXNameMangler::mangleSubstitution(uintptr_t Ptr) {
5944   llvm::DenseMap<uintptr_t, unsigned>::iterator I = Substitutions.find(Ptr);
5945   if (I == Substitutions.end())
5946     return false;
5947 
5948   unsigned SeqID = I->second;
5949   Out << 'S';
5950   mangleSeqID(SeqID);
5951 
5952   return true;
5953 }
5954 
5955 static bool isCharType(QualType T) {
5956   if (T.isNull())
5957     return false;
5958 
5959   return T->isSpecificBuiltinType(BuiltinType::Char_S) ||
5960     T->isSpecificBuiltinType(BuiltinType::Char_U);
5961 }
5962 
5963 /// Returns whether a given type is a template specialization of a given name
5964 /// with a single argument of type char.
5965 static bool isCharSpecialization(QualType T, const char *Name) {
5966   if (T.isNull())
5967     return false;
5968 
5969   const RecordType *RT = T->getAs<RecordType>();
5970   if (!RT)
5971     return false;
5972 
5973   const ClassTemplateSpecializationDecl *SD =
5974     dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl());
5975   if (!SD)
5976     return false;
5977 
5978   if (!isStdNamespace(getEffectiveDeclContext(SD)))
5979     return false;
5980 
5981   const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
5982   if (TemplateArgs.size() != 1)
5983     return false;
5984 
5985   if (!isCharType(TemplateArgs[0].getAsType()))
5986     return false;
5987 
5988   return SD->getIdentifier()->getName() == Name;
5989 }
5990 
5991 template <std::size_t StrLen>
5992 static bool isStreamCharSpecialization(const ClassTemplateSpecializationDecl*SD,
5993                                        const char (&Str)[StrLen]) {
5994   if (!SD->getIdentifier()->isStr(Str))
5995     return false;
5996 
5997   const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
5998   if (TemplateArgs.size() != 2)
5999     return false;
6000 
6001   if (!isCharType(TemplateArgs[0].getAsType()))
6002     return false;
6003 
6004   if (!isCharSpecialization(TemplateArgs[1].getAsType(), "char_traits"))
6005     return false;
6006 
6007   return true;
6008 }
6009 
6010 bool CXXNameMangler::mangleStandardSubstitution(const NamedDecl *ND) {
6011   // <substitution> ::= St # ::std::
6012   if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
6013     if (isStd(NS)) {
6014       Out << "St";
6015       return true;
6016     }
6017   }
6018 
6019   if (const ClassTemplateDecl *TD = dyn_cast<ClassTemplateDecl>(ND)) {
6020     if (!isStdNamespace(getEffectiveDeclContext(TD)))
6021       return false;
6022 
6023     // <substitution> ::= Sa # ::std::allocator
6024     if (TD->getIdentifier()->isStr("allocator")) {
6025       Out << "Sa";
6026       return true;
6027     }
6028 
6029     // <<substitution> ::= Sb # ::std::basic_string
6030     if (TD->getIdentifier()->isStr("basic_string")) {
6031       Out << "Sb";
6032       return true;
6033     }
6034   }
6035 
6036   if (const ClassTemplateSpecializationDecl *SD =
6037         dyn_cast<ClassTemplateSpecializationDecl>(ND)) {
6038     if (!isStdNamespace(getEffectiveDeclContext(SD)))
6039       return false;
6040 
6041     //    <substitution> ::= Ss # ::std::basic_string<char,
6042     //                            ::std::char_traits<char>,
6043     //                            ::std::allocator<char> >
6044     if (SD->getIdentifier()->isStr("basic_string")) {
6045       const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs();
6046 
6047       if (TemplateArgs.size() != 3)
6048         return false;
6049 
6050       if (!isCharType(TemplateArgs[0].getAsType()))
6051         return false;
6052 
6053       if (!isCharSpecialization(TemplateArgs[1].getAsType(), "char_traits"))
6054         return false;
6055 
6056       if (!isCharSpecialization(TemplateArgs[2].getAsType(), "allocator"))
6057         return false;
6058 
6059       Out << "Ss";
6060       return true;
6061     }
6062 
6063     //    <substitution> ::= Si # ::std::basic_istream<char,
6064     //                            ::std::char_traits<char> >
6065     if (isStreamCharSpecialization(SD, "basic_istream")) {
6066       Out << "Si";
6067       return true;
6068     }
6069 
6070     //    <substitution> ::= So # ::std::basic_ostream<char,
6071     //                            ::std::char_traits<char> >
6072     if (isStreamCharSpecialization(SD, "basic_ostream")) {
6073       Out << "So";
6074       return true;
6075     }
6076 
6077     //    <substitution> ::= Sd # ::std::basic_iostream<char,
6078     //                            ::std::char_traits<char> >
6079     if (isStreamCharSpecialization(SD, "basic_iostream")) {
6080       Out << "Sd";
6081       return true;
6082     }
6083   }
6084   return false;
6085 }
6086 
6087 void CXXNameMangler::addSubstitution(QualType T) {
6088   if (!hasMangledSubstitutionQualifiers(T)) {
6089     if (const RecordType *RT = T->getAs<RecordType>()) {
6090       addSubstitution(RT->getDecl());
6091       return;
6092     }
6093   }
6094 
6095   uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
6096   addSubstitution(TypePtr);
6097 }
6098 
6099 void CXXNameMangler::addSubstitution(TemplateName Template) {
6100   if (TemplateDecl *TD = Template.getAsTemplateDecl())
6101     return addSubstitution(TD);
6102 
6103   Template = Context.getASTContext().getCanonicalTemplateName(Template);
6104   addSubstitution(reinterpret_cast<uintptr_t>(Template.getAsVoidPointer()));
6105 }
6106 
6107 void CXXNameMangler::addSubstitution(uintptr_t Ptr) {
6108   assert(!Substitutions.count(Ptr) && "Substitution already exists!");
6109   Substitutions[Ptr] = SeqID++;
6110 }
6111 
6112 void CXXNameMangler::extendSubstitutions(CXXNameMangler* Other) {
6113   assert(Other->SeqID >= SeqID && "Must be superset of substitutions!");
6114   if (Other->SeqID > SeqID) {
6115     Substitutions.swap(Other->Substitutions);
6116     SeqID = Other->SeqID;
6117   }
6118 }
6119 
6120 CXXNameMangler::AbiTagList
6121 CXXNameMangler::makeFunctionReturnTypeTags(const FunctionDecl *FD) {
6122   // When derived abi tags are disabled there is no need to make any list.
6123   if (DisableDerivedAbiTags)
6124     return AbiTagList();
6125 
6126   llvm::raw_null_ostream NullOutStream;
6127   CXXNameMangler TrackReturnTypeTags(*this, NullOutStream);
6128   TrackReturnTypeTags.disableDerivedAbiTags();
6129 
6130   const FunctionProtoType *Proto =
6131       cast<FunctionProtoType>(FD->getType()->getAs<FunctionType>());
6132   FunctionTypeDepthState saved = TrackReturnTypeTags.FunctionTypeDepth.push();
6133   TrackReturnTypeTags.FunctionTypeDepth.enterResultType();
6134   TrackReturnTypeTags.mangleType(Proto->getReturnType());
6135   TrackReturnTypeTags.FunctionTypeDepth.leaveResultType();
6136   TrackReturnTypeTags.FunctionTypeDepth.pop(saved);
6137 
6138   return TrackReturnTypeTags.AbiTagsRoot.getSortedUniqueUsedAbiTags();
6139 }
6140 
6141 CXXNameMangler::AbiTagList
6142 CXXNameMangler::makeVariableTypeTags(const VarDecl *VD) {
6143   // When derived abi tags are disabled there is no need to make any list.
6144   if (DisableDerivedAbiTags)
6145     return AbiTagList();
6146 
6147   llvm::raw_null_ostream NullOutStream;
6148   CXXNameMangler TrackVariableType(*this, NullOutStream);
6149   TrackVariableType.disableDerivedAbiTags();
6150 
6151   TrackVariableType.mangleType(VD->getType());
6152 
6153   return TrackVariableType.AbiTagsRoot.getSortedUniqueUsedAbiTags();
6154 }
6155 
6156 bool CXXNameMangler::shouldHaveAbiTags(ItaniumMangleContextImpl &C,
6157                                        const VarDecl *VD) {
6158   llvm::raw_null_ostream NullOutStream;
6159   CXXNameMangler TrackAbiTags(C, NullOutStream, nullptr, true);
6160   TrackAbiTags.mangle(VD);
6161   return TrackAbiTags.AbiTagsRoot.getUsedAbiTags().size();
6162 }
6163 
6164 //
6165 
6166 /// Mangles the name of the declaration D and emits that name to the given
6167 /// output stream.
6168 ///
6169 /// If the declaration D requires a mangled name, this routine will emit that
6170 /// mangled name to \p os and return true. Otherwise, \p os will be unchanged
6171 /// and this routine will return false. In this case, the caller should just
6172 /// emit the identifier of the declaration (\c D->getIdentifier()) as its
6173 /// name.
6174 void ItaniumMangleContextImpl::mangleCXXName(GlobalDecl GD,
6175                                              raw_ostream &Out) {
6176   const NamedDecl *D = cast<NamedDecl>(GD.getDecl());
6177   assert((isa<FunctionDecl, VarDecl, TemplateParamObjectDecl>(D)) &&
6178          "Invalid mangleName() call, argument is not a variable or function!");
6179 
6180   PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
6181                                  getASTContext().getSourceManager(),
6182                                  "Mangling declaration");
6183 
6184   if (auto *CD = dyn_cast<CXXConstructorDecl>(D)) {
6185     auto Type = GD.getCtorType();
6186     CXXNameMangler Mangler(*this, Out, CD, Type);
6187     return Mangler.mangle(GlobalDecl(CD, Type));
6188   }
6189 
6190   if (auto *DD = dyn_cast<CXXDestructorDecl>(D)) {
6191     auto Type = GD.getDtorType();
6192     CXXNameMangler Mangler(*this, Out, DD, Type);
6193     return Mangler.mangle(GlobalDecl(DD, Type));
6194   }
6195 
6196   CXXNameMangler Mangler(*this, Out, D);
6197   Mangler.mangle(GD);
6198 }
6199 
6200 void ItaniumMangleContextImpl::mangleCXXCtorComdat(const CXXConstructorDecl *D,
6201                                                    raw_ostream &Out) {
6202   CXXNameMangler Mangler(*this, Out, D, Ctor_Comdat);
6203   Mangler.mangle(GlobalDecl(D, Ctor_Comdat));
6204 }
6205 
6206 void ItaniumMangleContextImpl::mangleCXXDtorComdat(const CXXDestructorDecl *D,
6207                                                    raw_ostream &Out) {
6208   CXXNameMangler Mangler(*this, Out, D, Dtor_Comdat);
6209   Mangler.mangle(GlobalDecl(D, Dtor_Comdat));
6210 }
6211 
6212 void ItaniumMangleContextImpl::mangleThunk(const CXXMethodDecl *MD,
6213                                            const ThunkInfo &Thunk,
6214                                            raw_ostream &Out) {
6215   //  <special-name> ::= T <call-offset> <base encoding>
6216   //                      # base is the nominal target function of thunk
6217   //  <special-name> ::= Tc <call-offset> <call-offset> <base encoding>
6218   //                      # base is the nominal target function of thunk
6219   //                      # first call-offset is 'this' adjustment
6220   //                      # second call-offset is result adjustment
6221 
6222   assert(!isa<CXXDestructorDecl>(MD) &&
6223          "Use mangleCXXDtor for destructor decls!");
6224   CXXNameMangler Mangler(*this, Out);
6225   Mangler.getStream() << "_ZT";
6226   if (!Thunk.Return.isEmpty())
6227     Mangler.getStream() << 'c';
6228 
6229   // Mangle the 'this' pointer adjustment.
6230   Mangler.mangleCallOffset(Thunk.This.NonVirtual,
6231                            Thunk.This.Virtual.Itanium.VCallOffsetOffset);
6232 
6233   // Mangle the return pointer adjustment if there is one.
6234   if (!Thunk.Return.isEmpty())
6235     Mangler.mangleCallOffset(Thunk.Return.NonVirtual,
6236                              Thunk.Return.Virtual.Itanium.VBaseOffsetOffset);
6237 
6238   Mangler.mangleFunctionEncoding(MD);
6239 }
6240 
6241 void ItaniumMangleContextImpl::mangleCXXDtorThunk(
6242     const CXXDestructorDecl *DD, CXXDtorType Type,
6243     const ThisAdjustment &ThisAdjustment, raw_ostream &Out) {
6244   //  <special-name> ::= T <call-offset> <base encoding>
6245   //                      # base is the nominal target function of thunk
6246   CXXNameMangler Mangler(*this, Out, DD, Type);
6247   Mangler.getStream() << "_ZT";
6248 
6249   // Mangle the 'this' pointer adjustment.
6250   Mangler.mangleCallOffset(ThisAdjustment.NonVirtual,
6251                            ThisAdjustment.Virtual.Itanium.VCallOffsetOffset);
6252 
6253   Mangler.mangleFunctionEncoding(GlobalDecl(DD, Type));
6254 }
6255 
6256 /// Returns the mangled name for a guard variable for the passed in VarDecl.
6257 void ItaniumMangleContextImpl::mangleStaticGuardVariable(const VarDecl *D,
6258                                                          raw_ostream &Out) {
6259   //  <special-name> ::= GV <object name>       # Guard variable for one-time
6260   //                                            # initialization
6261   CXXNameMangler Mangler(*this, Out);
6262   // GCC 5.3.0 doesn't emit derived ABI tags for local names but that seems to
6263   // be a bug that is fixed in trunk.
6264   Mangler.getStream() << "_ZGV";
6265   Mangler.mangleName(D);
6266 }
6267 
6268 void ItaniumMangleContextImpl::mangleDynamicInitializer(const VarDecl *MD,
6269                                                         raw_ostream &Out) {
6270   // These symbols are internal in the Itanium ABI, so the names don't matter.
6271   // Clang has traditionally used this symbol and allowed LLVM to adjust it to
6272   // avoid duplicate symbols.
6273   Out << "__cxx_global_var_init";
6274 }
6275 
6276 void ItaniumMangleContextImpl::mangleDynamicAtExitDestructor(const VarDecl *D,
6277                                                              raw_ostream &Out) {
6278   // Prefix the mangling of D with __dtor_.
6279   CXXNameMangler Mangler(*this, Out);
6280   Mangler.getStream() << "__dtor_";
6281   if (shouldMangleDeclName(D))
6282     Mangler.mangle(D);
6283   else
6284     Mangler.getStream() << D->getName();
6285 }
6286 
6287 void ItaniumMangleContextImpl::mangleDynamicStermFinalizer(const VarDecl *D,
6288                                                            raw_ostream &Out) {
6289   // Clang generates these internal-linkage functions as part of its
6290   // implementation of the XL ABI.
6291   CXXNameMangler Mangler(*this, Out);
6292   Mangler.getStream() << "__finalize_";
6293   if (shouldMangleDeclName(D))
6294     Mangler.mangle(D);
6295   else
6296     Mangler.getStream() << D->getName();
6297 }
6298 
6299 void ItaniumMangleContextImpl::mangleSEHFilterExpression(
6300     const NamedDecl *EnclosingDecl, raw_ostream &Out) {
6301   CXXNameMangler Mangler(*this, Out);
6302   Mangler.getStream() << "__filt_";
6303   if (shouldMangleDeclName(EnclosingDecl))
6304     Mangler.mangle(EnclosingDecl);
6305   else
6306     Mangler.getStream() << EnclosingDecl->getName();
6307 }
6308 
6309 void ItaniumMangleContextImpl::mangleSEHFinallyBlock(
6310     const NamedDecl *EnclosingDecl, raw_ostream &Out) {
6311   CXXNameMangler Mangler(*this, Out);
6312   Mangler.getStream() << "__fin_";
6313   if (shouldMangleDeclName(EnclosingDecl))
6314     Mangler.mangle(EnclosingDecl);
6315   else
6316     Mangler.getStream() << EnclosingDecl->getName();
6317 }
6318 
6319 void ItaniumMangleContextImpl::mangleItaniumThreadLocalInit(const VarDecl *D,
6320                                                             raw_ostream &Out) {
6321   //  <special-name> ::= TH <object name>
6322   CXXNameMangler Mangler(*this, Out);
6323   Mangler.getStream() << "_ZTH";
6324   Mangler.mangleName(D);
6325 }
6326 
6327 void
6328 ItaniumMangleContextImpl::mangleItaniumThreadLocalWrapper(const VarDecl *D,
6329                                                           raw_ostream &Out) {
6330   //  <special-name> ::= TW <object name>
6331   CXXNameMangler Mangler(*this, Out);
6332   Mangler.getStream() << "_ZTW";
6333   Mangler.mangleName(D);
6334 }
6335 
6336 void ItaniumMangleContextImpl::mangleReferenceTemporary(const VarDecl *D,
6337                                                         unsigned ManglingNumber,
6338                                                         raw_ostream &Out) {
6339   // We match the GCC mangling here.
6340   //  <special-name> ::= GR <object name>
6341   CXXNameMangler Mangler(*this, Out);
6342   Mangler.getStream() << "_ZGR";
6343   Mangler.mangleName(D);
6344   assert(ManglingNumber > 0 && "Reference temporary mangling number is zero!");
6345   Mangler.mangleSeqID(ManglingNumber - 1);
6346 }
6347 
6348 void ItaniumMangleContextImpl::mangleCXXVTable(const CXXRecordDecl *RD,
6349                                                raw_ostream &Out) {
6350   // <special-name> ::= TV <type>  # virtual table
6351   CXXNameMangler Mangler(*this, Out);
6352   Mangler.getStream() << "_ZTV";
6353   Mangler.mangleNameOrStandardSubstitution(RD);
6354 }
6355 
6356 void ItaniumMangleContextImpl::mangleCXXVTT(const CXXRecordDecl *RD,
6357                                             raw_ostream &Out) {
6358   // <special-name> ::= TT <type>  # VTT structure
6359   CXXNameMangler Mangler(*this, Out);
6360   Mangler.getStream() << "_ZTT";
6361   Mangler.mangleNameOrStandardSubstitution(RD);
6362 }
6363 
6364 void ItaniumMangleContextImpl::mangleCXXCtorVTable(const CXXRecordDecl *RD,
6365                                                    int64_t Offset,
6366                                                    const CXXRecordDecl *Type,
6367                                                    raw_ostream &Out) {
6368   // <special-name> ::= TC <type> <offset number> _ <base type>
6369   CXXNameMangler Mangler(*this, Out);
6370   Mangler.getStream() << "_ZTC";
6371   Mangler.mangleNameOrStandardSubstitution(RD);
6372   Mangler.getStream() << Offset;
6373   Mangler.getStream() << '_';
6374   Mangler.mangleNameOrStandardSubstitution(Type);
6375 }
6376 
6377 void ItaniumMangleContextImpl::mangleCXXRTTI(QualType Ty, raw_ostream &Out) {
6378   // <special-name> ::= TI <type>  # typeinfo structure
6379   assert(!Ty.hasQualifiers() && "RTTI info cannot have top-level qualifiers");
6380   CXXNameMangler Mangler(*this, Out);
6381   Mangler.getStream() << "_ZTI";
6382   Mangler.mangleType(Ty);
6383 }
6384 
6385 void ItaniumMangleContextImpl::mangleCXXRTTIName(QualType Ty,
6386                                                  raw_ostream &Out) {
6387   // <special-name> ::= TS <type>  # typeinfo name (null terminated byte string)
6388   CXXNameMangler Mangler(*this, Out);
6389   Mangler.getStream() << "_ZTS";
6390   Mangler.mangleType(Ty);
6391 }
6392 
6393 void ItaniumMangleContextImpl::mangleTypeName(QualType Ty, raw_ostream &Out) {
6394   mangleCXXRTTIName(Ty, Out);
6395 }
6396 
6397 void ItaniumMangleContextImpl::mangleStringLiteral(const StringLiteral *, raw_ostream &) {
6398   llvm_unreachable("Can't mangle string literals");
6399 }
6400 
6401 void ItaniumMangleContextImpl::mangleLambdaSig(const CXXRecordDecl *Lambda,
6402                                                raw_ostream &Out) {
6403   CXXNameMangler Mangler(*this, Out);
6404   Mangler.mangleLambdaSig(Lambda);
6405 }
6406 
6407 ItaniumMangleContext *ItaniumMangleContext::create(ASTContext &Context,
6408                                                    DiagnosticsEngine &Diags) {
6409   return new ItaniumMangleContextImpl(
6410       Context, Diags,
6411       [](ASTContext &, const NamedDecl *) -> llvm::Optional<unsigned> {
6412         return llvm::None;
6413       });
6414 }
6415 
6416 ItaniumMangleContext *
6417 ItaniumMangleContext::create(ASTContext &Context, DiagnosticsEngine &Diags,
6418                              DiscriminatorOverrideTy DiscriminatorOverride) {
6419   return new ItaniumMangleContextImpl(Context, Diags, DiscriminatorOverride);
6420 }
6421