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->hasPrototype()) 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 // UNSUPPORTED: ::= Dd # IEEE 754r decimal floating point (64 bits) 2864 // UNSUPPORTED: ::= De # IEEE 754r decimal floating point (128 bits) 2865 // UNSUPPORTED: ::= Df # IEEE 754r decimal floating point (32 bits) 2866 // ::= Dh # IEEE 754r half-precision floating point (16 bits) 2867 // ::= DF <number> _ # ISO/IEC TS 18661 binary floating point type _FloatN (N bits); 2868 // ::= Di # char32_t 2869 // ::= Ds # char16_t 2870 // ::= Dn # std::nullptr_t (i.e., decltype(nullptr)) 2871 // ::= u <source-name> # vendor extended type 2872 std::string type_name; 2873 switch (T->getKind()) { 2874 case BuiltinType::Void: 2875 Out << 'v'; 2876 break; 2877 case BuiltinType::Bool: 2878 Out << 'b'; 2879 break; 2880 case BuiltinType::Char_U: 2881 case BuiltinType::Char_S: 2882 Out << 'c'; 2883 break; 2884 case BuiltinType::UChar: 2885 Out << 'h'; 2886 break; 2887 case BuiltinType::UShort: 2888 Out << 't'; 2889 break; 2890 case BuiltinType::UInt: 2891 Out << 'j'; 2892 break; 2893 case BuiltinType::ULong: 2894 Out << 'm'; 2895 break; 2896 case BuiltinType::ULongLong: 2897 Out << 'y'; 2898 break; 2899 case BuiltinType::UInt128: 2900 Out << 'o'; 2901 break; 2902 case BuiltinType::SChar: 2903 Out << 'a'; 2904 break; 2905 case BuiltinType::WChar_S: 2906 case BuiltinType::WChar_U: 2907 Out << 'w'; 2908 break; 2909 case BuiltinType::Char8: 2910 Out << "Du"; 2911 break; 2912 case BuiltinType::Char16: 2913 Out << "Ds"; 2914 break; 2915 case BuiltinType::Char32: 2916 Out << "Di"; 2917 break; 2918 case BuiltinType::Short: 2919 Out << 's'; 2920 break; 2921 case BuiltinType::Int: 2922 Out << 'i'; 2923 break; 2924 case BuiltinType::Long: 2925 Out << 'l'; 2926 break; 2927 case BuiltinType::LongLong: 2928 Out << 'x'; 2929 break; 2930 case BuiltinType::Int128: 2931 Out << 'n'; 2932 break; 2933 case BuiltinType::Float16: 2934 Out << "DF16_"; 2935 break; 2936 case BuiltinType::ShortAccum: 2937 case BuiltinType::Accum: 2938 case BuiltinType::LongAccum: 2939 case BuiltinType::UShortAccum: 2940 case BuiltinType::UAccum: 2941 case BuiltinType::ULongAccum: 2942 case BuiltinType::ShortFract: 2943 case BuiltinType::Fract: 2944 case BuiltinType::LongFract: 2945 case BuiltinType::UShortFract: 2946 case BuiltinType::UFract: 2947 case BuiltinType::ULongFract: 2948 case BuiltinType::SatShortAccum: 2949 case BuiltinType::SatAccum: 2950 case BuiltinType::SatLongAccum: 2951 case BuiltinType::SatUShortAccum: 2952 case BuiltinType::SatUAccum: 2953 case BuiltinType::SatULongAccum: 2954 case BuiltinType::SatShortFract: 2955 case BuiltinType::SatFract: 2956 case BuiltinType::SatLongFract: 2957 case BuiltinType::SatUShortFract: 2958 case BuiltinType::SatUFract: 2959 case BuiltinType::SatULongFract: 2960 llvm_unreachable("Fixed point types are disabled for c++"); 2961 case BuiltinType::Half: 2962 Out << "Dh"; 2963 break; 2964 case BuiltinType::Float: 2965 Out << 'f'; 2966 break; 2967 case BuiltinType::Double: 2968 Out << 'd'; 2969 break; 2970 case BuiltinType::LongDouble: { 2971 const TargetInfo *TI = getASTContext().getLangOpts().OpenMP && 2972 getASTContext().getLangOpts().OpenMPIsDevice 2973 ? getASTContext().getAuxTargetInfo() 2974 : &getASTContext().getTargetInfo(); 2975 Out << TI->getLongDoubleMangling(); 2976 break; 2977 } 2978 case BuiltinType::Float128: { 2979 const TargetInfo *TI = getASTContext().getLangOpts().OpenMP && 2980 getASTContext().getLangOpts().OpenMPIsDevice 2981 ? getASTContext().getAuxTargetInfo() 2982 : &getASTContext().getTargetInfo(); 2983 Out << TI->getFloat128Mangling(); 2984 break; 2985 } 2986 case BuiltinType::BFloat16: { 2987 const TargetInfo *TI = &getASTContext().getTargetInfo(); 2988 Out << TI->getBFloat16Mangling(); 2989 break; 2990 } 2991 case BuiltinType::NullPtr: 2992 Out << "Dn"; 2993 break; 2994 2995 #define BUILTIN_TYPE(Id, SingletonId) 2996 #define PLACEHOLDER_TYPE(Id, SingletonId) \ 2997 case BuiltinType::Id: 2998 #include "clang/AST/BuiltinTypes.def" 2999 case BuiltinType::Dependent: 3000 if (!NullOut) 3001 llvm_unreachable("mangling a placeholder type"); 3002 break; 3003 case BuiltinType::ObjCId: 3004 Out << "11objc_object"; 3005 break; 3006 case BuiltinType::ObjCClass: 3007 Out << "10objc_class"; 3008 break; 3009 case BuiltinType::ObjCSel: 3010 Out << "13objc_selector"; 3011 break; 3012 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 3013 case BuiltinType::Id: \ 3014 type_name = "ocl_" #ImgType "_" #Suffix; \ 3015 Out << type_name.size() << type_name; \ 3016 break; 3017 #include "clang/Basic/OpenCLImageTypes.def" 3018 case BuiltinType::OCLSampler: 3019 Out << "11ocl_sampler"; 3020 break; 3021 case BuiltinType::OCLEvent: 3022 Out << "9ocl_event"; 3023 break; 3024 case BuiltinType::OCLClkEvent: 3025 Out << "12ocl_clkevent"; 3026 break; 3027 case BuiltinType::OCLQueue: 3028 Out << "9ocl_queue"; 3029 break; 3030 case BuiltinType::OCLReserveID: 3031 Out << "13ocl_reserveid"; 3032 break; 3033 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 3034 case BuiltinType::Id: \ 3035 type_name = "ocl_" #ExtType; \ 3036 Out << type_name.size() << type_name; \ 3037 break; 3038 #include "clang/Basic/OpenCLExtensionTypes.def" 3039 // The SVE types are effectively target-specific. The mangling scheme 3040 // is defined in the appendices to the Procedure Call Standard for the 3041 // Arm Architecture. 3042 #define SVE_VECTOR_TYPE(InternalName, MangledName, Id, SingletonId, NumEls, \ 3043 ElBits, IsSigned, IsFP, IsBF) \ 3044 case BuiltinType::Id: \ 3045 type_name = MangledName; \ 3046 Out << (type_name == InternalName ? "u" : "") << type_name.size() \ 3047 << type_name; \ 3048 break; 3049 #define SVE_PREDICATE_TYPE(InternalName, MangledName, Id, SingletonId, NumEls) \ 3050 case BuiltinType::Id: \ 3051 type_name = MangledName; \ 3052 Out << (type_name == InternalName ? "u" : "") << type_name.size() \ 3053 << type_name; \ 3054 break; 3055 #include "clang/Basic/AArch64SVEACLETypes.def" 3056 #define PPC_VECTOR_TYPE(Name, Id, Size) \ 3057 case BuiltinType::Id: \ 3058 type_name = #Name; \ 3059 Out << 'u' << type_name.size() << type_name; \ 3060 break; 3061 #include "clang/Basic/PPCTypes.def" 3062 // TODO: Check the mangling scheme for RISC-V V. 3063 #define RVV_TYPE(Name, Id, SingletonId) \ 3064 case BuiltinType::Id: \ 3065 type_name = Name; \ 3066 Out << 'u' << type_name.size() << type_name; \ 3067 break; 3068 #include "clang/Basic/RISCVVTypes.def" 3069 } 3070 } 3071 3072 StringRef CXXNameMangler::getCallingConvQualifierName(CallingConv CC) { 3073 switch (CC) { 3074 case CC_C: 3075 return ""; 3076 3077 case CC_X86VectorCall: 3078 case CC_X86Pascal: 3079 case CC_X86RegCall: 3080 case CC_AAPCS: 3081 case CC_AAPCS_VFP: 3082 case CC_AArch64VectorCall: 3083 case CC_IntelOclBicc: 3084 case CC_SpirFunction: 3085 case CC_OpenCLKernel: 3086 case CC_PreserveMost: 3087 case CC_PreserveAll: 3088 // FIXME: we should be mangling all of the above. 3089 return ""; 3090 3091 case CC_X86ThisCall: 3092 // FIXME: To match mingw GCC, thiscall should only be mangled in when it is 3093 // used explicitly. At this point, we don't have that much information in 3094 // the AST, since clang tends to bake the convention into the canonical 3095 // function type. thiscall only rarely used explicitly, so don't mangle it 3096 // for now. 3097 return ""; 3098 3099 case CC_X86StdCall: 3100 return "stdcall"; 3101 case CC_X86FastCall: 3102 return "fastcall"; 3103 case CC_X86_64SysV: 3104 return "sysv_abi"; 3105 case CC_Win64: 3106 return "ms_abi"; 3107 case CC_Swift: 3108 return "swiftcall"; 3109 } 3110 llvm_unreachable("bad calling convention"); 3111 } 3112 3113 void CXXNameMangler::mangleExtFunctionInfo(const FunctionType *T) { 3114 // Fast path. 3115 if (T->getExtInfo() == FunctionType::ExtInfo()) 3116 return; 3117 3118 // Vendor-specific qualifiers are emitted in reverse alphabetical order. 3119 // This will get more complicated in the future if we mangle other 3120 // things here; but for now, since we mangle ns_returns_retained as 3121 // a qualifier on the result type, we can get away with this: 3122 StringRef CCQualifier = getCallingConvQualifierName(T->getExtInfo().getCC()); 3123 if (!CCQualifier.empty()) 3124 mangleVendorQualifier(CCQualifier); 3125 3126 // FIXME: regparm 3127 // FIXME: noreturn 3128 } 3129 3130 void 3131 CXXNameMangler::mangleExtParameterInfo(FunctionProtoType::ExtParameterInfo PI) { 3132 // Vendor-specific qualifiers are emitted in reverse alphabetical order. 3133 3134 // Note that these are *not* substitution candidates. Demanglers might 3135 // have trouble with this if the parameter type is fully substituted. 3136 3137 switch (PI.getABI()) { 3138 case ParameterABI::Ordinary: 3139 break; 3140 3141 // All of these start with "swift", so they come before "ns_consumed". 3142 case ParameterABI::SwiftContext: 3143 case ParameterABI::SwiftAsyncContext: 3144 case ParameterABI::SwiftErrorResult: 3145 case ParameterABI::SwiftIndirectResult: 3146 mangleVendorQualifier(getParameterABISpelling(PI.getABI())); 3147 break; 3148 } 3149 3150 if (PI.isConsumed()) 3151 mangleVendorQualifier("ns_consumed"); 3152 3153 if (PI.isNoEscape()) 3154 mangleVendorQualifier("noescape"); 3155 } 3156 3157 // <type> ::= <function-type> 3158 // <function-type> ::= [<CV-qualifiers>] F [Y] 3159 // <bare-function-type> [<ref-qualifier>] E 3160 void CXXNameMangler::mangleType(const FunctionProtoType *T) { 3161 mangleExtFunctionInfo(T); 3162 3163 // Mangle CV-qualifiers, if present. These are 'this' qualifiers, 3164 // e.g. "const" in "int (A::*)() const". 3165 mangleQualifiers(T->getMethodQuals()); 3166 3167 // Mangle instantiation-dependent exception-specification, if present, 3168 // per cxx-abi-dev proposal on 2016-10-11. 3169 if (T->hasInstantiationDependentExceptionSpec()) { 3170 if (isComputedNoexcept(T->getExceptionSpecType())) { 3171 Out << "DO"; 3172 mangleExpression(T->getNoexceptExpr()); 3173 Out << "E"; 3174 } else { 3175 assert(T->getExceptionSpecType() == EST_Dynamic); 3176 Out << "Dw"; 3177 for (auto ExceptTy : T->exceptions()) 3178 mangleType(ExceptTy); 3179 Out << "E"; 3180 } 3181 } else if (T->isNothrow()) { 3182 Out << "Do"; 3183 } 3184 3185 Out << 'F'; 3186 3187 // FIXME: We don't have enough information in the AST to produce the 'Y' 3188 // encoding for extern "C" function types. 3189 mangleBareFunctionType(T, /*MangleReturnType=*/true); 3190 3191 // Mangle the ref-qualifier, if present. 3192 mangleRefQualifier(T->getRefQualifier()); 3193 3194 Out << 'E'; 3195 } 3196 3197 void CXXNameMangler::mangleType(const FunctionNoProtoType *T) { 3198 // Function types without prototypes can arise when mangling a function type 3199 // within an overloadable function in C. We mangle these as the absence of any 3200 // parameter types (not even an empty parameter list). 3201 Out << 'F'; 3202 3203 FunctionTypeDepthState saved = FunctionTypeDepth.push(); 3204 3205 FunctionTypeDepth.enterResultType(); 3206 mangleType(T->getReturnType()); 3207 FunctionTypeDepth.leaveResultType(); 3208 3209 FunctionTypeDepth.pop(saved); 3210 Out << 'E'; 3211 } 3212 3213 void CXXNameMangler::mangleBareFunctionType(const FunctionProtoType *Proto, 3214 bool MangleReturnType, 3215 const FunctionDecl *FD) { 3216 // Record that we're in a function type. See mangleFunctionParam 3217 // for details on what we're trying to achieve here. 3218 FunctionTypeDepthState saved = FunctionTypeDepth.push(); 3219 3220 // <bare-function-type> ::= <signature type>+ 3221 if (MangleReturnType) { 3222 FunctionTypeDepth.enterResultType(); 3223 3224 // Mangle ns_returns_retained as an order-sensitive qualifier here. 3225 if (Proto->getExtInfo().getProducesResult() && FD == nullptr) 3226 mangleVendorQualifier("ns_returns_retained"); 3227 3228 // Mangle the return type without any direct ARC ownership qualifiers. 3229 QualType ReturnTy = Proto->getReturnType(); 3230 if (ReturnTy.getObjCLifetime()) { 3231 auto SplitReturnTy = ReturnTy.split(); 3232 SplitReturnTy.Quals.removeObjCLifetime(); 3233 ReturnTy = getASTContext().getQualifiedType(SplitReturnTy); 3234 } 3235 mangleType(ReturnTy); 3236 3237 FunctionTypeDepth.leaveResultType(); 3238 } 3239 3240 if (Proto->getNumParams() == 0 && !Proto->isVariadic()) { 3241 // <builtin-type> ::= v # void 3242 Out << 'v'; 3243 3244 FunctionTypeDepth.pop(saved); 3245 return; 3246 } 3247 3248 assert(!FD || FD->getNumParams() == Proto->getNumParams()); 3249 for (unsigned I = 0, E = Proto->getNumParams(); I != E; ++I) { 3250 // Mangle extended parameter info as order-sensitive qualifiers here. 3251 if (Proto->hasExtParameterInfos() && FD == nullptr) { 3252 mangleExtParameterInfo(Proto->getExtParameterInfo(I)); 3253 } 3254 3255 // Mangle the type. 3256 QualType ParamTy = Proto->getParamType(I); 3257 mangleType(Context.getASTContext().getSignatureParameterType(ParamTy)); 3258 3259 if (FD) { 3260 if (auto *Attr = FD->getParamDecl(I)->getAttr<PassObjectSizeAttr>()) { 3261 // Attr can only take 1 character, so we can hardcode the length below. 3262 assert(Attr->getType() <= 9 && Attr->getType() >= 0); 3263 if (Attr->isDynamic()) 3264 Out << "U25pass_dynamic_object_size" << Attr->getType(); 3265 else 3266 Out << "U17pass_object_size" << Attr->getType(); 3267 } 3268 } 3269 } 3270 3271 FunctionTypeDepth.pop(saved); 3272 3273 // <builtin-type> ::= z # ellipsis 3274 if (Proto->isVariadic()) 3275 Out << 'z'; 3276 } 3277 3278 // <type> ::= <class-enum-type> 3279 // <class-enum-type> ::= <name> 3280 void CXXNameMangler::mangleType(const UnresolvedUsingType *T) { 3281 mangleName(T->getDecl()); 3282 } 3283 3284 // <type> ::= <class-enum-type> 3285 // <class-enum-type> ::= <name> 3286 void CXXNameMangler::mangleType(const EnumType *T) { 3287 mangleType(static_cast<const TagType*>(T)); 3288 } 3289 void CXXNameMangler::mangleType(const RecordType *T) { 3290 mangleType(static_cast<const TagType*>(T)); 3291 } 3292 void CXXNameMangler::mangleType(const TagType *T) { 3293 mangleName(T->getDecl()); 3294 } 3295 3296 // <type> ::= <array-type> 3297 // <array-type> ::= A <positive dimension number> _ <element type> 3298 // ::= A [<dimension expression>] _ <element type> 3299 void CXXNameMangler::mangleType(const ConstantArrayType *T) { 3300 Out << 'A' << T->getSize() << '_'; 3301 mangleType(T->getElementType()); 3302 } 3303 void CXXNameMangler::mangleType(const VariableArrayType *T) { 3304 Out << 'A'; 3305 // decayed vla types (size 0) will just be skipped. 3306 if (T->getSizeExpr()) 3307 mangleExpression(T->getSizeExpr()); 3308 Out << '_'; 3309 mangleType(T->getElementType()); 3310 } 3311 void CXXNameMangler::mangleType(const DependentSizedArrayType *T) { 3312 Out << 'A'; 3313 // A DependentSizedArrayType might not have size expression as below 3314 // 3315 // template<int ...N> int arr[] = {N...}; 3316 if (T->getSizeExpr()) 3317 mangleExpression(T->getSizeExpr()); 3318 Out << '_'; 3319 mangleType(T->getElementType()); 3320 } 3321 void CXXNameMangler::mangleType(const IncompleteArrayType *T) { 3322 Out << "A_"; 3323 mangleType(T->getElementType()); 3324 } 3325 3326 // <type> ::= <pointer-to-member-type> 3327 // <pointer-to-member-type> ::= M <class type> <member type> 3328 void CXXNameMangler::mangleType(const MemberPointerType *T) { 3329 Out << 'M'; 3330 mangleType(QualType(T->getClass(), 0)); 3331 QualType PointeeType = T->getPointeeType(); 3332 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(PointeeType)) { 3333 mangleType(FPT); 3334 3335 // Itanium C++ ABI 5.1.8: 3336 // 3337 // The type of a non-static member function is considered to be different, 3338 // for the purposes of substitution, from the type of a namespace-scope or 3339 // static member function whose type appears similar. The types of two 3340 // non-static member functions are considered to be different, for the 3341 // purposes of substitution, if the functions are members of different 3342 // classes. In other words, for the purposes of substitution, the class of 3343 // which the function is a member is considered part of the type of 3344 // function. 3345 3346 // Given that we already substitute member function pointers as a 3347 // whole, the net effect of this rule is just to unconditionally 3348 // suppress substitution on the function type in a member pointer. 3349 // We increment the SeqID here to emulate adding an entry to the 3350 // substitution table. 3351 ++SeqID; 3352 } else 3353 mangleType(PointeeType); 3354 } 3355 3356 // <type> ::= <template-param> 3357 void CXXNameMangler::mangleType(const TemplateTypeParmType *T) { 3358 mangleTemplateParameter(T->getDepth(), T->getIndex()); 3359 } 3360 3361 // <type> ::= <template-param> 3362 void CXXNameMangler::mangleType(const SubstTemplateTypeParmPackType *T) { 3363 // FIXME: not clear how to mangle this! 3364 // template <class T...> class A { 3365 // template <class U...> void foo(T(*)(U) x...); 3366 // }; 3367 Out << "_SUBSTPACK_"; 3368 } 3369 3370 // <type> ::= P <type> # pointer-to 3371 void CXXNameMangler::mangleType(const PointerType *T) { 3372 Out << 'P'; 3373 mangleType(T->getPointeeType()); 3374 } 3375 void CXXNameMangler::mangleType(const ObjCObjectPointerType *T) { 3376 Out << 'P'; 3377 mangleType(T->getPointeeType()); 3378 } 3379 3380 // <type> ::= R <type> # reference-to 3381 void CXXNameMangler::mangleType(const LValueReferenceType *T) { 3382 Out << 'R'; 3383 mangleType(T->getPointeeType()); 3384 } 3385 3386 // <type> ::= O <type> # rvalue reference-to (C++0x) 3387 void CXXNameMangler::mangleType(const RValueReferenceType *T) { 3388 Out << 'O'; 3389 mangleType(T->getPointeeType()); 3390 } 3391 3392 // <type> ::= C <type> # complex pair (C 2000) 3393 void CXXNameMangler::mangleType(const ComplexType *T) { 3394 Out << 'C'; 3395 mangleType(T->getElementType()); 3396 } 3397 3398 // ARM's ABI for Neon vector types specifies that they should be mangled as 3399 // if they are structs (to match ARM's initial implementation). The 3400 // vector type must be one of the special types predefined by ARM. 3401 void CXXNameMangler::mangleNeonVectorType(const VectorType *T) { 3402 QualType EltType = T->getElementType(); 3403 assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType"); 3404 const char *EltName = nullptr; 3405 if (T->getVectorKind() == VectorType::NeonPolyVector) { 3406 switch (cast<BuiltinType>(EltType)->getKind()) { 3407 case BuiltinType::SChar: 3408 case BuiltinType::UChar: 3409 EltName = "poly8_t"; 3410 break; 3411 case BuiltinType::Short: 3412 case BuiltinType::UShort: 3413 EltName = "poly16_t"; 3414 break; 3415 case BuiltinType::LongLong: 3416 case BuiltinType::ULongLong: 3417 EltName = "poly64_t"; 3418 break; 3419 default: llvm_unreachable("unexpected Neon polynomial vector element type"); 3420 } 3421 } else { 3422 switch (cast<BuiltinType>(EltType)->getKind()) { 3423 case BuiltinType::SChar: EltName = "int8_t"; break; 3424 case BuiltinType::UChar: EltName = "uint8_t"; break; 3425 case BuiltinType::Short: EltName = "int16_t"; break; 3426 case BuiltinType::UShort: EltName = "uint16_t"; break; 3427 case BuiltinType::Int: EltName = "int32_t"; break; 3428 case BuiltinType::UInt: EltName = "uint32_t"; break; 3429 case BuiltinType::LongLong: EltName = "int64_t"; break; 3430 case BuiltinType::ULongLong: EltName = "uint64_t"; break; 3431 case BuiltinType::Double: EltName = "float64_t"; break; 3432 case BuiltinType::Float: EltName = "float32_t"; break; 3433 case BuiltinType::Half: EltName = "float16_t"; break; 3434 case BuiltinType::BFloat16: EltName = "bfloat16_t"; break; 3435 default: 3436 llvm_unreachable("unexpected Neon vector element type"); 3437 } 3438 } 3439 const char *BaseName = nullptr; 3440 unsigned BitSize = (T->getNumElements() * 3441 getASTContext().getTypeSize(EltType)); 3442 if (BitSize == 64) 3443 BaseName = "__simd64_"; 3444 else { 3445 assert(BitSize == 128 && "Neon vector type not 64 or 128 bits"); 3446 BaseName = "__simd128_"; 3447 } 3448 Out << strlen(BaseName) + strlen(EltName); 3449 Out << BaseName << EltName; 3450 } 3451 3452 void CXXNameMangler::mangleNeonVectorType(const DependentVectorType *T) { 3453 DiagnosticsEngine &Diags = Context.getDiags(); 3454 unsigned DiagID = Diags.getCustomDiagID( 3455 DiagnosticsEngine::Error, 3456 "cannot mangle this dependent neon vector type yet"); 3457 Diags.Report(T->getAttributeLoc(), DiagID); 3458 } 3459 3460 static StringRef mangleAArch64VectorBase(const BuiltinType *EltType) { 3461 switch (EltType->getKind()) { 3462 case BuiltinType::SChar: 3463 return "Int8"; 3464 case BuiltinType::Short: 3465 return "Int16"; 3466 case BuiltinType::Int: 3467 return "Int32"; 3468 case BuiltinType::Long: 3469 case BuiltinType::LongLong: 3470 return "Int64"; 3471 case BuiltinType::UChar: 3472 return "Uint8"; 3473 case BuiltinType::UShort: 3474 return "Uint16"; 3475 case BuiltinType::UInt: 3476 return "Uint32"; 3477 case BuiltinType::ULong: 3478 case BuiltinType::ULongLong: 3479 return "Uint64"; 3480 case BuiltinType::Half: 3481 return "Float16"; 3482 case BuiltinType::Float: 3483 return "Float32"; 3484 case BuiltinType::Double: 3485 return "Float64"; 3486 case BuiltinType::BFloat16: 3487 return "Bfloat16"; 3488 default: 3489 llvm_unreachable("Unexpected vector element base type"); 3490 } 3491 } 3492 3493 // AArch64's ABI for Neon vector types specifies that they should be mangled as 3494 // the equivalent internal name. The vector type must be one of the special 3495 // types predefined by ARM. 3496 void CXXNameMangler::mangleAArch64NeonVectorType(const VectorType *T) { 3497 QualType EltType = T->getElementType(); 3498 assert(EltType->isBuiltinType() && "Neon vector element not a BuiltinType"); 3499 unsigned BitSize = 3500 (T->getNumElements() * getASTContext().getTypeSize(EltType)); 3501 (void)BitSize; // Silence warning. 3502 3503 assert((BitSize == 64 || BitSize == 128) && 3504 "Neon vector type not 64 or 128 bits"); 3505 3506 StringRef EltName; 3507 if (T->getVectorKind() == VectorType::NeonPolyVector) { 3508 switch (cast<BuiltinType>(EltType)->getKind()) { 3509 case BuiltinType::UChar: 3510 EltName = "Poly8"; 3511 break; 3512 case BuiltinType::UShort: 3513 EltName = "Poly16"; 3514 break; 3515 case BuiltinType::ULong: 3516 case BuiltinType::ULongLong: 3517 EltName = "Poly64"; 3518 break; 3519 default: 3520 llvm_unreachable("unexpected Neon polynomial vector element type"); 3521 } 3522 } else 3523 EltName = mangleAArch64VectorBase(cast<BuiltinType>(EltType)); 3524 3525 std::string TypeName = 3526 ("__" + EltName + "x" + Twine(T->getNumElements()) + "_t").str(); 3527 Out << TypeName.length() << TypeName; 3528 } 3529 void CXXNameMangler::mangleAArch64NeonVectorType(const DependentVectorType *T) { 3530 DiagnosticsEngine &Diags = Context.getDiags(); 3531 unsigned DiagID = Diags.getCustomDiagID( 3532 DiagnosticsEngine::Error, 3533 "cannot mangle this dependent neon vector type yet"); 3534 Diags.Report(T->getAttributeLoc(), DiagID); 3535 } 3536 3537 // The AArch64 ACLE specifies that fixed-length SVE vector and predicate types 3538 // defined with the 'arm_sve_vector_bits' attribute map to the same AAPCS64 3539 // type as the sizeless variants. 3540 // 3541 // The mangling scheme for VLS types is implemented as a "pseudo" template: 3542 // 3543 // '__SVE_VLS<<type>, <vector length>>' 3544 // 3545 // Combining the existing SVE type and a specific vector length (in bits). 3546 // For example: 3547 // 3548 // typedef __SVInt32_t foo __attribute__((arm_sve_vector_bits(512))); 3549 // 3550 // is described as '__SVE_VLS<__SVInt32_t, 512u>' and mangled as: 3551 // 3552 // "9__SVE_VLSI" + base type mangling + "Lj" + __ARM_FEATURE_SVE_BITS + "EE" 3553 // 3554 // i.e. 9__SVE_VLSIu11__SVInt32_tLj512EE 3555 // 3556 // The latest ACLE specification (00bet5) does not contain details of this 3557 // mangling scheme, it will be specified in the next revision. The mangling 3558 // scheme is otherwise defined in the appendices to the Procedure Call Standard 3559 // for the Arm Architecture, see 3560 // https://github.com/ARM-software/abi-aa/blob/master/aapcs64/aapcs64.rst#appendix-c-mangling 3561 void CXXNameMangler::mangleAArch64FixedSveVectorType(const VectorType *T) { 3562 assert((T->getVectorKind() == VectorType::SveFixedLengthDataVector || 3563 T->getVectorKind() == VectorType::SveFixedLengthPredicateVector) && 3564 "expected fixed-length SVE vector!"); 3565 3566 QualType EltType = T->getElementType(); 3567 assert(EltType->isBuiltinType() && 3568 "expected builtin type for fixed-length SVE vector!"); 3569 3570 StringRef TypeName; 3571 switch (cast<BuiltinType>(EltType)->getKind()) { 3572 case BuiltinType::SChar: 3573 TypeName = "__SVInt8_t"; 3574 break; 3575 case BuiltinType::UChar: { 3576 if (T->getVectorKind() == VectorType::SveFixedLengthDataVector) 3577 TypeName = "__SVUint8_t"; 3578 else 3579 TypeName = "__SVBool_t"; 3580 break; 3581 } 3582 case BuiltinType::Short: 3583 TypeName = "__SVInt16_t"; 3584 break; 3585 case BuiltinType::UShort: 3586 TypeName = "__SVUint16_t"; 3587 break; 3588 case BuiltinType::Int: 3589 TypeName = "__SVInt32_t"; 3590 break; 3591 case BuiltinType::UInt: 3592 TypeName = "__SVUint32_t"; 3593 break; 3594 case BuiltinType::Long: 3595 TypeName = "__SVInt64_t"; 3596 break; 3597 case BuiltinType::ULong: 3598 TypeName = "__SVUint64_t"; 3599 break; 3600 case BuiltinType::Half: 3601 TypeName = "__SVFloat16_t"; 3602 break; 3603 case BuiltinType::Float: 3604 TypeName = "__SVFloat32_t"; 3605 break; 3606 case BuiltinType::Double: 3607 TypeName = "__SVFloat64_t"; 3608 break; 3609 case BuiltinType::BFloat16: 3610 TypeName = "__SVBfloat16_t"; 3611 break; 3612 default: 3613 llvm_unreachable("unexpected element type for fixed-length SVE vector!"); 3614 } 3615 3616 unsigned VecSizeInBits = getASTContext().getTypeInfo(T).Width; 3617 3618 if (T->getVectorKind() == VectorType::SveFixedLengthPredicateVector) 3619 VecSizeInBits *= 8; 3620 3621 Out << "9__SVE_VLSI" << 'u' << TypeName.size() << TypeName << "Lj" 3622 << VecSizeInBits << "EE"; 3623 } 3624 3625 void CXXNameMangler::mangleAArch64FixedSveVectorType( 3626 const DependentVectorType *T) { 3627 DiagnosticsEngine &Diags = Context.getDiags(); 3628 unsigned DiagID = Diags.getCustomDiagID( 3629 DiagnosticsEngine::Error, 3630 "cannot mangle this dependent fixed-length SVE vector type yet"); 3631 Diags.Report(T->getAttributeLoc(), DiagID); 3632 } 3633 3634 // GNU extension: vector types 3635 // <type> ::= <vector-type> 3636 // <vector-type> ::= Dv <positive dimension number> _ 3637 // <extended element type> 3638 // ::= Dv [<dimension expression>] _ <element type> 3639 // <extended element type> ::= <element type> 3640 // ::= p # AltiVec vector pixel 3641 // ::= b # Altivec vector bool 3642 void CXXNameMangler::mangleType(const VectorType *T) { 3643 if ((T->getVectorKind() == VectorType::NeonVector || 3644 T->getVectorKind() == VectorType::NeonPolyVector)) { 3645 llvm::Triple Target = getASTContext().getTargetInfo().getTriple(); 3646 llvm::Triple::ArchType Arch = 3647 getASTContext().getTargetInfo().getTriple().getArch(); 3648 if ((Arch == llvm::Triple::aarch64 || 3649 Arch == llvm::Triple::aarch64_be) && !Target.isOSDarwin()) 3650 mangleAArch64NeonVectorType(T); 3651 else 3652 mangleNeonVectorType(T); 3653 return; 3654 } else if (T->getVectorKind() == VectorType::SveFixedLengthDataVector || 3655 T->getVectorKind() == VectorType::SveFixedLengthPredicateVector) { 3656 mangleAArch64FixedSveVectorType(T); 3657 return; 3658 } 3659 Out << "Dv" << T->getNumElements() << '_'; 3660 if (T->getVectorKind() == VectorType::AltiVecPixel) 3661 Out << 'p'; 3662 else if (T->getVectorKind() == VectorType::AltiVecBool) 3663 Out << 'b'; 3664 else 3665 mangleType(T->getElementType()); 3666 } 3667 3668 void CXXNameMangler::mangleType(const DependentVectorType *T) { 3669 if ((T->getVectorKind() == VectorType::NeonVector || 3670 T->getVectorKind() == VectorType::NeonPolyVector)) { 3671 llvm::Triple Target = getASTContext().getTargetInfo().getTriple(); 3672 llvm::Triple::ArchType Arch = 3673 getASTContext().getTargetInfo().getTriple().getArch(); 3674 if ((Arch == llvm::Triple::aarch64 || Arch == llvm::Triple::aarch64_be) && 3675 !Target.isOSDarwin()) 3676 mangleAArch64NeonVectorType(T); 3677 else 3678 mangleNeonVectorType(T); 3679 return; 3680 } else if (T->getVectorKind() == VectorType::SveFixedLengthDataVector || 3681 T->getVectorKind() == VectorType::SveFixedLengthPredicateVector) { 3682 mangleAArch64FixedSveVectorType(T); 3683 return; 3684 } 3685 3686 Out << "Dv"; 3687 mangleExpression(T->getSizeExpr()); 3688 Out << '_'; 3689 if (T->getVectorKind() == VectorType::AltiVecPixel) 3690 Out << 'p'; 3691 else if (T->getVectorKind() == VectorType::AltiVecBool) 3692 Out << 'b'; 3693 else 3694 mangleType(T->getElementType()); 3695 } 3696 3697 void CXXNameMangler::mangleType(const ExtVectorType *T) { 3698 mangleType(static_cast<const VectorType*>(T)); 3699 } 3700 void CXXNameMangler::mangleType(const DependentSizedExtVectorType *T) { 3701 Out << "Dv"; 3702 mangleExpression(T->getSizeExpr()); 3703 Out << '_'; 3704 mangleType(T->getElementType()); 3705 } 3706 3707 void CXXNameMangler::mangleType(const ConstantMatrixType *T) { 3708 // Mangle matrix types as a vendor extended type: 3709 // u<Len>matrix_typeI<Rows><Columns><element type>E 3710 3711 StringRef VendorQualifier = "matrix_type"; 3712 Out << "u" << VendorQualifier.size() << VendorQualifier; 3713 3714 Out << "I"; 3715 auto &ASTCtx = getASTContext(); 3716 unsigned BitWidth = ASTCtx.getTypeSize(ASTCtx.getSizeType()); 3717 llvm::APSInt Rows(BitWidth); 3718 Rows = T->getNumRows(); 3719 mangleIntegerLiteral(ASTCtx.getSizeType(), Rows); 3720 llvm::APSInt Columns(BitWidth); 3721 Columns = T->getNumColumns(); 3722 mangleIntegerLiteral(ASTCtx.getSizeType(), Columns); 3723 mangleType(T->getElementType()); 3724 Out << "E"; 3725 } 3726 3727 void CXXNameMangler::mangleType(const DependentSizedMatrixType *T) { 3728 // Mangle matrix types as a vendor extended type: 3729 // u<Len>matrix_typeI<row expr><column expr><element type>E 3730 StringRef VendorQualifier = "matrix_type"; 3731 Out << "u" << VendorQualifier.size() << VendorQualifier; 3732 3733 Out << "I"; 3734 mangleTemplateArgExpr(T->getRowExpr()); 3735 mangleTemplateArgExpr(T->getColumnExpr()); 3736 mangleType(T->getElementType()); 3737 Out << "E"; 3738 } 3739 3740 void CXXNameMangler::mangleType(const DependentAddressSpaceType *T) { 3741 SplitQualType split = T->getPointeeType().split(); 3742 mangleQualifiers(split.Quals, T); 3743 mangleType(QualType(split.Ty, 0)); 3744 } 3745 3746 void CXXNameMangler::mangleType(const PackExpansionType *T) { 3747 // <type> ::= Dp <type> # pack expansion (C++0x) 3748 Out << "Dp"; 3749 mangleType(T->getPattern()); 3750 } 3751 3752 void CXXNameMangler::mangleType(const ObjCInterfaceType *T) { 3753 mangleSourceName(T->getDecl()->getIdentifier()); 3754 } 3755 3756 void CXXNameMangler::mangleType(const ObjCObjectType *T) { 3757 // Treat __kindof as a vendor extended type qualifier. 3758 if (T->isKindOfType()) 3759 Out << "U8__kindof"; 3760 3761 if (!T->qual_empty()) { 3762 // Mangle protocol qualifiers. 3763 SmallString<64> QualStr; 3764 llvm::raw_svector_ostream QualOS(QualStr); 3765 QualOS << "objcproto"; 3766 for (const auto *I : T->quals()) { 3767 StringRef name = I->getName(); 3768 QualOS << name.size() << name; 3769 } 3770 Out << 'U' << QualStr.size() << QualStr; 3771 } 3772 3773 mangleType(T->getBaseType()); 3774 3775 if (T->isSpecialized()) { 3776 // Mangle type arguments as I <type>+ E 3777 Out << 'I'; 3778 for (auto typeArg : T->getTypeArgs()) 3779 mangleType(typeArg); 3780 Out << 'E'; 3781 } 3782 } 3783 3784 void CXXNameMangler::mangleType(const BlockPointerType *T) { 3785 Out << "U13block_pointer"; 3786 mangleType(T->getPointeeType()); 3787 } 3788 3789 void CXXNameMangler::mangleType(const InjectedClassNameType *T) { 3790 // Mangle injected class name types as if the user had written the 3791 // specialization out fully. It may not actually be possible to see 3792 // this mangling, though. 3793 mangleType(T->getInjectedSpecializationType()); 3794 } 3795 3796 void CXXNameMangler::mangleType(const TemplateSpecializationType *T) { 3797 if (TemplateDecl *TD = T->getTemplateName().getAsTemplateDecl()) { 3798 mangleTemplateName(TD, T->getArgs(), T->getNumArgs()); 3799 } else { 3800 if (mangleSubstitution(QualType(T, 0))) 3801 return; 3802 3803 mangleTemplatePrefix(T->getTemplateName()); 3804 3805 // FIXME: GCC does not appear to mangle the template arguments when 3806 // the template in question is a dependent template name. Should we 3807 // emulate that badness? 3808 mangleTemplateArgs(T->getTemplateName(), T->getArgs(), T->getNumArgs()); 3809 addSubstitution(QualType(T, 0)); 3810 } 3811 } 3812 3813 void CXXNameMangler::mangleType(const DependentNameType *T) { 3814 // Proposal by cxx-abi-dev, 2014-03-26 3815 // <class-enum-type> ::= <name> # non-dependent or dependent type name or 3816 // # dependent elaborated type specifier using 3817 // # 'typename' 3818 // ::= Ts <name> # dependent elaborated type specifier using 3819 // # 'struct' or 'class' 3820 // ::= Tu <name> # dependent elaborated type specifier using 3821 // # 'union' 3822 // ::= Te <name> # dependent elaborated type specifier using 3823 // # 'enum' 3824 switch (T->getKeyword()) { 3825 case ETK_None: 3826 case ETK_Typename: 3827 break; 3828 case ETK_Struct: 3829 case ETK_Class: 3830 case ETK_Interface: 3831 Out << "Ts"; 3832 break; 3833 case ETK_Union: 3834 Out << "Tu"; 3835 break; 3836 case ETK_Enum: 3837 Out << "Te"; 3838 break; 3839 } 3840 // Typename types are always nested 3841 Out << 'N'; 3842 manglePrefix(T->getQualifier()); 3843 mangleSourceName(T->getIdentifier()); 3844 Out << 'E'; 3845 } 3846 3847 void CXXNameMangler::mangleType(const DependentTemplateSpecializationType *T) { 3848 // Dependently-scoped template types are nested if they have a prefix. 3849 Out << 'N'; 3850 3851 // TODO: avoid making this TemplateName. 3852 TemplateName Prefix = 3853 getASTContext().getDependentTemplateName(T->getQualifier(), 3854 T->getIdentifier()); 3855 mangleTemplatePrefix(Prefix); 3856 3857 // FIXME: GCC does not appear to mangle the template arguments when 3858 // the template in question is a dependent template name. Should we 3859 // emulate that badness? 3860 mangleTemplateArgs(Prefix, T->getArgs(), T->getNumArgs()); 3861 Out << 'E'; 3862 } 3863 3864 void CXXNameMangler::mangleType(const TypeOfType *T) { 3865 // FIXME: this is pretty unsatisfactory, but there isn't an obvious 3866 // "extension with parameters" mangling. 3867 Out << "u6typeof"; 3868 } 3869 3870 void CXXNameMangler::mangleType(const TypeOfExprType *T) { 3871 // FIXME: this is pretty unsatisfactory, but there isn't an obvious 3872 // "extension with parameters" mangling. 3873 Out << "u6typeof"; 3874 } 3875 3876 void CXXNameMangler::mangleType(const DecltypeType *T) { 3877 Expr *E = T->getUnderlyingExpr(); 3878 3879 // type ::= Dt <expression> E # decltype of an id-expression 3880 // # or class member access 3881 // ::= DT <expression> E # decltype of an expression 3882 3883 // This purports to be an exhaustive list of id-expressions and 3884 // class member accesses. Note that we do not ignore parentheses; 3885 // parentheses change the semantics of decltype for these 3886 // expressions (and cause the mangler to use the other form). 3887 if (isa<DeclRefExpr>(E) || 3888 isa<MemberExpr>(E) || 3889 isa<UnresolvedLookupExpr>(E) || 3890 isa<DependentScopeDeclRefExpr>(E) || 3891 isa<CXXDependentScopeMemberExpr>(E) || 3892 isa<UnresolvedMemberExpr>(E)) 3893 Out << "Dt"; 3894 else 3895 Out << "DT"; 3896 mangleExpression(E); 3897 Out << 'E'; 3898 } 3899 3900 void CXXNameMangler::mangleType(const UnaryTransformType *T) { 3901 // If this is dependent, we need to record that. If not, we simply 3902 // mangle it as the underlying type since they are equivalent. 3903 if (T->isDependentType()) { 3904 Out << 'U'; 3905 3906 switch (T->getUTTKind()) { 3907 case UnaryTransformType::EnumUnderlyingType: 3908 Out << "3eut"; 3909 break; 3910 } 3911 } 3912 3913 mangleType(T->getBaseType()); 3914 } 3915 3916 void CXXNameMangler::mangleType(const AutoType *T) { 3917 assert(T->getDeducedType().isNull() && 3918 "Deduced AutoType shouldn't be handled here!"); 3919 assert(T->getKeyword() != AutoTypeKeyword::GNUAutoType && 3920 "shouldn't need to mangle __auto_type!"); 3921 // <builtin-type> ::= Da # auto 3922 // ::= Dc # decltype(auto) 3923 Out << (T->isDecltypeAuto() ? "Dc" : "Da"); 3924 } 3925 3926 void CXXNameMangler::mangleType(const DeducedTemplateSpecializationType *T) { 3927 QualType Deduced = T->getDeducedType(); 3928 if (!Deduced.isNull()) 3929 return mangleType(Deduced); 3930 3931 TemplateDecl *TD = T->getTemplateName().getAsTemplateDecl(); 3932 assert(TD && "shouldn't form deduced TST unless we know we have a template"); 3933 3934 if (mangleSubstitution(TD)) 3935 return; 3936 3937 mangleName(GlobalDecl(TD)); 3938 addSubstitution(TD); 3939 } 3940 3941 void CXXNameMangler::mangleType(const AtomicType *T) { 3942 // <type> ::= U <source-name> <type> # vendor extended type qualifier 3943 // (Until there's a standardized mangling...) 3944 Out << "U7_Atomic"; 3945 mangleType(T->getValueType()); 3946 } 3947 3948 void CXXNameMangler::mangleType(const PipeType *T) { 3949 // Pipe type mangling rules are described in SPIR 2.0 specification 3950 // A.1 Data types and A.3 Summary of changes 3951 // <type> ::= 8ocl_pipe 3952 Out << "8ocl_pipe"; 3953 } 3954 3955 void CXXNameMangler::mangleType(const ExtIntType *T) { 3956 Out << "U7_ExtInt"; 3957 llvm::APSInt BW(32, true); 3958 BW = T->getNumBits(); 3959 TemplateArgument TA(Context.getASTContext(), BW, getASTContext().IntTy); 3960 mangleTemplateArgs(TemplateName(), &TA, 1); 3961 if (T->isUnsigned()) 3962 Out << "j"; 3963 else 3964 Out << "i"; 3965 } 3966 3967 void CXXNameMangler::mangleType(const DependentExtIntType *T) { 3968 Out << "U7_ExtInt"; 3969 TemplateArgument TA(T->getNumBitsExpr()); 3970 mangleTemplateArgs(TemplateName(), &TA, 1); 3971 if (T->isUnsigned()) 3972 Out << "j"; 3973 else 3974 Out << "i"; 3975 } 3976 3977 void CXXNameMangler::mangleIntegerLiteral(QualType T, 3978 const llvm::APSInt &Value) { 3979 // <expr-primary> ::= L <type> <value number> E # integer literal 3980 Out << 'L'; 3981 3982 mangleType(T); 3983 if (T->isBooleanType()) { 3984 // Boolean values are encoded as 0/1. 3985 Out << (Value.getBoolValue() ? '1' : '0'); 3986 } else { 3987 mangleNumber(Value); 3988 } 3989 Out << 'E'; 3990 3991 } 3992 3993 void CXXNameMangler::mangleMemberExprBase(const Expr *Base, bool IsArrow) { 3994 // Ignore member expressions involving anonymous unions. 3995 while (const auto *RT = Base->getType()->getAs<RecordType>()) { 3996 if (!RT->getDecl()->isAnonymousStructOrUnion()) 3997 break; 3998 const auto *ME = dyn_cast<MemberExpr>(Base); 3999 if (!ME) 4000 break; 4001 Base = ME->getBase(); 4002 IsArrow = ME->isArrow(); 4003 } 4004 4005 if (Base->isImplicitCXXThis()) { 4006 // Note: GCC mangles member expressions to the implicit 'this' as 4007 // *this., whereas we represent them as this->. The Itanium C++ ABI 4008 // does not specify anything here, so we follow GCC. 4009 Out << "dtdefpT"; 4010 } else { 4011 Out << (IsArrow ? "pt" : "dt"); 4012 mangleExpression(Base); 4013 } 4014 } 4015 4016 /// Mangles a member expression. 4017 void CXXNameMangler::mangleMemberExpr(const Expr *base, 4018 bool isArrow, 4019 NestedNameSpecifier *qualifier, 4020 NamedDecl *firstQualifierLookup, 4021 DeclarationName member, 4022 const TemplateArgumentLoc *TemplateArgs, 4023 unsigned NumTemplateArgs, 4024 unsigned arity) { 4025 // <expression> ::= dt <expression> <unresolved-name> 4026 // ::= pt <expression> <unresolved-name> 4027 if (base) 4028 mangleMemberExprBase(base, isArrow); 4029 mangleUnresolvedName(qualifier, member, TemplateArgs, NumTemplateArgs, arity); 4030 } 4031 4032 /// Look at the callee of the given call expression and determine if 4033 /// it's a parenthesized id-expression which would have triggered ADL 4034 /// otherwise. 4035 static bool isParenthesizedADLCallee(const CallExpr *call) { 4036 const Expr *callee = call->getCallee(); 4037 const Expr *fn = callee->IgnoreParens(); 4038 4039 // Must be parenthesized. IgnoreParens() skips __extension__ nodes, 4040 // too, but for those to appear in the callee, it would have to be 4041 // parenthesized. 4042 if (callee == fn) return false; 4043 4044 // Must be an unresolved lookup. 4045 const UnresolvedLookupExpr *lookup = dyn_cast<UnresolvedLookupExpr>(fn); 4046 if (!lookup) return false; 4047 4048 assert(!lookup->requiresADL()); 4049 4050 // Must be an unqualified lookup. 4051 if (lookup->getQualifier()) return false; 4052 4053 // Must not have found a class member. Note that if one is a class 4054 // member, they're all class members. 4055 if (lookup->getNumDecls() > 0 && 4056 (*lookup->decls_begin())->isCXXClassMember()) 4057 return false; 4058 4059 // Otherwise, ADL would have been triggered. 4060 return true; 4061 } 4062 4063 void CXXNameMangler::mangleCastExpression(const Expr *E, StringRef CastEncoding) { 4064 const ExplicitCastExpr *ECE = cast<ExplicitCastExpr>(E); 4065 Out << CastEncoding; 4066 mangleType(ECE->getType()); 4067 mangleExpression(ECE->getSubExpr()); 4068 } 4069 4070 void CXXNameMangler::mangleInitListElements(const InitListExpr *InitList) { 4071 if (auto *Syntactic = InitList->getSyntacticForm()) 4072 InitList = Syntactic; 4073 for (unsigned i = 0, e = InitList->getNumInits(); i != e; ++i) 4074 mangleExpression(InitList->getInit(i)); 4075 } 4076 4077 void CXXNameMangler::mangleExpression(const Expr *E, unsigned Arity, 4078 bool AsTemplateArg) { 4079 // <expression> ::= <unary operator-name> <expression> 4080 // ::= <binary operator-name> <expression> <expression> 4081 // ::= <trinary operator-name> <expression> <expression> <expression> 4082 // ::= cv <type> expression # conversion with one argument 4083 // ::= cv <type> _ <expression>* E # conversion with a different number of arguments 4084 // ::= dc <type> <expression> # dynamic_cast<type> (expression) 4085 // ::= sc <type> <expression> # static_cast<type> (expression) 4086 // ::= cc <type> <expression> # const_cast<type> (expression) 4087 // ::= rc <type> <expression> # reinterpret_cast<type> (expression) 4088 // ::= st <type> # sizeof (a type) 4089 // ::= at <type> # alignof (a type) 4090 // ::= <template-param> 4091 // ::= <function-param> 4092 // ::= fpT # 'this' expression (part of <function-param>) 4093 // ::= sr <type> <unqualified-name> # dependent name 4094 // ::= sr <type> <unqualified-name> <template-args> # dependent template-id 4095 // ::= ds <expression> <expression> # expr.*expr 4096 // ::= sZ <template-param> # size of a parameter pack 4097 // ::= sZ <function-param> # size of a function parameter pack 4098 // ::= u <source-name> <template-arg>* E # vendor extended expression 4099 // ::= <expr-primary> 4100 // <expr-primary> ::= L <type> <value number> E # integer literal 4101 // ::= L <type> <value float> E # floating literal 4102 // ::= L <type> <string type> E # string literal 4103 // ::= L <nullptr type> E # nullptr literal "LDnE" 4104 // ::= L <pointer type> 0 E # null pointer template argument 4105 // ::= L <type> <real-part float> _ <imag-part float> E # complex floating point literal (C99); not used by clang 4106 // ::= L <mangled-name> E # external name 4107 QualType ImplicitlyConvertedToType; 4108 4109 // A top-level expression that's not <expr-primary> needs to be wrapped in 4110 // X...E in a template arg. 4111 bool IsPrimaryExpr = true; 4112 auto NotPrimaryExpr = [&] { 4113 if (AsTemplateArg && IsPrimaryExpr) 4114 Out << 'X'; 4115 IsPrimaryExpr = false; 4116 }; 4117 4118 auto MangleDeclRefExpr = [&](const NamedDecl *D) { 4119 switch (D->getKind()) { 4120 default: 4121 // <expr-primary> ::= L <mangled-name> E # external name 4122 Out << 'L'; 4123 mangle(D); 4124 Out << 'E'; 4125 break; 4126 4127 case Decl::ParmVar: 4128 NotPrimaryExpr(); 4129 mangleFunctionParam(cast<ParmVarDecl>(D)); 4130 break; 4131 4132 case Decl::EnumConstant: { 4133 // <expr-primary> 4134 const EnumConstantDecl *ED = cast<EnumConstantDecl>(D); 4135 mangleIntegerLiteral(ED->getType(), ED->getInitVal()); 4136 break; 4137 } 4138 4139 case Decl::NonTypeTemplateParm: 4140 NotPrimaryExpr(); 4141 const NonTypeTemplateParmDecl *PD = cast<NonTypeTemplateParmDecl>(D); 4142 mangleTemplateParameter(PD->getDepth(), PD->getIndex()); 4143 break; 4144 } 4145 }; 4146 4147 // 'goto recurse' is used when handling a simple "unwrapping" node which 4148 // produces no output, where ImplicitlyConvertedToType and AsTemplateArg need 4149 // to be preserved. 4150 recurse: 4151 switch (E->getStmtClass()) { 4152 case Expr::NoStmtClass: 4153 #define ABSTRACT_STMT(Type) 4154 #define EXPR(Type, Base) 4155 #define STMT(Type, Base) \ 4156 case Expr::Type##Class: 4157 #include "clang/AST/StmtNodes.inc" 4158 // fallthrough 4159 4160 // These all can only appear in local or variable-initialization 4161 // contexts and so should never appear in a mangling. 4162 case Expr::AddrLabelExprClass: 4163 case Expr::DesignatedInitUpdateExprClass: 4164 case Expr::ImplicitValueInitExprClass: 4165 case Expr::ArrayInitLoopExprClass: 4166 case Expr::ArrayInitIndexExprClass: 4167 case Expr::NoInitExprClass: 4168 case Expr::ParenListExprClass: 4169 case Expr::LambdaExprClass: 4170 case Expr::MSPropertyRefExprClass: 4171 case Expr::MSPropertySubscriptExprClass: 4172 case Expr::TypoExprClass: // This should no longer exist in the AST by now. 4173 case Expr::RecoveryExprClass: 4174 case Expr::OMPArraySectionExprClass: 4175 case Expr::OMPArrayShapingExprClass: 4176 case Expr::OMPIteratorExprClass: 4177 case Expr::CXXInheritedCtorInitExprClass: 4178 llvm_unreachable("unexpected statement kind"); 4179 4180 case Expr::ConstantExprClass: 4181 E = cast<ConstantExpr>(E)->getSubExpr(); 4182 goto recurse; 4183 4184 // FIXME: invent manglings for all these. 4185 case Expr::BlockExprClass: 4186 case Expr::ChooseExprClass: 4187 case Expr::CompoundLiteralExprClass: 4188 case Expr::ExtVectorElementExprClass: 4189 case Expr::GenericSelectionExprClass: 4190 case Expr::ObjCEncodeExprClass: 4191 case Expr::ObjCIsaExprClass: 4192 case Expr::ObjCIvarRefExprClass: 4193 case Expr::ObjCMessageExprClass: 4194 case Expr::ObjCPropertyRefExprClass: 4195 case Expr::ObjCProtocolExprClass: 4196 case Expr::ObjCSelectorExprClass: 4197 case Expr::ObjCStringLiteralClass: 4198 case Expr::ObjCBoxedExprClass: 4199 case Expr::ObjCArrayLiteralClass: 4200 case Expr::ObjCDictionaryLiteralClass: 4201 case Expr::ObjCSubscriptRefExprClass: 4202 case Expr::ObjCIndirectCopyRestoreExprClass: 4203 case Expr::ObjCAvailabilityCheckExprClass: 4204 case Expr::OffsetOfExprClass: 4205 case Expr::PredefinedExprClass: 4206 case Expr::ShuffleVectorExprClass: 4207 case Expr::ConvertVectorExprClass: 4208 case Expr::StmtExprClass: 4209 case Expr::TypeTraitExprClass: 4210 case Expr::RequiresExprClass: 4211 case Expr::ArrayTypeTraitExprClass: 4212 case Expr::ExpressionTraitExprClass: 4213 case Expr::VAArgExprClass: 4214 case Expr::CUDAKernelCallExprClass: 4215 case Expr::AsTypeExprClass: 4216 case Expr::PseudoObjectExprClass: 4217 case Expr::AtomicExprClass: 4218 case Expr::SourceLocExprClass: 4219 case Expr::BuiltinBitCastExprClass: 4220 { 4221 NotPrimaryExpr(); 4222 if (!NullOut) { 4223 // As bad as this diagnostic is, it's better than crashing. 4224 DiagnosticsEngine &Diags = Context.getDiags(); 4225 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 4226 "cannot yet mangle expression type %0"); 4227 Diags.Report(E->getExprLoc(), DiagID) 4228 << E->getStmtClassName() << E->getSourceRange(); 4229 return; 4230 } 4231 break; 4232 } 4233 4234 case Expr::CXXUuidofExprClass: { 4235 NotPrimaryExpr(); 4236 const CXXUuidofExpr *UE = cast<CXXUuidofExpr>(E); 4237 // As of clang 12, uuidof uses the vendor extended expression 4238 // mangling. Previously, it used a special-cased nonstandard extension. 4239 if (Context.getASTContext().getLangOpts().getClangABICompat() > 4240 LangOptions::ClangABI::Ver11) { 4241 Out << "u8__uuidof"; 4242 if (UE->isTypeOperand()) 4243 mangleType(UE->getTypeOperand(Context.getASTContext())); 4244 else 4245 mangleTemplateArgExpr(UE->getExprOperand()); 4246 Out << 'E'; 4247 } else { 4248 if (UE->isTypeOperand()) { 4249 QualType UuidT = UE->getTypeOperand(Context.getASTContext()); 4250 Out << "u8__uuidoft"; 4251 mangleType(UuidT); 4252 } else { 4253 Expr *UuidExp = UE->getExprOperand(); 4254 Out << "u8__uuidofz"; 4255 mangleExpression(UuidExp); 4256 } 4257 } 4258 break; 4259 } 4260 4261 // Even gcc-4.5 doesn't mangle this. 4262 case Expr::BinaryConditionalOperatorClass: { 4263 NotPrimaryExpr(); 4264 DiagnosticsEngine &Diags = Context.getDiags(); 4265 unsigned DiagID = 4266 Diags.getCustomDiagID(DiagnosticsEngine::Error, 4267 "?: operator with omitted middle operand cannot be mangled"); 4268 Diags.Report(E->getExprLoc(), DiagID) 4269 << E->getStmtClassName() << E->getSourceRange(); 4270 return; 4271 } 4272 4273 // These are used for internal purposes and cannot be meaningfully mangled. 4274 case Expr::OpaqueValueExprClass: 4275 llvm_unreachable("cannot mangle opaque value; mangling wrong thing?"); 4276 4277 case Expr::InitListExprClass: { 4278 NotPrimaryExpr(); 4279 Out << "il"; 4280 mangleInitListElements(cast<InitListExpr>(E)); 4281 Out << "E"; 4282 break; 4283 } 4284 4285 case Expr::DesignatedInitExprClass: { 4286 NotPrimaryExpr(); 4287 auto *DIE = cast<DesignatedInitExpr>(E); 4288 for (const auto &Designator : DIE->designators()) { 4289 if (Designator.isFieldDesignator()) { 4290 Out << "di"; 4291 mangleSourceName(Designator.getFieldName()); 4292 } else if (Designator.isArrayDesignator()) { 4293 Out << "dx"; 4294 mangleExpression(DIE->getArrayIndex(Designator)); 4295 } else { 4296 assert(Designator.isArrayRangeDesignator() && 4297 "unknown designator kind"); 4298 Out << "dX"; 4299 mangleExpression(DIE->getArrayRangeStart(Designator)); 4300 mangleExpression(DIE->getArrayRangeEnd(Designator)); 4301 } 4302 } 4303 mangleExpression(DIE->getInit()); 4304 break; 4305 } 4306 4307 case Expr::CXXDefaultArgExprClass: 4308 E = cast<CXXDefaultArgExpr>(E)->getExpr(); 4309 goto recurse; 4310 4311 case Expr::CXXDefaultInitExprClass: 4312 E = cast<CXXDefaultInitExpr>(E)->getExpr(); 4313 goto recurse; 4314 4315 case Expr::CXXStdInitializerListExprClass: 4316 E = cast<CXXStdInitializerListExpr>(E)->getSubExpr(); 4317 goto recurse; 4318 4319 case Expr::SubstNonTypeTemplateParmExprClass: 4320 E = cast<SubstNonTypeTemplateParmExpr>(E)->getReplacement(); 4321 goto recurse; 4322 4323 case Expr::UserDefinedLiteralClass: 4324 // We follow g++'s approach of mangling a UDL as a call to the literal 4325 // operator. 4326 case Expr::CXXMemberCallExprClass: // fallthrough 4327 case Expr::CallExprClass: { 4328 NotPrimaryExpr(); 4329 const CallExpr *CE = cast<CallExpr>(E); 4330 4331 // <expression> ::= cp <simple-id> <expression>* E 4332 // We use this mangling only when the call would use ADL except 4333 // for being parenthesized. Per discussion with David 4334 // Vandervoorde, 2011.04.25. 4335 if (isParenthesizedADLCallee(CE)) { 4336 Out << "cp"; 4337 // The callee here is a parenthesized UnresolvedLookupExpr with 4338 // no qualifier and should always get mangled as a <simple-id> 4339 // anyway. 4340 4341 // <expression> ::= cl <expression>* E 4342 } else { 4343 Out << "cl"; 4344 } 4345 4346 unsigned CallArity = CE->getNumArgs(); 4347 for (const Expr *Arg : CE->arguments()) 4348 if (isa<PackExpansionExpr>(Arg)) 4349 CallArity = UnknownArity; 4350 4351 mangleExpression(CE->getCallee(), CallArity); 4352 for (const Expr *Arg : CE->arguments()) 4353 mangleExpression(Arg); 4354 Out << 'E'; 4355 break; 4356 } 4357 4358 case Expr::CXXNewExprClass: { 4359 NotPrimaryExpr(); 4360 const CXXNewExpr *New = cast<CXXNewExpr>(E); 4361 if (New->isGlobalNew()) Out << "gs"; 4362 Out << (New->isArray() ? "na" : "nw"); 4363 for (CXXNewExpr::const_arg_iterator I = New->placement_arg_begin(), 4364 E = New->placement_arg_end(); I != E; ++I) 4365 mangleExpression(*I); 4366 Out << '_'; 4367 mangleType(New->getAllocatedType()); 4368 if (New->hasInitializer()) { 4369 if (New->getInitializationStyle() == CXXNewExpr::ListInit) 4370 Out << "il"; 4371 else 4372 Out << "pi"; 4373 const Expr *Init = New->getInitializer(); 4374 if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) { 4375 // Directly inline the initializers. 4376 for (CXXConstructExpr::const_arg_iterator I = CCE->arg_begin(), 4377 E = CCE->arg_end(); 4378 I != E; ++I) 4379 mangleExpression(*I); 4380 } else if (const ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init)) { 4381 for (unsigned i = 0, e = PLE->getNumExprs(); i != e; ++i) 4382 mangleExpression(PLE->getExpr(i)); 4383 } else if (New->getInitializationStyle() == CXXNewExpr::ListInit && 4384 isa<InitListExpr>(Init)) { 4385 // Only take InitListExprs apart for list-initialization. 4386 mangleInitListElements(cast<InitListExpr>(Init)); 4387 } else 4388 mangleExpression(Init); 4389 } 4390 Out << 'E'; 4391 break; 4392 } 4393 4394 case Expr::CXXPseudoDestructorExprClass: { 4395 NotPrimaryExpr(); 4396 const auto *PDE = cast<CXXPseudoDestructorExpr>(E); 4397 if (const Expr *Base = PDE->getBase()) 4398 mangleMemberExprBase(Base, PDE->isArrow()); 4399 NestedNameSpecifier *Qualifier = PDE->getQualifier(); 4400 if (TypeSourceInfo *ScopeInfo = PDE->getScopeTypeInfo()) { 4401 if (Qualifier) { 4402 mangleUnresolvedPrefix(Qualifier, 4403 /*recursive=*/true); 4404 mangleUnresolvedTypeOrSimpleId(ScopeInfo->getType()); 4405 Out << 'E'; 4406 } else { 4407 Out << "sr"; 4408 if (!mangleUnresolvedTypeOrSimpleId(ScopeInfo->getType())) 4409 Out << 'E'; 4410 } 4411 } else if (Qualifier) { 4412 mangleUnresolvedPrefix(Qualifier); 4413 } 4414 // <base-unresolved-name> ::= dn <destructor-name> 4415 Out << "dn"; 4416 QualType DestroyedType = PDE->getDestroyedType(); 4417 mangleUnresolvedTypeOrSimpleId(DestroyedType); 4418 break; 4419 } 4420 4421 case Expr::MemberExprClass: { 4422 NotPrimaryExpr(); 4423 const MemberExpr *ME = cast<MemberExpr>(E); 4424 mangleMemberExpr(ME->getBase(), ME->isArrow(), 4425 ME->getQualifier(), nullptr, 4426 ME->getMemberDecl()->getDeclName(), 4427 ME->getTemplateArgs(), ME->getNumTemplateArgs(), 4428 Arity); 4429 break; 4430 } 4431 4432 case Expr::UnresolvedMemberExprClass: { 4433 NotPrimaryExpr(); 4434 const UnresolvedMemberExpr *ME = cast<UnresolvedMemberExpr>(E); 4435 mangleMemberExpr(ME->isImplicitAccess() ? nullptr : ME->getBase(), 4436 ME->isArrow(), ME->getQualifier(), nullptr, 4437 ME->getMemberName(), 4438 ME->getTemplateArgs(), ME->getNumTemplateArgs(), 4439 Arity); 4440 break; 4441 } 4442 4443 case Expr::CXXDependentScopeMemberExprClass: { 4444 NotPrimaryExpr(); 4445 const CXXDependentScopeMemberExpr *ME 4446 = cast<CXXDependentScopeMemberExpr>(E); 4447 mangleMemberExpr(ME->isImplicitAccess() ? nullptr : ME->getBase(), 4448 ME->isArrow(), ME->getQualifier(), 4449 ME->getFirstQualifierFoundInScope(), 4450 ME->getMember(), 4451 ME->getTemplateArgs(), ME->getNumTemplateArgs(), 4452 Arity); 4453 break; 4454 } 4455 4456 case Expr::UnresolvedLookupExprClass: { 4457 NotPrimaryExpr(); 4458 const UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(E); 4459 mangleUnresolvedName(ULE->getQualifier(), ULE->getName(), 4460 ULE->getTemplateArgs(), ULE->getNumTemplateArgs(), 4461 Arity); 4462 break; 4463 } 4464 4465 case Expr::CXXUnresolvedConstructExprClass: { 4466 NotPrimaryExpr(); 4467 const CXXUnresolvedConstructExpr *CE = cast<CXXUnresolvedConstructExpr>(E); 4468 unsigned N = CE->getNumArgs(); 4469 4470 if (CE->isListInitialization()) { 4471 assert(N == 1 && "unexpected form for list initialization"); 4472 auto *IL = cast<InitListExpr>(CE->getArg(0)); 4473 Out << "tl"; 4474 mangleType(CE->getType()); 4475 mangleInitListElements(IL); 4476 Out << "E"; 4477 break; 4478 } 4479 4480 Out << "cv"; 4481 mangleType(CE->getType()); 4482 if (N != 1) Out << '_'; 4483 for (unsigned I = 0; I != N; ++I) mangleExpression(CE->getArg(I)); 4484 if (N != 1) Out << 'E'; 4485 break; 4486 } 4487 4488 case Expr::CXXConstructExprClass: { 4489 // An implicit cast is silent, thus may contain <expr-primary>. 4490 const auto *CE = cast<CXXConstructExpr>(E); 4491 if (!CE->isListInitialization() || CE->isStdInitListInitialization()) { 4492 assert( 4493 CE->getNumArgs() >= 1 && 4494 (CE->getNumArgs() == 1 || isa<CXXDefaultArgExpr>(CE->getArg(1))) && 4495 "implicit CXXConstructExpr must have one argument"); 4496 E = cast<CXXConstructExpr>(E)->getArg(0); 4497 goto recurse; 4498 } 4499 NotPrimaryExpr(); 4500 Out << "il"; 4501 for (auto *E : CE->arguments()) 4502 mangleExpression(E); 4503 Out << "E"; 4504 break; 4505 } 4506 4507 case Expr::CXXTemporaryObjectExprClass: { 4508 NotPrimaryExpr(); 4509 const auto *CE = cast<CXXTemporaryObjectExpr>(E); 4510 unsigned N = CE->getNumArgs(); 4511 bool List = CE->isListInitialization(); 4512 4513 if (List) 4514 Out << "tl"; 4515 else 4516 Out << "cv"; 4517 mangleType(CE->getType()); 4518 if (!List && N != 1) 4519 Out << '_'; 4520 if (CE->isStdInitListInitialization()) { 4521 // We implicitly created a std::initializer_list<T> for the first argument 4522 // of a constructor of type U in an expression of the form U{a, b, c}. 4523 // Strip all the semantic gunk off the initializer list. 4524 auto *SILE = 4525 cast<CXXStdInitializerListExpr>(CE->getArg(0)->IgnoreImplicit()); 4526 auto *ILE = cast<InitListExpr>(SILE->getSubExpr()->IgnoreImplicit()); 4527 mangleInitListElements(ILE); 4528 } else { 4529 for (auto *E : CE->arguments()) 4530 mangleExpression(E); 4531 } 4532 if (List || N != 1) 4533 Out << 'E'; 4534 break; 4535 } 4536 4537 case Expr::CXXScalarValueInitExprClass: 4538 NotPrimaryExpr(); 4539 Out << "cv"; 4540 mangleType(E->getType()); 4541 Out << "_E"; 4542 break; 4543 4544 case Expr::CXXNoexceptExprClass: 4545 NotPrimaryExpr(); 4546 Out << "nx"; 4547 mangleExpression(cast<CXXNoexceptExpr>(E)->getOperand()); 4548 break; 4549 4550 case Expr::UnaryExprOrTypeTraitExprClass: { 4551 // Non-instantiation-dependent traits are an <expr-primary> integer literal. 4552 const UnaryExprOrTypeTraitExpr *SAE = cast<UnaryExprOrTypeTraitExpr>(E); 4553 4554 if (!SAE->isInstantiationDependent()) { 4555 // Itanium C++ ABI: 4556 // If the operand of a sizeof or alignof operator is not 4557 // instantiation-dependent it is encoded as an integer literal 4558 // reflecting the result of the operator. 4559 // 4560 // If the result of the operator is implicitly converted to a known 4561 // integer type, that type is used for the literal; otherwise, the type 4562 // of std::size_t or std::ptrdiff_t is used. 4563 QualType T = (ImplicitlyConvertedToType.isNull() || 4564 !ImplicitlyConvertedToType->isIntegerType())? SAE->getType() 4565 : ImplicitlyConvertedToType; 4566 llvm::APSInt V = SAE->EvaluateKnownConstInt(Context.getASTContext()); 4567 mangleIntegerLiteral(T, V); 4568 break; 4569 } 4570 4571 NotPrimaryExpr(); // But otherwise, they are not. 4572 4573 auto MangleAlignofSizeofArg = [&] { 4574 if (SAE->isArgumentType()) { 4575 Out << 't'; 4576 mangleType(SAE->getArgumentType()); 4577 } else { 4578 Out << 'z'; 4579 mangleExpression(SAE->getArgumentExpr()); 4580 } 4581 }; 4582 4583 switch(SAE->getKind()) { 4584 case UETT_SizeOf: 4585 Out << 's'; 4586 MangleAlignofSizeofArg(); 4587 break; 4588 case UETT_PreferredAlignOf: 4589 // As of clang 12, we mangle __alignof__ differently than alignof. (They 4590 // have acted differently since Clang 8, but were previously mangled the 4591 // same.) 4592 if (Context.getASTContext().getLangOpts().getClangABICompat() > 4593 LangOptions::ClangABI::Ver11) { 4594 Out << "u11__alignof__"; 4595 if (SAE->isArgumentType()) 4596 mangleType(SAE->getArgumentType()); 4597 else 4598 mangleTemplateArgExpr(SAE->getArgumentExpr()); 4599 Out << 'E'; 4600 break; 4601 } 4602 LLVM_FALLTHROUGH; 4603 case UETT_AlignOf: 4604 Out << 'a'; 4605 MangleAlignofSizeofArg(); 4606 break; 4607 case UETT_VecStep: { 4608 DiagnosticsEngine &Diags = Context.getDiags(); 4609 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 4610 "cannot yet mangle vec_step expression"); 4611 Diags.Report(DiagID); 4612 return; 4613 } 4614 case UETT_OpenMPRequiredSimdAlign: { 4615 DiagnosticsEngine &Diags = Context.getDiags(); 4616 unsigned DiagID = Diags.getCustomDiagID( 4617 DiagnosticsEngine::Error, 4618 "cannot yet mangle __builtin_omp_required_simd_align expression"); 4619 Diags.Report(DiagID); 4620 return; 4621 } 4622 } 4623 break; 4624 } 4625 4626 case Expr::CXXThrowExprClass: { 4627 NotPrimaryExpr(); 4628 const CXXThrowExpr *TE = cast<CXXThrowExpr>(E); 4629 // <expression> ::= tw <expression> # throw expression 4630 // ::= tr # rethrow 4631 if (TE->getSubExpr()) { 4632 Out << "tw"; 4633 mangleExpression(TE->getSubExpr()); 4634 } else { 4635 Out << "tr"; 4636 } 4637 break; 4638 } 4639 4640 case Expr::CXXTypeidExprClass: { 4641 NotPrimaryExpr(); 4642 const CXXTypeidExpr *TIE = cast<CXXTypeidExpr>(E); 4643 // <expression> ::= ti <type> # typeid (type) 4644 // ::= te <expression> # typeid (expression) 4645 if (TIE->isTypeOperand()) { 4646 Out << "ti"; 4647 mangleType(TIE->getTypeOperand(Context.getASTContext())); 4648 } else { 4649 Out << "te"; 4650 mangleExpression(TIE->getExprOperand()); 4651 } 4652 break; 4653 } 4654 4655 case Expr::CXXDeleteExprClass: { 4656 NotPrimaryExpr(); 4657 const CXXDeleteExpr *DE = cast<CXXDeleteExpr>(E); 4658 // <expression> ::= [gs] dl <expression> # [::] delete expr 4659 // ::= [gs] da <expression> # [::] delete [] expr 4660 if (DE->isGlobalDelete()) Out << "gs"; 4661 Out << (DE->isArrayForm() ? "da" : "dl"); 4662 mangleExpression(DE->getArgument()); 4663 break; 4664 } 4665 4666 case Expr::UnaryOperatorClass: { 4667 NotPrimaryExpr(); 4668 const UnaryOperator *UO = cast<UnaryOperator>(E); 4669 mangleOperatorName(UnaryOperator::getOverloadedOperator(UO->getOpcode()), 4670 /*Arity=*/1); 4671 mangleExpression(UO->getSubExpr()); 4672 break; 4673 } 4674 4675 case Expr::ArraySubscriptExprClass: { 4676 NotPrimaryExpr(); 4677 const ArraySubscriptExpr *AE = cast<ArraySubscriptExpr>(E); 4678 4679 // Array subscript is treated as a syntactically weird form of 4680 // binary operator. 4681 Out << "ix"; 4682 mangleExpression(AE->getLHS()); 4683 mangleExpression(AE->getRHS()); 4684 break; 4685 } 4686 4687 case Expr::MatrixSubscriptExprClass: { 4688 NotPrimaryExpr(); 4689 const MatrixSubscriptExpr *ME = cast<MatrixSubscriptExpr>(E); 4690 Out << "ixix"; 4691 mangleExpression(ME->getBase()); 4692 mangleExpression(ME->getRowIdx()); 4693 mangleExpression(ME->getColumnIdx()); 4694 break; 4695 } 4696 4697 case Expr::CompoundAssignOperatorClass: // fallthrough 4698 case Expr::BinaryOperatorClass: { 4699 NotPrimaryExpr(); 4700 const BinaryOperator *BO = cast<BinaryOperator>(E); 4701 if (BO->getOpcode() == BO_PtrMemD) 4702 Out << "ds"; 4703 else 4704 mangleOperatorName(BinaryOperator::getOverloadedOperator(BO->getOpcode()), 4705 /*Arity=*/2); 4706 mangleExpression(BO->getLHS()); 4707 mangleExpression(BO->getRHS()); 4708 break; 4709 } 4710 4711 case Expr::CXXRewrittenBinaryOperatorClass: { 4712 NotPrimaryExpr(); 4713 // The mangled form represents the original syntax. 4714 CXXRewrittenBinaryOperator::DecomposedForm Decomposed = 4715 cast<CXXRewrittenBinaryOperator>(E)->getDecomposedForm(); 4716 mangleOperatorName(BinaryOperator::getOverloadedOperator(Decomposed.Opcode), 4717 /*Arity=*/2); 4718 mangleExpression(Decomposed.LHS); 4719 mangleExpression(Decomposed.RHS); 4720 break; 4721 } 4722 4723 case Expr::ConditionalOperatorClass: { 4724 NotPrimaryExpr(); 4725 const ConditionalOperator *CO = cast<ConditionalOperator>(E); 4726 mangleOperatorName(OO_Conditional, /*Arity=*/3); 4727 mangleExpression(CO->getCond()); 4728 mangleExpression(CO->getLHS(), Arity); 4729 mangleExpression(CO->getRHS(), Arity); 4730 break; 4731 } 4732 4733 case Expr::ImplicitCastExprClass: { 4734 ImplicitlyConvertedToType = E->getType(); 4735 E = cast<ImplicitCastExpr>(E)->getSubExpr(); 4736 goto recurse; 4737 } 4738 4739 case Expr::ObjCBridgedCastExprClass: { 4740 NotPrimaryExpr(); 4741 // Mangle ownership casts as a vendor extended operator __bridge, 4742 // __bridge_transfer, or __bridge_retain. 4743 StringRef Kind = cast<ObjCBridgedCastExpr>(E)->getBridgeKindName(); 4744 Out << "v1U" << Kind.size() << Kind; 4745 mangleCastExpression(E, "cv"); 4746 break; 4747 } 4748 4749 case Expr::CStyleCastExprClass: 4750 NotPrimaryExpr(); 4751 mangleCastExpression(E, "cv"); 4752 break; 4753 4754 case Expr::CXXFunctionalCastExprClass: { 4755 NotPrimaryExpr(); 4756 auto *Sub = cast<ExplicitCastExpr>(E)->getSubExpr()->IgnoreImplicit(); 4757 // FIXME: Add isImplicit to CXXConstructExpr. 4758 if (auto *CCE = dyn_cast<CXXConstructExpr>(Sub)) 4759 if (CCE->getParenOrBraceRange().isInvalid()) 4760 Sub = CCE->getArg(0)->IgnoreImplicit(); 4761 if (auto *StdInitList = dyn_cast<CXXStdInitializerListExpr>(Sub)) 4762 Sub = StdInitList->getSubExpr()->IgnoreImplicit(); 4763 if (auto *IL = dyn_cast<InitListExpr>(Sub)) { 4764 Out << "tl"; 4765 mangleType(E->getType()); 4766 mangleInitListElements(IL); 4767 Out << "E"; 4768 } else { 4769 mangleCastExpression(E, "cv"); 4770 } 4771 break; 4772 } 4773 4774 case Expr::CXXStaticCastExprClass: 4775 NotPrimaryExpr(); 4776 mangleCastExpression(E, "sc"); 4777 break; 4778 case Expr::CXXDynamicCastExprClass: 4779 NotPrimaryExpr(); 4780 mangleCastExpression(E, "dc"); 4781 break; 4782 case Expr::CXXReinterpretCastExprClass: 4783 NotPrimaryExpr(); 4784 mangleCastExpression(E, "rc"); 4785 break; 4786 case Expr::CXXConstCastExprClass: 4787 NotPrimaryExpr(); 4788 mangleCastExpression(E, "cc"); 4789 break; 4790 case Expr::CXXAddrspaceCastExprClass: 4791 NotPrimaryExpr(); 4792 mangleCastExpression(E, "ac"); 4793 break; 4794 4795 case Expr::CXXOperatorCallExprClass: { 4796 NotPrimaryExpr(); 4797 const CXXOperatorCallExpr *CE = cast<CXXOperatorCallExpr>(E); 4798 unsigned NumArgs = CE->getNumArgs(); 4799 // A CXXOperatorCallExpr for OO_Arrow models only semantics, not syntax 4800 // (the enclosing MemberExpr covers the syntactic portion). 4801 if (CE->getOperator() != OO_Arrow) 4802 mangleOperatorName(CE->getOperator(), /*Arity=*/NumArgs); 4803 // Mangle the arguments. 4804 for (unsigned i = 0; i != NumArgs; ++i) 4805 mangleExpression(CE->getArg(i)); 4806 break; 4807 } 4808 4809 case Expr::ParenExprClass: 4810 E = cast<ParenExpr>(E)->getSubExpr(); 4811 goto recurse; 4812 4813 case Expr::ConceptSpecializationExprClass: { 4814 // <expr-primary> ::= L <mangled-name> E # external name 4815 Out << "L_Z"; 4816 auto *CSE = cast<ConceptSpecializationExpr>(E); 4817 mangleTemplateName(CSE->getNamedConcept(), 4818 CSE->getTemplateArguments().data(), 4819 CSE->getTemplateArguments().size()); 4820 Out << 'E'; 4821 break; 4822 } 4823 4824 case Expr::DeclRefExprClass: 4825 // MangleDeclRefExpr helper handles primary-vs-nonprimary 4826 MangleDeclRefExpr(cast<DeclRefExpr>(E)->getDecl()); 4827 break; 4828 4829 case Expr::SubstNonTypeTemplateParmPackExprClass: 4830 NotPrimaryExpr(); 4831 // FIXME: not clear how to mangle this! 4832 // template <unsigned N...> class A { 4833 // template <class U...> void foo(U (&x)[N]...); 4834 // }; 4835 Out << "_SUBSTPACK_"; 4836 break; 4837 4838 case Expr::FunctionParmPackExprClass: { 4839 NotPrimaryExpr(); 4840 // FIXME: not clear how to mangle this! 4841 const FunctionParmPackExpr *FPPE = cast<FunctionParmPackExpr>(E); 4842 Out << "v110_SUBSTPACK"; 4843 MangleDeclRefExpr(FPPE->getParameterPack()); 4844 break; 4845 } 4846 4847 case Expr::DependentScopeDeclRefExprClass: { 4848 NotPrimaryExpr(); 4849 const DependentScopeDeclRefExpr *DRE = cast<DependentScopeDeclRefExpr>(E); 4850 mangleUnresolvedName(DRE->getQualifier(), DRE->getDeclName(), 4851 DRE->getTemplateArgs(), DRE->getNumTemplateArgs(), 4852 Arity); 4853 break; 4854 } 4855 4856 case Expr::CXXBindTemporaryExprClass: 4857 E = cast<CXXBindTemporaryExpr>(E)->getSubExpr(); 4858 goto recurse; 4859 4860 case Expr::ExprWithCleanupsClass: 4861 E = cast<ExprWithCleanups>(E)->getSubExpr(); 4862 goto recurse; 4863 4864 case Expr::FloatingLiteralClass: { 4865 // <expr-primary> 4866 const FloatingLiteral *FL = cast<FloatingLiteral>(E); 4867 mangleFloatLiteral(FL->getType(), FL->getValue()); 4868 break; 4869 } 4870 4871 case Expr::FixedPointLiteralClass: 4872 // Currently unimplemented -- might be <expr-primary> in future? 4873 mangleFixedPointLiteral(); 4874 break; 4875 4876 case Expr::CharacterLiteralClass: 4877 // <expr-primary> 4878 Out << 'L'; 4879 mangleType(E->getType()); 4880 Out << cast<CharacterLiteral>(E)->getValue(); 4881 Out << 'E'; 4882 break; 4883 4884 // FIXME. __objc_yes/__objc_no are mangled same as true/false 4885 case Expr::ObjCBoolLiteralExprClass: 4886 // <expr-primary> 4887 Out << "Lb"; 4888 Out << (cast<ObjCBoolLiteralExpr>(E)->getValue() ? '1' : '0'); 4889 Out << 'E'; 4890 break; 4891 4892 case Expr::CXXBoolLiteralExprClass: 4893 // <expr-primary> 4894 Out << "Lb"; 4895 Out << (cast<CXXBoolLiteralExpr>(E)->getValue() ? '1' : '0'); 4896 Out << 'E'; 4897 break; 4898 4899 case Expr::IntegerLiteralClass: { 4900 // <expr-primary> 4901 llvm::APSInt Value(cast<IntegerLiteral>(E)->getValue()); 4902 if (E->getType()->isSignedIntegerType()) 4903 Value.setIsSigned(true); 4904 mangleIntegerLiteral(E->getType(), Value); 4905 break; 4906 } 4907 4908 case Expr::ImaginaryLiteralClass: { 4909 // <expr-primary> 4910 const ImaginaryLiteral *IE = cast<ImaginaryLiteral>(E); 4911 // Mangle as if a complex literal. 4912 // Proposal from David Vandevoorde, 2010.06.30. 4913 Out << 'L'; 4914 mangleType(E->getType()); 4915 if (const FloatingLiteral *Imag = 4916 dyn_cast<FloatingLiteral>(IE->getSubExpr())) { 4917 // Mangle a floating-point zero of the appropriate type. 4918 mangleFloat(llvm::APFloat(Imag->getValue().getSemantics())); 4919 Out << '_'; 4920 mangleFloat(Imag->getValue()); 4921 } else { 4922 Out << "0_"; 4923 llvm::APSInt Value(cast<IntegerLiteral>(IE->getSubExpr())->getValue()); 4924 if (IE->getSubExpr()->getType()->isSignedIntegerType()) 4925 Value.setIsSigned(true); 4926 mangleNumber(Value); 4927 } 4928 Out << 'E'; 4929 break; 4930 } 4931 4932 case Expr::StringLiteralClass: { 4933 // <expr-primary> 4934 // Revised proposal from David Vandervoorde, 2010.07.15. 4935 Out << 'L'; 4936 assert(isa<ConstantArrayType>(E->getType())); 4937 mangleType(E->getType()); 4938 Out << 'E'; 4939 break; 4940 } 4941 4942 case Expr::GNUNullExprClass: 4943 // <expr-primary> 4944 // Mangle as if an integer literal 0. 4945 mangleIntegerLiteral(E->getType(), llvm::APSInt(32)); 4946 break; 4947 4948 case Expr::CXXNullPtrLiteralExprClass: { 4949 // <expr-primary> 4950 Out << "LDnE"; 4951 break; 4952 } 4953 4954 case Expr::PackExpansionExprClass: 4955 NotPrimaryExpr(); 4956 Out << "sp"; 4957 mangleExpression(cast<PackExpansionExpr>(E)->getPattern()); 4958 break; 4959 4960 case Expr::SizeOfPackExprClass: { 4961 NotPrimaryExpr(); 4962 auto *SPE = cast<SizeOfPackExpr>(E); 4963 if (SPE->isPartiallySubstituted()) { 4964 Out << "sP"; 4965 for (const auto &A : SPE->getPartialArguments()) 4966 mangleTemplateArg(A, false); 4967 Out << "E"; 4968 break; 4969 } 4970 4971 Out << "sZ"; 4972 const NamedDecl *Pack = SPE->getPack(); 4973 if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Pack)) 4974 mangleTemplateParameter(TTP->getDepth(), TTP->getIndex()); 4975 else if (const NonTypeTemplateParmDecl *NTTP 4976 = dyn_cast<NonTypeTemplateParmDecl>(Pack)) 4977 mangleTemplateParameter(NTTP->getDepth(), NTTP->getIndex()); 4978 else if (const TemplateTemplateParmDecl *TempTP 4979 = dyn_cast<TemplateTemplateParmDecl>(Pack)) 4980 mangleTemplateParameter(TempTP->getDepth(), TempTP->getIndex()); 4981 else 4982 mangleFunctionParam(cast<ParmVarDecl>(Pack)); 4983 break; 4984 } 4985 4986 case Expr::MaterializeTemporaryExprClass: 4987 E = cast<MaterializeTemporaryExpr>(E)->getSubExpr(); 4988 goto recurse; 4989 4990 case Expr::CXXFoldExprClass: { 4991 NotPrimaryExpr(); 4992 auto *FE = cast<CXXFoldExpr>(E); 4993 if (FE->isLeftFold()) 4994 Out << (FE->getInit() ? "fL" : "fl"); 4995 else 4996 Out << (FE->getInit() ? "fR" : "fr"); 4997 4998 if (FE->getOperator() == BO_PtrMemD) 4999 Out << "ds"; 5000 else 5001 mangleOperatorName( 5002 BinaryOperator::getOverloadedOperator(FE->getOperator()), 5003 /*Arity=*/2); 5004 5005 if (FE->getLHS()) 5006 mangleExpression(FE->getLHS()); 5007 if (FE->getRHS()) 5008 mangleExpression(FE->getRHS()); 5009 break; 5010 } 5011 5012 case Expr::CXXThisExprClass: 5013 NotPrimaryExpr(); 5014 Out << "fpT"; 5015 break; 5016 5017 case Expr::CoawaitExprClass: 5018 // FIXME: Propose a non-vendor mangling. 5019 NotPrimaryExpr(); 5020 Out << "v18co_await"; 5021 mangleExpression(cast<CoawaitExpr>(E)->getOperand()); 5022 break; 5023 5024 case Expr::DependentCoawaitExprClass: 5025 // FIXME: Propose a non-vendor mangling. 5026 NotPrimaryExpr(); 5027 Out << "v18co_await"; 5028 mangleExpression(cast<DependentCoawaitExpr>(E)->getOperand()); 5029 break; 5030 5031 case Expr::CoyieldExprClass: 5032 // FIXME: Propose a non-vendor mangling. 5033 NotPrimaryExpr(); 5034 Out << "v18co_yield"; 5035 mangleExpression(cast<CoawaitExpr>(E)->getOperand()); 5036 break; 5037 case Expr::SYCLUniqueStableNameExprClass: { 5038 const auto *USN = cast<SYCLUniqueStableNameExpr>(E); 5039 NotPrimaryExpr(); 5040 5041 Out << "u33__builtin_sycl_unique_stable_name"; 5042 mangleType(USN->getTypeSourceInfo()->getType()); 5043 5044 Out << "E"; 5045 break; 5046 } 5047 } 5048 5049 if (AsTemplateArg && !IsPrimaryExpr) 5050 Out << 'E'; 5051 } 5052 5053 /// Mangle an expression which refers to a parameter variable. 5054 /// 5055 /// <expression> ::= <function-param> 5056 /// <function-param> ::= fp <top-level CV-qualifiers> _ # L == 0, I == 0 5057 /// <function-param> ::= fp <top-level CV-qualifiers> 5058 /// <parameter-2 non-negative number> _ # L == 0, I > 0 5059 /// <function-param> ::= fL <L-1 non-negative number> 5060 /// p <top-level CV-qualifiers> _ # L > 0, I == 0 5061 /// <function-param> ::= fL <L-1 non-negative number> 5062 /// p <top-level CV-qualifiers> 5063 /// <I-1 non-negative number> _ # L > 0, I > 0 5064 /// 5065 /// L is the nesting depth of the parameter, defined as 1 if the 5066 /// parameter comes from the innermost function prototype scope 5067 /// enclosing the current context, 2 if from the next enclosing 5068 /// function prototype scope, and so on, with one special case: if 5069 /// we've processed the full parameter clause for the innermost 5070 /// function type, then L is one less. This definition conveniently 5071 /// makes it irrelevant whether a function's result type was written 5072 /// trailing or leading, but is otherwise overly complicated; the 5073 /// numbering was first designed without considering references to 5074 /// parameter in locations other than return types, and then the 5075 /// mangling had to be generalized without changing the existing 5076 /// manglings. 5077 /// 5078 /// I is the zero-based index of the parameter within its parameter 5079 /// declaration clause. Note that the original ABI document describes 5080 /// this using 1-based ordinals. 5081 void CXXNameMangler::mangleFunctionParam(const ParmVarDecl *parm) { 5082 unsigned parmDepth = parm->getFunctionScopeDepth(); 5083 unsigned parmIndex = parm->getFunctionScopeIndex(); 5084 5085 // Compute 'L'. 5086 // parmDepth does not include the declaring function prototype. 5087 // FunctionTypeDepth does account for that. 5088 assert(parmDepth < FunctionTypeDepth.getDepth()); 5089 unsigned nestingDepth = FunctionTypeDepth.getDepth() - parmDepth; 5090 if (FunctionTypeDepth.isInResultType()) 5091 nestingDepth--; 5092 5093 if (nestingDepth == 0) { 5094 Out << "fp"; 5095 } else { 5096 Out << "fL" << (nestingDepth - 1) << 'p'; 5097 } 5098 5099 // Top-level qualifiers. We don't have to worry about arrays here, 5100 // because parameters declared as arrays should already have been 5101 // transformed to have pointer type. FIXME: apparently these don't 5102 // get mangled if used as an rvalue of a known non-class type? 5103 assert(!parm->getType()->isArrayType() 5104 && "parameter's type is still an array type?"); 5105 5106 if (const DependentAddressSpaceType *DAST = 5107 dyn_cast<DependentAddressSpaceType>(parm->getType())) { 5108 mangleQualifiers(DAST->getPointeeType().getQualifiers(), DAST); 5109 } else { 5110 mangleQualifiers(parm->getType().getQualifiers()); 5111 } 5112 5113 // Parameter index. 5114 if (parmIndex != 0) { 5115 Out << (parmIndex - 1); 5116 } 5117 Out << '_'; 5118 } 5119 5120 void CXXNameMangler::mangleCXXCtorType(CXXCtorType T, 5121 const CXXRecordDecl *InheritedFrom) { 5122 // <ctor-dtor-name> ::= C1 # complete object constructor 5123 // ::= C2 # base object constructor 5124 // ::= CI1 <type> # complete inheriting constructor 5125 // ::= CI2 <type> # base inheriting constructor 5126 // 5127 // In addition, C5 is a comdat name with C1 and C2 in it. 5128 Out << 'C'; 5129 if (InheritedFrom) 5130 Out << 'I'; 5131 switch (T) { 5132 case Ctor_Complete: 5133 Out << '1'; 5134 break; 5135 case Ctor_Base: 5136 Out << '2'; 5137 break; 5138 case Ctor_Comdat: 5139 Out << '5'; 5140 break; 5141 case Ctor_DefaultClosure: 5142 case Ctor_CopyingClosure: 5143 llvm_unreachable("closure constructors don't exist for the Itanium ABI!"); 5144 } 5145 if (InheritedFrom) 5146 mangleName(InheritedFrom); 5147 } 5148 5149 void CXXNameMangler::mangleCXXDtorType(CXXDtorType T) { 5150 // <ctor-dtor-name> ::= D0 # deleting destructor 5151 // ::= D1 # complete object destructor 5152 // ::= D2 # base object destructor 5153 // 5154 // In addition, D5 is a comdat name with D1, D2 and, if virtual, D0 in it. 5155 switch (T) { 5156 case Dtor_Deleting: 5157 Out << "D0"; 5158 break; 5159 case Dtor_Complete: 5160 Out << "D1"; 5161 break; 5162 case Dtor_Base: 5163 Out << "D2"; 5164 break; 5165 case Dtor_Comdat: 5166 Out << "D5"; 5167 break; 5168 } 5169 } 5170 5171 namespace { 5172 // Helper to provide ancillary information on a template used to mangle its 5173 // arguments. 5174 struct TemplateArgManglingInfo { 5175 TemplateDecl *ResolvedTemplate = nullptr; 5176 bool SeenPackExpansionIntoNonPack = false; 5177 const NamedDecl *UnresolvedExpandedPack = nullptr; 5178 5179 TemplateArgManglingInfo(TemplateName TN) { 5180 if (TemplateDecl *TD = TN.getAsTemplateDecl()) 5181 ResolvedTemplate = TD; 5182 } 5183 5184 /// Do we need to mangle template arguments with exactly correct types? 5185 /// 5186 /// This should be called exactly once for each parameter / argument pair, in 5187 /// order. 5188 bool needExactType(unsigned ParamIdx, const TemplateArgument &Arg) { 5189 // We need correct types when the template-name is unresolved or when it 5190 // names a template that is able to be overloaded. 5191 if (!ResolvedTemplate || SeenPackExpansionIntoNonPack) 5192 return true; 5193 5194 // Move to the next parameter. 5195 const NamedDecl *Param = UnresolvedExpandedPack; 5196 if (!Param) { 5197 assert(ParamIdx < ResolvedTemplate->getTemplateParameters()->size() && 5198 "no parameter for argument"); 5199 Param = ResolvedTemplate->getTemplateParameters()->getParam(ParamIdx); 5200 5201 // If we reach an expanded parameter pack whose argument isn't in pack 5202 // form, that means Sema couldn't figure out which arguments belonged to 5203 // it, because it contains a pack expansion. Track the expanded pack for 5204 // all further template arguments until we hit that pack expansion. 5205 if (Param->isParameterPack() && Arg.getKind() != TemplateArgument::Pack) { 5206 assert(getExpandedPackSize(Param) && 5207 "failed to form pack argument for parameter pack"); 5208 UnresolvedExpandedPack = Param; 5209 } 5210 } 5211 5212 // If we encounter a pack argument that is expanded into a non-pack 5213 // parameter, we can no longer track parameter / argument correspondence, 5214 // and need to use exact types from this point onwards. 5215 if (Arg.isPackExpansion() && 5216 (!Param->isParameterPack() || UnresolvedExpandedPack)) { 5217 SeenPackExpansionIntoNonPack = true; 5218 return true; 5219 } 5220 5221 // We need exact types for function template arguments because they might be 5222 // overloaded on template parameter type. As a special case, a member 5223 // function template of a generic lambda is not overloadable. 5224 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(ResolvedTemplate)) { 5225 auto *RD = dyn_cast<CXXRecordDecl>(FTD->getDeclContext()); 5226 if (!RD || !RD->isGenericLambda()) 5227 return true; 5228 } 5229 5230 // Otherwise, we only need a correct type if the parameter has a deduced 5231 // type. 5232 // 5233 // Note: for an expanded parameter pack, getType() returns the type prior 5234 // to expansion. We could ask for the expanded type with getExpansionType(), 5235 // but it doesn't matter because substitution and expansion don't affect 5236 // whether a deduced type appears in the type. 5237 auto *NTTP = dyn_cast<NonTypeTemplateParmDecl>(Param); 5238 return NTTP && NTTP->getType()->getContainedDeducedType(); 5239 } 5240 }; 5241 } 5242 5243 void CXXNameMangler::mangleTemplateArgs(TemplateName TN, 5244 const TemplateArgumentLoc *TemplateArgs, 5245 unsigned NumTemplateArgs) { 5246 // <template-args> ::= I <template-arg>+ E 5247 Out << 'I'; 5248 TemplateArgManglingInfo Info(TN); 5249 for (unsigned i = 0; i != NumTemplateArgs; ++i) 5250 mangleTemplateArg(TemplateArgs[i].getArgument(), 5251 Info.needExactType(i, TemplateArgs[i].getArgument())); 5252 Out << 'E'; 5253 } 5254 5255 void CXXNameMangler::mangleTemplateArgs(TemplateName TN, 5256 const TemplateArgumentList &AL) { 5257 // <template-args> ::= I <template-arg>+ E 5258 Out << 'I'; 5259 TemplateArgManglingInfo Info(TN); 5260 for (unsigned i = 0, e = AL.size(); i != e; ++i) 5261 mangleTemplateArg(AL[i], Info.needExactType(i, AL[i])); 5262 Out << 'E'; 5263 } 5264 5265 void CXXNameMangler::mangleTemplateArgs(TemplateName TN, 5266 const TemplateArgument *TemplateArgs, 5267 unsigned NumTemplateArgs) { 5268 // <template-args> ::= I <template-arg>+ E 5269 Out << 'I'; 5270 TemplateArgManglingInfo Info(TN); 5271 for (unsigned i = 0; i != NumTemplateArgs; ++i) 5272 mangleTemplateArg(TemplateArgs[i], Info.needExactType(i, TemplateArgs[i])); 5273 Out << 'E'; 5274 } 5275 5276 void CXXNameMangler::mangleTemplateArg(TemplateArgument A, bool NeedExactType) { 5277 // <template-arg> ::= <type> # type or template 5278 // ::= X <expression> E # expression 5279 // ::= <expr-primary> # simple expressions 5280 // ::= J <template-arg>* E # argument pack 5281 if (!A.isInstantiationDependent() || A.isDependent()) 5282 A = Context.getASTContext().getCanonicalTemplateArgument(A); 5283 5284 switch (A.getKind()) { 5285 case TemplateArgument::Null: 5286 llvm_unreachable("Cannot mangle NULL template argument"); 5287 5288 case TemplateArgument::Type: 5289 mangleType(A.getAsType()); 5290 break; 5291 case TemplateArgument::Template: 5292 // This is mangled as <type>. 5293 mangleType(A.getAsTemplate()); 5294 break; 5295 case TemplateArgument::TemplateExpansion: 5296 // <type> ::= Dp <type> # pack expansion (C++0x) 5297 Out << "Dp"; 5298 mangleType(A.getAsTemplateOrTemplatePattern()); 5299 break; 5300 case TemplateArgument::Expression: 5301 mangleTemplateArgExpr(A.getAsExpr()); 5302 break; 5303 case TemplateArgument::Integral: 5304 mangleIntegerLiteral(A.getIntegralType(), A.getAsIntegral()); 5305 break; 5306 case TemplateArgument::Declaration: { 5307 // <expr-primary> ::= L <mangled-name> E # external name 5308 ValueDecl *D = A.getAsDecl(); 5309 5310 // Template parameter objects are modeled by reproducing a source form 5311 // produced as if by aggregate initialization. 5312 if (A.getParamTypeForDecl()->isRecordType()) { 5313 auto *TPO = cast<TemplateParamObjectDecl>(D); 5314 mangleValueInTemplateArg(TPO->getType().getUnqualifiedType(), 5315 TPO->getValue(), /*TopLevel=*/true, 5316 NeedExactType); 5317 break; 5318 } 5319 5320 ASTContext &Ctx = Context.getASTContext(); 5321 APValue Value; 5322 if (D->isCXXInstanceMember()) 5323 // Simple pointer-to-member with no conversion. 5324 Value = APValue(D, /*IsDerivedMember=*/false, /*Path=*/{}); 5325 else if (D->getType()->isArrayType() && 5326 Ctx.hasSimilarType(Ctx.getDecayedType(D->getType()), 5327 A.getParamTypeForDecl()) && 5328 Ctx.getLangOpts().getClangABICompat() > 5329 LangOptions::ClangABI::Ver11) 5330 // Build a value corresponding to this implicit array-to-pointer decay. 5331 Value = APValue(APValue::LValueBase(D), CharUnits::Zero(), 5332 {APValue::LValuePathEntry::ArrayIndex(0)}, 5333 /*OnePastTheEnd=*/false); 5334 else 5335 // Regular pointer or reference to a declaration. 5336 Value = APValue(APValue::LValueBase(D), CharUnits::Zero(), 5337 ArrayRef<APValue::LValuePathEntry>(), 5338 /*OnePastTheEnd=*/false); 5339 mangleValueInTemplateArg(A.getParamTypeForDecl(), Value, /*TopLevel=*/true, 5340 NeedExactType); 5341 break; 5342 } 5343 case TemplateArgument::NullPtr: { 5344 mangleNullPointer(A.getNullPtrType()); 5345 break; 5346 } 5347 case TemplateArgument::Pack: { 5348 // <template-arg> ::= J <template-arg>* E 5349 Out << 'J'; 5350 for (const auto &P : A.pack_elements()) 5351 mangleTemplateArg(P, NeedExactType); 5352 Out << 'E'; 5353 } 5354 } 5355 } 5356 5357 void CXXNameMangler::mangleTemplateArgExpr(const Expr *E) { 5358 ASTContext &Ctx = Context.getASTContext(); 5359 if (Ctx.getLangOpts().getClangABICompat() > LangOptions::ClangABI::Ver11) { 5360 mangleExpression(E, UnknownArity, /*AsTemplateArg=*/true); 5361 return; 5362 } 5363 5364 // Prior to Clang 12, we didn't omit the X .. E around <expr-primary> 5365 // correctly in cases where the template argument was 5366 // constructed from an expression rather than an already-evaluated 5367 // literal. In such a case, we would then e.g. emit 'XLi0EE' instead of 5368 // 'Li0E'. 5369 // 5370 // We did special-case DeclRefExpr to attempt to DTRT for that one 5371 // expression-kind, but while doing so, unfortunately handled ParmVarDecl 5372 // (subtype of VarDecl) _incorrectly_, and emitted 'L_Z .. E' instead of 5373 // the proper 'Xfp_E'. 5374 E = E->IgnoreParenImpCasts(); 5375 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 5376 const ValueDecl *D = DRE->getDecl(); 5377 if (isa<VarDecl>(D) || isa<FunctionDecl>(D)) { 5378 Out << 'L'; 5379 mangle(D); 5380 Out << 'E'; 5381 return; 5382 } 5383 } 5384 Out << 'X'; 5385 mangleExpression(E); 5386 Out << 'E'; 5387 } 5388 5389 /// Determine whether a given value is equivalent to zero-initialization for 5390 /// the purpose of discarding a trailing portion of a 'tl' mangling. 5391 /// 5392 /// Note that this is not in general equivalent to determining whether the 5393 /// value has an all-zeroes bit pattern. 5394 static bool isZeroInitialized(QualType T, const APValue &V) { 5395 // FIXME: mangleValueInTemplateArg has quadratic time complexity in 5396 // pathological cases due to using this, but it's a little awkward 5397 // to do this in linear time in general. 5398 switch (V.getKind()) { 5399 case APValue::None: 5400 case APValue::Indeterminate: 5401 case APValue::AddrLabelDiff: 5402 return false; 5403 5404 case APValue::Struct: { 5405 const CXXRecordDecl *RD = T->getAsCXXRecordDecl(); 5406 assert(RD && "unexpected type for record value"); 5407 unsigned I = 0; 5408 for (const CXXBaseSpecifier &BS : RD->bases()) { 5409 if (!isZeroInitialized(BS.getType(), V.getStructBase(I))) 5410 return false; 5411 ++I; 5412 } 5413 I = 0; 5414 for (const FieldDecl *FD : RD->fields()) { 5415 if (!FD->isUnnamedBitfield() && 5416 !isZeroInitialized(FD->getType(), V.getStructField(I))) 5417 return false; 5418 ++I; 5419 } 5420 return true; 5421 } 5422 5423 case APValue::Union: { 5424 const CXXRecordDecl *RD = T->getAsCXXRecordDecl(); 5425 assert(RD && "unexpected type for union value"); 5426 // Zero-initialization zeroes the first non-unnamed-bitfield field, if any. 5427 for (const FieldDecl *FD : RD->fields()) { 5428 if (!FD->isUnnamedBitfield()) 5429 return V.getUnionField() && declaresSameEntity(FD, V.getUnionField()) && 5430 isZeroInitialized(FD->getType(), V.getUnionValue()); 5431 } 5432 // If there are no fields (other than unnamed bitfields), the value is 5433 // necessarily zero-initialized. 5434 return true; 5435 } 5436 5437 case APValue::Array: { 5438 QualType ElemT(T->getArrayElementTypeNoTypeQual(), 0); 5439 for (unsigned I = 0, N = V.getArrayInitializedElts(); I != N; ++I) 5440 if (!isZeroInitialized(ElemT, V.getArrayInitializedElt(I))) 5441 return false; 5442 return !V.hasArrayFiller() || isZeroInitialized(ElemT, V.getArrayFiller()); 5443 } 5444 5445 case APValue::Vector: { 5446 const VectorType *VT = T->castAs<VectorType>(); 5447 for (unsigned I = 0, N = V.getVectorLength(); I != N; ++I) 5448 if (!isZeroInitialized(VT->getElementType(), V.getVectorElt(I))) 5449 return false; 5450 return true; 5451 } 5452 5453 case APValue::Int: 5454 return !V.getInt(); 5455 5456 case APValue::Float: 5457 return V.getFloat().isPosZero(); 5458 5459 case APValue::FixedPoint: 5460 return !V.getFixedPoint().getValue(); 5461 5462 case APValue::ComplexFloat: 5463 return V.getComplexFloatReal().isPosZero() && 5464 V.getComplexFloatImag().isPosZero(); 5465 5466 case APValue::ComplexInt: 5467 return !V.getComplexIntReal() && !V.getComplexIntImag(); 5468 5469 case APValue::LValue: 5470 return V.isNullPointer(); 5471 5472 case APValue::MemberPointer: 5473 return !V.getMemberPointerDecl(); 5474 } 5475 5476 llvm_unreachable("Unhandled APValue::ValueKind enum"); 5477 } 5478 5479 static QualType getLValueType(ASTContext &Ctx, const APValue &LV) { 5480 QualType T = LV.getLValueBase().getType(); 5481 for (APValue::LValuePathEntry E : LV.getLValuePath()) { 5482 if (const ArrayType *AT = Ctx.getAsArrayType(T)) 5483 T = AT->getElementType(); 5484 else if (const FieldDecl *FD = 5485 dyn_cast<FieldDecl>(E.getAsBaseOrMember().getPointer())) 5486 T = FD->getType(); 5487 else 5488 T = Ctx.getRecordType( 5489 cast<CXXRecordDecl>(E.getAsBaseOrMember().getPointer())); 5490 } 5491 return T; 5492 } 5493 5494 void CXXNameMangler::mangleValueInTemplateArg(QualType T, const APValue &V, 5495 bool TopLevel, 5496 bool NeedExactType) { 5497 // Ignore all top-level cv-qualifiers, to match GCC. 5498 Qualifiers Quals; 5499 T = getASTContext().getUnqualifiedArrayType(T, Quals); 5500 5501 // A top-level expression that's not a primary expression is wrapped in X...E. 5502 bool IsPrimaryExpr = true; 5503 auto NotPrimaryExpr = [&] { 5504 if (TopLevel && IsPrimaryExpr) 5505 Out << 'X'; 5506 IsPrimaryExpr = false; 5507 }; 5508 5509 // Proposed in https://github.com/itanium-cxx-abi/cxx-abi/issues/63. 5510 switch (V.getKind()) { 5511 case APValue::None: 5512 case APValue::Indeterminate: 5513 Out << 'L'; 5514 mangleType(T); 5515 Out << 'E'; 5516 break; 5517 5518 case APValue::AddrLabelDiff: 5519 llvm_unreachable("unexpected value kind in template argument"); 5520 5521 case APValue::Struct: { 5522 const CXXRecordDecl *RD = T->getAsCXXRecordDecl(); 5523 assert(RD && "unexpected type for record value"); 5524 5525 // Drop trailing zero-initialized elements. 5526 llvm::SmallVector<const FieldDecl *, 16> Fields(RD->field_begin(), 5527 RD->field_end()); 5528 while ( 5529 !Fields.empty() && 5530 (Fields.back()->isUnnamedBitfield() || 5531 isZeroInitialized(Fields.back()->getType(), 5532 V.getStructField(Fields.back()->getFieldIndex())))) { 5533 Fields.pop_back(); 5534 } 5535 llvm::ArrayRef<CXXBaseSpecifier> Bases(RD->bases_begin(), RD->bases_end()); 5536 if (Fields.empty()) { 5537 while (!Bases.empty() && 5538 isZeroInitialized(Bases.back().getType(), 5539 V.getStructBase(Bases.size() - 1))) 5540 Bases = Bases.drop_back(); 5541 } 5542 5543 // <expression> ::= tl <type> <braced-expression>* E 5544 NotPrimaryExpr(); 5545 Out << "tl"; 5546 mangleType(T); 5547 for (unsigned I = 0, N = Bases.size(); I != N; ++I) 5548 mangleValueInTemplateArg(Bases[I].getType(), V.getStructBase(I), false); 5549 for (unsigned I = 0, N = Fields.size(); I != N; ++I) { 5550 if (Fields[I]->isUnnamedBitfield()) 5551 continue; 5552 mangleValueInTemplateArg(Fields[I]->getType(), 5553 V.getStructField(Fields[I]->getFieldIndex()), 5554 false); 5555 } 5556 Out << 'E'; 5557 break; 5558 } 5559 5560 case APValue::Union: { 5561 assert(T->getAsCXXRecordDecl() && "unexpected type for union value"); 5562 const FieldDecl *FD = V.getUnionField(); 5563 5564 if (!FD) { 5565 Out << 'L'; 5566 mangleType(T); 5567 Out << 'E'; 5568 break; 5569 } 5570 5571 // <braced-expression> ::= di <field source-name> <braced-expression> 5572 NotPrimaryExpr(); 5573 Out << "tl"; 5574 mangleType(T); 5575 if (!isZeroInitialized(T, V)) { 5576 Out << "di"; 5577 mangleSourceName(FD->getIdentifier()); 5578 mangleValueInTemplateArg(FD->getType(), V.getUnionValue(), false); 5579 } 5580 Out << 'E'; 5581 break; 5582 } 5583 5584 case APValue::Array: { 5585 QualType ElemT(T->getArrayElementTypeNoTypeQual(), 0); 5586 5587 NotPrimaryExpr(); 5588 Out << "tl"; 5589 mangleType(T); 5590 5591 // Drop trailing zero-initialized elements. 5592 unsigned N = V.getArraySize(); 5593 if (!V.hasArrayFiller() || isZeroInitialized(ElemT, V.getArrayFiller())) { 5594 N = V.getArrayInitializedElts(); 5595 while (N && isZeroInitialized(ElemT, V.getArrayInitializedElt(N - 1))) 5596 --N; 5597 } 5598 5599 for (unsigned I = 0; I != N; ++I) { 5600 const APValue &Elem = I < V.getArrayInitializedElts() 5601 ? V.getArrayInitializedElt(I) 5602 : V.getArrayFiller(); 5603 mangleValueInTemplateArg(ElemT, Elem, false); 5604 } 5605 Out << 'E'; 5606 break; 5607 } 5608 5609 case APValue::Vector: { 5610 const VectorType *VT = T->castAs<VectorType>(); 5611 5612 NotPrimaryExpr(); 5613 Out << "tl"; 5614 mangleType(T); 5615 unsigned N = V.getVectorLength(); 5616 while (N && isZeroInitialized(VT->getElementType(), V.getVectorElt(N - 1))) 5617 --N; 5618 for (unsigned I = 0; I != N; ++I) 5619 mangleValueInTemplateArg(VT->getElementType(), V.getVectorElt(I), false); 5620 Out << 'E'; 5621 break; 5622 } 5623 5624 case APValue::Int: 5625 mangleIntegerLiteral(T, V.getInt()); 5626 break; 5627 5628 case APValue::Float: 5629 mangleFloatLiteral(T, V.getFloat()); 5630 break; 5631 5632 case APValue::FixedPoint: 5633 mangleFixedPointLiteral(); 5634 break; 5635 5636 case APValue::ComplexFloat: { 5637 const ComplexType *CT = T->castAs<ComplexType>(); 5638 NotPrimaryExpr(); 5639 Out << "tl"; 5640 mangleType(T); 5641 if (!V.getComplexFloatReal().isPosZero() || 5642 !V.getComplexFloatImag().isPosZero()) 5643 mangleFloatLiteral(CT->getElementType(), V.getComplexFloatReal()); 5644 if (!V.getComplexFloatImag().isPosZero()) 5645 mangleFloatLiteral(CT->getElementType(), V.getComplexFloatImag()); 5646 Out << 'E'; 5647 break; 5648 } 5649 5650 case APValue::ComplexInt: { 5651 const ComplexType *CT = T->castAs<ComplexType>(); 5652 NotPrimaryExpr(); 5653 Out << "tl"; 5654 mangleType(T); 5655 if (V.getComplexIntReal().getBoolValue() || 5656 V.getComplexIntImag().getBoolValue()) 5657 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntReal()); 5658 if (V.getComplexIntImag().getBoolValue()) 5659 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntImag()); 5660 Out << 'E'; 5661 break; 5662 } 5663 5664 case APValue::LValue: { 5665 // Proposed in https://github.com/itanium-cxx-abi/cxx-abi/issues/47. 5666 assert((T->isPointerType() || T->isReferenceType()) && 5667 "unexpected type for LValue template arg"); 5668 5669 if (V.isNullPointer()) { 5670 mangleNullPointer(T); 5671 break; 5672 } 5673 5674 APValue::LValueBase B = V.getLValueBase(); 5675 if (!B) { 5676 // Non-standard mangling for integer cast to a pointer; this can only 5677 // occur as an extension. 5678 CharUnits Offset = V.getLValueOffset(); 5679 if (Offset.isZero()) { 5680 // This is reinterpret_cast<T*>(0), not a null pointer. Mangle this as 5681 // a cast, because L <type> 0 E means something else. 5682 NotPrimaryExpr(); 5683 Out << "rc"; 5684 mangleType(T); 5685 Out << "Li0E"; 5686 if (TopLevel) 5687 Out << 'E'; 5688 } else { 5689 Out << "L"; 5690 mangleType(T); 5691 Out << Offset.getQuantity() << 'E'; 5692 } 5693 break; 5694 } 5695 5696 ASTContext &Ctx = Context.getASTContext(); 5697 5698 enum { Base, Offset, Path } Kind; 5699 if (!V.hasLValuePath()) { 5700 // Mangle as (T*)((char*)&base + N). 5701 if (T->isReferenceType()) { 5702 NotPrimaryExpr(); 5703 Out << "decvP"; 5704 mangleType(T->getPointeeType()); 5705 } else { 5706 NotPrimaryExpr(); 5707 Out << "cv"; 5708 mangleType(T); 5709 } 5710 Out << "plcvPcad"; 5711 Kind = Offset; 5712 } else { 5713 if (!V.getLValuePath().empty() || V.isLValueOnePastTheEnd()) { 5714 NotPrimaryExpr(); 5715 // A final conversion to the template parameter's type is usually 5716 // folded into the 'so' mangling, but we can't do that for 'void*' 5717 // parameters without introducing collisions. 5718 if (NeedExactType && T->isVoidPointerType()) { 5719 Out << "cv"; 5720 mangleType(T); 5721 } 5722 if (T->isPointerType()) 5723 Out << "ad"; 5724 Out << "so"; 5725 mangleType(T->isVoidPointerType() 5726 ? getLValueType(Ctx, V).getUnqualifiedType() 5727 : T->getPointeeType()); 5728 Kind = Path; 5729 } else { 5730 if (NeedExactType && 5731 !Ctx.hasSameType(T->getPointeeType(), getLValueType(Ctx, V)) && 5732 Ctx.getLangOpts().getClangABICompat() > 5733 LangOptions::ClangABI::Ver11) { 5734 NotPrimaryExpr(); 5735 Out << "cv"; 5736 mangleType(T); 5737 } 5738 if (T->isPointerType()) { 5739 NotPrimaryExpr(); 5740 Out << "ad"; 5741 } 5742 Kind = Base; 5743 } 5744 } 5745 5746 QualType TypeSoFar = B.getType(); 5747 if (auto *VD = B.dyn_cast<const ValueDecl*>()) { 5748 Out << 'L'; 5749 mangle(VD); 5750 Out << 'E'; 5751 } else if (auto *E = B.dyn_cast<const Expr*>()) { 5752 NotPrimaryExpr(); 5753 mangleExpression(E); 5754 } else if (auto TI = B.dyn_cast<TypeInfoLValue>()) { 5755 NotPrimaryExpr(); 5756 Out << "ti"; 5757 mangleType(QualType(TI.getType(), 0)); 5758 } else { 5759 // We should never see dynamic allocations here. 5760 llvm_unreachable("unexpected lvalue base kind in template argument"); 5761 } 5762 5763 switch (Kind) { 5764 case Base: 5765 break; 5766 5767 case Offset: 5768 Out << 'L'; 5769 mangleType(Ctx.getPointerDiffType()); 5770 mangleNumber(V.getLValueOffset().getQuantity()); 5771 Out << 'E'; 5772 break; 5773 5774 case Path: 5775 // <expression> ::= so <referent type> <expr> [<offset number>] 5776 // <union-selector>* [p] E 5777 if (!V.getLValueOffset().isZero()) 5778 mangleNumber(V.getLValueOffset().getQuantity()); 5779 5780 // We model a past-the-end array pointer as array indexing with index N, 5781 // not with the "past the end" flag. Compensate for that. 5782 bool OnePastTheEnd = V.isLValueOnePastTheEnd(); 5783 5784 for (APValue::LValuePathEntry E : V.getLValuePath()) { 5785 if (auto *AT = TypeSoFar->getAsArrayTypeUnsafe()) { 5786 if (auto *CAT = dyn_cast<ConstantArrayType>(AT)) 5787 OnePastTheEnd |= CAT->getSize() == E.getAsArrayIndex(); 5788 TypeSoFar = AT->getElementType(); 5789 } else { 5790 const Decl *D = E.getAsBaseOrMember().getPointer(); 5791 if (auto *FD = dyn_cast<FieldDecl>(D)) { 5792 // <union-selector> ::= _ <number> 5793 if (FD->getParent()->isUnion()) { 5794 Out << '_'; 5795 if (FD->getFieldIndex()) 5796 Out << (FD->getFieldIndex() - 1); 5797 } 5798 TypeSoFar = FD->getType(); 5799 } else { 5800 TypeSoFar = Ctx.getRecordType(cast<CXXRecordDecl>(D)); 5801 } 5802 } 5803 } 5804 5805 if (OnePastTheEnd) 5806 Out << 'p'; 5807 Out << 'E'; 5808 break; 5809 } 5810 5811 break; 5812 } 5813 5814 case APValue::MemberPointer: 5815 // Proposed in https://github.com/itanium-cxx-abi/cxx-abi/issues/47. 5816 if (!V.getMemberPointerDecl()) { 5817 mangleNullPointer(T); 5818 break; 5819 } 5820 5821 ASTContext &Ctx = Context.getASTContext(); 5822 5823 NotPrimaryExpr(); 5824 if (!V.getMemberPointerPath().empty()) { 5825 Out << "mc"; 5826 mangleType(T); 5827 } else if (NeedExactType && 5828 !Ctx.hasSameType( 5829 T->castAs<MemberPointerType>()->getPointeeType(), 5830 V.getMemberPointerDecl()->getType()) && 5831 Ctx.getLangOpts().getClangABICompat() > 5832 LangOptions::ClangABI::Ver11) { 5833 Out << "cv"; 5834 mangleType(T); 5835 } 5836 Out << "adL"; 5837 mangle(V.getMemberPointerDecl()); 5838 Out << 'E'; 5839 if (!V.getMemberPointerPath().empty()) { 5840 CharUnits Offset = 5841 Context.getASTContext().getMemberPointerPathAdjustment(V); 5842 if (!Offset.isZero()) 5843 mangleNumber(Offset.getQuantity()); 5844 Out << 'E'; 5845 } 5846 break; 5847 } 5848 5849 if (TopLevel && !IsPrimaryExpr) 5850 Out << 'E'; 5851 } 5852 5853 void CXXNameMangler::mangleTemplateParameter(unsigned Depth, unsigned Index) { 5854 // <template-param> ::= T_ # first template parameter 5855 // ::= T <parameter-2 non-negative number> _ 5856 // ::= TL <L-1 non-negative number> __ 5857 // ::= TL <L-1 non-negative number> _ 5858 // <parameter-2 non-negative number> _ 5859 // 5860 // The latter two manglings are from a proposal here: 5861 // https://github.com/itanium-cxx-abi/cxx-abi/issues/31#issuecomment-528122117 5862 Out << 'T'; 5863 if (Depth != 0) 5864 Out << 'L' << (Depth - 1) << '_'; 5865 if (Index != 0) 5866 Out << (Index - 1); 5867 Out << '_'; 5868 } 5869 5870 void CXXNameMangler::mangleSeqID(unsigned SeqID) { 5871 if (SeqID == 1) 5872 Out << '0'; 5873 else if (SeqID > 1) { 5874 SeqID--; 5875 5876 // <seq-id> is encoded in base-36, using digits and upper case letters. 5877 char Buffer[7]; // log(2**32) / log(36) ~= 7 5878 MutableArrayRef<char> BufferRef(Buffer); 5879 MutableArrayRef<char>::reverse_iterator I = BufferRef.rbegin(); 5880 5881 for (; SeqID != 0; SeqID /= 36) { 5882 unsigned C = SeqID % 36; 5883 *I++ = (C < 10 ? '0' + C : 'A' + C - 10); 5884 } 5885 5886 Out.write(I.base(), I - BufferRef.rbegin()); 5887 } 5888 Out << '_'; 5889 } 5890 5891 void CXXNameMangler::mangleExistingSubstitution(TemplateName tname) { 5892 bool result = mangleSubstitution(tname); 5893 assert(result && "no existing substitution for template name"); 5894 (void) result; 5895 } 5896 5897 // <substitution> ::= S <seq-id> _ 5898 // ::= S_ 5899 bool CXXNameMangler::mangleSubstitution(const NamedDecl *ND) { 5900 // Try one of the standard substitutions first. 5901 if (mangleStandardSubstitution(ND)) 5902 return true; 5903 5904 ND = cast<NamedDecl>(ND->getCanonicalDecl()); 5905 return mangleSubstitution(reinterpret_cast<uintptr_t>(ND)); 5906 } 5907 5908 /// Determine whether the given type has any qualifiers that are relevant for 5909 /// substitutions. 5910 static bool hasMangledSubstitutionQualifiers(QualType T) { 5911 Qualifiers Qs = T.getQualifiers(); 5912 return Qs.getCVRQualifiers() || Qs.hasAddressSpace() || Qs.hasUnaligned(); 5913 } 5914 5915 bool CXXNameMangler::mangleSubstitution(QualType T) { 5916 if (!hasMangledSubstitutionQualifiers(T)) { 5917 if (const RecordType *RT = T->getAs<RecordType>()) 5918 return mangleSubstitution(RT->getDecl()); 5919 } 5920 5921 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr()); 5922 5923 return mangleSubstitution(TypePtr); 5924 } 5925 5926 bool CXXNameMangler::mangleSubstitution(TemplateName Template) { 5927 if (TemplateDecl *TD = Template.getAsTemplateDecl()) 5928 return mangleSubstitution(TD); 5929 5930 Template = Context.getASTContext().getCanonicalTemplateName(Template); 5931 return mangleSubstitution( 5932 reinterpret_cast<uintptr_t>(Template.getAsVoidPointer())); 5933 } 5934 5935 bool CXXNameMangler::mangleSubstitution(uintptr_t Ptr) { 5936 llvm::DenseMap<uintptr_t, unsigned>::iterator I = Substitutions.find(Ptr); 5937 if (I == Substitutions.end()) 5938 return false; 5939 5940 unsigned SeqID = I->second; 5941 Out << 'S'; 5942 mangleSeqID(SeqID); 5943 5944 return true; 5945 } 5946 5947 static bool isCharType(QualType T) { 5948 if (T.isNull()) 5949 return false; 5950 5951 return T->isSpecificBuiltinType(BuiltinType::Char_S) || 5952 T->isSpecificBuiltinType(BuiltinType::Char_U); 5953 } 5954 5955 /// Returns whether a given type is a template specialization of a given name 5956 /// with a single argument of type char. 5957 static bool isCharSpecialization(QualType T, const char *Name) { 5958 if (T.isNull()) 5959 return false; 5960 5961 const RecordType *RT = T->getAs<RecordType>(); 5962 if (!RT) 5963 return false; 5964 5965 const ClassTemplateSpecializationDecl *SD = 5966 dyn_cast<ClassTemplateSpecializationDecl>(RT->getDecl()); 5967 if (!SD) 5968 return false; 5969 5970 if (!isStdNamespace(getEffectiveDeclContext(SD))) 5971 return false; 5972 5973 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs(); 5974 if (TemplateArgs.size() != 1) 5975 return false; 5976 5977 if (!isCharType(TemplateArgs[0].getAsType())) 5978 return false; 5979 5980 return SD->getIdentifier()->getName() == Name; 5981 } 5982 5983 template <std::size_t StrLen> 5984 static bool isStreamCharSpecialization(const ClassTemplateSpecializationDecl*SD, 5985 const char (&Str)[StrLen]) { 5986 if (!SD->getIdentifier()->isStr(Str)) 5987 return false; 5988 5989 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs(); 5990 if (TemplateArgs.size() != 2) 5991 return false; 5992 5993 if (!isCharType(TemplateArgs[0].getAsType())) 5994 return false; 5995 5996 if (!isCharSpecialization(TemplateArgs[1].getAsType(), "char_traits")) 5997 return false; 5998 5999 return true; 6000 } 6001 6002 bool CXXNameMangler::mangleStandardSubstitution(const NamedDecl *ND) { 6003 // <substitution> ::= St # ::std:: 6004 if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) { 6005 if (isStd(NS)) { 6006 Out << "St"; 6007 return true; 6008 } 6009 } 6010 6011 if (const ClassTemplateDecl *TD = dyn_cast<ClassTemplateDecl>(ND)) { 6012 if (!isStdNamespace(getEffectiveDeclContext(TD))) 6013 return false; 6014 6015 // <substitution> ::= Sa # ::std::allocator 6016 if (TD->getIdentifier()->isStr("allocator")) { 6017 Out << "Sa"; 6018 return true; 6019 } 6020 6021 // <<substitution> ::= Sb # ::std::basic_string 6022 if (TD->getIdentifier()->isStr("basic_string")) { 6023 Out << "Sb"; 6024 return true; 6025 } 6026 } 6027 6028 if (const ClassTemplateSpecializationDecl *SD = 6029 dyn_cast<ClassTemplateSpecializationDecl>(ND)) { 6030 if (!isStdNamespace(getEffectiveDeclContext(SD))) 6031 return false; 6032 6033 // <substitution> ::= Ss # ::std::basic_string<char, 6034 // ::std::char_traits<char>, 6035 // ::std::allocator<char> > 6036 if (SD->getIdentifier()->isStr("basic_string")) { 6037 const TemplateArgumentList &TemplateArgs = SD->getTemplateArgs(); 6038 6039 if (TemplateArgs.size() != 3) 6040 return false; 6041 6042 if (!isCharType(TemplateArgs[0].getAsType())) 6043 return false; 6044 6045 if (!isCharSpecialization(TemplateArgs[1].getAsType(), "char_traits")) 6046 return false; 6047 6048 if (!isCharSpecialization(TemplateArgs[2].getAsType(), "allocator")) 6049 return false; 6050 6051 Out << "Ss"; 6052 return true; 6053 } 6054 6055 // <substitution> ::= Si # ::std::basic_istream<char, 6056 // ::std::char_traits<char> > 6057 if (isStreamCharSpecialization(SD, "basic_istream")) { 6058 Out << "Si"; 6059 return true; 6060 } 6061 6062 // <substitution> ::= So # ::std::basic_ostream<char, 6063 // ::std::char_traits<char> > 6064 if (isStreamCharSpecialization(SD, "basic_ostream")) { 6065 Out << "So"; 6066 return true; 6067 } 6068 6069 // <substitution> ::= Sd # ::std::basic_iostream<char, 6070 // ::std::char_traits<char> > 6071 if (isStreamCharSpecialization(SD, "basic_iostream")) { 6072 Out << "Sd"; 6073 return true; 6074 } 6075 } 6076 return false; 6077 } 6078 6079 void CXXNameMangler::addSubstitution(QualType T) { 6080 if (!hasMangledSubstitutionQualifiers(T)) { 6081 if (const RecordType *RT = T->getAs<RecordType>()) { 6082 addSubstitution(RT->getDecl()); 6083 return; 6084 } 6085 } 6086 6087 uintptr_t TypePtr = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr()); 6088 addSubstitution(TypePtr); 6089 } 6090 6091 void CXXNameMangler::addSubstitution(TemplateName Template) { 6092 if (TemplateDecl *TD = Template.getAsTemplateDecl()) 6093 return addSubstitution(TD); 6094 6095 Template = Context.getASTContext().getCanonicalTemplateName(Template); 6096 addSubstitution(reinterpret_cast<uintptr_t>(Template.getAsVoidPointer())); 6097 } 6098 6099 void CXXNameMangler::addSubstitution(uintptr_t Ptr) { 6100 assert(!Substitutions.count(Ptr) && "Substitution already exists!"); 6101 Substitutions[Ptr] = SeqID++; 6102 } 6103 6104 void CXXNameMangler::extendSubstitutions(CXXNameMangler* Other) { 6105 assert(Other->SeqID >= SeqID && "Must be superset of substitutions!"); 6106 if (Other->SeqID > SeqID) { 6107 Substitutions.swap(Other->Substitutions); 6108 SeqID = Other->SeqID; 6109 } 6110 } 6111 6112 CXXNameMangler::AbiTagList 6113 CXXNameMangler::makeFunctionReturnTypeTags(const FunctionDecl *FD) { 6114 // When derived abi tags are disabled there is no need to make any list. 6115 if (DisableDerivedAbiTags) 6116 return AbiTagList(); 6117 6118 llvm::raw_null_ostream NullOutStream; 6119 CXXNameMangler TrackReturnTypeTags(*this, NullOutStream); 6120 TrackReturnTypeTags.disableDerivedAbiTags(); 6121 6122 const FunctionProtoType *Proto = 6123 cast<FunctionProtoType>(FD->getType()->getAs<FunctionType>()); 6124 FunctionTypeDepthState saved = TrackReturnTypeTags.FunctionTypeDepth.push(); 6125 TrackReturnTypeTags.FunctionTypeDepth.enterResultType(); 6126 TrackReturnTypeTags.mangleType(Proto->getReturnType()); 6127 TrackReturnTypeTags.FunctionTypeDepth.leaveResultType(); 6128 TrackReturnTypeTags.FunctionTypeDepth.pop(saved); 6129 6130 return TrackReturnTypeTags.AbiTagsRoot.getSortedUniqueUsedAbiTags(); 6131 } 6132 6133 CXXNameMangler::AbiTagList 6134 CXXNameMangler::makeVariableTypeTags(const VarDecl *VD) { 6135 // When derived abi tags are disabled there is no need to make any list. 6136 if (DisableDerivedAbiTags) 6137 return AbiTagList(); 6138 6139 llvm::raw_null_ostream NullOutStream; 6140 CXXNameMangler TrackVariableType(*this, NullOutStream); 6141 TrackVariableType.disableDerivedAbiTags(); 6142 6143 TrackVariableType.mangleType(VD->getType()); 6144 6145 return TrackVariableType.AbiTagsRoot.getSortedUniqueUsedAbiTags(); 6146 } 6147 6148 bool CXXNameMangler::shouldHaveAbiTags(ItaniumMangleContextImpl &C, 6149 const VarDecl *VD) { 6150 llvm::raw_null_ostream NullOutStream; 6151 CXXNameMangler TrackAbiTags(C, NullOutStream, nullptr, true); 6152 TrackAbiTags.mangle(VD); 6153 return TrackAbiTags.AbiTagsRoot.getUsedAbiTags().size(); 6154 } 6155 6156 // 6157 6158 /// Mangles the name of the declaration D and emits that name to the given 6159 /// output stream. 6160 /// 6161 /// If the declaration D requires a mangled name, this routine will emit that 6162 /// mangled name to \p os and return true. Otherwise, \p os will be unchanged 6163 /// and this routine will return false. In this case, the caller should just 6164 /// emit the identifier of the declaration (\c D->getIdentifier()) as its 6165 /// name. 6166 void ItaniumMangleContextImpl::mangleCXXName(GlobalDecl GD, 6167 raw_ostream &Out) { 6168 const NamedDecl *D = cast<NamedDecl>(GD.getDecl()); 6169 assert((isa<FunctionDecl, VarDecl, TemplateParamObjectDecl>(D)) && 6170 "Invalid mangleName() call, argument is not a variable or function!"); 6171 6172 PrettyStackTraceDecl CrashInfo(D, SourceLocation(), 6173 getASTContext().getSourceManager(), 6174 "Mangling declaration"); 6175 6176 if (auto *CD = dyn_cast<CXXConstructorDecl>(D)) { 6177 auto Type = GD.getCtorType(); 6178 CXXNameMangler Mangler(*this, Out, CD, Type); 6179 return Mangler.mangle(GlobalDecl(CD, Type)); 6180 } 6181 6182 if (auto *DD = dyn_cast<CXXDestructorDecl>(D)) { 6183 auto Type = GD.getDtorType(); 6184 CXXNameMangler Mangler(*this, Out, DD, Type); 6185 return Mangler.mangle(GlobalDecl(DD, Type)); 6186 } 6187 6188 CXXNameMangler Mangler(*this, Out, D); 6189 Mangler.mangle(GD); 6190 } 6191 6192 void ItaniumMangleContextImpl::mangleCXXCtorComdat(const CXXConstructorDecl *D, 6193 raw_ostream &Out) { 6194 CXXNameMangler Mangler(*this, Out, D, Ctor_Comdat); 6195 Mangler.mangle(GlobalDecl(D, Ctor_Comdat)); 6196 } 6197 6198 void ItaniumMangleContextImpl::mangleCXXDtorComdat(const CXXDestructorDecl *D, 6199 raw_ostream &Out) { 6200 CXXNameMangler Mangler(*this, Out, D, Dtor_Comdat); 6201 Mangler.mangle(GlobalDecl(D, Dtor_Comdat)); 6202 } 6203 6204 void ItaniumMangleContextImpl::mangleThunk(const CXXMethodDecl *MD, 6205 const ThunkInfo &Thunk, 6206 raw_ostream &Out) { 6207 // <special-name> ::= T <call-offset> <base encoding> 6208 // # base is the nominal target function of thunk 6209 // <special-name> ::= Tc <call-offset> <call-offset> <base encoding> 6210 // # base is the nominal target function of thunk 6211 // # first call-offset is 'this' adjustment 6212 // # second call-offset is result adjustment 6213 6214 assert(!isa<CXXDestructorDecl>(MD) && 6215 "Use mangleCXXDtor for destructor decls!"); 6216 CXXNameMangler Mangler(*this, Out); 6217 Mangler.getStream() << "_ZT"; 6218 if (!Thunk.Return.isEmpty()) 6219 Mangler.getStream() << 'c'; 6220 6221 // Mangle the 'this' pointer adjustment. 6222 Mangler.mangleCallOffset(Thunk.This.NonVirtual, 6223 Thunk.This.Virtual.Itanium.VCallOffsetOffset); 6224 6225 // Mangle the return pointer adjustment if there is one. 6226 if (!Thunk.Return.isEmpty()) 6227 Mangler.mangleCallOffset(Thunk.Return.NonVirtual, 6228 Thunk.Return.Virtual.Itanium.VBaseOffsetOffset); 6229 6230 Mangler.mangleFunctionEncoding(MD); 6231 } 6232 6233 void ItaniumMangleContextImpl::mangleCXXDtorThunk( 6234 const CXXDestructorDecl *DD, CXXDtorType Type, 6235 const ThisAdjustment &ThisAdjustment, raw_ostream &Out) { 6236 // <special-name> ::= T <call-offset> <base encoding> 6237 // # base is the nominal target function of thunk 6238 CXXNameMangler Mangler(*this, Out, DD, Type); 6239 Mangler.getStream() << "_ZT"; 6240 6241 // Mangle the 'this' pointer adjustment. 6242 Mangler.mangleCallOffset(ThisAdjustment.NonVirtual, 6243 ThisAdjustment.Virtual.Itanium.VCallOffsetOffset); 6244 6245 Mangler.mangleFunctionEncoding(GlobalDecl(DD, Type)); 6246 } 6247 6248 /// Returns the mangled name for a guard variable for the passed in VarDecl. 6249 void ItaniumMangleContextImpl::mangleStaticGuardVariable(const VarDecl *D, 6250 raw_ostream &Out) { 6251 // <special-name> ::= GV <object name> # Guard variable for one-time 6252 // # initialization 6253 CXXNameMangler Mangler(*this, Out); 6254 // GCC 5.3.0 doesn't emit derived ABI tags for local names but that seems to 6255 // be a bug that is fixed in trunk. 6256 Mangler.getStream() << "_ZGV"; 6257 Mangler.mangleName(D); 6258 } 6259 6260 void ItaniumMangleContextImpl::mangleDynamicInitializer(const VarDecl *MD, 6261 raw_ostream &Out) { 6262 // These symbols are internal in the Itanium ABI, so the names don't matter. 6263 // Clang has traditionally used this symbol and allowed LLVM to adjust it to 6264 // avoid duplicate symbols. 6265 Out << "__cxx_global_var_init"; 6266 } 6267 6268 void ItaniumMangleContextImpl::mangleDynamicAtExitDestructor(const VarDecl *D, 6269 raw_ostream &Out) { 6270 // Prefix the mangling of D with __dtor_. 6271 CXXNameMangler Mangler(*this, Out); 6272 Mangler.getStream() << "__dtor_"; 6273 if (shouldMangleDeclName(D)) 6274 Mangler.mangle(D); 6275 else 6276 Mangler.getStream() << D->getName(); 6277 } 6278 6279 void ItaniumMangleContextImpl::mangleDynamicStermFinalizer(const VarDecl *D, 6280 raw_ostream &Out) { 6281 // Clang generates these internal-linkage functions as part of its 6282 // implementation of the XL ABI. 6283 CXXNameMangler Mangler(*this, Out); 6284 Mangler.getStream() << "__finalize_"; 6285 if (shouldMangleDeclName(D)) 6286 Mangler.mangle(D); 6287 else 6288 Mangler.getStream() << D->getName(); 6289 } 6290 6291 void ItaniumMangleContextImpl::mangleSEHFilterExpression( 6292 const NamedDecl *EnclosingDecl, raw_ostream &Out) { 6293 CXXNameMangler Mangler(*this, Out); 6294 Mangler.getStream() << "__filt_"; 6295 if (shouldMangleDeclName(EnclosingDecl)) 6296 Mangler.mangle(EnclosingDecl); 6297 else 6298 Mangler.getStream() << EnclosingDecl->getName(); 6299 } 6300 6301 void ItaniumMangleContextImpl::mangleSEHFinallyBlock( 6302 const NamedDecl *EnclosingDecl, raw_ostream &Out) { 6303 CXXNameMangler Mangler(*this, Out); 6304 Mangler.getStream() << "__fin_"; 6305 if (shouldMangleDeclName(EnclosingDecl)) 6306 Mangler.mangle(EnclosingDecl); 6307 else 6308 Mangler.getStream() << EnclosingDecl->getName(); 6309 } 6310 6311 void ItaniumMangleContextImpl::mangleItaniumThreadLocalInit(const VarDecl *D, 6312 raw_ostream &Out) { 6313 // <special-name> ::= TH <object name> 6314 CXXNameMangler Mangler(*this, Out); 6315 Mangler.getStream() << "_ZTH"; 6316 Mangler.mangleName(D); 6317 } 6318 6319 void 6320 ItaniumMangleContextImpl::mangleItaniumThreadLocalWrapper(const VarDecl *D, 6321 raw_ostream &Out) { 6322 // <special-name> ::= TW <object name> 6323 CXXNameMangler Mangler(*this, Out); 6324 Mangler.getStream() << "_ZTW"; 6325 Mangler.mangleName(D); 6326 } 6327 6328 void ItaniumMangleContextImpl::mangleReferenceTemporary(const VarDecl *D, 6329 unsigned ManglingNumber, 6330 raw_ostream &Out) { 6331 // We match the GCC mangling here. 6332 // <special-name> ::= GR <object name> 6333 CXXNameMangler Mangler(*this, Out); 6334 Mangler.getStream() << "_ZGR"; 6335 Mangler.mangleName(D); 6336 assert(ManglingNumber > 0 && "Reference temporary mangling number is zero!"); 6337 Mangler.mangleSeqID(ManglingNumber - 1); 6338 } 6339 6340 void ItaniumMangleContextImpl::mangleCXXVTable(const CXXRecordDecl *RD, 6341 raw_ostream &Out) { 6342 // <special-name> ::= TV <type> # virtual table 6343 CXXNameMangler Mangler(*this, Out); 6344 Mangler.getStream() << "_ZTV"; 6345 Mangler.mangleNameOrStandardSubstitution(RD); 6346 } 6347 6348 void ItaniumMangleContextImpl::mangleCXXVTT(const CXXRecordDecl *RD, 6349 raw_ostream &Out) { 6350 // <special-name> ::= TT <type> # VTT structure 6351 CXXNameMangler Mangler(*this, Out); 6352 Mangler.getStream() << "_ZTT"; 6353 Mangler.mangleNameOrStandardSubstitution(RD); 6354 } 6355 6356 void ItaniumMangleContextImpl::mangleCXXCtorVTable(const CXXRecordDecl *RD, 6357 int64_t Offset, 6358 const CXXRecordDecl *Type, 6359 raw_ostream &Out) { 6360 // <special-name> ::= TC <type> <offset number> _ <base type> 6361 CXXNameMangler Mangler(*this, Out); 6362 Mangler.getStream() << "_ZTC"; 6363 Mangler.mangleNameOrStandardSubstitution(RD); 6364 Mangler.getStream() << Offset; 6365 Mangler.getStream() << '_'; 6366 Mangler.mangleNameOrStandardSubstitution(Type); 6367 } 6368 6369 void ItaniumMangleContextImpl::mangleCXXRTTI(QualType Ty, raw_ostream &Out) { 6370 // <special-name> ::= TI <type> # typeinfo structure 6371 assert(!Ty.hasQualifiers() && "RTTI info cannot have top-level qualifiers"); 6372 CXXNameMangler Mangler(*this, Out); 6373 Mangler.getStream() << "_ZTI"; 6374 Mangler.mangleType(Ty); 6375 } 6376 6377 void ItaniumMangleContextImpl::mangleCXXRTTIName(QualType Ty, 6378 raw_ostream &Out) { 6379 // <special-name> ::= TS <type> # typeinfo name (null terminated byte string) 6380 CXXNameMangler Mangler(*this, Out); 6381 Mangler.getStream() << "_ZTS"; 6382 Mangler.mangleType(Ty); 6383 } 6384 6385 void ItaniumMangleContextImpl::mangleTypeName(QualType Ty, raw_ostream &Out) { 6386 mangleCXXRTTIName(Ty, Out); 6387 } 6388 6389 void ItaniumMangleContextImpl::mangleStringLiteral(const StringLiteral *, raw_ostream &) { 6390 llvm_unreachable("Can't mangle string literals"); 6391 } 6392 6393 void ItaniumMangleContextImpl::mangleLambdaSig(const CXXRecordDecl *Lambda, 6394 raw_ostream &Out) { 6395 CXXNameMangler Mangler(*this, Out); 6396 Mangler.mangleLambdaSig(Lambda); 6397 } 6398 6399 ItaniumMangleContext *ItaniumMangleContext::create(ASTContext &Context, 6400 DiagnosticsEngine &Diags) { 6401 return new ItaniumMangleContextImpl( 6402 Context, Diags, 6403 [](ASTContext &, const NamedDecl *) -> llvm::Optional<unsigned> { 6404 return llvm::None; 6405 }); 6406 } 6407 6408 ItaniumMangleContext * 6409 ItaniumMangleContext::create(ASTContext &Context, DiagnosticsEngine &Diags, 6410 DiscriminatorOverrideTy DiscriminatorOverride) { 6411 return new ItaniumMangleContextImpl(Context, Diags, DiscriminatorOverride); 6412 } 6413