1 //===--- MicrosoftMangle.cpp - Microsoft Visual C++ Name Mangling ---------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This provides C++ name mangling targeting the Microsoft Visual C++ ABI. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/AST/Mangle.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/Attr.h" 17 #include "clang/AST/CXXInheritance.h" 18 #include "clang/AST/CharUnits.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/VTableBuilder.h" 27 #include "clang/Basic/ABI.h" 28 #include "clang/Basic/DiagnosticOptions.h" 29 #include "clang/Basic/TargetInfo.h" 30 #include "llvm/ADT/StringExtras.h" 31 #include "llvm/Support/JamCRC.h" 32 #include "llvm/Support/MD5.h" 33 #include "llvm/Support/MathExtras.h" 34 35 using namespace clang; 36 37 namespace { 38 39 struct msvc_hashing_ostream : public llvm::raw_svector_ostream { 40 raw_ostream &OS; 41 llvm::SmallString<64> Buffer; 42 43 msvc_hashing_ostream(raw_ostream &OS) 44 : llvm::raw_svector_ostream(Buffer), OS(OS) {} 45 ~msvc_hashing_ostream() override { 46 StringRef MangledName = str(); 47 bool StartsWithEscape = MangledName.startswith("\01"); 48 if (StartsWithEscape) 49 MangledName = MangledName.drop_front(1); 50 if (MangledName.size() <= 4096) { 51 OS << str(); 52 return; 53 } 54 55 llvm::MD5 Hasher; 56 llvm::MD5::MD5Result Hash; 57 Hasher.update(MangledName); 58 Hasher.final(Hash); 59 60 SmallString<32> HexString; 61 llvm::MD5::stringifyResult(Hash, HexString); 62 63 if (StartsWithEscape) 64 OS << '\01'; 65 OS << "??@" << HexString << '@'; 66 } 67 }; 68 69 static const DeclContext * 70 getLambdaDefaultArgumentDeclContext(const Decl *D) { 71 if (const auto *RD = dyn_cast<CXXRecordDecl>(D)) 72 if (RD->isLambda()) 73 if (const auto *Parm = 74 dyn_cast_or_null<ParmVarDecl>(RD->getLambdaContextDecl())) 75 return Parm->getDeclContext(); 76 return nullptr; 77 } 78 79 /// \brief Retrieve the declaration context that should be used when mangling 80 /// the given declaration. 81 static const DeclContext *getEffectiveDeclContext(const Decl *D) { 82 // The ABI assumes that lambda closure types that occur within 83 // default arguments live in the context of the function. However, due to 84 // the way in which Clang parses and creates function declarations, this is 85 // not the case: the lambda closure type ends up living in the context 86 // where the function itself resides, because the function declaration itself 87 // had not yet been created. Fix the context here. 88 if (const auto *LDADC = getLambdaDefaultArgumentDeclContext(D)) 89 return LDADC; 90 91 // Perform the same check for block literals. 92 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) { 93 if (ParmVarDecl *ContextParam = 94 dyn_cast_or_null<ParmVarDecl>(BD->getBlockManglingContextDecl())) 95 return ContextParam->getDeclContext(); 96 } 97 98 const DeclContext *DC = D->getDeclContext(); 99 if (isa<CapturedDecl>(DC) || isa<OMPDeclareReductionDecl>(DC)) { 100 return getEffectiveDeclContext(cast<Decl>(DC)); 101 } 102 103 return DC->getRedeclContext(); 104 } 105 106 static const DeclContext *getEffectiveParentContext(const DeclContext *DC) { 107 return getEffectiveDeclContext(cast<Decl>(DC)); 108 } 109 110 static const FunctionDecl *getStructor(const NamedDecl *ND) { 111 if (const auto *FTD = dyn_cast<FunctionTemplateDecl>(ND)) 112 return FTD->getTemplatedDecl()->getCanonicalDecl(); 113 114 const auto *FD = cast<FunctionDecl>(ND); 115 if (const auto *FTD = FD->getPrimaryTemplate()) 116 return FTD->getTemplatedDecl()->getCanonicalDecl(); 117 118 return FD->getCanonicalDecl(); 119 } 120 121 /// MicrosoftMangleContextImpl - Overrides the default MangleContext for the 122 /// Microsoft Visual C++ ABI. 123 class MicrosoftMangleContextImpl : public MicrosoftMangleContext { 124 typedef std::pair<const DeclContext *, IdentifierInfo *> DiscriminatorKeyTy; 125 llvm::DenseMap<DiscriminatorKeyTy, unsigned> Discriminator; 126 llvm::DenseMap<const NamedDecl *, unsigned> Uniquifier; 127 llvm::DenseMap<const CXXRecordDecl *, unsigned> LambdaIds; 128 llvm::DenseMap<const NamedDecl *, unsigned> SEHFilterIds; 129 llvm::DenseMap<const NamedDecl *, unsigned> SEHFinallyIds; 130 131 public: 132 MicrosoftMangleContextImpl(ASTContext &Context, DiagnosticsEngine &Diags) 133 : MicrosoftMangleContext(Context, Diags) {} 134 bool shouldMangleCXXName(const NamedDecl *D) override; 135 bool shouldMangleStringLiteral(const StringLiteral *SL) override; 136 void mangleCXXName(const NamedDecl *D, raw_ostream &Out) override; 137 void mangleVirtualMemPtrThunk(const CXXMethodDecl *MD, 138 raw_ostream &) override; 139 void mangleThunk(const CXXMethodDecl *MD, const ThunkInfo &Thunk, 140 raw_ostream &) override; 141 void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type, 142 const ThisAdjustment &ThisAdjustment, 143 raw_ostream &) override; 144 void mangleCXXVFTable(const CXXRecordDecl *Derived, 145 ArrayRef<const CXXRecordDecl *> BasePath, 146 raw_ostream &Out) override; 147 void mangleCXXVBTable(const CXXRecordDecl *Derived, 148 ArrayRef<const CXXRecordDecl *> BasePath, 149 raw_ostream &Out) override; 150 void mangleCXXVirtualDisplacementMap(const CXXRecordDecl *SrcRD, 151 const CXXRecordDecl *DstRD, 152 raw_ostream &Out) override; 153 void mangleCXXThrowInfo(QualType T, bool IsConst, bool IsVolatile, 154 bool IsUnaligned, uint32_t NumEntries, 155 raw_ostream &Out) override; 156 void mangleCXXCatchableTypeArray(QualType T, uint32_t NumEntries, 157 raw_ostream &Out) override; 158 void mangleCXXCatchableType(QualType T, const CXXConstructorDecl *CD, 159 CXXCtorType CT, uint32_t Size, uint32_t NVOffset, 160 int32_t VBPtrOffset, uint32_t VBIndex, 161 raw_ostream &Out) override; 162 void mangleCXXRTTI(QualType T, raw_ostream &Out) override; 163 void mangleCXXRTTIName(QualType T, raw_ostream &Out) override; 164 void mangleCXXRTTIBaseClassDescriptor(const CXXRecordDecl *Derived, 165 uint32_t NVOffset, int32_t VBPtrOffset, 166 uint32_t VBTableOffset, uint32_t Flags, 167 raw_ostream &Out) override; 168 void mangleCXXRTTIBaseClassArray(const CXXRecordDecl *Derived, 169 raw_ostream &Out) override; 170 void mangleCXXRTTIClassHierarchyDescriptor(const CXXRecordDecl *Derived, 171 raw_ostream &Out) override; 172 void 173 mangleCXXRTTICompleteObjectLocator(const CXXRecordDecl *Derived, 174 ArrayRef<const CXXRecordDecl *> BasePath, 175 raw_ostream &Out) override; 176 void mangleTypeName(QualType T, raw_ostream &) override; 177 void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type, 178 raw_ostream &) override; 179 void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type, 180 raw_ostream &) override; 181 void mangleReferenceTemporary(const VarDecl *, unsigned ManglingNumber, 182 raw_ostream &) override; 183 void mangleStaticGuardVariable(const VarDecl *D, raw_ostream &Out) override; 184 void mangleThreadSafeStaticGuardVariable(const VarDecl *D, unsigned GuardNum, 185 raw_ostream &Out) override; 186 void mangleDynamicInitializer(const VarDecl *D, raw_ostream &Out) override; 187 void mangleDynamicAtExitDestructor(const VarDecl *D, 188 raw_ostream &Out) override; 189 void mangleSEHFilterExpression(const NamedDecl *EnclosingDecl, 190 raw_ostream &Out) override; 191 void mangleSEHFinallyBlock(const NamedDecl *EnclosingDecl, 192 raw_ostream &Out) override; 193 void mangleStringLiteral(const StringLiteral *SL, raw_ostream &Out) override; 194 bool getNextDiscriminator(const NamedDecl *ND, unsigned &disc) { 195 const DeclContext *DC = getEffectiveDeclContext(ND); 196 if (!DC->isFunctionOrMethod()) 197 return false; 198 199 // Lambda closure types are already numbered, give out a phony number so 200 // that they demangle nicely. 201 if (const auto *RD = dyn_cast<CXXRecordDecl>(ND)) { 202 if (RD->isLambda()) { 203 disc = 1; 204 return true; 205 } 206 } 207 208 // Use the canonical number for externally visible decls. 209 if (ND->isExternallyVisible()) { 210 disc = getASTContext().getManglingNumber(ND); 211 return true; 212 } 213 214 // Anonymous tags are already numbered. 215 if (const TagDecl *Tag = dyn_cast<TagDecl>(ND)) { 216 if (!Tag->hasNameForLinkage() && 217 !getASTContext().getDeclaratorForUnnamedTagDecl(Tag) && 218 !getASTContext().getTypedefNameForUnnamedTagDecl(Tag)) 219 return false; 220 } 221 222 // Make up a reasonable number for internal decls. 223 unsigned &discriminator = Uniquifier[ND]; 224 if (!discriminator) 225 discriminator = ++Discriminator[std::make_pair(DC, ND->getIdentifier())]; 226 disc = discriminator + 1; 227 return true; 228 } 229 230 unsigned getLambdaId(const CXXRecordDecl *RD) { 231 assert(RD->isLambda() && "RD must be a lambda!"); 232 assert(!RD->isExternallyVisible() && "RD must not be visible!"); 233 assert(RD->getLambdaManglingNumber() == 0 && 234 "RD must not have a mangling number!"); 235 std::pair<llvm::DenseMap<const CXXRecordDecl *, unsigned>::iterator, bool> 236 Result = LambdaIds.insert(std::make_pair(RD, LambdaIds.size())); 237 return Result.first->second; 238 } 239 240 private: 241 void mangleInitFiniStub(const VarDecl *D, char CharCode, raw_ostream &Out); 242 }; 243 244 /// MicrosoftCXXNameMangler - Manage the mangling of a single name for the 245 /// Microsoft Visual C++ ABI. 246 class MicrosoftCXXNameMangler { 247 MicrosoftMangleContextImpl &Context; 248 raw_ostream &Out; 249 250 /// The "structor" is the top-level declaration being mangled, if 251 /// that's not a template specialization; otherwise it's the pattern 252 /// for that specialization. 253 const NamedDecl *Structor; 254 unsigned StructorType; 255 256 typedef llvm::SmallVector<std::string, 10> BackRefVec; 257 BackRefVec NameBackReferences; 258 259 typedef llvm::DenseMap<const void *, unsigned> ArgBackRefMap; 260 ArgBackRefMap TypeBackReferences; 261 262 typedef std::set<int> PassObjectSizeArgsSet; 263 PassObjectSizeArgsSet PassObjectSizeArgs; 264 265 ASTContext &getASTContext() const { return Context.getASTContext(); } 266 267 // FIXME: If we add support for __ptr32/64 qualifiers, then we should push 268 // this check into mangleQualifiers(). 269 const bool PointersAre64Bit; 270 271 public: 272 enum QualifierMangleMode { QMM_Drop, QMM_Mangle, QMM_Escape, QMM_Result }; 273 274 MicrosoftCXXNameMangler(MicrosoftMangleContextImpl &C, raw_ostream &Out_) 275 : Context(C), Out(Out_), Structor(nullptr), StructorType(-1), 276 PointersAre64Bit(C.getASTContext().getTargetInfo().getPointerWidth(0) == 277 64) {} 278 279 MicrosoftCXXNameMangler(MicrosoftMangleContextImpl &C, raw_ostream &Out_, 280 const CXXConstructorDecl *D, CXXCtorType Type) 281 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type), 282 PointersAre64Bit(C.getASTContext().getTargetInfo().getPointerWidth(0) == 283 64) {} 284 285 MicrosoftCXXNameMangler(MicrosoftMangleContextImpl &C, raw_ostream &Out_, 286 const CXXDestructorDecl *D, CXXDtorType Type) 287 : Context(C), Out(Out_), Structor(getStructor(D)), StructorType(Type), 288 PointersAre64Bit(C.getASTContext().getTargetInfo().getPointerWidth(0) == 289 64) {} 290 291 raw_ostream &getStream() const { return Out; } 292 293 void mangle(const NamedDecl *D, StringRef Prefix = "\01?"); 294 void mangleName(const NamedDecl *ND); 295 void mangleFunctionEncoding(const FunctionDecl *FD, bool ShouldMangle); 296 void mangleVariableEncoding(const VarDecl *VD); 297 void mangleMemberDataPointer(const CXXRecordDecl *RD, const ValueDecl *VD); 298 void mangleMemberFunctionPointer(const CXXRecordDecl *RD, 299 const CXXMethodDecl *MD); 300 void mangleVirtualMemPtrThunk( 301 const CXXMethodDecl *MD, 302 const MicrosoftVTableContext::MethodVFTableLocation &ML); 303 void mangleNumber(int64_t Number); 304 void mangleTagTypeKind(TagTypeKind TK); 305 void mangleArtificalTagType(TagTypeKind TK, StringRef UnqualifiedName, 306 ArrayRef<StringRef> NestedNames = None); 307 void mangleType(QualType T, SourceRange Range, 308 QualifierMangleMode QMM = QMM_Mangle); 309 void mangleFunctionType(const FunctionType *T, 310 const FunctionDecl *D = nullptr, 311 bool ForceThisQuals = false); 312 void mangleNestedName(const NamedDecl *ND); 313 314 private: 315 bool isStructorDecl(const NamedDecl *ND) const { 316 return ND == Structor || getStructor(ND) == Structor; 317 } 318 319 void mangleUnqualifiedName(const NamedDecl *ND) { 320 mangleUnqualifiedName(ND, ND->getDeclName()); 321 } 322 void mangleUnqualifiedName(const NamedDecl *ND, DeclarationName Name); 323 void mangleSourceName(StringRef Name); 324 void mangleOperatorName(OverloadedOperatorKind OO, SourceLocation Loc); 325 void mangleCXXDtorType(CXXDtorType T); 326 void mangleQualifiers(Qualifiers Quals, bool IsMember); 327 void mangleRefQualifier(RefQualifierKind RefQualifier); 328 void manglePointerCVQualifiers(Qualifiers Quals); 329 void manglePointerExtQualifiers(Qualifiers Quals, QualType PointeeType); 330 331 void mangleUnscopedTemplateName(const TemplateDecl *ND); 332 void 333 mangleTemplateInstantiationName(const TemplateDecl *TD, 334 const TemplateArgumentList &TemplateArgs); 335 void mangleObjCMethodName(const ObjCMethodDecl *MD); 336 337 void mangleArgumentType(QualType T, SourceRange Range); 338 void manglePassObjectSizeArg(const PassObjectSizeAttr *POSA); 339 340 // Declare manglers for every type class. 341 #define ABSTRACT_TYPE(CLASS, PARENT) 342 #define NON_CANONICAL_TYPE(CLASS, PARENT) 343 #define TYPE(CLASS, PARENT) void mangleType(const CLASS##Type *T, \ 344 Qualifiers Quals, \ 345 SourceRange Range); 346 #include "clang/AST/TypeNodes.def" 347 #undef ABSTRACT_TYPE 348 #undef NON_CANONICAL_TYPE 349 #undef TYPE 350 351 void mangleType(const TagDecl *TD); 352 void mangleDecayedArrayType(const ArrayType *T); 353 void mangleArrayType(const ArrayType *T); 354 void mangleFunctionClass(const FunctionDecl *FD); 355 void mangleCallingConvention(CallingConv CC); 356 void mangleCallingConvention(const FunctionType *T); 357 void mangleIntegerLiteral(const llvm::APSInt &Number, bool IsBoolean); 358 void mangleExpression(const Expr *E); 359 void mangleThrowSpecification(const FunctionProtoType *T); 360 361 void mangleTemplateArgs(const TemplateDecl *TD, 362 const TemplateArgumentList &TemplateArgs); 363 void mangleTemplateArg(const TemplateDecl *TD, const TemplateArgument &TA, 364 const NamedDecl *Parm); 365 }; 366 } 367 368 bool MicrosoftMangleContextImpl::shouldMangleCXXName(const NamedDecl *D) { 369 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 370 LanguageLinkage L = FD->getLanguageLinkage(); 371 // Overloadable functions need mangling. 372 if (FD->hasAttr<OverloadableAttr>()) 373 return true; 374 375 // The ABI expects that we would never mangle "typical" user-defined entry 376 // points regardless of visibility or freestanding-ness. 377 // 378 // N.B. This is distinct from asking about "main". "main" has a lot of 379 // special rules associated with it in the standard while these 380 // user-defined entry points are outside of the purview of the standard. 381 // For example, there can be only one definition for "main" in a standards 382 // compliant program; however nothing forbids the existence of wmain and 383 // WinMain in the same translation unit. 384 if (FD->isMSVCRTEntryPoint()) 385 return false; 386 387 // C++ functions and those whose names are not a simple identifier need 388 // mangling. 389 if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage) 390 return true; 391 392 // C functions are not mangled. 393 if (L == CLanguageLinkage) 394 return false; 395 } 396 397 // Otherwise, no mangling is done outside C++ mode. 398 if (!getASTContext().getLangOpts().CPlusPlus) 399 return false; 400 401 const VarDecl *VD = dyn_cast<VarDecl>(D); 402 if (VD && !isa<DecompositionDecl>(D)) { 403 // C variables are not mangled. 404 if (VD->isExternC()) 405 return false; 406 407 // Variables at global scope with non-internal linkage are not mangled. 408 const DeclContext *DC = getEffectiveDeclContext(D); 409 // Check for extern variable declared locally. 410 if (DC->isFunctionOrMethod() && D->hasLinkage()) 411 while (!DC->isNamespace() && !DC->isTranslationUnit()) 412 DC = getEffectiveParentContext(DC); 413 414 if (DC->isTranslationUnit() && D->getFormalLinkage() == InternalLinkage && 415 !isa<VarTemplateSpecializationDecl>(D) && 416 D->getIdentifier() != nullptr) 417 return false; 418 } 419 420 return true; 421 } 422 423 bool 424 MicrosoftMangleContextImpl::shouldMangleStringLiteral(const StringLiteral *SL) { 425 return true; 426 } 427 428 void MicrosoftCXXNameMangler::mangle(const NamedDecl *D, StringRef Prefix) { 429 // MSVC doesn't mangle C++ names the same way it mangles extern "C" names. 430 // Therefore it's really important that we don't decorate the 431 // name with leading underscores or leading/trailing at signs. So, by 432 // default, we emit an asm marker at the start so we get the name right. 433 // Callers can override this with a custom prefix. 434 435 // <mangled-name> ::= ? <name> <type-encoding> 436 Out << Prefix; 437 mangleName(D); 438 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 439 mangleFunctionEncoding(FD, Context.shouldMangleDeclName(FD)); 440 else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) 441 mangleVariableEncoding(VD); 442 else 443 llvm_unreachable("Tried to mangle unexpected NamedDecl!"); 444 } 445 446 void MicrosoftCXXNameMangler::mangleFunctionEncoding(const FunctionDecl *FD, 447 bool ShouldMangle) { 448 // <type-encoding> ::= <function-class> <function-type> 449 450 // Since MSVC operates on the type as written and not the canonical type, it 451 // actually matters which decl we have here. MSVC appears to choose the 452 // first, since it is most likely to be the declaration in a header file. 453 FD = FD->getFirstDecl(); 454 455 // We should never ever see a FunctionNoProtoType at this point. 456 // We don't even know how to mangle their types anyway :). 457 const FunctionProtoType *FT = FD->getType()->castAs<FunctionProtoType>(); 458 459 // extern "C" functions can hold entities that must be mangled. 460 // As it stands, these functions still need to get expressed in the full 461 // external name. They have their class and type omitted, replaced with '9'. 462 if (ShouldMangle) { 463 // We would like to mangle all extern "C" functions using this additional 464 // component but this would break compatibility with MSVC's behavior. 465 // Instead, do this when we know that compatibility isn't important (in 466 // other words, when it is an overloaded extern "C" function). 467 if (FD->isExternC() && FD->hasAttr<OverloadableAttr>()) 468 Out << "$$J0"; 469 470 mangleFunctionClass(FD); 471 472 mangleFunctionType(FT, FD); 473 } else { 474 Out << '9'; 475 } 476 } 477 478 void MicrosoftCXXNameMangler::mangleVariableEncoding(const VarDecl *VD) { 479 // <type-encoding> ::= <storage-class> <variable-type> 480 // <storage-class> ::= 0 # private static member 481 // ::= 1 # protected static member 482 // ::= 2 # public static member 483 // ::= 3 # global 484 // ::= 4 # static local 485 486 // The first character in the encoding (after the name) is the storage class. 487 if (VD->isStaticDataMember()) { 488 // If it's a static member, it also encodes the access level. 489 switch (VD->getAccess()) { 490 default: 491 case AS_private: Out << '0'; break; 492 case AS_protected: Out << '1'; break; 493 case AS_public: Out << '2'; break; 494 } 495 } 496 else if (!VD->isStaticLocal()) 497 Out << '3'; 498 else 499 Out << '4'; 500 // Now mangle the type. 501 // <variable-type> ::= <type> <cvr-qualifiers> 502 // ::= <type> <pointee-cvr-qualifiers> # pointers, references 503 // Pointers and references are odd. The type of 'int * const foo;' gets 504 // mangled as 'QAHA' instead of 'PAHB', for example. 505 SourceRange SR = VD->getSourceRange(); 506 QualType Ty = VD->getType(); 507 if (Ty->isPointerType() || Ty->isReferenceType() || 508 Ty->isMemberPointerType()) { 509 mangleType(Ty, SR, QMM_Drop); 510 manglePointerExtQualifiers( 511 Ty.getDesugaredType(getASTContext()).getLocalQualifiers(), QualType()); 512 if (const MemberPointerType *MPT = Ty->getAs<MemberPointerType>()) { 513 mangleQualifiers(MPT->getPointeeType().getQualifiers(), true); 514 // Member pointers are suffixed with a back reference to the member 515 // pointer's class name. 516 mangleName(MPT->getClass()->getAsCXXRecordDecl()); 517 } else 518 mangleQualifiers(Ty->getPointeeType().getQualifiers(), false); 519 } else if (const ArrayType *AT = getASTContext().getAsArrayType(Ty)) { 520 // Global arrays are funny, too. 521 mangleDecayedArrayType(AT); 522 if (AT->getElementType()->isArrayType()) 523 Out << 'A'; 524 else 525 mangleQualifiers(Ty.getQualifiers(), false); 526 } else { 527 mangleType(Ty, SR, QMM_Drop); 528 mangleQualifiers(Ty.getQualifiers(), false); 529 } 530 } 531 532 void MicrosoftCXXNameMangler::mangleMemberDataPointer(const CXXRecordDecl *RD, 533 const ValueDecl *VD) { 534 // <member-data-pointer> ::= <integer-literal> 535 // ::= $F <number> <number> 536 // ::= $G <number> <number> <number> 537 538 int64_t FieldOffset; 539 int64_t VBTableOffset; 540 MSInheritanceAttr::Spelling IM = RD->getMSInheritanceModel(); 541 if (VD) { 542 FieldOffset = getASTContext().getFieldOffset(VD); 543 assert(FieldOffset % getASTContext().getCharWidth() == 0 && 544 "cannot take address of bitfield"); 545 FieldOffset /= getASTContext().getCharWidth(); 546 547 VBTableOffset = 0; 548 549 if (IM == MSInheritanceAttr::Keyword_virtual_inheritance) 550 FieldOffset -= getASTContext().getOffsetOfBaseWithVBPtr(RD).getQuantity(); 551 } else { 552 FieldOffset = RD->nullFieldOffsetIsZero() ? 0 : -1; 553 554 VBTableOffset = -1; 555 } 556 557 char Code = '\0'; 558 switch (IM) { 559 case MSInheritanceAttr::Keyword_single_inheritance: Code = '0'; break; 560 case MSInheritanceAttr::Keyword_multiple_inheritance: Code = '0'; break; 561 case MSInheritanceAttr::Keyword_virtual_inheritance: Code = 'F'; break; 562 case MSInheritanceAttr::Keyword_unspecified_inheritance: Code = 'G'; break; 563 } 564 565 Out << '$' << Code; 566 567 mangleNumber(FieldOffset); 568 569 // The C++ standard doesn't allow base-to-derived member pointer conversions 570 // in template parameter contexts, so the vbptr offset of data member pointers 571 // is always zero. 572 if (MSInheritanceAttr::hasVBPtrOffsetField(IM)) 573 mangleNumber(0); 574 if (MSInheritanceAttr::hasVBTableOffsetField(IM)) 575 mangleNumber(VBTableOffset); 576 } 577 578 void 579 MicrosoftCXXNameMangler::mangleMemberFunctionPointer(const CXXRecordDecl *RD, 580 const CXXMethodDecl *MD) { 581 // <member-function-pointer> ::= $1? <name> 582 // ::= $H? <name> <number> 583 // ::= $I? <name> <number> <number> 584 // ::= $J? <name> <number> <number> <number> 585 586 MSInheritanceAttr::Spelling IM = RD->getMSInheritanceModel(); 587 588 char Code = '\0'; 589 switch (IM) { 590 case MSInheritanceAttr::Keyword_single_inheritance: Code = '1'; break; 591 case MSInheritanceAttr::Keyword_multiple_inheritance: Code = 'H'; break; 592 case MSInheritanceAttr::Keyword_virtual_inheritance: Code = 'I'; break; 593 case MSInheritanceAttr::Keyword_unspecified_inheritance: Code = 'J'; break; 594 } 595 596 // If non-virtual, mangle the name. If virtual, mangle as a virtual memptr 597 // thunk. 598 uint64_t NVOffset = 0; 599 uint64_t VBTableOffset = 0; 600 uint64_t VBPtrOffset = 0; 601 if (MD) { 602 Out << '$' << Code << '?'; 603 if (MD->isVirtual()) { 604 MicrosoftVTableContext *VTContext = 605 cast<MicrosoftVTableContext>(getASTContext().getVTableContext()); 606 const MicrosoftVTableContext::MethodVFTableLocation &ML = 607 VTContext->getMethodVFTableLocation(GlobalDecl(MD)); 608 mangleVirtualMemPtrThunk(MD, ML); 609 NVOffset = ML.VFPtrOffset.getQuantity(); 610 VBTableOffset = ML.VBTableIndex * 4; 611 if (ML.VBase) { 612 const ASTRecordLayout &Layout = getASTContext().getASTRecordLayout(RD); 613 VBPtrOffset = Layout.getVBPtrOffset().getQuantity(); 614 } 615 } else { 616 mangleName(MD); 617 mangleFunctionEncoding(MD, /*ShouldMangle=*/true); 618 } 619 620 if (VBTableOffset == 0 && 621 IM == MSInheritanceAttr::Keyword_virtual_inheritance) 622 NVOffset -= getASTContext().getOffsetOfBaseWithVBPtr(RD).getQuantity(); 623 } else { 624 // Null single inheritance member functions are encoded as a simple nullptr. 625 if (IM == MSInheritanceAttr::Keyword_single_inheritance) { 626 Out << "$0A@"; 627 return; 628 } 629 if (IM == MSInheritanceAttr::Keyword_unspecified_inheritance) 630 VBTableOffset = -1; 631 Out << '$' << Code; 632 } 633 634 if (MSInheritanceAttr::hasNVOffsetField(/*IsMemberFunction=*/true, IM)) 635 mangleNumber(static_cast<uint32_t>(NVOffset)); 636 if (MSInheritanceAttr::hasVBPtrOffsetField(IM)) 637 mangleNumber(VBPtrOffset); 638 if (MSInheritanceAttr::hasVBTableOffsetField(IM)) 639 mangleNumber(VBTableOffset); 640 } 641 642 void MicrosoftCXXNameMangler::mangleVirtualMemPtrThunk( 643 const CXXMethodDecl *MD, 644 const MicrosoftVTableContext::MethodVFTableLocation &ML) { 645 // Get the vftable offset. 646 CharUnits PointerWidth = getASTContext().toCharUnitsFromBits( 647 getASTContext().getTargetInfo().getPointerWidth(0)); 648 uint64_t OffsetInVFTable = ML.Index * PointerWidth.getQuantity(); 649 650 Out << "?_9"; 651 mangleName(MD->getParent()); 652 Out << "$B"; 653 mangleNumber(OffsetInVFTable); 654 Out << 'A'; 655 mangleCallingConvention(MD->getType()->getAs<FunctionProtoType>()); 656 } 657 658 void MicrosoftCXXNameMangler::mangleName(const NamedDecl *ND) { 659 // <name> ::= <unscoped-name> {[<named-scope>]+ | [<nested-name>]}? @ 660 661 // Always start with the unqualified name. 662 mangleUnqualifiedName(ND); 663 664 mangleNestedName(ND); 665 666 // Terminate the whole name with an '@'. 667 Out << '@'; 668 } 669 670 void MicrosoftCXXNameMangler::mangleNumber(int64_t Number) { 671 // <non-negative integer> ::= A@ # when Number == 0 672 // ::= <decimal digit> # when 1 <= Number <= 10 673 // ::= <hex digit>+ @ # when Number >= 10 674 // 675 // <number> ::= [?] <non-negative integer> 676 677 uint64_t Value = static_cast<uint64_t>(Number); 678 if (Number < 0) { 679 Value = -Value; 680 Out << '?'; 681 } 682 683 if (Value == 0) 684 Out << "A@"; 685 else if (Value >= 1 && Value <= 10) 686 Out << (Value - 1); 687 else { 688 // Numbers that are not encoded as decimal digits are represented as nibbles 689 // in the range of ASCII characters 'A' to 'P'. 690 // The number 0x123450 would be encoded as 'BCDEFA' 691 char EncodedNumberBuffer[sizeof(uint64_t) * 2]; 692 MutableArrayRef<char> BufferRef(EncodedNumberBuffer); 693 MutableArrayRef<char>::reverse_iterator I = BufferRef.rbegin(); 694 for (; Value != 0; Value >>= 4) 695 *I++ = 'A' + (Value & 0xf); 696 Out.write(I.base(), I - BufferRef.rbegin()); 697 Out << '@'; 698 } 699 } 700 701 static const TemplateDecl * 702 isTemplate(const NamedDecl *ND, const TemplateArgumentList *&TemplateArgs) { 703 // Check if we have a function template. 704 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) { 705 if (const TemplateDecl *TD = FD->getPrimaryTemplate()) { 706 TemplateArgs = FD->getTemplateSpecializationArgs(); 707 return TD; 708 } 709 } 710 711 // Check if we have a class template. 712 if (const ClassTemplateSpecializationDecl *Spec = 713 dyn_cast<ClassTemplateSpecializationDecl>(ND)) { 714 TemplateArgs = &Spec->getTemplateArgs(); 715 return Spec->getSpecializedTemplate(); 716 } 717 718 // Check if we have a variable template. 719 if (const VarTemplateSpecializationDecl *Spec = 720 dyn_cast<VarTemplateSpecializationDecl>(ND)) { 721 TemplateArgs = &Spec->getTemplateArgs(); 722 return Spec->getSpecializedTemplate(); 723 } 724 725 return nullptr; 726 } 727 728 void MicrosoftCXXNameMangler::mangleUnqualifiedName(const NamedDecl *ND, 729 DeclarationName Name) { 730 // <unqualified-name> ::= <operator-name> 731 // ::= <ctor-dtor-name> 732 // ::= <source-name> 733 // ::= <template-name> 734 735 // Check if we have a template. 736 const TemplateArgumentList *TemplateArgs = nullptr; 737 if (const TemplateDecl *TD = isTemplate(ND, TemplateArgs)) { 738 // Function templates aren't considered for name back referencing. This 739 // makes sense since function templates aren't likely to occur multiple 740 // times in a symbol. 741 if (isa<FunctionTemplateDecl>(TD)) { 742 mangleTemplateInstantiationName(TD, *TemplateArgs); 743 Out << '@'; 744 return; 745 } 746 747 // Here comes the tricky thing: if we need to mangle something like 748 // void foo(A::X<Y>, B::X<Y>), 749 // the X<Y> part is aliased. However, if you need to mangle 750 // void foo(A::X<A::Y>, A::X<B::Y>), 751 // the A::X<> part is not aliased. 752 // That said, from the mangler's perspective we have a structure like this: 753 // namespace[s] -> type[ -> template-parameters] 754 // but from the Clang perspective we have 755 // type [ -> template-parameters] 756 // \-> namespace[s] 757 // What we do is we create a new mangler, mangle the same type (without 758 // a namespace suffix) to a string using the extra mangler and then use 759 // the mangled type name as a key to check the mangling of different types 760 // for aliasing. 761 762 llvm::SmallString<64> TemplateMangling; 763 llvm::raw_svector_ostream Stream(TemplateMangling); 764 MicrosoftCXXNameMangler Extra(Context, Stream); 765 Extra.mangleTemplateInstantiationName(TD, *TemplateArgs); 766 767 mangleSourceName(TemplateMangling); 768 return; 769 } 770 771 switch (Name.getNameKind()) { 772 case DeclarationName::Identifier: { 773 if (const IdentifierInfo *II = Name.getAsIdentifierInfo()) { 774 mangleSourceName(II->getName()); 775 break; 776 } 777 778 // Otherwise, an anonymous entity. We must have a declaration. 779 assert(ND && "mangling empty name without declaration"); 780 781 if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) { 782 if (NS->isAnonymousNamespace()) { 783 Out << "?A@"; 784 break; 785 } 786 } 787 788 if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(ND)) { 789 // FIXME: Invented mangling for decomposition declarations: 790 // [X,Y,Z] 791 // where X,Y,Z are the names of the bindings. 792 llvm::SmallString<128> Name("["); 793 for (auto *BD : DD->bindings()) { 794 if (Name.size() > 1) 795 Name += ','; 796 Name += BD->getDeclName().getAsIdentifierInfo()->getName(); 797 } 798 Name += ']'; 799 mangleSourceName(Name); 800 break; 801 } 802 803 if (const VarDecl *VD = dyn_cast<VarDecl>(ND)) { 804 // We must have an anonymous union or struct declaration. 805 const CXXRecordDecl *RD = VD->getType()->getAsCXXRecordDecl(); 806 assert(RD && "expected variable decl to have a record type"); 807 // Anonymous types with no tag or typedef get the name of their 808 // declarator mangled in. If they have no declarator, number them with 809 // a $S prefix. 810 llvm::SmallString<64> Name("$S"); 811 // Get a unique id for the anonymous struct. 812 Name += llvm::utostr(Context.getAnonymousStructId(RD) + 1); 813 mangleSourceName(Name.str()); 814 break; 815 } 816 817 // We must have an anonymous struct. 818 const TagDecl *TD = cast<TagDecl>(ND); 819 if (const TypedefNameDecl *D = TD->getTypedefNameForAnonDecl()) { 820 assert(TD->getDeclContext() == D->getDeclContext() && 821 "Typedef should not be in another decl context!"); 822 assert(D->getDeclName().getAsIdentifierInfo() && 823 "Typedef was not named!"); 824 mangleSourceName(D->getDeclName().getAsIdentifierInfo()->getName()); 825 break; 826 } 827 828 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(TD)) { 829 if (Record->isLambda()) { 830 llvm::SmallString<10> Name("<lambda_"); 831 832 Decl *LambdaContextDecl = Record->getLambdaContextDecl(); 833 unsigned LambdaManglingNumber = Record->getLambdaManglingNumber(); 834 unsigned LambdaId; 835 const ParmVarDecl *Parm = 836 dyn_cast_or_null<ParmVarDecl>(LambdaContextDecl); 837 const FunctionDecl *Func = 838 Parm ? dyn_cast<FunctionDecl>(Parm->getDeclContext()) : nullptr; 839 840 if (Func) { 841 unsigned DefaultArgNo = 842 Func->getNumParams() - Parm->getFunctionScopeIndex(); 843 Name += llvm::utostr(DefaultArgNo); 844 Name += "_"; 845 } 846 847 if (LambdaManglingNumber) 848 LambdaId = LambdaManglingNumber; 849 else 850 LambdaId = Context.getLambdaId(Record); 851 852 Name += llvm::utostr(LambdaId); 853 Name += ">"; 854 855 mangleSourceName(Name); 856 857 // If the context of a closure type is an initializer for a class 858 // member (static or nonstatic), it is encoded in a qualified name. 859 if (LambdaManglingNumber && LambdaContextDecl) { 860 if ((isa<VarDecl>(LambdaContextDecl) || 861 isa<FieldDecl>(LambdaContextDecl)) && 862 LambdaContextDecl->getDeclContext()->isRecord()) { 863 mangleUnqualifiedName(cast<NamedDecl>(LambdaContextDecl)); 864 } 865 } 866 break; 867 } 868 } 869 870 llvm::SmallString<64> Name; 871 if (DeclaratorDecl *DD = 872 Context.getASTContext().getDeclaratorForUnnamedTagDecl(TD)) { 873 // Anonymous types without a name for linkage purposes have their 874 // declarator mangled in if they have one. 875 Name += "<unnamed-type-"; 876 Name += DD->getName(); 877 } else if (TypedefNameDecl *TND = 878 Context.getASTContext().getTypedefNameForUnnamedTagDecl( 879 TD)) { 880 // Anonymous types without a name for linkage purposes have their 881 // associate typedef mangled in if they have one. 882 Name += "<unnamed-type-"; 883 Name += TND->getName(); 884 } else if (auto *ED = dyn_cast<EnumDecl>(TD)) { 885 auto EnumeratorI = ED->enumerator_begin(); 886 assert(EnumeratorI != ED->enumerator_end()); 887 Name += "<unnamed-enum-"; 888 Name += EnumeratorI->getName(); 889 } else { 890 // Otherwise, number the types using a $S prefix. 891 Name += "<unnamed-type-$S"; 892 Name += llvm::utostr(Context.getAnonymousStructId(TD) + 1); 893 } 894 Name += ">"; 895 mangleSourceName(Name.str()); 896 break; 897 } 898 899 case DeclarationName::ObjCZeroArgSelector: 900 case DeclarationName::ObjCOneArgSelector: 901 case DeclarationName::ObjCMultiArgSelector: 902 llvm_unreachable("Can't mangle Objective-C selector names here!"); 903 904 case DeclarationName::CXXConstructorName: 905 if (isStructorDecl(ND)) { 906 if (StructorType == Ctor_CopyingClosure) { 907 Out << "?_O"; 908 return; 909 } 910 if (StructorType == Ctor_DefaultClosure) { 911 Out << "?_F"; 912 return; 913 } 914 } 915 Out << "?0"; 916 return; 917 918 case DeclarationName::CXXDestructorName: 919 if (isStructorDecl(ND)) 920 // If the named decl is the C++ destructor we're mangling, 921 // use the type we were given. 922 mangleCXXDtorType(static_cast<CXXDtorType>(StructorType)); 923 else 924 // Otherwise, use the base destructor name. This is relevant if a 925 // class with a destructor is declared within a destructor. 926 mangleCXXDtorType(Dtor_Base); 927 break; 928 929 case DeclarationName::CXXConversionFunctionName: 930 // <operator-name> ::= ?B # (cast) 931 // The target type is encoded as the return type. 932 Out << "?B"; 933 break; 934 935 case DeclarationName::CXXOperatorName: 936 mangleOperatorName(Name.getCXXOverloadedOperator(), ND->getLocation()); 937 break; 938 939 case DeclarationName::CXXLiteralOperatorName: { 940 Out << "?__K"; 941 mangleSourceName(Name.getCXXLiteralIdentifier()->getName()); 942 break; 943 } 944 945 case DeclarationName::CXXDeductionGuideName: 946 llvm_unreachable("Can't mangle a deduction guide name!"); 947 948 case DeclarationName::CXXUsingDirective: 949 llvm_unreachable("Can't mangle a using directive name!"); 950 } 951 } 952 953 void MicrosoftCXXNameMangler::mangleNestedName(const NamedDecl *ND) { 954 // <postfix> ::= <unqualified-name> [<postfix>] 955 // ::= <substitution> [<postfix>] 956 const DeclContext *DC = getEffectiveDeclContext(ND); 957 958 while (!DC->isTranslationUnit()) { 959 if (isa<TagDecl>(ND) || isa<VarDecl>(ND)) { 960 unsigned Disc; 961 if (Context.getNextDiscriminator(ND, Disc)) { 962 Out << '?'; 963 mangleNumber(Disc); 964 Out << '?'; 965 } 966 } 967 968 if (const BlockDecl *BD = dyn_cast<BlockDecl>(DC)) { 969 auto Discriminate = 970 [](StringRef Name, const unsigned Discriminator, 971 const unsigned ParameterDiscriminator) -> std::string { 972 std::string Buffer; 973 llvm::raw_string_ostream Stream(Buffer); 974 Stream << Name; 975 if (Discriminator) 976 Stream << '_' << Discriminator; 977 if (ParameterDiscriminator) 978 Stream << '_' << ParameterDiscriminator; 979 return Stream.str(); 980 }; 981 982 unsigned Discriminator = BD->getBlockManglingNumber(); 983 if (!Discriminator) 984 Discriminator = Context.getBlockId(BD, /*Local=*/false); 985 986 // Mangle the parameter position as a discriminator to deal with unnamed 987 // parameters. Rather than mangling the unqualified parameter name, 988 // always use the position to give a uniform mangling. 989 unsigned ParameterDiscriminator = 0; 990 if (const auto *MC = BD->getBlockManglingContextDecl()) 991 if (const auto *P = dyn_cast<ParmVarDecl>(MC)) 992 if (const auto *F = dyn_cast<FunctionDecl>(P->getDeclContext())) 993 ParameterDiscriminator = 994 F->getNumParams() - P->getFunctionScopeIndex(); 995 996 DC = getEffectiveDeclContext(BD); 997 998 Out << '?'; 999 mangleSourceName(Discriminate("_block_invoke", Discriminator, 1000 ParameterDiscriminator)); 1001 // If we have a block mangling context, encode that now. This allows us 1002 // to discriminate between named static data initializers in the same 1003 // scope. This is handled differently from parameters, which use 1004 // positions to discriminate between multiple instances. 1005 if (const auto *MC = BD->getBlockManglingContextDecl()) 1006 if (!isa<ParmVarDecl>(MC)) 1007 if (const auto *ND = dyn_cast<NamedDecl>(MC)) 1008 mangleUnqualifiedName(ND); 1009 // MS ABI and Itanium manglings are in inverted scopes. In the case of a 1010 // RecordDecl, mangle the entire scope hierachy at this point rather than 1011 // just the unqualified name to get the ordering correct. 1012 if (const auto *RD = dyn_cast<RecordDecl>(DC)) 1013 mangleName(RD); 1014 else 1015 Out << '@'; 1016 // void __cdecl 1017 Out << "YAX"; 1018 // struct __block_literal * 1019 Out << 'P'; 1020 // __ptr64 1021 if (PointersAre64Bit) 1022 Out << 'E'; 1023 Out << 'A'; 1024 mangleArtificalTagType(TTK_Struct, 1025 Discriminate("__block_literal", Discriminator, 1026 ParameterDiscriminator)); 1027 Out << "@Z"; 1028 1029 // If the effective context was a Record, we have fully mangled the 1030 // qualified name and do not need to continue. 1031 if (isa<RecordDecl>(DC)) 1032 break; 1033 continue; 1034 } else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC)) { 1035 mangleObjCMethodName(Method); 1036 } else if (isa<NamedDecl>(DC)) { 1037 ND = cast<NamedDecl>(DC); 1038 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) { 1039 mangle(FD, "?"); 1040 break; 1041 } else { 1042 mangleUnqualifiedName(ND); 1043 // Lambdas in default arguments conceptually belong to the function the 1044 // parameter corresponds to. 1045 if (const auto *LDADC = getLambdaDefaultArgumentDeclContext(ND)) { 1046 DC = LDADC; 1047 continue; 1048 } 1049 } 1050 } 1051 DC = DC->getParent(); 1052 } 1053 } 1054 1055 void MicrosoftCXXNameMangler::mangleCXXDtorType(CXXDtorType T) { 1056 // Microsoft uses the names on the case labels for these dtor variants. Clang 1057 // uses the Itanium terminology internally. Everything in this ABI delegates 1058 // towards the base dtor. 1059 switch (T) { 1060 // <operator-name> ::= ?1 # destructor 1061 case Dtor_Base: Out << "?1"; return; 1062 // <operator-name> ::= ?_D # vbase destructor 1063 case Dtor_Complete: Out << "?_D"; return; 1064 // <operator-name> ::= ?_G # scalar deleting destructor 1065 case Dtor_Deleting: Out << "?_G"; return; 1066 // <operator-name> ::= ?_E # vector deleting destructor 1067 // FIXME: Add a vector deleting dtor type. It goes in the vtable, so we need 1068 // it. 1069 case Dtor_Comdat: 1070 llvm_unreachable("not expecting a COMDAT"); 1071 } 1072 llvm_unreachable("Unsupported dtor type?"); 1073 } 1074 1075 void MicrosoftCXXNameMangler::mangleOperatorName(OverloadedOperatorKind OO, 1076 SourceLocation Loc) { 1077 switch (OO) { 1078 // ?0 # constructor 1079 // ?1 # destructor 1080 // <operator-name> ::= ?2 # new 1081 case OO_New: Out << "?2"; break; 1082 // <operator-name> ::= ?3 # delete 1083 case OO_Delete: Out << "?3"; break; 1084 // <operator-name> ::= ?4 # = 1085 case OO_Equal: Out << "?4"; break; 1086 // <operator-name> ::= ?5 # >> 1087 case OO_GreaterGreater: Out << "?5"; break; 1088 // <operator-name> ::= ?6 # << 1089 case OO_LessLess: Out << "?6"; break; 1090 // <operator-name> ::= ?7 # ! 1091 case OO_Exclaim: Out << "?7"; break; 1092 // <operator-name> ::= ?8 # == 1093 case OO_EqualEqual: Out << "?8"; break; 1094 // <operator-name> ::= ?9 # != 1095 case OO_ExclaimEqual: Out << "?9"; break; 1096 // <operator-name> ::= ?A # [] 1097 case OO_Subscript: Out << "?A"; break; 1098 // ?B # conversion 1099 // <operator-name> ::= ?C # -> 1100 case OO_Arrow: Out << "?C"; break; 1101 // <operator-name> ::= ?D # * 1102 case OO_Star: Out << "?D"; break; 1103 // <operator-name> ::= ?E # ++ 1104 case OO_PlusPlus: Out << "?E"; break; 1105 // <operator-name> ::= ?F # -- 1106 case OO_MinusMinus: Out << "?F"; break; 1107 // <operator-name> ::= ?G # - 1108 case OO_Minus: Out << "?G"; break; 1109 // <operator-name> ::= ?H # + 1110 case OO_Plus: Out << "?H"; break; 1111 // <operator-name> ::= ?I # & 1112 case OO_Amp: Out << "?I"; break; 1113 // <operator-name> ::= ?J # ->* 1114 case OO_ArrowStar: Out << "?J"; break; 1115 // <operator-name> ::= ?K # / 1116 case OO_Slash: Out << "?K"; break; 1117 // <operator-name> ::= ?L # % 1118 case OO_Percent: Out << "?L"; break; 1119 // <operator-name> ::= ?M # < 1120 case OO_Less: Out << "?M"; break; 1121 // <operator-name> ::= ?N # <= 1122 case OO_LessEqual: Out << "?N"; break; 1123 // <operator-name> ::= ?O # > 1124 case OO_Greater: Out << "?O"; break; 1125 // <operator-name> ::= ?P # >= 1126 case OO_GreaterEqual: Out << "?P"; break; 1127 // <operator-name> ::= ?Q # , 1128 case OO_Comma: Out << "?Q"; break; 1129 // <operator-name> ::= ?R # () 1130 case OO_Call: Out << "?R"; break; 1131 // <operator-name> ::= ?S # ~ 1132 case OO_Tilde: Out << "?S"; break; 1133 // <operator-name> ::= ?T # ^ 1134 case OO_Caret: Out << "?T"; break; 1135 // <operator-name> ::= ?U # | 1136 case OO_Pipe: Out << "?U"; break; 1137 // <operator-name> ::= ?V # && 1138 case OO_AmpAmp: Out << "?V"; break; 1139 // <operator-name> ::= ?W # || 1140 case OO_PipePipe: Out << "?W"; break; 1141 // <operator-name> ::= ?X # *= 1142 case OO_StarEqual: Out << "?X"; break; 1143 // <operator-name> ::= ?Y # += 1144 case OO_PlusEqual: Out << "?Y"; break; 1145 // <operator-name> ::= ?Z # -= 1146 case OO_MinusEqual: Out << "?Z"; break; 1147 // <operator-name> ::= ?_0 # /= 1148 case OO_SlashEqual: Out << "?_0"; break; 1149 // <operator-name> ::= ?_1 # %= 1150 case OO_PercentEqual: Out << "?_1"; break; 1151 // <operator-name> ::= ?_2 # >>= 1152 case OO_GreaterGreaterEqual: Out << "?_2"; break; 1153 // <operator-name> ::= ?_3 # <<= 1154 case OO_LessLessEqual: Out << "?_3"; break; 1155 // <operator-name> ::= ?_4 # &= 1156 case OO_AmpEqual: Out << "?_4"; break; 1157 // <operator-name> ::= ?_5 # |= 1158 case OO_PipeEqual: Out << "?_5"; break; 1159 // <operator-name> ::= ?_6 # ^= 1160 case OO_CaretEqual: Out << "?_6"; break; 1161 // ?_7 # vftable 1162 // ?_8 # vbtable 1163 // ?_9 # vcall 1164 // ?_A # typeof 1165 // ?_B # local static guard 1166 // ?_C # string 1167 // ?_D # vbase destructor 1168 // ?_E # vector deleting destructor 1169 // ?_F # default constructor closure 1170 // ?_G # scalar deleting destructor 1171 // ?_H # vector constructor iterator 1172 // ?_I # vector destructor iterator 1173 // ?_J # vector vbase constructor iterator 1174 // ?_K # virtual displacement map 1175 // ?_L # eh vector constructor iterator 1176 // ?_M # eh vector destructor iterator 1177 // ?_N # eh vector vbase constructor iterator 1178 // ?_O # copy constructor closure 1179 // ?_P<name> # udt returning <name> 1180 // ?_Q # <unknown> 1181 // ?_R0 # RTTI Type Descriptor 1182 // ?_R1 # RTTI Base Class Descriptor at (a,b,c,d) 1183 // ?_R2 # RTTI Base Class Array 1184 // ?_R3 # RTTI Class Hierarchy Descriptor 1185 // ?_R4 # RTTI Complete Object Locator 1186 // ?_S # local vftable 1187 // ?_T # local vftable constructor closure 1188 // <operator-name> ::= ?_U # new[] 1189 case OO_Array_New: Out << "?_U"; break; 1190 // <operator-name> ::= ?_V # delete[] 1191 case OO_Array_Delete: Out << "?_V"; break; 1192 // <operator-name> ::= ?__L # co_await 1193 case OO_Coawait: Out << "?__L"; break; 1194 1195 case OO_Conditional: { 1196 DiagnosticsEngine &Diags = Context.getDiags(); 1197 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 1198 "cannot mangle this conditional operator yet"); 1199 Diags.Report(Loc, DiagID); 1200 break; 1201 } 1202 1203 case OO_None: 1204 case NUM_OVERLOADED_OPERATORS: 1205 llvm_unreachable("Not an overloaded operator"); 1206 } 1207 } 1208 1209 void MicrosoftCXXNameMangler::mangleSourceName(StringRef Name) { 1210 // <source name> ::= <identifier> @ 1211 BackRefVec::iterator Found = 1212 std::find(NameBackReferences.begin(), NameBackReferences.end(), Name); 1213 if (Found == NameBackReferences.end()) { 1214 if (NameBackReferences.size() < 10) 1215 NameBackReferences.push_back(Name); 1216 Out << Name << '@'; 1217 } else { 1218 Out << (Found - NameBackReferences.begin()); 1219 } 1220 } 1221 1222 void MicrosoftCXXNameMangler::mangleObjCMethodName(const ObjCMethodDecl *MD) { 1223 Context.mangleObjCMethodName(MD, Out); 1224 } 1225 1226 void MicrosoftCXXNameMangler::mangleTemplateInstantiationName( 1227 const TemplateDecl *TD, const TemplateArgumentList &TemplateArgs) { 1228 // <template-name> ::= <unscoped-template-name> <template-args> 1229 // ::= <substitution> 1230 // Always start with the unqualified name. 1231 1232 // Templates have their own context for back references. 1233 ArgBackRefMap OuterArgsContext; 1234 BackRefVec OuterTemplateContext; 1235 PassObjectSizeArgsSet OuterPassObjectSizeArgs; 1236 NameBackReferences.swap(OuterTemplateContext); 1237 TypeBackReferences.swap(OuterArgsContext); 1238 PassObjectSizeArgs.swap(OuterPassObjectSizeArgs); 1239 1240 mangleUnscopedTemplateName(TD); 1241 mangleTemplateArgs(TD, TemplateArgs); 1242 1243 // Restore the previous back reference contexts. 1244 NameBackReferences.swap(OuterTemplateContext); 1245 TypeBackReferences.swap(OuterArgsContext); 1246 PassObjectSizeArgs.swap(OuterPassObjectSizeArgs); 1247 } 1248 1249 void 1250 MicrosoftCXXNameMangler::mangleUnscopedTemplateName(const TemplateDecl *TD) { 1251 // <unscoped-template-name> ::= ?$ <unqualified-name> 1252 Out << "?$"; 1253 mangleUnqualifiedName(TD); 1254 } 1255 1256 void MicrosoftCXXNameMangler::mangleIntegerLiteral(const llvm::APSInt &Value, 1257 bool IsBoolean) { 1258 // <integer-literal> ::= $0 <number> 1259 Out << "$0"; 1260 // Make sure booleans are encoded as 0/1. 1261 if (IsBoolean && Value.getBoolValue()) 1262 mangleNumber(1); 1263 else if (Value.isSigned()) 1264 mangleNumber(Value.getSExtValue()); 1265 else 1266 mangleNumber(Value.getZExtValue()); 1267 } 1268 1269 void MicrosoftCXXNameMangler::mangleExpression(const Expr *E) { 1270 // See if this is a constant expression. 1271 llvm::APSInt Value; 1272 if (E->isIntegerConstantExpr(Value, Context.getASTContext())) { 1273 mangleIntegerLiteral(Value, E->getType()->isBooleanType()); 1274 return; 1275 } 1276 1277 // Look through no-op casts like template parameter substitutions. 1278 E = E->IgnoreParenNoopCasts(Context.getASTContext()); 1279 1280 const CXXUuidofExpr *UE = nullptr; 1281 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) { 1282 if (UO->getOpcode() == UO_AddrOf) 1283 UE = dyn_cast<CXXUuidofExpr>(UO->getSubExpr()); 1284 } else 1285 UE = dyn_cast<CXXUuidofExpr>(E); 1286 1287 if (UE) { 1288 // If we had to peek through an address-of operator, treat this like we are 1289 // dealing with a pointer type. Otherwise, treat it like a const reference. 1290 // 1291 // N.B. This matches up with the handling of TemplateArgument::Declaration 1292 // in mangleTemplateArg 1293 if (UE == E) 1294 Out << "$E?"; 1295 else 1296 Out << "$1?"; 1297 1298 // This CXXUuidofExpr is mangled as-if it were actually a VarDecl from 1299 // const __s_GUID _GUID_{lower case UUID with underscores} 1300 StringRef Uuid = UE->getUuidStr(); 1301 std::string Name = "_GUID_" + Uuid.lower(); 1302 std::replace(Name.begin(), Name.end(), '-', '_'); 1303 1304 mangleSourceName(Name); 1305 // Terminate the whole name with an '@'. 1306 Out << '@'; 1307 // It's a global variable. 1308 Out << '3'; 1309 // It's a struct called __s_GUID. 1310 mangleArtificalTagType(TTK_Struct, "__s_GUID"); 1311 // It's const. 1312 Out << 'B'; 1313 return; 1314 } 1315 1316 // As bad as this diagnostic is, it's better than crashing. 1317 DiagnosticsEngine &Diags = Context.getDiags(); 1318 unsigned DiagID = Diags.getCustomDiagID( 1319 DiagnosticsEngine::Error, "cannot yet mangle expression type %0"); 1320 Diags.Report(E->getExprLoc(), DiagID) << E->getStmtClassName() 1321 << E->getSourceRange(); 1322 } 1323 1324 void MicrosoftCXXNameMangler::mangleTemplateArgs( 1325 const TemplateDecl *TD, const TemplateArgumentList &TemplateArgs) { 1326 // <template-args> ::= <template-arg>+ 1327 const TemplateParameterList *TPL = TD->getTemplateParameters(); 1328 assert(TPL->size() == TemplateArgs.size() && 1329 "size mismatch between args and parms!"); 1330 1331 unsigned Idx = 0; 1332 for (const TemplateArgument &TA : TemplateArgs.asArray()) 1333 mangleTemplateArg(TD, TA, TPL->getParam(Idx++)); 1334 } 1335 1336 void MicrosoftCXXNameMangler::mangleTemplateArg(const TemplateDecl *TD, 1337 const TemplateArgument &TA, 1338 const NamedDecl *Parm) { 1339 // <template-arg> ::= <type> 1340 // ::= <integer-literal> 1341 // ::= <member-data-pointer> 1342 // ::= <member-function-pointer> 1343 // ::= $E? <name> <type-encoding> 1344 // ::= $1? <name> <type-encoding> 1345 // ::= $0A@ 1346 // ::= <template-args> 1347 1348 switch (TA.getKind()) { 1349 case TemplateArgument::Null: 1350 llvm_unreachable("Can't mangle null template arguments!"); 1351 case TemplateArgument::TemplateExpansion: 1352 llvm_unreachable("Can't mangle template expansion arguments!"); 1353 case TemplateArgument::Type: { 1354 QualType T = TA.getAsType(); 1355 mangleType(T, SourceRange(), QMM_Escape); 1356 break; 1357 } 1358 case TemplateArgument::Declaration: { 1359 const NamedDecl *ND = cast<NamedDecl>(TA.getAsDecl()); 1360 if (isa<FieldDecl>(ND) || isa<IndirectFieldDecl>(ND)) { 1361 mangleMemberDataPointer( 1362 cast<CXXRecordDecl>(ND->getDeclContext())->getMostRecentDecl(), 1363 cast<ValueDecl>(ND)); 1364 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) { 1365 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD); 1366 if (MD && MD->isInstance()) { 1367 mangleMemberFunctionPointer(MD->getParent()->getMostRecentDecl(), MD); 1368 } else { 1369 Out << "$1?"; 1370 mangleName(FD); 1371 mangleFunctionEncoding(FD, /*ShouldMangle=*/true); 1372 } 1373 } else { 1374 mangle(ND, TA.getParamTypeForDecl()->isReferenceType() ? "$E?" : "$1?"); 1375 } 1376 break; 1377 } 1378 case TemplateArgument::Integral: 1379 mangleIntegerLiteral(TA.getAsIntegral(), 1380 TA.getIntegralType()->isBooleanType()); 1381 break; 1382 case TemplateArgument::NullPtr: { 1383 QualType T = TA.getNullPtrType(); 1384 if (const MemberPointerType *MPT = T->getAs<MemberPointerType>()) { 1385 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 1386 if (MPT->isMemberFunctionPointerType() && 1387 !isa<FunctionTemplateDecl>(TD)) { 1388 mangleMemberFunctionPointer(RD, nullptr); 1389 return; 1390 } 1391 if (MPT->isMemberDataPointer()) { 1392 if (!isa<FunctionTemplateDecl>(TD)) { 1393 mangleMemberDataPointer(RD, nullptr); 1394 return; 1395 } 1396 // nullptr data pointers are always represented with a single field 1397 // which is initialized with either 0 or -1. Why -1? Well, we need to 1398 // distinguish the case where the data member is at offset zero in the 1399 // record. 1400 // However, we are free to use 0 *if* we would use multiple fields for 1401 // non-nullptr member pointers. 1402 if (!RD->nullFieldOffsetIsZero()) { 1403 mangleIntegerLiteral(llvm::APSInt::get(-1), /*IsBoolean=*/false); 1404 return; 1405 } 1406 } 1407 } 1408 mangleIntegerLiteral(llvm::APSInt::getUnsigned(0), /*IsBoolean=*/false); 1409 break; 1410 } 1411 case TemplateArgument::Expression: 1412 mangleExpression(TA.getAsExpr()); 1413 break; 1414 case TemplateArgument::Pack: { 1415 ArrayRef<TemplateArgument> TemplateArgs = TA.getPackAsArray(); 1416 if (TemplateArgs.empty()) { 1417 if (isa<TemplateTypeParmDecl>(Parm) || 1418 isa<TemplateTemplateParmDecl>(Parm)) 1419 // MSVC 2015 changed the mangling for empty expanded template packs, 1420 // use the old mangling for link compatibility for old versions. 1421 Out << (Context.getASTContext().getLangOpts().isCompatibleWithMSVC( 1422 LangOptions::MSVC2015) 1423 ? "$$V" 1424 : "$$$V"); 1425 else if (isa<NonTypeTemplateParmDecl>(Parm)) 1426 Out << "$S"; 1427 else 1428 llvm_unreachable("unexpected template parameter decl!"); 1429 } else { 1430 for (const TemplateArgument &PA : TemplateArgs) 1431 mangleTemplateArg(TD, PA, Parm); 1432 } 1433 break; 1434 } 1435 case TemplateArgument::Template: { 1436 const NamedDecl *ND = 1437 TA.getAsTemplate().getAsTemplateDecl()->getTemplatedDecl(); 1438 if (const auto *TD = dyn_cast<TagDecl>(ND)) { 1439 mangleType(TD); 1440 } else if (isa<TypeAliasDecl>(ND)) { 1441 Out << "$$Y"; 1442 mangleName(ND); 1443 } else { 1444 llvm_unreachable("unexpected template template NamedDecl!"); 1445 } 1446 break; 1447 } 1448 } 1449 } 1450 1451 void MicrosoftCXXNameMangler::mangleQualifiers(Qualifiers Quals, 1452 bool IsMember) { 1453 // <cvr-qualifiers> ::= [E] [F] [I] <base-cvr-qualifiers> 1454 // 'E' means __ptr64 (32-bit only); 'F' means __unaligned (32/64-bit only); 1455 // 'I' means __restrict (32/64-bit). 1456 // Note that the MSVC __restrict keyword isn't the same as the C99 restrict 1457 // keyword! 1458 // <base-cvr-qualifiers> ::= A # near 1459 // ::= B # near const 1460 // ::= C # near volatile 1461 // ::= D # near const volatile 1462 // ::= E # far (16-bit) 1463 // ::= F # far const (16-bit) 1464 // ::= G # far volatile (16-bit) 1465 // ::= H # far const volatile (16-bit) 1466 // ::= I # huge (16-bit) 1467 // ::= J # huge const (16-bit) 1468 // ::= K # huge volatile (16-bit) 1469 // ::= L # huge const volatile (16-bit) 1470 // ::= M <basis> # based 1471 // ::= N <basis> # based const 1472 // ::= O <basis> # based volatile 1473 // ::= P <basis> # based const volatile 1474 // ::= Q # near member 1475 // ::= R # near const member 1476 // ::= S # near volatile member 1477 // ::= T # near const volatile member 1478 // ::= U # far member (16-bit) 1479 // ::= V # far const member (16-bit) 1480 // ::= W # far volatile member (16-bit) 1481 // ::= X # far const volatile member (16-bit) 1482 // ::= Y # huge member (16-bit) 1483 // ::= Z # huge const member (16-bit) 1484 // ::= 0 # huge volatile member (16-bit) 1485 // ::= 1 # huge const volatile member (16-bit) 1486 // ::= 2 <basis> # based member 1487 // ::= 3 <basis> # based const member 1488 // ::= 4 <basis> # based volatile member 1489 // ::= 5 <basis> # based const volatile member 1490 // ::= 6 # near function (pointers only) 1491 // ::= 7 # far function (pointers only) 1492 // ::= 8 # near method (pointers only) 1493 // ::= 9 # far method (pointers only) 1494 // ::= _A <basis> # based function (pointers only) 1495 // ::= _B <basis> # based function (far?) (pointers only) 1496 // ::= _C <basis> # based method (pointers only) 1497 // ::= _D <basis> # based method (far?) (pointers only) 1498 // ::= _E # block (Clang) 1499 // <basis> ::= 0 # __based(void) 1500 // ::= 1 # __based(segment)? 1501 // ::= 2 <name> # __based(name) 1502 // ::= 3 # ? 1503 // ::= 4 # ? 1504 // ::= 5 # not really based 1505 bool HasConst = Quals.hasConst(), 1506 HasVolatile = Quals.hasVolatile(); 1507 1508 if (!IsMember) { 1509 if (HasConst && HasVolatile) { 1510 Out << 'D'; 1511 } else if (HasVolatile) { 1512 Out << 'C'; 1513 } else if (HasConst) { 1514 Out << 'B'; 1515 } else { 1516 Out << 'A'; 1517 } 1518 } else { 1519 if (HasConst && HasVolatile) { 1520 Out << 'T'; 1521 } else if (HasVolatile) { 1522 Out << 'S'; 1523 } else if (HasConst) { 1524 Out << 'R'; 1525 } else { 1526 Out << 'Q'; 1527 } 1528 } 1529 1530 // FIXME: For now, just drop all extension qualifiers on the floor. 1531 } 1532 1533 void 1534 MicrosoftCXXNameMangler::mangleRefQualifier(RefQualifierKind RefQualifier) { 1535 // <ref-qualifier> ::= G # lvalue reference 1536 // ::= H # rvalue-reference 1537 switch (RefQualifier) { 1538 case RQ_None: 1539 break; 1540 1541 case RQ_LValue: 1542 Out << 'G'; 1543 break; 1544 1545 case RQ_RValue: 1546 Out << 'H'; 1547 break; 1548 } 1549 } 1550 1551 void MicrosoftCXXNameMangler::manglePointerExtQualifiers(Qualifiers Quals, 1552 QualType PointeeType) { 1553 bool HasRestrict = Quals.hasRestrict(); 1554 if (PointersAre64Bit && 1555 (PointeeType.isNull() || !PointeeType->isFunctionType())) 1556 Out << 'E'; 1557 1558 if (HasRestrict) 1559 Out << 'I'; 1560 1561 if (Quals.hasUnaligned() || 1562 (!PointeeType.isNull() && PointeeType.getLocalQualifiers().hasUnaligned())) 1563 Out << 'F'; 1564 } 1565 1566 void MicrosoftCXXNameMangler::manglePointerCVQualifiers(Qualifiers Quals) { 1567 // <pointer-cv-qualifiers> ::= P # no qualifiers 1568 // ::= Q # const 1569 // ::= R # volatile 1570 // ::= S # const volatile 1571 bool HasConst = Quals.hasConst(), 1572 HasVolatile = Quals.hasVolatile(); 1573 1574 if (HasConst && HasVolatile) { 1575 Out << 'S'; 1576 } else if (HasVolatile) { 1577 Out << 'R'; 1578 } else if (HasConst) { 1579 Out << 'Q'; 1580 } else { 1581 Out << 'P'; 1582 } 1583 } 1584 1585 void MicrosoftCXXNameMangler::mangleArgumentType(QualType T, 1586 SourceRange Range) { 1587 // MSVC will backreference two canonically equivalent types that have slightly 1588 // different manglings when mangled alone. 1589 1590 // Decayed types do not match up with non-decayed versions of the same type. 1591 // 1592 // e.g. 1593 // void (*x)(void) will not form a backreference with void x(void) 1594 void *TypePtr; 1595 if (const auto *DT = T->getAs<DecayedType>()) { 1596 QualType OriginalType = DT->getOriginalType(); 1597 // All decayed ArrayTypes should be treated identically; as-if they were 1598 // a decayed IncompleteArrayType. 1599 if (const auto *AT = getASTContext().getAsArrayType(OriginalType)) 1600 OriginalType = getASTContext().getIncompleteArrayType( 1601 AT->getElementType(), AT->getSizeModifier(), 1602 AT->getIndexTypeCVRQualifiers()); 1603 1604 TypePtr = OriginalType.getCanonicalType().getAsOpaquePtr(); 1605 // If the original parameter was textually written as an array, 1606 // instead treat the decayed parameter like it's const. 1607 // 1608 // e.g. 1609 // int [] -> int * const 1610 if (OriginalType->isArrayType()) 1611 T = T.withConst(); 1612 } else { 1613 TypePtr = T.getCanonicalType().getAsOpaquePtr(); 1614 } 1615 1616 ArgBackRefMap::iterator Found = TypeBackReferences.find(TypePtr); 1617 1618 if (Found == TypeBackReferences.end()) { 1619 size_t OutSizeBefore = Out.tell(); 1620 1621 mangleType(T, Range, QMM_Drop); 1622 1623 // See if it's worth creating a back reference. 1624 // Only types longer than 1 character are considered 1625 // and only 10 back references slots are available: 1626 bool LongerThanOneChar = (Out.tell() - OutSizeBefore > 1); 1627 if (LongerThanOneChar && TypeBackReferences.size() < 10) { 1628 size_t Size = TypeBackReferences.size(); 1629 TypeBackReferences[TypePtr] = Size; 1630 } 1631 } else { 1632 Out << Found->second; 1633 } 1634 } 1635 1636 void MicrosoftCXXNameMangler::manglePassObjectSizeArg( 1637 const PassObjectSizeAttr *POSA) { 1638 int Type = POSA->getType(); 1639 1640 auto Iter = PassObjectSizeArgs.insert(Type).first; 1641 auto *TypePtr = (const void *)&*Iter; 1642 ArgBackRefMap::iterator Found = TypeBackReferences.find(TypePtr); 1643 1644 if (Found == TypeBackReferences.end()) { 1645 mangleArtificalTagType(TTK_Enum, "__pass_object_size" + llvm::utostr(Type), 1646 {"__clang"}); 1647 1648 if (TypeBackReferences.size() < 10) { 1649 size_t Size = TypeBackReferences.size(); 1650 TypeBackReferences[TypePtr] = Size; 1651 } 1652 } else { 1653 Out << Found->second; 1654 } 1655 } 1656 1657 void MicrosoftCXXNameMangler::mangleType(QualType T, SourceRange Range, 1658 QualifierMangleMode QMM) { 1659 // Don't use the canonical types. MSVC includes things like 'const' on 1660 // pointer arguments to function pointers that canonicalization strips away. 1661 T = T.getDesugaredType(getASTContext()); 1662 Qualifiers Quals = T.getLocalQualifiers(); 1663 if (const ArrayType *AT = getASTContext().getAsArrayType(T)) { 1664 // If there were any Quals, getAsArrayType() pushed them onto the array 1665 // element type. 1666 if (QMM == QMM_Mangle) 1667 Out << 'A'; 1668 else if (QMM == QMM_Escape || QMM == QMM_Result) 1669 Out << "$$B"; 1670 mangleArrayType(AT); 1671 return; 1672 } 1673 1674 bool IsPointer = T->isAnyPointerType() || T->isMemberPointerType() || 1675 T->isReferenceType() || T->isBlockPointerType(); 1676 1677 switch (QMM) { 1678 case QMM_Drop: 1679 break; 1680 case QMM_Mangle: 1681 if (const FunctionType *FT = dyn_cast<FunctionType>(T)) { 1682 Out << '6'; 1683 mangleFunctionType(FT); 1684 return; 1685 } 1686 mangleQualifiers(Quals, false); 1687 break; 1688 case QMM_Escape: 1689 if (!IsPointer && Quals) { 1690 Out << "$$C"; 1691 mangleQualifiers(Quals, false); 1692 } 1693 break; 1694 case QMM_Result: 1695 // Presence of __unaligned qualifier shouldn't affect mangling here. 1696 Quals.removeUnaligned(); 1697 if ((!IsPointer && Quals) || isa<TagType>(T)) { 1698 Out << '?'; 1699 mangleQualifiers(Quals, false); 1700 } 1701 break; 1702 } 1703 1704 const Type *ty = T.getTypePtr(); 1705 1706 switch (ty->getTypeClass()) { 1707 #define ABSTRACT_TYPE(CLASS, PARENT) 1708 #define NON_CANONICAL_TYPE(CLASS, PARENT) \ 1709 case Type::CLASS: \ 1710 llvm_unreachable("can't mangle non-canonical type " #CLASS "Type"); \ 1711 return; 1712 #define TYPE(CLASS, PARENT) \ 1713 case Type::CLASS: \ 1714 mangleType(cast<CLASS##Type>(ty), Quals, Range); \ 1715 break; 1716 #include "clang/AST/TypeNodes.def" 1717 #undef ABSTRACT_TYPE 1718 #undef NON_CANONICAL_TYPE 1719 #undef TYPE 1720 } 1721 } 1722 1723 void MicrosoftCXXNameMangler::mangleType(const BuiltinType *T, Qualifiers, 1724 SourceRange Range) { 1725 // <type> ::= <builtin-type> 1726 // <builtin-type> ::= X # void 1727 // ::= C # signed char 1728 // ::= D # char 1729 // ::= E # unsigned char 1730 // ::= F # short 1731 // ::= G # unsigned short (or wchar_t if it's not a builtin) 1732 // ::= H # int 1733 // ::= I # unsigned int 1734 // ::= J # long 1735 // ::= K # unsigned long 1736 // L # <none> 1737 // ::= M # float 1738 // ::= N # double 1739 // ::= O # long double (__float80 is mangled differently) 1740 // ::= _J # long long, __int64 1741 // ::= _K # unsigned long long, __int64 1742 // ::= _L # __int128 1743 // ::= _M # unsigned __int128 1744 // ::= _N # bool 1745 // _O # <array in parameter> 1746 // ::= _T # __float80 (Intel) 1747 // ::= _S # char16_t 1748 // ::= _U # char32_t 1749 // ::= _W # wchar_t 1750 // ::= _Z # __float80 (Digital Mars) 1751 switch (T->getKind()) { 1752 case BuiltinType::Void: 1753 Out << 'X'; 1754 break; 1755 case BuiltinType::SChar: 1756 Out << 'C'; 1757 break; 1758 case BuiltinType::Char_U: 1759 case BuiltinType::Char_S: 1760 Out << 'D'; 1761 break; 1762 case BuiltinType::UChar: 1763 Out << 'E'; 1764 break; 1765 case BuiltinType::Short: 1766 Out << 'F'; 1767 break; 1768 case BuiltinType::UShort: 1769 Out << 'G'; 1770 break; 1771 case BuiltinType::Int: 1772 Out << 'H'; 1773 break; 1774 case BuiltinType::UInt: 1775 Out << 'I'; 1776 break; 1777 case BuiltinType::Long: 1778 Out << 'J'; 1779 break; 1780 case BuiltinType::ULong: 1781 Out << 'K'; 1782 break; 1783 case BuiltinType::Float: 1784 Out << 'M'; 1785 break; 1786 case BuiltinType::Double: 1787 Out << 'N'; 1788 break; 1789 // TODO: Determine size and mangle accordingly 1790 case BuiltinType::LongDouble: 1791 Out << 'O'; 1792 break; 1793 case BuiltinType::LongLong: 1794 Out << "_J"; 1795 break; 1796 case BuiltinType::ULongLong: 1797 Out << "_K"; 1798 break; 1799 case BuiltinType::Int128: 1800 Out << "_L"; 1801 break; 1802 case BuiltinType::UInt128: 1803 Out << "_M"; 1804 break; 1805 case BuiltinType::Bool: 1806 Out << "_N"; 1807 break; 1808 case BuiltinType::Char16: 1809 Out << "_S"; 1810 break; 1811 case BuiltinType::Char32: 1812 Out << "_U"; 1813 break; 1814 case BuiltinType::WChar_S: 1815 case BuiltinType::WChar_U: 1816 Out << "_W"; 1817 break; 1818 1819 #define BUILTIN_TYPE(Id, SingletonId) 1820 #define PLACEHOLDER_TYPE(Id, SingletonId) \ 1821 case BuiltinType::Id: 1822 #include "clang/AST/BuiltinTypes.def" 1823 case BuiltinType::Dependent: 1824 llvm_unreachable("placeholder types shouldn't get to name mangling"); 1825 1826 case BuiltinType::ObjCId: 1827 Out << "PA"; 1828 mangleArtificalTagType(TTK_Struct, "objc_object"); 1829 break; 1830 case BuiltinType::ObjCClass: 1831 Out << "PA"; 1832 mangleArtificalTagType(TTK_Struct, "objc_class"); 1833 break; 1834 case BuiltinType::ObjCSel: 1835 Out << "PA"; 1836 mangleArtificalTagType(TTK_Struct, "objc_selector"); 1837 break; 1838 1839 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 1840 case BuiltinType::Id: \ 1841 Out << "PAUocl_" #ImgType "_" #Suffix "@@"; \ 1842 break; 1843 #include "clang/Basic/OpenCLImageTypes.def" 1844 case BuiltinType::OCLSampler: 1845 Out << "PA"; 1846 mangleArtificalTagType(TTK_Struct, "ocl_sampler"); 1847 break; 1848 case BuiltinType::OCLEvent: 1849 Out << "PA"; 1850 mangleArtificalTagType(TTK_Struct, "ocl_event"); 1851 break; 1852 case BuiltinType::OCLClkEvent: 1853 Out << "PA"; 1854 mangleArtificalTagType(TTK_Struct, "ocl_clkevent"); 1855 break; 1856 case BuiltinType::OCLQueue: 1857 Out << "PA"; 1858 mangleArtificalTagType(TTK_Struct, "ocl_queue"); 1859 break; 1860 case BuiltinType::OCLReserveID: 1861 Out << "PA"; 1862 mangleArtificalTagType(TTK_Struct, "ocl_reserveid"); 1863 break; 1864 1865 case BuiltinType::NullPtr: 1866 Out << "$$T"; 1867 break; 1868 1869 case BuiltinType::Float16: 1870 case BuiltinType::Float128: 1871 case BuiltinType::Half: { 1872 DiagnosticsEngine &Diags = Context.getDiags(); 1873 unsigned DiagID = Diags.getCustomDiagID( 1874 DiagnosticsEngine::Error, "cannot mangle this built-in %0 type yet"); 1875 Diags.Report(Range.getBegin(), DiagID) 1876 << T->getName(Context.getASTContext().getPrintingPolicy()) << Range; 1877 break; 1878 } 1879 } 1880 } 1881 1882 // <type> ::= <function-type> 1883 void MicrosoftCXXNameMangler::mangleType(const FunctionProtoType *T, Qualifiers, 1884 SourceRange) { 1885 // Structors only appear in decls, so at this point we know it's not a 1886 // structor type. 1887 // FIXME: This may not be lambda-friendly. 1888 if (T->getTypeQuals() || T->getRefQualifier() != RQ_None) { 1889 Out << "$$A8@@"; 1890 mangleFunctionType(T, /*D=*/nullptr, /*ForceThisQuals=*/true); 1891 } else { 1892 Out << "$$A6"; 1893 mangleFunctionType(T); 1894 } 1895 } 1896 void MicrosoftCXXNameMangler::mangleType(const FunctionNoProtoType *T, 1897 Qualifiers, SourceRange) { 1898 Out << "$$A6"; 1899 mangleFunctionType(T); 1900 } 1901 1902 void MicrosoftCXXNameMangler::mangleFunctionType(const FunctionType *T, 1903 const FunctionDecl *D, 1904 bool ForceThisQuals) { 1905 // <function-type> ::= <this-cvr-qualifiers> <calling-convention> 1906 // <return-type> <argument-list> <throw-spec> 1907 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(T); 1908 1909 SourceRange Range; 1910 if (D) Range = D->getSourceRange(); 1911 1912 bool IsInLambda = false; 1913 bool IsStructor = false, HasThisQuals = ForceThisQuals, IsCtorClosure = false; 1914 CallingConv CC = T->getCallConv(); 1915 if (const CXXMethodDecl *MD = dyn_cast_or_null<CXXMethodDecl>(D)) { 1916 if (MD->getParent()->isLambda()) 1917 IsInLambda = true; 1918 if (MD->isInstance()) 1919 HasThisQuals = true; 1920 if (isa<CXXDestructorDecl>(MD)) { 1921 IsStructor = true; 1922 } else if (isa<CXXConstructorDecl>(MD)) { 1923 IsStructor = true; 1924 IsCtorClosure = (StructorType == Ctor_CopyingClosure || 1925 StructorType == Ctor_DefaultClosure) && 1926 isStructorDecl(MD); 1927 if (IsCtorClosure) 1928 CC = getASTContext().getDefaultCallingConvention( 1929 /*IsVariadic=*/false, /*IsCXXMethod=*/true); 1930 } 1931 } 1932 1933 // If this is a C++ instance method, mangle the CVR qualifiers for the 1934 // this pointer. 1935 if (HasThisQuals) { 1936 Qualifiers Quals = Qualifiers::fromCVRUMask(Proto->getTypeQuals()); 1937 manglePointerExtQualifiers(Quals, /*PointeeType=*/QualType()); 1938 mangleRefQualifier(Proto->getRefQualifier()); 1939 mangleQualifiers(Quals, /*IsMember=*/false); 1940 } 1941 1942 mangleCallingConvention(CC); 1943 1944 // <return-type> ::= <type> 1945 // ::= @ # structors (they have no declared return type) 1946 if (IsStructor) { 1947 if (isa<CXXDestructorDecl>(D) && isStructorDecl(D)) { 1948 // The scalar deleting destructor takes an extra int argument which is not 1949 // reflected in the AST. 1950 if (StructorType == Dtor_Deleting) { 1951 Out << (PointersAre64Bit ? "PEAXI@Z" : "PAXI@Z"); 1952 return; 1953 } 1954 // The vbase destructor returns void which is not reflected in the AST. 1955 if (StructorType == Dtor_Complete) { 1956 Out << "XXZ"; 1957 return; 1958 } 1959 } 1960 if (IsCtorClosure) { 1961 // Default constructor closure and copy constructor closure both return 1962 // void. 1963 Out << 'X'; 1964 1965 if (StructorType == Ctor_DefaultClosure) { 1966 // Default constructor closure always has no arguments. 1967 Out << 'X'; 1968 } else if (StructorType == Ctor_CopyingClosure) { 1969 // Copy constructor closure always takes an unqualified reference. 1970 mangleArgumentType(getASTContext().getLValueReferenceType( 1971 Proto->getParamType(0) 1972 ->getAs<LValueReferenceType>() 1973 ->getPointeeType(), 1974 /*SpelledAsLValue=*/true), 1975 Range); 1976 Out << '@'; 1977 } else { 1978 llvm_unreachable("unexpected constructor closure!"); 1979 } 1980 Out << 'Z'; 1981 return; 1982 } 1983 Out << '@'; 1984 } else { 1985 QualType ResultType = T->getReturnType(); 1986 if (const auto *AT = 1987 dyn_cast_or_null<AutoType>(ResultType->getContainedAutoType())) { 1988 Out << '?'; 1989 mangleQualifiers(ResultType.getLocalQualifiers(), /*IsMember=*/false); 1990 Out << '?'; 1991 assert(AT->getKeyword() != AutoTypeKeyword::GNUAutoType && 1992 "shouldn't need to mangle __auto_type!"); 1993 mangleSourceName(AT->isDecltypeAuto() ? "<decltype-auto>" : "<auto>"); 1994 Out << '@'; 1995 } else if (IsInLambda) { 1996 Out << '@'; 1997 } else { 1998 if (ResultType->isVoidType()) 1999 ResultType = ResultType.getUnqualifiedType(); 2000 mangleType(ResultType, Range, QMM_Result); 2001 } 2002 } 2003 2004 // <argument-list> ::= X # void 2005 // ::= <type>+ @ 2006 // ::= <type>* Z # varargs 2007 if (!Proto) { 2008 // Function types without prototypes can arise when mangling a function type 2009 // within an overloadable function in C. We mangle these as the absence of 2010 // any parameter types (not even an empty parameter list). 2011 Out << '@'; 2012 } else if (Proto->getNumParams() == 0 && !Proto->isVariadic()) { 2013 Out << 'X'; 2014 } else { 2015 // Happens for function pointer type arguments for example. 2016 for (unsigned I = 0, E = Proto->getNumParams(); I != E; ++I) { 2017 mangleArgumentType(Proto->getParamType(I), Range); 2018 // Mangle each pass_object_size parameter as if it's a parameter of enum 2019 // type passed directly after the parameter with the pass_object_size 2020 // attribute. The aforementioned enum's name is __pass_object_size, and we 2021 // pretend it resides in a top-level namespace called __clang. 2022 // 2023 // FIXME: Is there a defined extension notation for the MS ABI, or is it 2024 // necessary to just cross our fingers and hope this type+namespace 2025 // combination doesn't conflict with anything? 2026 if (D) 2027 if (const auto *P = D->getParamDecl(I)->getAttr<PassObjectSizeAttr>()) 2028 manglePassObjectSizeArg(P); 2029 } 2030 // <builtin-type> ::= Z # ellipsis 2031 if (Proto->isVariadic()) 2032 Out << 'Z'; 2033 else 2034 Out << '@'; 2035 } 2036 2037 mangleThrowSpecification(Proto); 2038 } 2039 2040 void MicrosoftCXXNameMangler::mangleFunctionClass(const FunctionDecl *FD) { 2041 // <function-class> ::= <member-function> E? # E designates a 64-bit 'this' 2042 // # pointer. in 64-bit mode *all* 2043 // # 'this' pointers are 64-bit. 2044 // ::= <global-function> 2045 // <member-function> ::= A # private: near 2046 // ::= B # private: far 2047 // ::= C # private: static near 2048 // ::= D # private: static far 2049 // ::= E # private: virtual near 2050 // ::= F # private: virtual far 2051 // ::= I # protected: near 2052 // ::= J # protected: far 2053 // ::= K # protected: static near 2054 // ::= L # protected: static far 2055 // ::= M # protected: virtual near 2056 // ::= N # protected: virtual far 2057 // ::= Q # public: near 2058 // ::= R # public: far 2059 // ::= S # public: static near 2060 // ::= T # public: static far 2061 // ::= U # public: virtual near 2062 // ::= V # public: virtual far 2063 // <global-function> ::= Y # global near 2064 // ::= Z # global far 2065 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 2066 bool IsVirtual = MD->isVirtual(); 2067 // When mangling vbase destructor variants, ignore whether or not the 2068 // underlying destructor was defined to be virtual. 2069 if (isa<CXXDestructorDecl>(MD) && isStructorDecl(MD) && 2070 StructorType == Dtor_Complete) { 2071 IsVirtual = false; 2072 } 2073 switch (MD->getAccess()) { 2074 case AS_none: 2075 llvm_unreachable("Unsupported access specifier"); 2076 case AS_private: 2077 if (MD->isStatic()) 2078 Out << 'C'; 2079 else if (IsVirtual) 2080 Out << 'E'; 2081 else 2082 Out << 'A'; 2083 break; 2084 case AS_protected: 2085 if (MD->isStatic()) 2086 Out << 'K'; 2087 else if (IsVirtual) 2088 Out << 'M'; 2089 else 2090 Out << 'I'; 2091 break; 2092 case AS_public: 2093 if (MD->isStatic()) 2094 Out << 'S'; 2095 else if (IsVirtual) 2096 Out << 'U'; 2097 else 2098 Out << 'Q'; 2099 } 2100 } else { 2101 Out << 'Y'; 2102 } 2103 } 2104 void MicrosoftCXXNameMangler::mangleCallingConvention(CallingConv CC) { 2105 // <calling-convention> ::= A # __cdecl 2106 // ::= B # __export __cdecl 2107 // ::= C # __pascal 2108 // ::= D # __export __pascal 2109 // ::= E # __thiscall 2110 // ::= F # __export __thiscall 2111 // ::= G # __stdcall 2112 // ::= H # __export __stdcall 2113 // ::= I # __fastcall 2114 // ::= J # __export __fastcall 2115 // ::= Q # __vectorcall 2116 // ::= w # __regcall 2117 // The 'export' calling conventions are from a bygone era 2118 // (*cough*Win16*cough*) when functions were declared for export with 2119 // that keyword. (It didn't actually export them, it just made them so 2120 // that they could be in a DLL and somebody from another module could call 2121 // them.) 2122 2123 switch (CC) { 2124 default: 2125 llvm_unreachable("Unsupported CC for mangling"); 2126 case CC_Win64: 2127 case CC_X86_64SysV: 2128 case CC_C: Out << 'A'; break; 2129 case CC_X86Pascal: Out << 'C'; break; 2130 case CC_X86ThisCall: Out << 'E'; break; 2131 case CC_X86StdCall: Out << 'G'; break; 2132 case CC_X86FastCall: Out << 'I'; break; 2133 case CC_X86VectorCall: Out << 'Q'; break; 2134 case CC_X86RegCall: Out << 'w'; break; 2135 } 2136 } 2137 void MicrosoftCXXNameMangler::mangleCallingConvention(const FunctionType *T) { 2138 mangleCallingConvention(T->getCallConv()); 2139 } 2140 void MicrosoftCXXNameMangler::mangleThrowSpecification( 2141 const FunctionProtoType *FT) { 2142 // <throw-spec> ::= Z # throw(...) (default) 2143 // ::= @ # throw() or __declspec/__attribute__((nothrow)) 2144 // ::= <type>+ 2145 // NOTE: Since the Microsoft compiler ignores throw specifications, they are 2146 // all actually mangled as 'Z'. (They're ignored because their associated 2147 // functionality isn't implemented, and probably never will be.) 2148 Out << 'Z'; 2149 } 2150 2151 void MicrosoftCXXNameMangler::mangleType(const UnresolvedUsingType *T, 2152 Qualifiers, SourceRange Range) { 2153 // Probably should be mangled as a template instantiation; need to see what 2154 // VC does first. 2155 DiagnosticsEngine &Diags = Context.getDiags(); 2156 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2157 "cannot mangle this unresolved dependent type yet"); 2158 Diags.Report(Range.getBegin(), DiagID) 2159 << Range; 2160 } 2161 2162 // <type> ::= <union-type> | <struct-type> | <class-type> | <enum-type> 2163 // <union-type> ::= T <name> 2164 // <struct-type> ::= U <name> 2165 // <class-type> ::= V <name> 2166 // <enum-type> ::= W4 <name> 2167 void MicrosoftCXXNameMangler::mangleTagTypeKind(TagTypeKind TTK) { 2168 switch (TTK) { 2169 case TTK_Union: 2170 Out << 'T'; 2171 break; 2172 case TTK_Struct: 2173 case TTK_Interface: 2174 Out << 'U'; 2175 break; 2176 case TTK_Class: 2177 Out << 'V'; 2178 break; 2179 case TTK_Enum: 2180 Out << "W4"; 2181 break; 2182 } 2183 } 2184 void MicrosoftCXXNameMangler::mangleType(const EnumType *T, Qualifiers, 2185 SourceRange) { 2186 mangleType(cast<TagType>(T)->getDecl()); 2187 } 2188 void MicrosoftCXXNameMangler::mangleType(const RecordType *T, Qualifiers, 2189 SourceRange) { 2190 mangleType(cast<TagType>(T)->getDecl()); 2191 } 2192 void MicrosoftCXXNameMangler::mangleType(const TagDecl *TD) { 2193 mangleTagTypeKind(TD->getTagKind()); 2194 mangleName(TD); 2195 } 2196 void MicrosoftCXXNameMangler::mangleArtificalTagType( 2197 TagTypeKind TK, StringRef UnqualifiedName, ArrayRef<StringRef> NestedNames) { 2198 // <name> ::= <unscoped-name> {[<named-scope>]+ | [<nested-name>]}? @ 2199 mangleTagTypeKind(TK); 2200 2201 // Always start with the unqualified name. 2202 mangleSourceName(UnqualifiedName); 2203 2204 for (auto I = NestedNames.rbegin(), E = NestedNames.rend(); I != E; ++I) 2205 mangleSourceName(*I); 2206 2207 // Terminate the whole name with an '@'. 2208 Out << '@'; 2209 } 2210 2211 // <type> ::= <array-type> 2212 // <array-type> ::= <pointer-cvr-qualifiers> <cvr-qualifiers> 2213 // [Y <dimension-count> <dimension>+] 2214 // <element-type> # as global, E is never required 2215 // It's supposed to be the other way around, but for some strange reason, it 2216 // isn't. Today this behavior is retained for the sole purpose of backwards 2217 // compatibility. 2218 void MicrosoftCXXNameMangler::mangleDecayedArrayType(const ArrayType *T) { 2219 // This isn't a recursive mangling, so now we have to do it all in this 2220 // one call. 2221 manglePointerCVQualifiers(T->getElementType().getQualifiers()); 2222 mangleType(T->getElementType(), SourceRange()); 2223 } 2224 void MicrosoftCXXNameMangler::mangleType(const ConstantArrayType *T, Qualifiers, 2225 SourceRange) { 2226 llvm_unreachable("Should have been special cased"); 2227 } 2228 void MicrosoftCXXNameMangler::mangleType(const VariableArrayType *T, Qualifiers, 2229 SourceRange) { 2230 llvm_unreachable("Should have been special cased"); 2231 } 2232 void MicrosoftCXXNameMangler::mangleType(const DependentSizedArrayType *T, 2233 Qualifiers, SourceRange) { 2234 llvm_unreachable("Should have been special cased"); 2235 } 2236 void MicrosoftCXXNameMangler::mangleType(const IncompleteArrayType *T, 2237 Qualifiers, SourceRange) { 2238 llvm_unreachable("Should have been special cased"); 2239 } 2240 void MicrosoftCXXNameMangler::mangleArrayType(const ArrayType *T) { 2241 QualType ElementTy(T, 0); 2242 SmallVector<llvm::APInt, 3> Dimensions; 2243 for (;;) { 2244 if (ElementTy->isConstantArrayType()) { 2245 const ConstantArrayType *CAT = 2246 getASTContext().getAsConstantArrayType(ElementTy); 2247 Dimensions.push_back(CAT->getSize()); 2248 ElementTy = CAT->getElementType(); 2249 } else if (ElementTy->isIncompleteArrayType()) { 2250 const IncompleteArrayType *IAT = 2251 getASTContext().getAsIncompleteArrayType(ElementTy); 2252 Dimensions.push_back(llvm::APInt(32, 0)); 2253 ElementTy = IAT->getElementType(); 2254 } else if (ElementTy->isVariableArrayType()) { 2255 const VariableArrayType *VAT = 2256 getASTContext().getAsVariableArrayType(ElementTy); 2257 Dimensions.push_back(llvm::APInt(32, 0)); 2258 ElementTy = VAT->getElementType(); 2259 } else if (ElementTy->isDependentSizedArrayType()) { 2260 // The dependent expression has to be folded into a constant (TODO). 2261 const DependentSizedArrayType *DSAT = 2262 getASTContext().getAsDependentSizedArrayType(ElementTy); 2263 DiagnosticsEngine &Diags = Context.getDiags(); 2264 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2265 "cannot mangle this dependent-length array yet"); 2266 Diags.Report(DSAT->getSizeExpr()->getExprLoc(), DiagID) 2267 << DSAT->getBracketsRange(); 2268 return; 2269 } else { 2270 break; 2271 } 2272 } 2273 Out << 'Y'; 2274 // <dimension-count> ::= <number> # number of extra dimensions 2275 mangleNumber(Dimensions.size()); 2276 for (const llvm::APInt &Dimension : Dimensions) 2277 mangleNumber(Dimension.getLimitedValue()); 2278 mangleType(ElementTy, SourceRange(), QMM_Escape); 2279 } 2280 2281 // <type> ::= <pointer-to-member-type> 2282 // <pointer-to-member-type> ::= <pointer-cvr-qualifiers> <cvr-qualifiers> 2283 // <class name> <type> 2284 void MicrosoftCXXNameMangler::mangleType(const MemberPointerType *T, Qualifiers Quals, 2285 SourceRange Range) { 2286 QualType PointeeType = T->getPointeeType(); 2287 manglePointerCVQualifiers(Quals); 2288 manglePointerExtQualifiers(Quals, PointeeType); 2289 if (const FunctionProtoType *FPT = PointeeType->getAs<FunctionProtoType>()) { 2290 Out << '8'; 2291 mangleName(T->getClass()->castAs<RecordType>()->getDecl()); 2292 mangleFunctionType(FPT, nullptr, true); 2293 } else { 2294 mangleQualifiers(PointeeType.getQualifiers(), true); 2295 mangleName(T->getClass()->castAs<RecordType>()->getDecl()); 2296 mangleType(PointeeType, Range, QMM_Drop); 2297 } 2298 } 2299 2300 void MicrosoftCXXNameMangler::mangleType(const TemplateTypeParmType *T, 2301 Qualifiers, SourceRange Range) { 2302 DiagnosticsEngine &Diags = Context.getDiags(); 2303 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2304 "cannot mangle this template type parameter type yet"); 2305 Diags.Report(Range.getBegin(), DiagID) 2306 << Range; 2307 } 2308 2309 void MicrosoftCXXNameMangler::mangleType(const SubstTemplateTypeParmPackType *T, 2310 Qualifiers, SourceRange Range) { 2311 DiagnosticsEngine &Diags = Context.getDiags(); 2312 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2313 "cannot mangle this substituted parameter pack yet"); 2314 Diags.Report(Range.getBegin(), DiagID) 2315 << Range; 2316 } 2317 2318 // <type> ::= <pointer-type> 2319 // <pointer-type> ::= E? <pointer-cvr-qualifiers> <cvr-qualifiers> <type> 2320 // # the E is required for 64-bit non-static pointers 2321 void MicrosoftCXXNameMangler::mangleType(const PointerType *T, Qualifiers Quals, 2322 SourceRange Range) { 2323 QualType PointeeType = T->getPointeeType(); 2324 manglePointerCVQualifiers(Quals); 2325 manglePointerExtQualifiers(Quals, PointeeType); 2326 mangleType(PointeeType, Range); 2327 } 2328 2329 void MicrosoftCXXNameMangler::mangleType(const ObjCObjectPointerType *T, 2330 Qualifiers Quals, SourceRange Range) { 2331 if (T->isObjCIdType() || T->isObjCClassType()) 2332 return mangleType(T->getPointeeType(), Range, QMM_Drop); 2333 2334 QualType PointeeType = T->getPointeeType(); 2335 manglePointerCVQualifiers(Quals); 2336 manglePointerExtQualifiers(Quals, PointeeType); 2337 mangleType(PointeeType, Range); 2338 } 2339 2340 // <type> ::= <reference-type> 2341 // <reference-type> ::= A E? <cvr-qualifiers> <type> 2342 // # the E is required for 64-bit non-static lvalue references 2343 void MicrosoftCXXNameMangler::mangleType(const LValueReferenceType *T, 2344 Qualifiers Quals, SourceRange Range) { 2345 QualType PointeeType = T->getPointeeType(); 2346 assert(!Quals.hasConst() && !Quals.hasVolatile() && "unexpected qualifier!"); 2347 Out << 'A'; 2348 manglePointerExtQualifiers(Quals, PointeeType); 2349 mangleType(PointeeType, Range); 2350 } 2351 2352 // <type> ::= <r-value-reference-type> 2353 // <r-value-reference-type> ::= $$Q E? <cvr-qualifiers> <type> 2354 // # the E is required for 64-bit non-static rvalue references 2355 void MicrosoftCXXNameMangler::mangleType(const RValueReferenceType *T, 2356 Qualifiers Quals, SourceRange Range) { 2357 QualType PointeeType = T->getPointeeType(); 2358 assert(!Quals.hasConst() && !Quals.hasVolatile() && "unexpected qualifier!"); 2359 Out << "$$Q"; 2360 manglePointerExtQualifiers(Quals, PointeeType); 2361 mangleType(PointeeType, Range); 2362 } 2363 2364 void MicrosoftCXXNameMangler::mangleType(const ComplexType *T, Qualifiers, 2365 SourceRange Range) { 2366 QualType ElementType = T->getElementType(); 2367 2368 llvm::SmallString<64> TemplateMangling; 2369 llvm::raw_svector_ostream Stream(TemplateMangling); 2370 MicrosoftCXXNameMangler Extra(Context, Stream); 2371 Stream << "?$"; 2372 Extra.mangleSourceName("_Complex"); 2373 Extra.mangleType(ElementType, Range, QMM_Escape); 2374 2375 mangleArtificalTagType(TTK_Struct, TemplateMangling, {"__clang"}); 2376 } 2377 2378 void MicrosoftCXXNameMangler::mangleType(const VectorType *T, Qualifiers Quals, 2379 SourceRange Range) { 2380 const BuiltinType *ET = T->getElementType()->getAs<BuiltinType>(); 2381 assert(ET && "vectors with non-builtin elements are unsupported"); 2382 uint64_t Width = getASTContext().getTypeSize(T); 2383 // Pattern match exactly the typedefs in our intrinsic headers. Anything that 2384 // doesn't match the Intel types uses a custom mangling below. 2385 size_t OutSizeBefore = Out.tell(); 2386 llvm::Triple::ArchType AT = 2387 getASTContext().getTargetInfo().getTriple().getArch(); 2388 if (AT == llvm::Triple::x86 || AT == llvm::Triple::x86_64) { 2389 if (Width == 64 && ET->getKind() == BuiltinType::LongLong) { 2390 mangleArtificalTagType(TTK_Union, "__m64"); 2391 } else if (Width >= 128) { 2392 if (ET->getKind() == BuiltinType::Float) 2393 mangleArtificalTagType(TTK_Union, "__m" + llvm::utostr(Width)); 2394 else if (ET->getKind() == BuiltinType::LongLong) 2395 mangleArtificalTagType(TTK_Union, "__m" + llvm::utostr(Width) + 'i'); 2396 else if (ET->getKind() == BuiltinType::Double) 2397 mangleArtificalTagType(TTK_Struct, "__m" + llvm::utostr(Width) + 'd'); 2398 } 2399 } 2400 2401 bool IsBuiltin = Out.tell() != OutSizeBefore; 2402 if (!IsBuiltin) { 2403 // The MS ABI doesn't have a special mangling for vector types, so we define 2404 // our own mangling to handle uses of __vector_size__ on user-specified 2405 // types, and for extensions like __v4sf. 2406 2407 llvm::SmallString<64> TemplateMangling; 2408 llvm::raw_svector_ostream Stream(TemplateMangling); 2409 MicrosoftCXXNameMangler Extra(Context, Stream); 2410 Stream << "?$"; 2411 Extra.mangleSourceName("__vector"); 2412 Extra.mangleType(QualType(ET, 0), Range, QMM_Escape); 2413 Extra.mangleIntegerLiteral(llvm::APSInt::getUnsigned(T->getNumElements()), 2414 /*IsBoolean=*/false); 2415 2416 mangleArtificalTagType(TTK_Union, TemplateMangling, {"__clang"}); 2417 } 2418 } 2419 2420 void MicrosoftCXXNameMangler::mangleType(const ExtVectorType *T, 2421 Qualifiers Quals, SourceRange Range) { 2422 mangleType(static_cast<const VectorType *>(T), Quals, Range); 2423 } 2424 void MicrosoftCXXNameMangler::mangleType(const DependentSizedExtVectorType *T, 2425 Qualifiers, SourceRange Range) { 2426 DiagnosticsEngine &Diags = Context.getDiags(); 2427 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2428 "cannot mangle this dependent-sized extended vector type yet"); 2429 Diags.Report(Range.getBegin(), DiagID) 2430 << Range; 2431 } 2432 2433 void MicrosoftCXXNameMangler::mangleType(const DependentAddressSpaceType *T, 2434 Qualifiers, SourceRange Range) { 2435 DiagnosticsEngine &Diags = Context.getDiags(); 2436 unsigned DiagID = Diags.getCustomDiagID( 2437 DiagnosticsEngine::Error, 2438 "cannot mangle this dependent address space type yet"); 2439 Diags.Report(Range.getBegin(), DiagID) << Range; 2440 } 2441 2442 void MicrosoftCXXNameMangler::mangleType(const ObjCInterfaceType *T, Qualifiers, 2443 SourceRange) { 2444 // ObjC interfaces have structs underlying them. 2445 mangleTagTypeKind(TTK_Struct); 2446 mangleName(T->getDecl()); 2447 } 2448 2449 void MicrosoftCXXNameMangler::mangleType(const ObjCObjectType *T, Qualifiers, 2450 SourceRange Range) { 2451 // We don't allow overloading by different protocol qualification, 2452 // so mangling them isn't necessary. 2453 mangleType(T->getBaseType(), Range, QMM_Drop); 2454 } 2455 2456 void MicrosoftCXXNameMangler::mangleType(const BlockPointerType *T, 2457 Qualifiers Quals, SourceRange Range) { 2458 QualType PointeeType = T->getPointeeType(); 2459 manglePointerCVQualifiers(Quals); 2460 manglePointerExtQualifiers(Quals, PointeeType); 2461 2462 Out << "_E"; 2463 2464 mangleFunctionType(PointeeType->castAs<FunctionProtoType>()); 2465 } 2466 2467 void MicrosoftCXXNameMangler::mangleType(const InjectedClassNameType *, 2468 Qualifiers, SourceRange) { 2469 llvm_unreachable("Cannot mangle injected class name type."); 2470 } 2471 2472 void MicrosoftCXXNameMangler::mangleType(const TemplateSpecializationType *T, 2473 Qualifiers, SourceRange Range) { 2474 DiagnosticsEngine &Diags = Context.getDiags(); 2475 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2476 "cannot mangle this template specialization type yet"); 2477 Diags.Report(Range.getBegin(), DiagID) 2478 << Range; 2479 } 2480 2481 void MicrosoftCXXNameMangler::mangleType(const DependentNameType *T, Qualifiers, 2482 SourceRange Range) { 2483 DiagnosticsEngine &Diags = Context.getDiags(); 2484 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2485 "cannot mangle this dependent name type yet"); 2486 Diags.Report(Range.getBegin(), DiagID) 2487 << Range; 2488 } 2489 2490 void MicrosoftCXXNameMangler::mangleType( 2491 const DependentTemplateSpecializationType *T, Qualifiers, 2492 SourceRange Range) { 2493 DiagnosticsEngine &Diags = Context.getDiags(); 2494 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2495 "cannot mangle this dependent template specialization type yet"); 2496 Diags.Report(Range.getBegin(), DiagID) 2497 << Range; 2498 } 2499 2500 void MicrosoftCXXNameMangler::mangleType(const PackExpansionType *T, Qualifiers, 2501 SourceRange Range) { 2502 DiagnosticsEngine &Diags = Context.getDiags(); 2503 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2504 "cannot mangle this pack expansion yet"); 2505 Diags.Report(Range.getBegin(), DiagID) 2506 << Range; 2507 } 2508 2509 void MicrosoftCXXNameMangler::mangleType(const TypeOfType *T, Qualifiers, 2510 SourceRange Range) { 2511 DiagnosticsEngine &Diags = Context.getDiags(); 2512 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2513 "cannot mangle this typeof(type) yet"); 2514 Diags.Report(Range.getBegin(), DiagID) 2515 << Range; 2516 } 2517 2518 void MicrosoftCXXNameMangler::mangleType(const TypeOfExprType *T, Qualifiers, 2519 SourceRange Range) { 2520 DiagnosticsEngine &Diags = Context.getDiags(); 2521 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2522 "cannot mangle this typeof(expression) yet"); 2523 Diags.Report(Range.getBegin(), DiagID) 2524 << Range; 2525 } 2526 2527 void MicrosoftCXXNameMangler::mangleType(const DecltypeType *T, Qualifiers, 2528 SourceRange Range) { 2529 DiagnosticsEngine &Diags = Context.getDiags(); 2530 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2531 "cannot mangle this decltype() yet"); 2532 Diags.Report(Range.getBegin(), DiagID) 2533 << Range; 2534 } 2535 2536 void MicrosoftCXXNameMangler::mangleType(const UnaryTransformType *T, 2537 Qualifiers, SourceRange Range) { 2538 DiagnosticsEngine &Diags = Context.getDiags(); 2539 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2540 "cannot mangle this unary transform type yet"); 2541 Diags.Report(Range.getBegin(), DiagID) 2542 << Range; 2543 } 2544 2545 void MicrosoftCXXNameMangler::mangleType(const AutoType *T, Qualifiers, 2546 SourceRange Range) { 2547 assert(T->getDeducedType().isNull() && "expecting a dependent type!"); 2548 2549 DiagnosticsEngine &Diags = Context.getDiags(); 2550 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2551 "cannot mangle this 'auto' type yet"); 2552 Diags.Report(Range.getBegin(), DiagID) 2553 << Range; 2554 } 2555 2556 void MicrosoftCXXNameMangler::mangleType( 2557 const DeducedTemplateSpecializationType *T, Qualifiers, SourceRange Range) { 2558 assert(T->getDeducedType().isNull() && "expecting a dependent type!"); 2559 2560 DiagnosticsEngine &Diags = Context.getDiags(); 2561 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2562 "cannot mangle this deduced class template specialization type yet"); 2563 Diags.Report(Range.getBegin(), DiagID) 2564 << Range; 2565 } 2566 2567 void MicrosoftCXXNameMangler::mangleType(const AtomicType *T, Qualifiers, 2568 SourceRange Range) { 2569 QualType ValueType = T->getValueType(); 2570 2571 llvm::SmallString<64> TemplateMangling; 2572 llvm::raw_svector_ostream Stream(TemplateMangling); 2573 MicrosoftCXXNameMangler Extra(Context, Stream); 2574 Stream << "?$"; 2575 Extra.mangleSourceName("_Atomic"); 2576 Extra.mangleType(ValueType, Range, QMM_Escape); 2577 2578 mangleArtificalTagType(TTK_Struct, TemplateMangling, {"__clang"}); 2579 } 2580 2581 void MicrosoftCXXNameMangler::mangleType(const PipeType *T, Qualifiers, 2582 SourceRange Range) { 2583 DiagnosticsEngine &Diags = Context.getDiags(); 2584 unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, 2585 "cannot mangle this OpenCL pipe type yet"); 2586 Diags.Report(Range.getBegin(), DiagID) 2587 << Range; 2588 } 2589 2590 void MicrosoftMangleContextImpl::mangleCXXName(const NamedDecl *D, 2591 raw_ostream &Out) { 2592 assert((isa<FunctionDecl>(D) || isa<VarDecl>(D)) && 2593 "Invalid mangleName() call, argument is not a variable or function!"); 2594 assert(!isa<CXXConstructorDecl>(D) && !isa<CXXDestructorDecl>(D) && 2595 "Invalid mangleName() call on 'structor decl!"); 2596 2597 PrettyStackTraceDecl CrashInfo(D, SourceLocation(), 2598 getASTContext().getSourceManager(), 2599 "Mangling declaration"); 2600 2601 msvc_hashing_ostream MHO(Out); 2602 MicrosoftCXXNameMangler Mangler(*this, MHO); 2603 return Mangler.mangle(D); 2604 } 2605 2606 // <this-adjustment> ::= <no-adjustment> | <static-adjustment> | 2607 // <virtual-adjustment> 2608 // <no-adjustment> ::= A # private near 2609 // ::= B # private far 2610 // ::= I # protected near 2611 // ::= J # protected far 2612 // ::= Q # public near 2613 // ::= R # public far 2614 // <static-adjustment> ::= G <static-offset> # private near 2615 // ::= H <static-offset> # private far 2616 // ::= O <static-offset> # protected near 2617 // ::= P <static-offset> # protected far 2618 // ::= W <static-offset> # public near 2619 // ::= X <static-offset> # public far 2620 // <virtual-adjustment> ::= $0 <virtual-shift> <static-offset> # private near 2621 // ::= $1 <virtual-shift> <static-offset> # private far 2622 // ::= $2 <virtual-shift> <static-offset> # protected near 2623 // ::= $3 <virtual-shift> <static-offset> # protected far 2624 // ::= $4 <virtual-shift> <static-offset> # public near 2625 // ::= $5 <virtual-shift> <static-offset> # public far 2626 // <virtual-shift> ::= <vtordisp-shift> | <vtordispex-shift> 2627 // <vtordisp-shift> ::= <offset-to-vtordisp> 2628 // <vtordispex-shift> ::= <offset-to-vbptr> <vbase-offset-offset> 2629 // <offset-to-vtordisp> 2630 static void mangleThunkThisAdjustment(const CXXMethodDecl *MD, 2631 const ThisAdjustment &Adjustment, 2632 MicrosoftCXXNameMangler &Mangler, 2633 raw_ostream &Out) { 2634 if (!Adjustment.Virtual.isEmpty()) { 2635 Out << '$'; 2636 char AccessSpec; 2637 switch (MD->getAccess()) { 2638 case AS_none: 2639 llvm_unreachable("Unsupported access specifier"); 2640 case AS_private: 2641 AccessSpec = '0'; 2642 break; 2643 case AS_protected: 2644 AccessSpec = '2'; 2645 break; 2646 case AS_public: 2647 AccessSpec = '4'; 2648 } 2649 if (Adjustment.Virtual.Microsoft.VBPtrOffset) { 2650 Out << 'R' << AccessSpec; 2651 Mangler.mangleNumber( 2652 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBPtrOffset)); 2653 Mangler.mangleNumber( 2654 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VBOffsetOffset)); 2655 Mangler.mangleNumber( 2656 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset)); 2657 Mangler.mangleNumber(static_cast<uint32_t>(Adjustment.NonVirtual)); 2658 } else { 2659 Out << AccessSpec; 2660 Mangler.mangleNumber( 2661 static_cast<uint32_t>(Adjustment.Virtual.Microsoft.VtordispOffset)); 2662 Mangler.mangleNumber(-static_cast<uint32_t>(Adjustment.NonVirtual)); 2663 } 2664 } else if (Adjustment.NonVirtual != 0) { 2665 switch (MD->getAccess()) { 2666 case AS_none: 2667 llvm_unreachable("Unsupported access specifier"); 2668 case AS_private: 2669 Out << 'G'; 2670 break; 2671 case AS_protected: 2672 Out << 'O'; 2673 break; 2674 case AS_public: 2675 Out << 'W'; 2676 } 2677 Mangler.mangleNumber(-static_cast<uint32_t>(Adjustment.NonVirtual)); 2678 } else { 2679 switch (MD->getAccess()) { 2680 case AS_none: 2681 llvm_unreachable("Unsupported access specifier"); 2682 case AS_private: 2683 Out << 'A'; 2684 break; 2685 case AS_protected: 2686 Out << 'I'; 2687 break; 2688 case AS_public: 2689 Out << 'Q'; 2690 } 2691 } 2692 } 2693 2694 void 2695 MicrosoftMangleContextImpl::mangleVirtualMemPtrThunk(const CXXMethodDecl *MD, 2696 raw_ostream &Out) { 2697 MicrosoftVTableContext *VTContext = 2698 cast<MicrosoftVTableContext>(getASTContext().getVTableContext()); 2699 const MicrosoftVTableContext::MethodVFTableLocation &ML = 2700 VTContext->getMethodVFTableLocation(GlobalDecl(MD)); 2701 2702 msvc_hashing_ostream MHO(Out); 2703 MicrosoftCXXNameMangler Mangler(*this, MHO); 2704 Mangler.getStream() << "\01?"; 2705 Mangler.mangleVirtualMemPtrThunk(MD, ML); 2706 } 2707 2708 void MicrosoftMangleContextImpl::mangleThunk(const CXXMethodDecl *MD, 2709 const ThunkInfo &Thunk, 2710 raw_ostream &Out) { 2711 msvc_hashing_ostream MHO(Out); 2712 MicrosoftCXXNameMangler Mangler(*this, MHO); 2713 Mangler.getStream() << "\01?"; 2714 Mangler.mangleName(MD); 2715 mangleThunkThisAdjustment(MD, Thunk.This, Mangler, MHO); 2716 if (!Thunk.Return.isEmpty()) 2717 assert(Thunk.Method != nullptr && 2718 "Thunk info should hold the overridee decl"); 2719 2720 const CXXMethodDecl *DeclForFPT = Thunk.Method ? Thunk.Method : MD; 2721 Mangler.mangleFunctionType( 2722 DeclForFPT->getType()->castAs<FunctionProtoType>(), MD); 2723 } 2724 2725 void MicrosoftMangleContextImpl::mangleCXXDtorThunk( 2726 const CXXDestructorDecl *DD, CXXDtorType Type, 2727 const ThisAdjustment &Adjustment, raw_ostream &Out) { 2728 // FIXME: Actually, the dtor thunk should be emitted for vector deleting 2729 // dtors rather than scalar deleting dtors. Just use the vector deleting dtor 2730 // mangling manually until we support both deleting dtor types. 2731 assert(Type == Dtor_Deleting); 2732 msvc_hashing_ostream MHO(Out); 2733 MicrosoftCXXNameMangler Mangler(*this, MHO, DD, Type); 2734 Mangler.getStream() << "\01??_E"; 2735 Mangler.mangleName(DD->getParent()); 2736 mangleThunkThisAdjustment(DD, Adjustment, Mangler, MHO); 2737 Mangler.mangleFunctionType(DD->getType()->castAs<FunctionProtoType>(), DD); 2738 } 2739 2740 void MicrosoftMangleContextImpl::mangleCXXVFTable( 2741 const CXXRecordDecl *Derived, ArrayRef<const CXXRecordDecl *> BasePath, 2742 raw_ostream &Out) { 2743 // <mangled-name> ::= ?_7 <class-name> <storage-class> 2744 // <cvr-qualifiers> [<name>] @ 2745 // NOTE: <cvr-qualifiers> here is always 'B' (const). <storage-class> 2746 // is always '6' for vftables. 2747 msvc_hashing_ostream MHO(Out); 2748 MicrosoftCXXNameMangler Mangler(*this, MHO); 2749 if (Derived->hasAttr<DLLImportAttr>()) 2750 Mangler.getStream() << "\01??_S"; 2751 else 2752 Mangler.getStream() << "\01??_7"; 2753 Mangler.mangleName(Derived); 2754 Mangler.getStream() << "6B"; // '6' for vftable, 'B' for const. 2755 for (const CXXRecordDecl *RD : BasePath) 2756 Mangler.mangleName(RD); 2757 Mangler.getStream() << '@'; 2758 } 2759 2760 void MicrosoftMangleContextImpl::mangleCXXVBTable( 2761 const CXXRecordDecl *Derived, ArrayRef<const CXXRecordDecl *> BasePath, 2762 raw_ostream &Out) { 2763 // <mangled-name> ::= ?_8 <class-name> <storage-class> 2764 // <cvr-qualifiers> [<name>] @ 2765 // NOTE: <cvr-qualifiers> here is always 'B' (const). <storage-class> 2766 // is always '7' for vbtables. 2767 msvc_hashing_ostream MHO(Out); 2768 MicrosoftCXXNameMangler Mangler(*this, MHO); 2769 Mangler.getStream() << "\01??_8"; 2770 Mangler.mangleName(Derived); 2771 Mangler.getStream() << "7B"; // '7' for vbtable, 'B' for const. 2772 for (const CXXRecordDecl *RD : BasePath) 2773 Mangler.mangleName(RD); 2774 Mangler.getStream() << '@'; 2775 } 2776 2777 void MicrosoftMangleContextImpl::mangleCXXRTTI(QualType T, raw_ostream &Out) { 2778 msvc_hashing_ostream MHO(Out); 2779 MicrosoftCXXNameMangler Mangler(*this, MHO); 2780 Mangler.getStream() << "\01??_R0"; 2781 Mangler.mangleType(T, SourceRange(), MicrosoftCXXNameMangler::QMM_Result); 2782 Mangler.getStream() << "@8"; 2783 } 2784 2785 void MicrosoftMangleContextImpl::mangleCXXRTTIName(QualType T, 2786 raw_ostream &Out) { 2787 MicrosoftCXXNameMangler Mangler(*this, Out); 2788 Mangler.getStream() << '.'; 2789 Mangler.mangleType(T, SourceRange(), MicrosoftCXXNameMangler::QMM_Result); 2790 } 2791 2792 void MicrosoftMangleContextImpl::mangleCXXVirtualDisplacementMap( 2793 const CXXRecordDecl *SrcRD, const CXXRecordDecl *DstRD, raw_ostream &Out) { 2794 msvc_hashing_ostream MHO(Out); 2795 MicrosoftCXXNameMangler Mangler(*this, MHO); 2796 Mangler.getStream() << "\01??_K"; 2797 Mangler.mangleName(SrcRD); 2798 Mangler.getStream() << "$C"; 2799 Mangler.mangleName(DstRD); 2800 } 2801 2802 void MicrosoftMangleContextImpl::mangleCXXThrowInfo(QualType T, bool IsConst, 2803 bool IsVolatile, 2804 bool IsUnaligned, 2805 uint32_t NumEntries, 2806 raw_ostream &Out) { 2807 msvc_hashing_ostream MHO(Out); 2808 MicrosoftCXXNameMangler Mangler(*this, MHO); 2809 Mangler.getStream() << "_TI"; 2810 if (IsConst) 2811 Mangler.getStream() << 'C'; 2812 if (IsVolatile) 2813 Mangler.getStream() << 'V'; 2814 if (IsUnaligned) 2815 Mangler.getStream() << 'U'; 2816 Mangler.getStream() << NumEntries; 2817 Mangler.mangleType(T, SourceRange(), MicrosoftCXXNameMangler::QMM_Result); 2818 } 2819 2820 void MicrosoftMangleContextImpl::mangleCXXCatchableTypeArray( 2821 QualType T, uint32_t NumEntries, raw_ostream &Out) { 2822 msvc_hashing_ostream MHO(Out); 2823 MicrosoftCXXNameMangler Mangler(*this, MHO); 2824 Mangler.getStream() << "_CTA"; 2825 Mangler.getStream() << NumEntries; 2826 Mangler.mangleType(T, SourceRange(), MicrosoftCXXNameMangler::QMM_Result); 2827 } 2828 2829 void MicrosoftMangleContextImpl::mangleCXXCatchableType( 2830 QualType T, const CXXConstructorDecl *CD, CXXCtorType CT, uint32_t Size, 2831 uint32_t NVOffset, int32_t VBPtrOffset, uint32_t VBIndex, 2832 raw_ostream &Out) { 2833 MicrosoftCXXNameMangler Mangler(*this, Out); 2834 Mangler.getStream() << "_CT"; 2835 2836 llvm::SmallString<64> RTTIMangling; 2837 { 2838 llvm::raw_svector_ostream Stream(RTTIMangling); 2839 msvc_hashing_ostream MHO(Stream); 2840 mangleCXXRTTI(T, MHO); 2841 } 2842 Mangler.getStream() << RTTIMangling.substr(1); 2843 2844 // VS2015 CTP6 omits the copy-constructor in the mangled name. This name is, 2845 // in fact, superfluous but I'm not sure the change was made consciously. 2846 llvm::SmallString<64> CopyCtorMangling; 2847 if (!getASTContext().getLangOpts().isCompatibleWithMSVC( 2848 LangOptions::MSVC2015) && 2849 CD) { 2850 llvm::raw_svector_ostream Stream(CopyCtorMangling); 2851 msvc_hashing_ostream MHO(Stream); 2852 mangleCXXCtor(CD, CT, MHO); 2853 } 2854 Mangler.getStream() << CopyCtorMangling.substr(1); 2855 2856 Mangler.getStream() << Size; 2857 if (VBPtrOffset == -1) { 2858 if (NVOffset) { 2859 Mangler.getStream() << NVOffset; 2860 } 2861 } else { 2862 Mangler.getStream() << NVOffset; 2863 Mangler.getStream() << VBPtrOffset; 2864 Mangler.getStream() << VBIndex; 2865 } 2866 } 2867 2868 void MicrosoftMangleContextImpl::mangleCXXRTTIBaseClassDescriptor( 2869 const CXXRecordDecl *Derived, uint32_t NVOffset, int32_t VBPtrOffset, 2870 uint32_t VBTableOffset, uint32_t Flags, raw_ostream &Out) { 2871 msvc_hashing_ostream MHO(Out); 2872 MicrosoftCXXNameMangler Mangler(*this, MHO); 2873 Mangler.getStream() << "\01??_R1"; 2874 Mangler.mangleNumber(NVOffset); 2875 Mangler.mangleNumber(VBPtrOffset); 2876 Mangler.mangleNumber(VBTableOffset); 2877 Mangler.mangleNumber(Flags); 2878 Mangler.mangleName(Derived); 2879 Mangler.getStream() << "8"; 2880 } 2881 2882 void MicrosoftMangleContextImpl::mangleCXXRTTIBaseClassArray( 2883 const CXXRecordDecl *Derived, raw_ostream &Out) { 2884 msvc_hashing_ostream MHO(Out); 2885 MicrosoftCXXNameMangler Mangler(*this, MHO); 2886 Mangler.getStream() << "\01??_R2"; 2887 Mangler.mangleName(Derived); 2888 Mangler.getStream() << "8"; 2889 } 2890 2891 void MicrosoftMangleContextImpl::mangleCXXRTTIClassHierarchyDescriptor( 2892 const CXXRecordDecl *Derived, raw_ostream &Out) { 2893 msvc_hashing_ostream MHO(Out); 2894 MicrosoftCXXNameMangler Mangler(*this, MHO); 2895 Mangler.getStream() << "\01??_R3"; 2896 Mangler.mangleName(Derived); 2897 Mangler.getStream() << "8"; 2898 } 2899 2900 void MicrosoftMangleContextImpl::mangleCXXRTTICompleteObjectLocator( 2901 const CXXRecordDecl *Derived, ArrayRef<const CXXRecordDecl *> BasePath, 2902 raw_ostream &Out) { 2903 // <mangled-name> ::= ?_R4 <class-name> <storage-class> 2904 // <cvr-qualifiers> [<name>] @ 2905 // NOTE: <cvr-qualifiers> here is always 'B' (const). <storage-class> 2906 // is always '6' for vftables. 2907 llvm::SmallString<64> VFTableMangling; 2908 llvm::raw_svector_ostream Stream(VFTableMangling); 2909 mangleCXXVFTable(Derived, BasePath, Stream); 2910 2911 if (VFTableMangling.startswith("\01??@")) { 2912 assert(VFTableMangling.endswith("@")); 2913 Out << VFTableMangling << "??_R4@"; 2914 return; 2915 } 2916 2917 assert(VFTableMangling.startswith("\01??_7") || 2918 VFTableMangling.startswith("\01??_S")); 2919 2920 Out << "\01??_R4" << StringRef(VFTableMangling).drop_front(5); 2921 } 2922 2923 void MicrosoftMangleContextImpl::mangleSEHFilterExpression( 2924 const NamedDecl *EnclosingDecl, raw_ostream &Out) { 2925 msvc_hashing_ostream MHO(Out); 2926 MicrosoftCXXNameMangler Mangler(*this, MHO); 2927 // The function body is in the same comdat as the function with the handler, 2928 // so the numbering here doesn't have to be the same across TUs. 2929 // 2930 // <mangled-name> ::= ?filt$ <filter-number> @0 2931 Mangler.getStream() << "\01?filt$" << SEHFilterIds[EnclosingDecl]++ << "@0@"; 2932 Mangler.mangleName(EnclosingDecl); 2933 } 2934 2935 void MicrosoftMangleContextImpl::mangleSEHFinallyBlock( 2936 const NamedDecl *EnclosingDecl, raw_ostream &Out) { 2937 msvc_hashing_ostream MHO(Out); 2938 MicrosoftCXXNameMangler Mangler(*this, MHO); 2939 // The function body is in the same comdat as the function with the handler, 2940 // so the numbering here doesn't have to be the same across TUs. 2941 // 2942 // <mangled-name> ::= ?fin$ <filter-number> @0 2943 Mangler.getStream() << "\01?fin$" << SEHFinallyIds[EnclosingDecl]++ << "@0@"; 2944 Mangler.mangleName(EnclosingDecl); 2945 } 2946 2947 void MicrosoftMangleContextImpl::mangleTypeName(QualType T, raw_ostream &Out) { 2948 // This is just a made up unique string for the purposes of tbaa. undname 2949 // does *not* know how to demangle it. 2950 MicrosoftCXXNameMangler Mangler(*this, Out); 2951 Mangler.getStream() << '?'; 2952 Mangler.mangleType(T, SourceRange()); 2953 } 2954 2955 void MicrosoftMangleContextImpl::mangleCXXCtor(const CXXConstructorDecl *D, 2956 CXXCtorType Type, 2957 raw_ostream &Out) { 2958 msvc_hashing_ostream MHO(Out); 2959 MicrosoftCXXNameMangler mangler(*this, MHO, D, Type); 2960 mangler.mangle(D); 2961 } 2962 2963 void MicrosoftMangleContextImpl::mangleCXXDtor(const CXXDestructorDecl *D, 2964 CXXDtorType Type, 2965 raw_ostream &Out) { 2966 msvc_hashing_ostream MHO(Out); 2967 MicrosoftCXXNameMangler mangler(*this, MHO, D, Type); 2968 mangler.mangle(D); 2969 } 2970 2971 void MicrosoftMangleContextImpl::mangleReferenceTemporary( 2972 const VarDecl *VD, unsigned ManglingNumber, raw_ostream &Out) { 2973 msvc_hashing_ostream MHO(Out); 2974 MicrosoftCXXNameMangler Mangler(*this, MHO); 2975 2976 Mangler.getStream() << "\01?$RT" << ManglingNumber << '@'; 2977 Mangler.mangle(VD, ""); 2978 } 2979 2980 void MicrosoftMangleContextImpl::mangleThreadSafeStaticGuardVariable( 2981 const VarDecl *VD, unsigned GuardNum, raw_ostream &Out) { 2982 msvc_hashing_ostream MHO(Out); 2983 MicrosoftCXXNameMangler Mangler(*this, MHO); 2984 2985 Mangler.getStream() << "\01?$TSS" << GuardNum << '@'; 2986 Mangler.mangleNestedName(VD); 2987 Mangler.getStream() << "@4HA"; 2988 } 2989 2990 void MicrosoftMangleContextImpl::mangleStaticGuardVariable(const VarDecl *VD, 2991 raw_ostream &Out) { 2992 // <guard-name> ::= ?_B <postfix> @5 <scope-depth> 2993 // ::= ?__J <postfix> @5 <scope-depth> 2994 // ::= ?$S <guard-num> @ <postfix> @4IA 2995 2996 // The first mangling is what MSVC uses to guard static locals in inline 2997 // functions. It uses a different mangling in external functions to support 2998 // guarding more than 32 variables. MSVC rejects inline functions with more 2999 // than 32 static locals. We don't fully implement the second mangling 3000 // because those guards are not externally visible, and instead use LLVM's 3001 // default renaming when creating a new guard variable. 3002 msvc_hashing_ostream MHO(Out); 3003 MicrosoftCXXNameMangler Mangler(*this, MHO); 3004 3005 bool Visible = VD->isExternallyVisible(); 3006 if (Visible) { 3007 Mangler.getStream() << (VD->getTLSKind() ? "\01??__J" : "\01??_B"); 3008 } else { 3009 Mangler.getStream() << "\01?$S1@"; 3010 } 3011 unsigned ScopeDepth = 0; 3012 if (Visible && !getNextDiscriminator(VD, ScopeDepth)) 3013 // If we do not have a discriminator and are emitting a guard variable for 3014 // use at global scope, then mangling the nested name will not be enough to 3015 // remove ambiguities. 3016 Mangler.mangle(VD, ""); 3017 else 3018 Mangler.mangleNestedName(VD); 3019 Mangler.getStream() << (Visible ? "@5" : "@4IA"); 3020 if (ScopeDepth) 3021 Mangler.mangleNumber(ScopeDepth); 3022 } 3023 3024 void MicrosoftMangleContextImpl::mangleInitFiniStub(const VarDecl *D, 3025 char CharCode, 3026 raw_ostream &Out) { 3027 msvc_hashing_ostream MHO(Out); 3028 MicrosoftCXXNameMangler Mangler(*this, MHO); 3029 Mangler.getStream() << "\01??__" << CharCode; 3030 Mangler.mangleName(D); 3031 if (D->isStaticDataMember()) { 3032 Mangler.mangleVariableEncoding(D); 3033 Mangler.getStream() << '@'; 3034 } 3035 // This is the function class mangling. These stubs are global, non-variadic, 3036 // cdecl functions that return void and take no args. 3037 Mangler.getStream() << "YAXXZ"; 3038 } 3039 3040 void MicrosoftMangleContextImpl::mangleDynamicInitializer(const VarDecl *D, 3041 raw_ostream &Out) { 3042 // <initializer-name> ::= ?__E <name> YAXXZ 3043 mangleInitFiniStub(D, 'E', Out); 3044 } 3045 3046 void 3047 MicrosoftMangleContextImpl::mangleDynamicAtExitDestructor(const VarDecl *D, 3048 raw_ostream &Out) { 3049 // <destructor-name> ::= ?__F <name> YAXXZ 3050 mangleInitFiniStub(D, 'F', Out); 3051 } 3052 3053 void MicrosoftMangleContextImpl::mangleStringLiteral(const StringLiteral *SL, 3054 raw_ostream &Out) { 3055 // <char-type> ::= 0 # char 3056 // ::= 1 # wchar_t 3057 // ::= ??? # char16_t/char32_t will need a mangling too... 3058 // 3059 // <literal-length> ::= <non-negative integer> # the length of the literal 3060 // 3061 // <encoded-crc> ::= <hex digit>+ @ # crc of the literal including 3062 // # null-terminator 3063 // 3064 // <encoded-string> ::= <simple character> # uninteresting character 3065 // ::= '?$' <hex digit> <hex digit> # these two nibbles 3066 // # encode the byte for the 3067 // # character 3068 // ::= '?' [a-z] # \xe1 - \xfa 3069 // ::= '?' [A-Z] # \xc1 - \xda 3070 // ::= '?' [0-9] # [,/\:. \n\t'-] 3071 // 3072 // <literal> ::= '??_C@_' <char-type> <literal-length> <encoded-crc> 3073 // <encoded-string> '@' 3074 MicrosoftCXXNameMangler Mangler(*this, Out); 3075 Mangler.getStream() << "\01??_C@_"; 3076 3077 // <char-type>: The "kind" of string literal is encoded into the mangled name. 3078 if (SL->isWide()) 3079 Mangler.getStream() << '1'; 3080 else 3081 Mangler.getStream() << '0'; 3082 3083 // <literal-length>: The next part of the mangled name consists of the length 3084 // of the string. 3085 // The StringLiteral does not consider the NUL terminator byte(s) but the 3086 // mangling does. 3087 // N.B. The length is in terms of bytes, not characters. 3088 Mangler.mangleNumber(SL->getByteLength() + SL->getCharByteWidth()); 3089 3090 auto GetLittleEndianByte = [&SL](unsigned Index) { 3091 unsigned CharByteWidth = SL->getCharByteWidth(); 3092 uint32_t CodeUnit = SL->getCodeUnit(Index / CharByteWidth); 3093 unsigned OffsetInCodeUnit = Index % CharByteWidth; 3094 return static_cast<char>((CodeUnit >> (8 * OffsetInCodeUnit)) & 0xff); 3095 }; 3096 3097 auto GetBigEndianByte = [&SL](unsigned Index) { 3098 unsigned CharByteWidth = SL->getCharByteWidth(); 3099 uint32_t CodeUnit = SL->getCodeUnit(Index / CharByteWidth); 3100 unsigned OffsetInCodeUnit = (CharByteWidth - 1) - (Index % CharByteWidth); 3101 return static_cast<char>((CodeUnit >> (8 * OffsetInCodeUnit)) & 0xff); 3102 }; 3103 3104 // CRC all the bytes of the StringLiteral. 3105 llvm::JamCRC JC; 3106 for (unsigned I = 0, E = SL->getByteLength(); I != E; ++I) 3107 JC.update(GetLittleEndianByte(I)); 3108 3109 // The NUL terminator byte(s) were not present earlier, 3110 // we need to manually process those bytes into the CRC. 3111 for (unsigned NullTerminator = 0; NullTerminator < SL->getCharByteWidth(); 3112 ++NullTerminator) 3113 JC.update('\x00'); 3114 3115 // <encoded-crc>: The CRC is encoded utilizing the standard number mangling 3116 // scheme. 3117 Mangler.mangleNumber(JC.getCRC()); 3118 3119 // <encoded-string>: The mangled name also contains the first 32 _characters_ 3120 // (including null-terminator bytes) of the StringLiteral. 3121 // Each character is encoded by splitting them into bytes and then encoding 3122 // the constituent bytes. 3123 auto MangleByte = [&Mangler](char Byte) { 3124 // There are five different manglings for characters: 3125 // - [a-zA-Z0-9_$]: A one-to-one mapping. 3126 // - ?[a-z]: The range from \xe1 to \xfa. 3127 // - ?[A-Z]: The range from \xc1 to \xda. 3128 // - ?[0-9]: The set of [,/\:. \n\t'-]. 3129 // - ?$XX: A fallback which maps nibbles. 3130 if (isIdentifierBody(Byte, /*AllowDollar=*/true)) { 3131 Mangler.getStream() << Byte; 3132 } else if (isLetter(Byte & 0x7f)) { 3133 Mangler.getStream() << '?' << static_cast<char>(Byte & 0x7f); 3134 } else { 3135 const char SpecialChars[] = {',', '/', '\\', ':', '.', 3136 ' ', '\n', '\t', '\'', '-'}; 3137 const char *Pos = 3138 std::find(std::begin(SpecialChars), std::end(SpecialChars), Byte); 3139 if (Pos != std::end(SpecialChars)) { 3140 Mangler.getStream() << '?' << (Pos - std::begin(SpecialChars)); 3141 } else { 3142 Mangler.getStream() << "?$"; 3143 Mangler.getStream() << static_cast<char>('A' + ((Byte >> 4) & 0xf)); 3144 Mangler.getStream() << static_cast<char>('A' + (Byte & 0xf)); 3145 } 3146 } 3147 }; 3148 3149 // Enforce our 32 character max. 3150 unsigned NumCharsToMangle = std::min(32U, SL->getLength()); 3151 for (unsigned I = 0, E = NumCharsToMangle * SL->getCharByteWidth(); I != E; 3152 ++I) 3153 if (SL->isWide()) 3154 MangleByte(GetBigEndianByte(I)); 3155 else 3156 MangleByte(GetLittleEndianByte(I)); 3157 3158 // Encode the NUL terminator if there is room. 3159 if (NumCharsToMangle < 32) 3160 for (unsigned NullTerminator = 0; NullTerminator < SL->getCharByteWidth(); 3161 ++NullTerminator) 3162 MangleByte(0); 3163 3164 Mangler.getStream() << '@'; 3165 } 3166 3167 MicrosoftMangleContext * 3168 MicrosoftMangleContext::create(ASTContext &Context, DiagnosticsEngine &Diags) { 3169 return new MicrosoftMangleContextImpl(Context, Diags); 3170 } 3171