1 //===--- CGDebugInfo.cpp - Emit Debug Information for a Module ------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This coordinates the debug information generation while generating code. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "CGDebugInfo.h" 14 #include "CGBlocks.h" 15 #include "CGCXXABI.h" 16 #include "CGObjCRuntime.h" 17 #include "CGRecordLayout.h" 18 #include "CodeGenFunction.h" 19 #include "CodeGenModule.h" 20 #include "ConstantEmitter.h" 21 #include "clang/AST/ASTContext.h" 22 #include "clang/AST/Attr.h" 23 #include "clang/AST/DeclFriend.h" 24 #include "clang/AST/DeclObjC.h" 25 #include "clang/AST/DeclTemplate.h" 26 #include "clang/AST/Expr.h" 27 #include "clang/AST/RecordLayout.h" 28 #include "clang/Basic/CodeGenOptions.h" 29 #include "clang/Basic/FileManager.h" 30 #include "clang/Basic/SourceManager.h" 31 #include "clang/Basic/Version.h" 32 #include "clang/Frontend/FrontendOptions.h" 33 #include "clang/Lex/HeaderSearchOptions.h" 34 #include "clang/Lex/ModuleMap.h" 35 #include "clang/Lex/PreprocessorOptions.h" 36 #include "llvm/ADT/DenseSet.h" 37 #include "llvm/ADT/SmallVector.h" 38 #include "llvm/ADT/StringExtras.h" 39 #include "llvm/IR/Constants.h" 40 #include "llvm/IR/DataLayout.h" 41 #include "llvm/IR/DerivedTypes.h" 42 #include "llvm/IR/Instructions.h" 43 #include "llvm/IR/Intrinsics.h" 44 #include "llvm/IR/Metadata.h" 45 #include "llvm/IR/Module.h" 46 #include "llvm/Support/FileSystem.h" 47 #include "llvm/Support/MD5.h" 48 #include "llvm/Support/Path.h" 49 #include "llvm/Support/TimeProfiler.h" 50 using namespace clang; 51 using namespace clang::CodeGen; 52 53 static uint32_t getTypeAlignIfRequired(const Type *Ty, const ASTContext &Ctx) { 54 auto TI = Ctx.getTypeInfo(Ty); 55 return TI.AlignIsRequired ? TI.Align : 0; 56 } 57 58 static uint32_t getTypeAlignIfRequired(QualType Ty, const ASTContext &Ctx) { 59 return getTypeAlignIfRequired(Ty.getTypePtr(), Ctx); 60 } 61 62 static uint32_t getDeclAlignIfRequired(const Decl *D, const ASTContext &Ctx) { 63 return D->hasAttr<AlignedAttr>() ? D->getMaxAlignment() : 0; 64 } 65 66 CGDebugInfo::CGDebugInfo(CodeGenModule &CGM) 67 : CGM(CGM), DebugKind(CGM.getCodeGenOpts().getDebugInfo()), 68 DebugTypeExtRefs(CGM.getCodeGenOpts().DebugTypeExtRefs), 69 DBuilder(CGM.getModule()) { 70 for (const auto &KV : CGM.getCodeGenOpts().DebugPrefixMap) 71 DebugPrefixMap[KV.first] = KV.second; 72 CreateCompileUnit(); 73 } 74 75 CGDebugInfo::~CGDebugInfo() { 76 assert(LexicalBlockStack.empty() && 77 "Region stack mismatch, stack not empty!"); 78 } 79 80 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, 81 SourceLocation TemporaryLocation) 82 : CGF(&CGF) { 83 init(TemporaryLocation); 84 } 85 86 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, 87 bool DefaultToEmpty, 88 SourceLocation TemporaryLocation) 89 : CGF(&CGF) { 90 init(TemporaryLocation, DefaultToEmpty); 91 } 92 93 void ApplyDebugLocation::init(SourceLocation TemporaryLocation, 94 bool DefaultToEmpty) { 95 auto *DI = CGF->getDebugInfo(); 96 if (!DI) { 97 CGF = nullptr; 98 return; 99 } 100 101 OriginalLocation = CGF->Builder.getCurrentDebugLocation(); 102 103 if (OriginalLocation && !DI->CGM.getExpressionLocationsEnabled()) 104 return; 105 106 if (TemporaryLocation.isValid()) { 107 DI->EmitLocation(CGF->Builder, TemporaryLocation); 108 return; 109 } 110 111 if (DefaultToEmpty) { 112 CGF->Builder.SetCurrentDebugLocation(llvm::DebugLoc()); 113 return; 114 } 115 116 // Construct a location that has a valid scope, but no line info. 117 assert(!DI->LexicalBlockStack.empty()); 118 CGF->Builder.SetCurrentDebugLocation(llvm::DebugLoc::get( 119 0, 0, DI->LexicalBlockStack.back(), DI->getInlinedAt())); 120 } 121 122 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, const Expr *E) 123 : CGF(&CGF) { 124 init(E->getExprLoc()); 125 } 126 127 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, llvm::DebugLoc Loc) 128 : CGF(&CGF) { 129 if (!CGF.getDebugInfo()) { 130 this->CGF = nullptr; 131 return; 132 } 133 OriginalLocation = CGF.Builder.getCurrentDebugLocation(); 134 if (Loc) 135 CGF.Builder.SetCurrentDebugLocation(std::move(Loc)); 136 } 137 138 ApplyDebugLocation::~ApplyDebugLocation() { 139 // Query CGF so the location isn't overwritten when location updates are 140 // temporarily disabled (for C++ default function arguments) 141 if (CGF) 142 CGF->Builder.SetCurrentDebugLocation(std::move(OriginalLocation)); 143 } 144 145 ApplyInlineDebugLocation::ApplyInlineDebugLocation(CodeGenFunction &CGF, 146 GlobalDecl InlinedFn) 147 : CGF(&CGF) { 148 if (!CGF.getDebugInfo()) { 149 this->CGF = nullptr; 150 return; 151 } 152 auto &DI = *CGF.getDebugInfo(); 153 SavedLocation = DI.getLocation(); 154 assert((DI.getInlinedAt() == 155 CGF.Builder.getCurrentDebugLocation()->getInlinedAt()) && 156 "CGDebugInfo and IRBuilder are out of sync"); 157 158 DI.EmitInlineFunctionStart(CGF.Builder, InlinedFn); 159 } 160 161 ApplyInlineDebugLocation::~ApplyInlineDebugLocation() { 162 if (!CGF) 163 return; 164 auto &DI = *CGF->getDebugInfo(); 165 DI.EmitInlineFunctionEnd(CGF->Builder); 166 DI.EmitLocation(CGF->Builder, SavedLocation); 167 } 168 169 void CGDebugInfo::setLocation(SourceLocation Loc) { 170 // If the new location isn't valid return. 171 if (Loc.isInvalid()) 172 return; 173 174 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc); 175 176 // If we've changed files in the middle of a lexical scope go ahead 177 // and create a new lexical scope with file node if it's different 178 // from the one in the scope. 179 if (LexicalBlockStack.empty()) 180 return; 181 182 SourceManager &SM = CGM.getContext().getSourceManager(); 183 auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back()); 184 PresumedLoc PCLoc = SM.getPresumedLoc(CurLoc); 185 if (PCLoc.isInvalid() || Scope->getFile() == getOrCreateFile(CurLoc)) 186 return; 187 188 if (auto *LBF = dyn_cast<llvm::DILexicalBlockFile>(Scope)) { 189 LexicalBlockStack.pop_back(); 190 LexicalBlockStack.emplace_back(DBuilder.createLexicalBlockFile( 191 LBF->getScope(), getOrCreateFile(CurLoc))); 192 } else if (isa<llvm::DILexicalBlock>(Scope) || 193 isa<llvm::DISubprogram>(Scope)) { 194 LexicalBlockStack.pop_back(); 195 LexicalBlockStack.emplace_back( 196 DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc))); 197 } 198 } 199 200 llvm::DIScope *CGDebugInfo::getDeclContextDescriptor(const Decl *D) { 201 llvm::DIScope *Mod = getParentModuleOrNull(D); 202 return getContextDescriptor(cast<Decl>(D->getDeclContext()), 203 Mod ? Mod : TheCU); 204 } 205 206 llvm::DIScope *CGDebugInfo::getContextDescriptor(const Decl *Context, 207 llvm::DIScope *Default) { 208 if (!Context) 209 return Default; 210 211 auto I = RegionMap.find(Context); 212 if (I != RegionMap.end()) { 213 llvm::Metadata *V = I->second; 214 return dyn_cast_or_null<llvm::DIScope>(V); 215 } 216 217 // Check namespace. 218 if (const auto *NSDecl = dyn_cast<NamespaceDecl>(Context)) 219 return getOrCreateNamespace(NSDecl); 220 221 if (const auto *RDecl = dyn_cast<RecordDecl>(Context)) 222 if (!RDecl->isDependentType()) 223 return getOrCreateType(CGM.getContext().getTypeDeclType(RDecl), 224 TheCU->getFile()); 225 return Default; 226 } 227 228 PrintingPolicy CGDebugInfo::getPrintingPolicy() const { 229 PrintingPolicy PP = CGM.getContext().getPrintingPolicy(); 230 231 // If we're emitting codeview, it's important to try to match MSVC's naming so 232 // that visualizers written for MSVC will trigger for our class names. In 233 // particular, we can't have spaces between arguments of standard templates 234 // like basic_string and vector, but we must have spaces between consecutive 235 // angle brackets that close nested template argument lists. 236 if (CGM.getCodeGenOpts().EmitCodeView) { 237 PP.MSVCFormatting = true; 238 PP.SplitTemplateClosers = true; 239 } else { 240 // For DWARF, printing rules are underspecified. 241 // SplitTemplateClosers yields better interop with GCC and GDB (PR46052). 242 PP.SplitTemplateClosers = true; 243 } 244 245 // Apply -fdebug-prefix-map. 246 PP.Callbacks = &PrintCB; 247 return PP; 248 } 249 250 StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) { 251 assert(FD && "Invalid FunctionDecl!"); 252 IdentifierInfo *FII = FD->getIdentifier(); 253 FunctionTemplateSpecializationInfo *Info = 254 FD->getTemplateSpecializationInfo(); 255 256 // Emit the unqualified name in normal operation. LLVM and the debugger can 257 // compute the fully qualified name from the scope chain. If we're only 258 // emitting line table info, there won't be any scope chains, so emit the 259 // fully qualified name here so that stack traces are more accurate. 260 // FIXME: Do this when emitting DWARF as well as when emitting CodeView after 261 // evaluating the size impact. 262 bool UseQualifiedName = DebugKind == codegenoptions::DebugLineTablesOnly && 263 CGM.getCodeGenOpts().EmitCodeView; 264 265 if (!Info && FII && !UseQualifiedName) 266 return FII->getName(); 267 268 SmallString<128> NS; 269 llvm::raw_svector_ostream OS(NS); 270 if (!UseQualifiedName) 271 FD->printName(OS); 272 else 273 FD->printQualifiedName(OS, getPrintingPolicy()); 274 275 // Add any template specialization args. 276 if (Info) { 277 const TemplateArgumentList *TArgs = Info->TemplateArguments; 278 printTemplateArgumentList(OS, TArgs->asArray(), getPrintingPolicy()); 279 } 280 281 // Copy this name on the side and use its reference. 282 return internString(OS.str()); 283 } 284 285 StringRef CGDebugInfo::getObjCMethodName(const ObjCMethodDecl *OMD) { 286 SmallString<256> MethodName; 287 llvm::raw_svector_ostream OS(MethodName); 288 OS << (OMD->isInstanceMethod() ? '-' : '+') << '['; 289 const DeclContext *DC = OMD->getDeclContext(); 290 if (const auto *OID = dyn_cast<ObjCImplementationDecl>(DC)) { 291 OS << OID->getName(); 292 } else if (const auto *OID = dyn_cast<ObjCInterfaceDecl>(DC)) { 293 OS << OID->getName(); 294 } else if (const auto *OC = dyn_cast<ObjCCategoryDecl>(DC)) { 295 if (OC->IsClassExtension()) { 296 OS << OC->getClassInterface()->getName(); 297 } else { 298 OS << OC->getIdentifier()->getNameStart() << '(' 299 << OC->getIdentifier()->getNameStart() << ')'; 300 } 301 } else if (const auto *OCD = dyn_cast<ObjCCategoryImplDecl>(DC)) { 302 OS << OCD->getClassInterface()->getName() << '(' << OCD->getName() << ')'; 303 } 304 OS << ' ' << OMD->getSelector().getAsString() << ']'; 305 306 return internString(OS.str()); 307 } 308 309 StringRef CGDebugInfo::getSelectorName(Selector S) { 310 return internString(S.getAsString()); 311 } 312 313 StringRef CGDebugInfo::getClassName(const RecordDecl *RD) { 314 if (isa<ClassTemplateSpecializationDecl>(RD)) { 315 SmallString<128> Name; 316 llvm::raw_svector_ostream OS(Name); 317 PrintingPolicy PP = getPrintingPolicy(); 318 PP.PrintCanonicalTypes = true; 319 RD->getNameForDiagnostic(OS, PP, 320 /*Qualified*/ false); 321 322 // Copy this name on the side and use its reference. 323 return internString(Name); 324 } 325 326 // quick optimization to avoid having to intern strings that are already 327 // stored reliably elsewhere 328 if (const IdentifierInfo *II = RD->getIdentifier()) 329 return II->getName(); 330 331 // The CodeView printer in LLVM wants to see the names of unnamed types: it is 332 // used to reconstruct the fully qualified type names. 333 if (CGM.getCodeGenOpts().EmitCodeView) { 334 if (const TypedefNameDecl *D = RD->getTypedefNameForAnonDecl()) { 335 assert(RD->getDeclContext() == D->getDeclContext() && 336 "Typedef should not be in another decl context!"); 337 assert(D->getDeclName().getAsIdentifierInfo() && 338 "Typedef was not named!"); 339 return D->getDeclName().getAsIdentifierInfo()->getName(); 340 } 341 342 if (CGM.getLangOpts().CPlusPlus) { 343 StringRef Name; 344 345 ASTContext &Context = CGM.getContext(); 346 if (const DeclaratorDecl *DD = Context.getDeclaratorForUnnamedTagDecl(RD)) 347 // Anonymous types without a name for linkage purposes have their 348 // declarator mangled in if they have one. 349 Name = DD->getName(); 350 else if (const TypedefNameDecl *TND = 351 Context.getTypedefNameForUnnamedTagDecl(RD)) 352 // Anonymous types without a name for linkage purposes have their 353 // associate typedef mangled in if they have one. 354 Name = TND->getName(); 355 356 if (!Name.empty()) { 357 SmallString<256> UnnamedType("<unnamed-type-"); 358 UnnamedType += Name; 359 UnnamedType += '>'; 360 return internString(UnnamedType); 361 } 362 } 363 } 364 365 return StringRef(); 366 } 367 368 Optional<llvm::DIFile::ChecksumKind> 369 CGDebugInfo::computeChecksum(FileID FID, SmallString<32> &Checksum) const { 370 Checksum.clear(); 371 372 if (!CGM.getCodeGenOpts().EmitCodeView && 373 CGM.getCodeGenOpts().DwarfVersion < 5) 374 return None; 375 376 SourceManager &SM = CGM.getContext().getSourceManager(); 377 bool Invalid; 378 const llvm::MemoryBuffer *MemBuffer = SM.getBuffer(FID, &Invalid); 379 if (Invalid) 380 return None; 381 382 llvm::MD5 Hash; 383 llvm::MD5::MD5Result Result; 384 385 Hash.update(MemBuffer->getBuffer()); 386 Hash.final(Result); 387 388 Hash.stringifyResult(Result, Checksum); 389 return llvm::DIFile::CSK_MD5; 390 } 391 392 Optional<StringRef> CGDebugInfo::getSource(const SourceManager &SM, 393 FileID FID) { 394 if (!CGM.getCodeGenOpts().EmbedSource) 395 return None; 396 397 bool SourceInvalid = false; 398 StringRef Source = SM.getBufferData(FID, &SourceInvalid); 399 400 if (SourceInvalid) 401 return None; 402 403 return Source; 404 } 405 406 llvm::DIFile *CGDebugInfo::getOrCreateFile(SourceLocation Loc) { 407 if (!Loc.isValid()) 408 // If Location is not valid then use main input file. 409 return TheCU->getFile(); 410 411 SourceManager &SM = CGM.getContext().getSourceManager(); 412 PresumedLoc PLoc = SM.getPresumedLoc(Loc); 413 414 StringRef FileName = PLoc.getFilename(); 415 if (PLoc.isInvalid() || FileName.empty()) 416 // If the location is not valid then use main input file. 417 return TheCU->getFile(); 418 419 // Cache the results. 420 auto It = DIFileCache.find(FileName.data()); 421 if (It != DIFileCache.end()) { 422 // Verify that the information still exists. 423 if (llvm::Metadata *V = It->second) 424 return cast<llvm::DIFile>(V); 425 } 426 427 SmallString<32> Checksum; 428 429 // Compute the checksum if possible. If the location is affected by a #line 430 // directive that refers to a file, PLoc will have an invalid FileID, and we 431 // will correctly get no checksum. 432 Optional<llvm::DIFile::ChecksumKind> CSKind = 433 computeChecksum(PLoc.getFileID(), Checksum); 434 Optional<llvm::DIFile::ChecksumInfo<StringRef>> CSInfo; 435 if (CSKind) 436 CSInfo.emplace(*CSKind, Checksum); 437 return createFile(FileName, CSInfo, getSource(SM, SM.getFileID(Loc))); 438 } 439 440 llvm::DIFile * 441 CGDebugInfo::createFile(StringRef FileName, 442 Optional<llvm::DIFile::ChecksumInfo<StringRef>> CSInfo, 443 Optional<StringRef> Source) { 444 StringRef Dir; 445 StringRef File; 446 std::string RemappedFile = remapDIPath(FileName); 447 std::string CurDir = remapDIPath(getCurrentDirname()); 448 SmallString<128> DirBuf; 449 SmallString<128> FileBuf; 450 if (llvm::sys::path::is_absolute(RemappedFile)) { 451 // Strip the common prefix (if it is more than just "/") from current 452 // directory and FileName for a more space-efficient encoding. 453 auto FileIt = llvm::sys::path::begin(RemappedFile); 454 auto FileE = llvm::sys::path::end(RemappedFile); 455 auto CurDirIt = llvm::sys::path::begin(CurDir); 456 auto CurDirE = llvm::sys::path::end(CurDir); 457 for (; CurDirIt != CurDirE && *CurDirIt == *FileIt; ++CurDirIt, ++FileIt) 458 llvm::sys::path::append(DirBuf, *CurDirIt); 459 if (std::distance(llvm::sys::path::begin(CurDir), CurDirIt) == 1) { 460 // Don't strip the common prefix if it is only the root "/" 461 // since that would make LLVM diagnostic locations confusing. 462 Dir = {}; 463 File = RemappedFile; 464 } else { 465 for (; FileIt != FileE; ++FileIt) 466 llvm::sys::path::append(FileBuf, *FileIt); 467 Dir = DirBuf; 468 File = FileBuf; 469 } 470 } else { 471 Dir = CurDir; 472 File = RemappedFile; 473 } 474 llvm::DIFile *F = DBuilder.createFile(File, Dir, CSInfo, Source); 475 DIFileCache[FileName.data()].reset(F); 476 return F; 477 } 478 479 std::string CGDebugInfo::remapDIPath(StringRef Path) const { 480 if (DebugPrefixMap.empty()) 481 return Path.str(); 482 483 SmallString<256> P = Path; 484 for (const auto &Entry : DebugPrefixMap) 485 if (llvm::sys::path::replace_path_prefix(P, Entry.first, Entry.second)) 486 break; 487 return P.str().str(); 488 } 489 490 unsigned CGDebugInfo::getLineNumber(SourceLocation Loc) { 491 if (Loc.isInvalid() && CurLoc.isInvalid()) 492 return 0; 493 SourceManager &SM = CGM.getContext().getSourceManager(); 494 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc); 495 return PLoc.isValid() ? PLoc.getLine() : 0; 496 } 497 498 unsigned CGDebugInfo::getColumnNumber(SourceLocation Loc, bool Force) { 499 // We may not want column information at all. 500 if (!Force && !CGM.getCodeGenOpts().DebugColumnInfo) 501 return 0; 502 503 // If the location is invalid then use the current column. 504 if (Loc.isInvalid() && CurLoc.isInvalid()) 505 return 0; 506 SourceManager &SM = CGM.getContext().getSourceManager(); 507 PresumedLoc PLoc = SM.getPresumedLoc(Loc.isValid() ? Loc : CurLoc); 508 return PLoc.isValid() ? PLoc.getColumn() : 0; 509 } 510 511 StringRef CGDebugInfo::getCurrentDirname() { 512 if (!CGM.getCodeGenOpts().DebugCompilationDir.empty()) 513 return CGM.getCodeGenOpts().DebugCompilationDir; 514 515 if (!CWDName.empty()) 516 return CWDName; 517 SmallString<256> CWD; 518 llvm::sys::fs::current_path(CWD); 519 return CWDName = internString(CWD); 520 } 521 522 void CGDebugInfo::CreateCompileUnit() { 523 SmallString<32> Checksum; 524 Optional<llvm::DIFile::ChecksumKind> CSKind; 525 Optional<llvm::DIFile::ChecksumInfo<StringRef>> CSInfo; 526 527 // Should we be asking the SourceManager for the main file name, instead of 528 // accepting it as an argument? This just causes the main file name to 529 // mismatch with source locations and create extra lexical scopes or 530 // mismatched debug info (a CU with a DW_AT_file of "-", because that's what 531 // the driver passed, but functions/other things have DW_AT_file of "<stdin>" 532 // because that's what the SourceManager says) 533 534 // Get absolute path name. 535 SourceManager &SM = CGM.getContext().getSourceManager(); 536 std::string MainFileName = CGM.getCodeGenOpts().MainFileName; 537 if (MainFileName.empty()) 538 MainFileName = "<stdin>"; 539 540 // The main file name provided via the "-main-file-name" option contains just 541 // the file name itself with no path information. This file name may have had 542 // a relative path, so we look into the actual file entry for the main 543 // file to determine the real absolute path for the file. 544 std::string MainFileDir; 545 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) { 546 MainFileDir = std::string(MainFile->getDir()->getName()); 547 if (!llvm::sys::path::is_absolute(MainFileName)) { 548 llvm::SmallString<1024> MainFileDirSS(MainFileDir); 549 llvm::sys::path::append(MainFileDirSS, MainFileName); 550 MainFileName = 551 std::string(llvm::sys::path::remove_leading_dotslash(MainFileDirSS)); 552 } 553 // If the main file name provided is identical to the input file name, and 554 // if the input file is a preprocessed source, use the module name for 555 // debug info. The module name comes from the name specified in the first 556 // linemarker if the input is a preprocessed source. 557 if (MainFile->getName() == MainFileName && 558 FrontendOptions::getInputKindForExtension( 559 MainFile->getName().rsplit('.').second) 560 .isPreprocessed()) 561 MainFileName = CGM.getModule().getName().str(); 562 563 CSKind = computeChecksum(SM.getMainFileID(), Checksum); 564 } 565 566 llvm::dwarf::SourceLanguage LangTag; 567 const LangOptions &LO = CGM.getLangOpts(); 568 if (LO.CPlusPlus) { 569 if (LO.ObjC) 570 LangTag = llvm::dwarf::DW_LANG_ObjC_plus_plus; 571 else if (LO.CPlusPlus14) 572 LangTag = llvm::dwarf::DW_LANG_C_plus_plus_14; 573 else if (LO.CPlusPlus11) 574 LangTag = llvm::dwarf::DW_LANG_C_plus_plus_11; 575 else 576 LangTag = llvm::dwarf::DW_LANG_C_plus_plus; 577 } else if (LO.ObjC) { 578 LangTag = llvm::dwarf::DW_LANG_ObjC; 579 } else if (LO.RenderScript) { 580 LangTag = llvm::dwarf::DW_LANG_GOOGLE_RenderScript; 581 } else if (LO.C99) { 582 LangTag = llvm::dwarf::DW_LANG_C99; 583 } else { 584 LangTag = llvm::dwarf::DW_LANG_C89; 585 } 586 587 std::string Producer = getClangFullVersion(); 588 589 // Figure out which version of the ObjC runtime we have. 590 unsigned RuntimeVers = 0; 591 if (LO.ObjC) 592 RuntimeVers = LO.ObjCRuntime.isNonFragile() ? 2 : 1; 593 594 llvm::DICompileUnit::DebugEmissionKind EmissionKind; 595 switch (DebugKind) { 596 case codegenoptions::NoDebugInfo: 597 case codegenoptions::LocTrackingOnly: 598 EmissionKind = llvm::DICompileUnit::NoDebug; 599 break; 600 case codegenoptions::DebugLineTablesOnly: 601 EmissionKind = llvm::DICompileUnit::LineTablesOnly; 602 break; 603 case codegenoptions::DebugDirectivesOnly: 604 EmissionKind = llvm::DICompileUnit::DebugDirectivesOnly; 605 break; 606 case codegenoptions::DebugInfoConstructor: 607 case codegenoptions::LimitedDebugInfo: 608 case codegenoptions::FullDebugInfo: 609 case codegenoptions::UnusedTypeInfo: 610 EmissionKind = llvm::DICompileUnit::FullDebug; 611 break; 612 } 613 614 uint64_t DwoId = 0; 615 auto &CGOpts = CGM.getCodeGenOpts(); 616 // The DIFile used by the CU is distinct from the main source 617 // file. Its directory part specifies what becomes the 618 // DW_AT_comp_dir (the compilation directory), even if the source 619 // file was specified with an absolute path. 620 if (CSKind) 621 CSInfo.emplace(*CSKind, Checksum); 622 llvm::DIFile *CUFile = DBuilder.createFile( 623 remapDIPath(MainFileName), remapDIPath(getCurrentDirname()), CSInfo, 624 getSource(SM, SM.getMainFileID())); 625 626 StringRef Sysroot, SDK; 627 if (CGM.getCodeGenOpts().getDebuggerTuning() == llvm::DebuggerKind::LLDB) { 628 Sysroot = CGM.getHeaderSearchOpts().Sysroot; 629 auto B = llvm::sys::path::rbegin(Sysroot); 630 auto E = llvm::sys::path::rend(Sysroot); 631 auto It = std::find_if(B, E, [](auto SDK) { return SDK.endswith(".sdk"); }); 632 if (It != E) 633 SDK = *It; 634 } 635 636 // Create new compile unit. 637 TheCU = DBuilder.createCompileUnit( 638 LangTag, CUFile, CGOpts.EmitVersionIdentMetadata ? Producer : "", 639 LO.Optimize || CGOpts.PrepareForLTO || CGOpts.PrepareForThinLTO, 640 CGOpts.DwarfDebugFlags, RuntimeVers, CGOpts.SplitDwarfFile, EmissionKind, 641 DwoId, CGOpts.SplitDwarfInlining, CGOpts.DebugInfoForProfiling, 642 CGM.getTarget().getTriple().isNVPTX() 643 ? llvm::DICompileUnit::DebugNameTableKind::None 644 : static_cast<llvm::DICompileUnit::DebugNameTableKind>( 645 CGOpts.DebugNameTable), 646 CGOpts.DebugRangesBaseAddress, remapDIPath(Sysroot), SDK); 647 } 648 649 llvm::DIType *CGDebugInfo::CreateType(const BuiltinType *BT) { 650 llvm::dwarf::TypeKind Encoding; 651 StringRef BTName; 652 switch (BT->getKind()) { 653 #define BUILTIN_TYPE(Id, SingletonId) 654 #define PLACEHOLDER_TYPE(Id, SingletonId) case BuiltinType::Id: 655 #include "clang/AST/BuiltinTypes.def" 656 case BuiltinType::Dependent: 657 llvm_unreachable("Unexpected builtin type"); 658 case BuiltinType::NullPtr: 659 return DBuilder.createNullPtrType(); 660 case BuiltinType::Void: 661 return nullptr; 662 case BuiltinType::ObjCClass: 663 if (!ClassTy) 664 ClassTy = 665 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, 666 "objc_class", TheCU, TheCU->getFile(), 0); 667 return ClassTy; 668 case BuiltinType::ObjCId: { 669 // typedef struct objc_class *Class; 670 // typedef struct objc_object { 671 // Class isa; 672 // } *id; 673 674 if (ObjTy) 675 return ObjTy; 676 677 if (!ClassTy) 678 ClassTy = 679 DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, 680 "objc_class", TheCU, TheCU->getFile(), 0); 681 682 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy); 683 684 auto *ISATy = DBuilder.createPointerType(ClassTy, Size); 685 686 ObjTy = DBuilder.createStructType(TheCU, "objc_object", TheCU->getFile(), 0, 687 0, 0, llvm::DINode::FlagZero, nullptr, 688 llvm::DINodeArray()); 689 690 DBuilder.replaceArrays( 691 ObjTy, DBuilder.getOrCreateArray(&*DBuilder.createMemberType( 692 ObjTy, "isa", TheCU->getFile(), 0, Size, 0, 0, 693 llvm::DINode::FlagZero, ISATy))); 694 return ObjTy; 695 } 696 case BuiltinType::ObjCSel: { 697 if (!SelTy) 698 SelTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, 699 "objc_selector", TheCU, 700 TheCU->getFile(), 0); 701 return SelTy; 702 } 703 704 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 705 case BuiltinType::Id: \ 706 return getOrCreateStructPtrType("opencl_" #ImgType "_" #Suffix "_t", \ 707 SingletonId); 708 #include "clang/Basic/OpenCLImageTypes.def" 709 case BuiltinType::OCLSampler: 710 return getOrCreateStructPtrType("opencl_sampler_t", OCLSamplerDITy); 711 case BuiltinType::OCLEvent: 712 return getOrCreateStructPtrType("opencl_event_t", OCLEventDITy); 713 case BuiltinType::OCLClkEvent: 714 return getOrCreateStructPtrType("opencl_clk_event_t", OCLClkEventDITy); 715 case BuiltinType::OCLQueue: 716 return getOrCreateStructPtrType("opencl_queue_t", OCLQueueDITy); 717 case BuiltinType::OCLReserveID: 718 return getOrCreateStructPtrType("opencl_reserve_id_t", OCLReserveIDDITy); 719 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \ 720 case BuiltinType::Id: \ 721 return getOrCreateStructPtrType("opencl_" #ExtType, Id##Ty); 722 #include "clang/Basic/OpenCLExtensionTypes.def" 723 724 #define SVE_TYPE(Name, Id, SingletonId) case BuiltinType::Id: 725 #include "clang/Basic/AArch64SVEACLETypes.def" 726 { 727 ASTContext::BuiltinVectorTypeInfo Info = 728 CGM.getContext().getBuiltinVectorTypeInfo(BT); 729 unsigned NumElemsPerVG = (Info.EC.getKnownMinValue() * Info.NumVectors) / 2; 730 731 // Debuggers can't extract 1bit from a vector, so will display a 732 // bitpattern for svbool_t instead. 733 if (Info.ElementType == CGM.getContext().BoolTy) { 734 NumElemsPerVG /= 8; 735 Info.ElementType = CGM.getContext().UnsignedCharTy; 736 } 737 738 auto *LowerBound = 739 llvm::ConstantAsMetadata::get(llvm::ConstantInt::getSigned( 740 llvm::Type::getInt64Ty(CGM.getLLVMContext()), 0)); 741 SmallVector<int64_t, 9> Expr( 742 {llvm::dwarf::DW_OP_constu, NumElemsPerVG, llvm::dwarf::DW_OP_bregx, 743 /* AArch64::VG */ 46, 0, llvm::dwarf::DW_OP_mul, 744 llvm::dwarf::DW_OP_constu, 1, llvm::dwarf::DW_OP_minus}); 745 auto *UpperBound = DBuilder.createExpression(Expr); 746 747 llvm::Metadata *Subscript = DBuilder.getOrCreateSubrange( 748 /*count*/ nullptr, LowerBound, UpperBound, /*stride*/ nullptr); 749 llvm::DINodeArray SubscriptArray = DBuilder.getOrCreateArray(Subscript); 750 llvm::DIType *ElemTy = 751 getOrCreateType(Info.ElementType, TheCU->getFile()); 752 auto Align = getTypeAlignIfRequired(BT, CGM.getContext()); 753 return DBuilder.createVectorType(/*Size*/ 0, Align, ElemTy, 754 SubscriptArray); 755 } 756 case BuiltinType::UChar: 757 case BuiltinType::Char_U: 758 Encoding = llvm::dwarf::DW_ATE_unsigned_char; 759 break; 760 case BuiltinType::Char_S: 761 case BuiltinType::SChar: 762 Encoding = llvm::dwarf::DW_ATE_signed_char; 763 break; 764 case BuiltinType::Char8: 765 case BuiltinType::Char16: 766 case BuiltinType::Char32: 767 Encoding = llvm::dwarf::DW_ATE_UTF; 768 break; 769 case BuiltinType::UShort: 770 case BuiltinType::UInt: 771 case BuiltinType::UInt128: 772 case BuiltinType::ULong: 773 case BuiltinType::WChar_U: 774 case BuiltinType::ULongLong: 775 Encoding = llvm::dwarf::DW_ATE_unsigned; 776 break; 777 case BuiltinType::Short: 778 case BuiltinType::Int: 779 case BuiltinType::Int128: 780 case BuiltinType::Long: 781 case BuiltinType::WChar_S: 782 case BuiltinType::LongLong: 783 Encoding = llvm::dwarf::DW_ATE_signed; 784 break; 785 case BuiltinType::Bool: 786 Encoding = llvm::dwarf::DW_ATE_boolean; 787 break; 788 case BuiltinType::Half: 789 case BuiltinType::Float: 790 case BuiltinType::LongDouble: 791 case BuiltinType::Float16: 792 case BuiltinType::BFloat16: 793 case BuiltinType::Float128: 794 case BuiltinType::Double: 795 // FIXME: For targets where long double and __float128 have the same size, 796 // they are currently indistinguishable in the debugger without some 797 // special treatment. However, there is currently no consensus on encoding 798 // and this should be updated once a DWARF encoding exists for distinct 799 // floating point types of the same size. 800 Encoding = llvm::dwarf::DW_ATE_float; 801 break; 802 case BuiltinType::ShortAccum: 803 case BuiltinType::Accum: 804 case BuiltinType::LongAccum: 805 case BuiltinType::ShortFract: 806 case BuiltinType::Fract: 807 case BuiltinType::LongFract: 808 case BuiltinType::SatShortFract: 809 case BuiltinType::SatFract: 810 case BuiltinType::SatLongFract: 811 case BuiltinType::SatShortAccum: 812 case BuiltinType::SatAccum: 813 case BuiltinType::SatLongAccum: 814 Encoding = llvm::dwarf::DW_ATE_signed_fixed; 815 break; 816 case BuiltinType::UShortAccum: 817 case BuiltinType::UAccum: 818 case BuiltinType::ULongAccum: 819 case BuiltinType::UShortFract: 820 case BuiltinType::UFract: 821 case BuiltinType::ULongFract: 822 case BuiltinType::SatUShortAccum: 823 case BuiltinType::SatUAccum: 824 case BuiltinType::SatULongAccum: 825 case BuiltinType::SatUShortFract: 826 case BuiltinType::SatUFract: 827 case BuiltinType::SatULongFract: 828 Encoding = llvm::dwarf::DW_ATE_unsigned_fixed; 829 break; 830 } 831 832 switch (BT->getKind()) { 833 case BuiltinType::Long: 834 BTName = "long int"; 835 break; 836 case BuiltinType::LongLong: 837 BTName = "long long int"; 838 break; 839 case BuiltinType::ULong: 840 BTName = "long unsigned int"; 841 break; 842 case BuiltinType::ULongLong: 843 BTName = "long long unsigned int"; 844 break; 845 default: 846 BTName = BT->getName(CGM.getLangOpts()); 847 break; 848 } 849 // Bit size and offset of the type. 850 uint64_t Size = CGM.getContext().getTypeSize(BT); 851 return DBuilder.createBasicType(BTName, Size, Encoding); 852 } 853 854 llvm::DIType *CGDebugInfo::CreateType(const AutoType *Ty) { 855 return DBuilder.createUnspecifiedType("auto"); 856 } 857 858 llvm::DIType *CGDebugInfo::CreateType(const ExtIntType *Ty) { 859 860 StringRef Name = Ty->isUnsigned() ? "unsigned _ExtInt" : "_ExtInt"; 861 llvm::dwarf::TypeKind Encoding = Ty->isUnsigned() 862 ? llvm::dwarf::DW_ATE_unsigned 863 : llvm::dwarf::DW_ATE_signed; 864 865 return DBuilder.createBasicType(Name, CGM.getContext().getTypeSize(Ty), 866 Encoding); 867 } 868 869 llvm::DIType *CGDebugInfo::CreateType(const ComplexType *Ty) { 870 // Bit size and offset of the type. 871 llvm::dwarf::TypeKind Encoding = llvm::dwarf::DW_ATE_complex_float; 872 if (Ty->isComplexIntegerType()) 873 Encoding = llvm::dwarf::DW_ATE_lo_user; 874 875 uint64_t Size = CGM.getContext().getTypeSize(Ty); 876 return DBuilder.createBasicType("complex", Size, Encoding); 877 } 878 879 llvm::DIType *CGDebugInfo::CreateQualifiedType(QualType Ty, 880 llvm::DIFile *Unit) { 881 QualifierCollector Qc; 882 const Type *T = Qc.strip(Ty); 883 884 // Ignore these qualifiers for now. 885 Qc.removeObjCGCAttr(); 886 Qc.removeAddressSpace(); 887 Qc.removeObjCLifetime(); 888 889 // We will create one Derived type for one qualifier and recurse to handle any 890 // additional ones. 891 llvm::dwarf::Tag Tag; 892 if (Qc.hasConst()) { 893 Tag = llvm::dwarf::DW_TAG_const_type; 894 Qc.removeConst(); 895 } else if (Qc.hasVolatile()) { 896 Tag = llvm::dwarf::DW_TAG_volatile_type; 897 Qc.removeVolatile(); 898 } else if (Qc.hasRestrict()) { 899 Tag = llvm::dwarf::DW_TAG_restrict_type; 900 Qc.removeRestrict(); 901 } else { 902 assert(Qc.empty() && "Unknown type qualifier for debug info"); 903 return getOrCreateType(QualType(T, 0), Unit); 904 } 905 906 auto *FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit); 907 908 // No need to fill in the Name, Line, Size, Alignment, Offset in case of 909 // CVR derived types. 910 return DBuilder.createQualifiedType(Tag, FromTy); 911 } 912 913 llvm::DIType *CGDebugInfo::CreateType(const ObjCObjectPointerType *Ty, 914 llvm::DIFile *Unit) { 915 916 // The frontend treats 'id' as a typedef to an ObjCObjectType, 917 // whereas 'id<protocol>' is treated as an ObjCPointerType. For the 918 // debug info, we want to emit 'id' in both cases. 919 if (Ty->isObjCQualifiedIdType()) 920 return getOrCreateType(CGM.getContext().getObjCIdType(), Unit); 921 922 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty, 923 Ty->getPointeeType(), Unit); 924 } 925 926 llvm::DIType *CGDebugInfo::CreateType(const PointerType *Ty, 927 llvm::DIFile *Unit) { 928 return CreatePointerLikeType(llvm::dwarf::DW_TAG_pointer_type, Ty, 929 Ty->getPointeeType(), Unit); 930 } 931 932 /// \return whether a C++ mangling exists for the type defined by TD. 933 static bool hasCXXMangling(const TagDecl *TD, llvm::DICompileUnit *TheCU) { 934 switch (TheCU->getSourceLanguage()) { 935 case llvm::dwarf::DW_LANG_C_plus_plus: 936 case llvm::dwarf::DW_LANG_C_plus_plus_11: 937 case llvm::dwarf::DW_LANG_C_plus_plus_14: 938 return true; 939 case llvm::dwarf::DW_LANG_ObjC_plus_plus: 940 return isa<CXXRecordDecl>(TD) || isa<EnumDecl>(TD); 941 default: 942 return false; 943 } 944 } 945 946 // Determines if the debug info for this tag declaration needs a type 947 // identifier. The purpose of the unique identifier is to deduplicate type 948 // information for identical types across TUs. Because of the C++ one definition 949 // rule (ODR), it is valid to assume that the type is defined the same way in 950 // every TU and its debug info is equivalent. 951 // 952 // C does not have the ODR, and it is common for codebases to contain multiple 953 // different definitions of a struct with the same name in different TUs. 954 // Therefore, if the type doesn't have a C++ mangling, don't give it an 955 // identifer. Type information in C is smaller and simpler than C++ type 956 // information, so the increase in debug info size is negligible. 957 // 958 // If the type is not externally visible, it should be unique to the current TU, 959 // and should not need an identifier to participate in type deduplication. 960 // However, when emitting CodeView, the format internally uses these 961 // unique type name identifers for references between debug info. For example, 962 // the method of a class in an anonymous namespace uses the identifer to refer 963 // to its parent class. The Microsoft C++ ABI attempts to provide unique names 964 // for such types, so when emitting CodeView, always use identifiers for C++ 965 // types. This may create problems when attempting to emit CodeView when the MS 966 // C++ ABI is not in use. 967 static bool needsTypeIdentifier(const TagDecl *TD, CodeGenModule &CGM, 968 llvm::DICompileUnit *TheCU) { 969 // We only add a type identifier for types with C++ name mangling. 970 if (!hasCXXMangling(TD, TheCU)) 971 return false; 972 973 // Externally visible types with C++ mangling need a type identifier. 974 if (TD->isExternallyVisible()) 975 return true; 976 977 // CodeView types with C++ mangling need a type identifier. 978 if (CGM.getCodeGenOpts().EmitCodeView) 979 return true; 980 981 return false; 982 } 983 984 // Returns a unique type identifier string if one exists, or an empty string. 985 static SmallString<256> getTypeIdentifier(const TagType *Ty, CodeGenModule &CGM, 986 llvm::DICompileUnit *TheCU) { 987 SmallString<256> Identifier; 988 const TagDecl *TD = Ty->getDecl(); 989 990 if (!needsTypeIdentifier(TD, CGM, TheCU)) 991 return Identifier; 992 if (const auto *RD = dyn_cast<CXXRecordDecl>(TD)) 993 if (RD->getDefinition()) 994 if (RD->isDynamicClass() && 995 CGM.getVTableLinkage(RD) == llvm::GlobalValue::ExternalLinkage) 996 return Identifier; 997 998 // TODO: This is using the RTTI name. Is there a better way to get 999 // a unique string for a type? 1000 llvm::raw_svector_ostream Out(Identifier); 1001 CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(QualType(Ty, 0), Out); 1002 return Identifier; 1003 } 1004 1005 /// \return the appropriate DWARF tag for a composite type. 1006 static llvm::dwarf::Tag getTagForRecord(const RecordDecl *RD) { 1007 llvm::dwarf::Tag Tag; 1008 if (RD->isStruct() || RD->isInterface()) 1009 Tag = llvm::dwarf::DW_TAG_structure_type; 1010 else if (RD->isUnion()) 1011 Tag = llvm::dwarf::DW_TAG_union_type; 1012 else { 1013 // FIXME: This could be a struct type giving a default visibility different 1014 // than C++ class type, but needs llvm metadata changes first. 1015 assert(RD->isClass()); 1016 Tag = llvm::dwarf::DW_TAG_class_type; 1017 } 1018 return Tag; 1019 } 1020 1021 llvm::DICompositeType * 1022 CGDebugInfo::getOrCreateRecordFwdDecl(const RecordType *Ty, 1023 llvm::DIScope *Ctx) { 1024 const RecordDecl *RD = Ty->getDecl(); 1025 if (llvm::DIType *T = getTypeOrNull(CGM.getContext().getRecordType(RD))) 1026 return cast<llvm::DICompositeType>(T); 1027 llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation()); 1028 unsigned Line = getLineNumber(RD->getLocation()); 1029 StringRef RDName = getClassName(RD); 1030 1031 uint64_t Size = 0; 1032 uint32_t Align = 0; 1033 1034 const RecordDecl *D = RD->getDefinition(); 1035 if (D && D->isCompleteDefinition()) 1036 Size = CGM.getContext().getTypeSize(Ty); 1037 1038 llvm::DINode::DIFlags Flags = llvm::DINode::FlagFwdDecl; 1039 1040 // Add flag to nontrivial forward declarations. To be consistent with MSVC, 1041 // add the flag if a record has no definition because we don't know whether 1042 // it will be trivial or not. 1043 if (const CXXRecordDecl *CXXRD = dyn_cast<CXXRecordDecl>(RD)) 1044 if (!CXXRD->hasDefinition() || 1045 (CXXRD->hasDefinition() && !CXXRD->isTrivial())) 1046 Flags |= llvm::DINode::FlagNonTrivial; 1047 1048 // Create the type. 1049 SmallString<256> Identifier = getTypeIdentifier(Ty, CGM, TheCU); 1050 llvm::DICompositeType *RetTy = DBuilder.createReplaceableCompositeType( 1051 getTagForRecord(RD), RDName, Ctx, DefUnit, Line, 0, Size, Align, Flags, 1052 Identifier); 1053 if (CGM.getCodeGenOpts().DebugFwdTemplateParams) 1054 if (auto *TSpecial = dyn_cast<ClassTemplateSpecializationDecl>(RD)) 1055 DBuilder.replaceArrays(RetTy, llvm::DINodeArray(), 1056 CollectCXXTemplateParams(TSpecial, DefUnit)); 1057 ReplaceMap.emplace_back( 1058 std::piecewise_construct, std::make_tuple(Ty), 1059 std::make_tuple(static_cast<llvm::Metadata *>(RetTy))); 1060 return RetTy; 1061 } 1062 1063 llvm::DIType *CGDebugInfo::CreatePointerLikeType(llvm::dwarf::Tag Tag, 1064 const Type *Ty, 1065 QualType PointeeTy, 1066 llvm::DIFile *Unit) { 1067 // Bit size, align and offset of the type. 1068 // Size is always the size of a pointer. We can't use getTypeSize here 1069 // because that does not return the correct value for references. 1070 unsigned AddressSpace = CGM.getContext().getTargetAddressSpace(PointeeTy); 1071 uint64_t Size = CGM.getTarget().getPointerWidth(AddressSpace); 1072 auto Align = getTypeAlignIfRequired(Ty, CGM.getContext()); 1073 Optional<unsigned> DWARFAddressSpace = 1074 CGM.getTarget().getDWARFAddressSpace(AddressSpace); 1075 1076 if (Tag == llvm::dwarf::DW_TAG_reference_type || 1077 Tag == llvm::dwarf::DW_TAG_rvalue_reference_type) 1078 return DBuilder.createReferenceType(Tag, getOrCreateType(PointeeTy, Unit), 1079 Size, Align, DWARFAddressSpace); 1080 else 1081 return DBuilder.createPointerType(getOrCreateType(PointeeTy, Unit), Size, 1082 Align, DWARFAddressSpace); 1083 } 1084 1085 llvm::DIType *CGDebugInfo::getOrCreateStructPtrType(StringRef Name, 1086 llvm::DIType *&Cache) { 1087 if (Cache) 1088 return Cache; 1089 Cache = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, Name, 1090 TheCU, TheCU->getFile(), 0); 1091 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy); 1092 Cache = DBuilder.createPointerType(Cache, Size); 1093 return Cache; 1094 } 1095 1096 uint64_t CGDebugInfo::collectDefaultElementTypesForBlockPointer( 1097 const BlockPointerType *Ty, llvm::DIFile *Unit, llvm::DIDerivedType *DescTy, 1098 unsigned LineNo, SmallVectorImpl<llvm::Metadata *> &EltTys) { 1099 QualType FType; 1100 1101 // Advanced by calls to CreateMemberType in increments of FType, then 1102 // returned as the overall size of the default elements. 1103 uint64_t FieldOffset = 0; 1104 1105 // Blocks in OpenCL have unique constraints which make the standard fields 1106 // redundant while requiring size and align fields for enqueue_kernel. See 1107 // initializeForBlockHeader in CGBlocks.cpp 1108 if (CGM.getLangOpts().OpenCL) { 1109 FType = CGM.getContext().IntTy; 1110 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset)); 1111 EltTys.push_back(CreateMemberType(Unit, FType, "__align", &FieldOffset)); 1112 } else { 1113 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); 1114 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); 1115 FType = CGM.getContext().IntTy; 1116 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); 1117 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset)); 1118 FType = CGM.getContext().getPointerType(Ty->getPointeeType()); 1119 EltTys.push_back(CreateMemberType(Unit, FType, "__FuncPtr", &FieldOffset)); 1120 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); 1121 uint64_t FieldSize = CGM.getContext().getTypeSize(Ty); 1122 uint32_t FieldAlign = CGM.getContext().getTypeAlign(Ty); 1123 EltTys.push_back(DBuilder.createMemberType( 1124 Unit, "__descriptor", nullptr, LineNo, FieldSize, FieldAlign, 1125 FieldOffset, llvm::DINode::FlagZero, DescTy)); 1126 FieldOffset += FieldSize; 1127 } 1128 1129 return FieldOffset; 1130 } 1131 1132 llvm::DIType *CGDebugInfo::CreateType(const BlockPointerType *Ty, 1133 llvm::DIFile *Unit) { 1134 SmallVector<llvm::Metadata *, 8> EltTys; 1135 QualType FType; 1136 uint64_t FieldOffset; 1137 llvm::DINodeArray Elements; 1138 1139 FieldOffset = 0; 1140 FType = CGM.getContext().UnsignedLongTy; 1141 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset)); 1142 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset)); 1143 1144 Elements = DBuilder.getOrCreateArray(EltTys); 1145 EltTys.clear(); 1146 1147 llvm::DINode::DIFlags Flags = llvm::DINode::FlagAppleBlock; 1148 1149 auto *EltTy = 1150 DBuilder.createStructType(Unit, "__block_descriptor", nullptr, 0, 1151 FieldOffset, 0, Flags, nullptr, Elements); 1152 1153 // Bit size, align and offset of the type. 1154 uint64_t Size = CGM.getContext().getTypeSize(Ty); 1155 1156 auto *DescTy = DBuilder.createPointerType(EltTy, Size); 1157 1158 FieldOffset = collectDefaultElementTypesForBlockPointer(Ty, Unit, DescTy, 1159 0, EltTys); 1160 1161 Elements = DBuilder.getOrCreateArray(EltTys); 1162 1163 // The __block_literal_generic structs are marked with a special 1164 // DW_AT_APPLE_BLOCK attribute and are an implementation detail only 1165 // the debugger needs to know about. To allow type uniquing, emit 1166 // them without a name or a location. 1167 EltTy = DBuilder.createStructType(Unit, "", nullptr, 0, FieldOffset, 0, 1168 Flags, nullptr, Elements); 1169 1170 return DBuilder.createPointerType(EltTy, Size); 1171 } 1172 1173 llvm::DIType *CGDebugInfo::CreateType(const TemplateSpecializationType *Ty, 1174 llvm::DIFile *Unit) { 1175 assert(Ty->isTypeAlias()); 1176 llvm::DIType *Src = getOrCreateType(Ty->getAliasedType(), Unit); 1177 1178 auto *AliasDecl = 1179 cast<TypeAliasTemplateDecl>(Ty->getTemplateName().getAsTemplateDecl()) 1180 ->getTemplatedDecl(); 1181 1182 if (AliasDecl->hasAttr<NoDebugAttr>()) 1183 return Src; 1184 1185 SmallString<128> NS; 1186 llvm::raw_svector_ostream OS(NS); 1187 Ty->getTemplateName().print(OS, getPrintingPolicy(), /*qualified*/ false); 1188 printTemplateArgumentList(OS, Ty->template_arguments(), getPrintingPolicy()); 1189 1190 SourceLocation Loc = AliasDecl->getLocation(); 1191 return DBuilder.createTypedef(Src, OS.str(), getOrCreateFile(Loc), 1192 getLineNumber(Loc), 1193 getDeclContextDescriptor(AliasDecl)); 1194 } 1195 1196 llvm::DIType *CGDebugInfo::CreateType(const TypedefType *Ty, 1197 llvm::DIFile *Unit) { 1198 llvm::DIType *Underlying = 1199 getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit); 1200 1201 if (Ty->getDecl()->hasAttr<NoDebugAttr>()) 1202 return Underlying; 1203 1204 // We don't set size information, but do specify where the typedef was 1205 // declared. 1206 SourceLocation Loc = Ty->getDecl()->getLocation(); 1207 1208 uint32_t Align = getDeclAlignIfRequired(Ty->getDecl(), CGM.getContext()); 1209 // Typedefs are derived from some other type. 1210 return DBuilder.createTypedef(Underlying, Ty->getDecl()->getName(), 1211 getOrCreateFile(Loc), getLineNumber(Loc), 1212 getDeclContextDescriptor(Ty->getDecl()), Align); 1213 } 1214 1215 static unsigned getDwarfCC(CallingConv CC) { 1216 switch (CC) { 1217 case CC_C: 1218 // Avoid emitting DW_AT_calling_convention if the C convention was used. 1219 return 0; 1220 1221 case CC_X86StdCall: 1222 return llvm::dwarf::DW_CC_BORLAND_stdcall; 1223 case CC_X86FastCall: 1224 return llvm::dwarf::DW_CC_BORLAND_msfastcall; 1225 case CC_X86ThisCall: 1226 return llvm::dwarf::DW_CC_BORLAND_thiscall; 1227 case CC_X86VectorCall: 1228 return llvm::dwarf::DW_CC_LLVM_vectorcall; 1229 case CC_X86Pascal: 1230 return llvm::dwarf::DW_CC_BORLAND_pascal; 1231 case CC_Win64: 1232 return llvm::dwarf::DW_CC_LLVM_Win64; 1233 case CC_X86_64SysV: 1234 return llvm::dwarf::DW_CC_LLVM_X86_64SysV; 1235 case CC_AAPCS: 1236 case CC_AArch64VectorCall: 1237 return llvm::dwarf::DW_CC_LLVM_AAPCS; 1238 case CC_AAPCS_VFP: 1239 return llvm::dwarf::DW_CC_LLVM_AAPCS_VFP; 1240 case CC_IntelOclBicc: 1241 return llvm::dwarf::DW_CC_LLVM_IntelOclBicc; 1242 case CC_SpirFunction: 1243 return llvm::dwarf::DW_CC_LLVM_SpirFunction; 1244 case CC_OpenCLKernel: 1245 return llvm::dwarf::DW_CC_LLVM_OpenCLKernel; 1246 case CC_Swift: 1247 return llvm::dwarf::DW_CC_LLVM_Swift; 1248 case CC_PreserveMost: 1249 return llvm::dwarf::DW_CC_LLVM_PreserveMost; 1250 case CC_PreserveAll: 1251 return llvm::dwarf::DW_CC_LLVM_PreserveAll; 1252 case CC_X86RegCall: 1253 return llvm::dwarf::DW_CC_LLVM_X86RegCall; 1254 } 1255 return 0; 1256 } 1257 1258 llvm::DIType *CGDebugInfo::CreateType(const FunctionType *Ty, 1259 llvm::DIFile *Unit) { 1260 SmallVector<llvm::Metadata *, 16> EltTys; 1261 1262 // Add the result type at least. 1263 EltTys.push_back(getOrCreateType(Ty->getReturnType(), Unit)); 1264 1265 // Set up remainder of arguments if there is a prototype. 1266 // otherwise emit it as a variadic function. 1267 if (isa<FunctionNoProtoType>(Ty)) 1268 EltTys.push_back(DBuilder.createUnspecifiedParameter()); 1269 else if (const auto *FPT = dyn_cast<FunctionProtoType>(Ty)) { 1270 for (const QualType &ParamType : FPT->param_types()) 1271 EltTys.push_back(getOrCreateType(ParamType, Unit)); 1272 if (FPT->isVariadic()) 1273 EltTys.push_back(DBuilder.createUnspecifiedParameter()); 1274 } 1275 1276 llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(EltTys); 1277 return DBuilder.createSubroutineType(EltTypeArray, llvm::DINode::FlagZero, 1278 getDwarfCC(Ty->getCallConv())); 1279 } 1280 1281 /// Convert an AccessSpecifier into the corresponding DINode flag. 1282 /// As an optimization, return 0 if the access specifier equals the 1283 /// default for the containing type. 1284 static llvm::DINode::DIFlags getAccessFlag(AccessSpecifier Access, 1285 const RecordDecl *RD) { 1286 AccessSpecifier Default = clang::AS_none; 1287 if (RD && RD->isClass()) 1288 Default = clang::AS_private; 1289 else if (RD && (RD->isStruct() || RD->isUnion())) 1290 Default = clang::AS_public; 1291 1292 if (Access == Default) 1293 return llvm::DINode::FlagZero; 1294 1295 switch (Access) { 1296 case clang::AS_private: 1297 return llvm::DINode::FlagPrivate; 1298 case clang::AS_protected: 1299 return llvm::DINode::FlagProtected; 1300 case clang::AS_public: 1301 return llvm::DINode::FlagPublic; 1302 case clang::AS_none: 1303 return llvm::DINode::FlagZero; 1304 } 1305 llvm_unreachable("unexpected access enumerator"); 1306 } 1307 1308 llvm::DIType *CGDebugInfo::createBitFieldType(const FieldDecl *BitFieldDecl, 1309 llvm::DIScope *RecordTy, 1310 const RecordDecl *RD) { 1311 StringRef Name = BitFieldDecl->getName(); 1312 QualType Ty = BitFieldDecl->getType(); 1313 SourceLocation Loc = BitFieldDecl->getLocation(); 1314 llvm::DIFile *VUnit = getOrCreateFile(Loc); 1315 llvm::DIType *DebugType = getOrCreateType(Ty, VUnit); 1316 1317 // Get the location for the field. 1318 llvm::DIFile *File = getOrCreateFile(Loc); 1319 unsigned Line = getLineNumber(Loc); 1320 1321 const CGBitFieldInfo &BitFieldInfo = 1322 CGM.getTypes().getCGRecordLayout(RD).getBitFieldInfo(BitFieldDecl); 1323 uint64_t SizeInBits = BitFieldInfo.Size; 1324 assert(SizeInBits > 0 && "found named 0-width bitfield"); 1325 uint64_t StorageOffsetInBits = 1326 CGM.getContext().toBits(BitFieldInfo.StorageOffset); 1327 uint64_t Offset = BitFieldInfo.Offset; 1328 // The bit offsets for big endian machines are reversed for big 1329 // endian target, compensate for that as the DIDerivedType requires 1330 // un-reversed offsets. 1331 if (CGM.getDataLayout().isBigEndian()) 1332 Offset = BitFieldInfo.StorageSize - BitFieldInfo.Size - Offset; 1333 uint64_t OffsetInBits = StorageOffsetInBits + Offset; 1334 llvm::DINode::DIFlags Flags = getAccessFlag(BitFieldDecl->getAccess(), RD); 1335 return DBuilder.createBitFieldMemberType( 1336 RecordTy, Name, File, Line, SizeInBits, OffsetInBits, StorageOffsetInBits, 1337 Flags, DebugType); 1338 } 1339 1340 llvm::DIType * 1341 CGDebugInfo::createFieldType(StringRef name, QualType type, SourceLocation loc, 1342 AccessSpecifier AS, uint64_t offsetInBits, 1343 uint32_t AlignInBits, llvm::DIFile *tunit, 1344 llvm::DIScope *scope, const RecordDecl *RD) { 1345 llvm::DIType *debugType = getOrCreateType(type, tunit); 1346 1347 // Get the location for the field. 1348 llvm::DIFile *file = getOrCreateFile(loc); 1349 unsigned line = getLineNumber(loc); 1350 1351 uint64_t SizeInBits = 0; 1352 auto Align = AlignInBits; 1353 if (!type->isIncompleteArrayType()) { 1354 TypeInfo TI = CGM.getContext().getTypeInfo(type); 1355 SizeInBits = TI.Width; 1356 if (!Align) 1357 Align = getTypeAlignIfRequired(type, CGM.getContext()); 1358 } 1359 1360 llvm::DINode::DIFlags flags = getAccessFlag(AS, RD); 1361 return DBuilder.createMemberType(scope, name, file, line, SizeInBits, Align, 1362 offsetInBits, flags, debugType); 1363 } 1364 1365 void CGDebugInfo::CollectRecordLambdaFields( 1366 const CXXRecordDecl *CXXDecl, SmallVectorImpl<llvm::Metadata *> &elements, 1367 llvm::DIType *RecordTy) { 1368 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture 1369 // has the name and the location of the variable so we should iterate over 1370 // both concurrently. 1371 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(CXXDecl); 1372 RecordDecl::field_iterator Field = CXXDecl->field_begin(); 1373 unsigned fieldno = 0; 1374 for (CXXRecordDecl::capture_const_iterator I = CXXDecl->captures_begin(), 1375 E = CXXDecl->captures_end(); 1376 I != E; ++I, ++Field, ++fieldno) { 1377 const LambdaCapture &C = *I; 1378 if (C.capturesVariable()) { 1379 SourceLocation Loc = C.getLocation(); 1380 assert(!Field->isBitField() && "lambdas don't have bitfield members!"); 1381 VarDecl *V = C.getCapturedVar(); 1382 StringRef VName = V->getName(); 1383 llvm::DIFile *VUnit = getOrCreateFile(Loc); 1384 auto Align = getDeclAlignIfRequired(V, CGM.getContext()); 1385 llvm::DIType *FieldType = createFieldType( 1386 VName, Field->getType(), Loc, Field->getAccess(), 1387 layout.getFieldOffset(fieldno), Align, VUnit, RecordTy, CXXDecl); 1388 elements.push_back(FieldType); 1389 } else if (C.capturesThis()) { 1390 // TODO: Need to handle 'this' in some way by probably renaming the 1391 // this of the lambda class and having a field member of 'this' or 1392 // by using AT_object_pointer for the function and having that be 1393 // used as 'this' for semantic references. 1394 FieldDecl *f = *Field; 1395 llvm::DIFile *VUnit = getOrCreateFile(f->getLocation()); 1396 QualType type = f->getType(); 1397 llvm::DIType *fieldType = createFieldType( 1398 "this", type, f->getLocation(), f->getAccess(), 1399 layout.getFieldOffset(fieldno), VUnit, RecordTy, CXXDecl); 1400 1401 elements.push_back(fieldType); 1402 } 1403 } 1404 } 1405 1406 llvm::DIDerivedType * 1407 CGDebugInfo::CreateRecordStaticField(const VarDecl *Var, llvm::DIType *RecordTy, 1408 const RecordDecl *RD) { 1409 // Create the descriptor for the static variable, with or without 1410 // constant initializers. 1411 Var = Var->getCanonicalDecl(); 1412 llvm::DIFile *VUnit = getOrCreateFile(Var->getLocation()); 1413 llvm::DIType *VTy = getOrCreateType(Var->getType(), VUnit); 1414 1415 unsigned LineNumber = getLineNumber(Var->getLocation()); 1416 StringRef VName = Var->getName(); 1417 llvm::Constant *C = nullptr; 1418 if (Var->getInit()) { 1419 const APValue *Value = Var->evaluateValue(); 1420 if (Value) { 1421 if (Value->isInt()) 1422 C = llvm::ConstantInt::get(CGM.getLLVMContext(), Value->getInt()); 1423 if (Value->isFloat()) 1424 C = llvm::ConstantFP::get(CGM.getLLVMContext(), Value->getFloat()); 1425 } 1426 } 1427 1428 llvm::DINode::DIFlags Flags = getAccessFlag(Var->getAccess(), RD); 1429 auto Align = getDeclAlignIfRequired(Var, CGM.getContext()); 1430 llvm::DIDerivedType *GV = DBuilder.createStaticMemberType( 1431 RecordTy, VName, VUnit, LineNumber, VTy, Flags, C, Align); 1432 StaticDataMemberCache[Var->getCanonicalDecl()].reset(GV); 1433 return GV; 1434 } 1435 1436 void CGDebugInfo::CollectRecordNormalField( 1437 const FieldDecl *field, uint64_t OffsetInBits, llvm::DIFile *tunit, 1438 SmallVectorImpl<llvm::Metadata *> &elements, llvm::DIType *RecordTy, 1439 const RecordDecl *RD) { 1440 StringRef name = field->getName(); 1441 QualType type = field->getType(); 1442 1443 // Ignore unnamed fields unless they're anonymous structs/unions. 1444 if (name.empty() && !type->isRecordType()) 1445 return; 1446 1447 llvm::DIType *FieldType; 1448 if (field->isBitField()) { 1449 FieldType = createBitFieldType(field, RecordTy, RD); 1450 } else { 1451 auto Align = getDeclAlignIfRequired(field, CGM.getContext()); 1452 FieldType = 1453 createFieldType(name, type, field->getLocation(), field->getAccess(), 1454 OffsetInBits, Align, tunit, RecordTy, RD); 1455 } 1456 1457 elements.push_back(FieldType); 1458 } 1459 1460 void CGDebugInfo::CollectRecordNestedType( 1461 const TypeDecl *TD, SmallVectorImpl<llvm::Metadata *> &elements) { 1462 QualType Ty = CGM.getContext().getTypeDeclType(TD); 1463 // Injected class names are not considered nested records. 1464 if (isa<InjectedClassNameType>(Ty)) 1465 return; 1466 SourceLocation Loc = TD->getLocation(); 1467 llvm::DIType *nestedType = getOrCreateType(Ty, getOrCreateFile(Loc)); 1468 elements.push_back(nestedType); 1469 } 1470 1471 void CGDebugInfo::CollectRecordFields( 1472 const RecordDecl *record, llvm::DIFile *tunit, 1473 SmallVectorImpl<llvm::Metadata *> &elements, 1474 llvm::DICompositeType *RecordTy) { 1475 const auto *CXXDecl = dyn_cast<CXXRecordDecl>(record); 1476 1477 if (CXXDecl && CXXDecl->isLambda()) 1478 CollectRecordLambdaFields(CXXDecl, elements, RecordTy); 1479 else { 1480 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record); 1481 1482 // Field number for non-static fields. 1483 unsigned fieldNo = 0; 1484 1485 // Static and non-static members should appear in the same order as 1486 // the corresponding declarations in the source program. 1487 for (const auto *I : record->decls()) 1488 if (const auto *V = dyn_cast<VarDecl>(I)) { 1489 if (V->hasAttr<NoDebugAttr>()) 1490 continue; 1491 1492 // Skip variable template specializations when emitting CodeView. MSVC 1493 // doesn't emit them. 1494 if (CGM.getCodeGenOpts().EmitCodeView && 1495 isa<VarTemplateSpecializationDecl>(V)) 1496 continue; 1497 1498 if (isa<VarTemplatePartialSpecializationDecl>(V)) 1499 continue; 1500 1501 // Reuse the existing static member declaration if one exists 1502 auto MI = StaticDataMemberCache.find(V->getCanonicalDecl()); 1503 if (MI != StaticDataMemberCache.end()) { 1504 assert(MI->second && 1505 "Static data member declaration should still exist"); 1506 elements.push_back(MI->second); 1507 } else { 1508 auto Field = CreateRecordStaticField(V, RecordTy, record); 1509 elements.push_back(Field); 1510 } 1511 } else if (const auto *field = dyn_cast<FieldDecl>(I)) { 1512 CollectRecordNormalField(field, layout.getFieldOffset(fieldNo), tunit, 1513 elements, RecordTy, record); 1514 1515 // Bump field number for next field. 1516 ++fieldNo; 1517 } else if (CGM.getCodeGenOpts().EmitCodeView) { 1518 // Debug info for nested types is included in the member list only for 1519 // CodeView. 1520 if (const auto *nestedType = dyn_cast<TypeDecl>(I)) 1521 if (!nestedType->isImplicit() && 1522 nestedType->getDeclContext() == record) 1523 CollectRecordNestedType(nestedType, elements); 1524 } 1525 } 1526 } 1527 1528 llvm::DISubroutineType * 1529 CGDebugInfo::getOrCreateMethodType(const CXXMethodDecl *Method, 1530 llvm::DIFile *Unit, bool decl) { 1531 const FunctionProtoType *Func = Method->getType()->getAs<FunctionProtoType>(); 1532 if (Method->isStatic()) 1533 return cast_or_null<llvm::DISubroutineType>( 1534 getOrCreateType(QualType(Func, 0), Unit)); 1535 return getOrCreateInstanceMethodType(Method->getThisType(), Func, Unit, decl); 1536 } 1537 1538 llvm::DISubroutineType * 1539 CGDebugInfo::getOrCreateInstanceMethodType(QualType ThisPtr, 1540 const FunctionProtoType *Func, 1541 llvm::DIFile *Unit, bool decl) { 1542 // Add "this" pointer. 1543 llvm::DITypeRefArray Args( 1544 cast<llvm::DISubroutineType>(getOrCreateType(QualType(Func, 0), Unit)) 1545 ->getTypeArray()); 1546 assert(Args.size() && "Invalid number of arguments!"); 1547 1548 SmallVector<llvm::Metadata *, 16> Elts; 1549 // First element is always return type. For 'void' functions it is NULL. 1550 QualType temp = Func->getReturnType(); 1551 if (temp->getTypeClass() == Type::Auto && decl) 1552 Elts.push_back(CreateType(cast<AutoType>(temp))); 1553 else 1554 Elts.push_back(Args[0]); 1555 1556 // "this" pointer is always first argument. 1557 const CXXRecordDecl *RD = ThisPtr->getPointeeCXXRecordDecl(); 1558 if (isa<ClassTemplateSpecializationDecl>(RD)) { 1559 // Create pointer type directly in this case. 1560 const PointerType *ThisPtrTy = cast<PointerType>(ThisPtr); 1561 QualType PointeeTy = ThisPtrTy->getPointeeType(); 1562 unsigned AS = CGM.getContext().getTargetAddressSpace(PointeeTy); 1563 uint64_t Size = CGM.getTarget().getPointerWidth(AS); 1564 auto Align = getTypeAlignIfRequired(ThisPtrTy, CGM.getContext()); 1565 llvm::DIType *PointeeType = getOrCreateType(PointeeTy, Unit); 1566 llvm::DIType *ThisPtrType = 1567 DBuilder.createPointerType(PointeeType, Size, Align); 1568 TypeCache[ThisPtr.getAsOpaquePtr()].reset(ThisPtrType); 1569 // TODO: This and the artificial type below are misleading, the 1570 // types aren't artificial the argument is, but the current 1571 // metadata doesn't represent that. 1572 ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType); 1573 Elts.push_back(ThisPtrType); 1574 } else { 1575 llvm::DIType *ThisPtrType = getOrCreateType(ThisPtr, Unit); 1576 TypeCache[ThisPtr.getAsOpaquePtr()].reset(ThisPtrType); 1577 ThisPtrType = DBuilder.createObjectPointerType(ThisPtrType); 1578 Elts.push_back(ThisPtrType); 1579 } 1580 1581 // Copy rest of the arguments. 1582 for (unsigned i = 1, e = Args.size(); i != e; ++i) 1583 Elts.push_back(Args[i]); 1584 1585 llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(Elts); 1586 1587 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 1588 if (Func->getExtProtoInfo().RefQualifier == RQ_LValue) 1589 Flags |= llvm::DINode::FlagLValueReference; 1590 if (Func->getExtProtoInfo().RefQualifier == RQ_RValue) 1591 Flags |= llvm::DINode::FlagRValueReference; 1592 1593 return DBuilder.createSubroutineType(EltTypeArray, Flags, 1594 getDwarfCC(Func->getCallConv())); 1595 } 1596 1597 /// isFunctionLocalClass - Return true if CXXRecordDecl is defined 1598 /// inside a function. 1599 static bool isFunctionLocalClass(const CXXRecordDecl *RD) { 1600 if (const auto *NRD = dyn_cast<CXXRecordDecl>(RD->getDeclContext())) 1601 return isFunctionLocalClass(NRD); 1602 if (isa<FunctionDecl>(RD->getDeclContext())) 1603 return true; 1604 return false; 1605 } 1606 1607 llvm::DISubprogram *CGDebugInfo::CreateCXXMemberFunction( 1608 const CXXMethodDecl *Method, llvm::DIFile *Unit, llvm::DIType *RecordTy) { 1609 bool IsCtorOrDtor = 1610 isa<CXXConstructorDecl>(Method) || isa<CXXDestructorDecl>(Method); 1611 1612 StringRef MethodName = getFunctionName(Method); 1613 llvm::DISubroutineType *MethodTy = getOrCreateMethodType(Method, Unit, true); 1614 1615 // Since a single ctor/dtor corresponds to multiple functions, it doesn't 1616 // make sense to give a single ctor/dtor a linkage name. 1617 StringRef MethodLinkageName; 1618 // FIXME: 'isFunctionLocalClass' seems like an arbitrary/unintentional 1619 // property to use here. It may've been intended to model "is non-external 1620 // type" but misses cases of non-function-local but non-external classes such 1621 // as those in anonymous namespaces as well as the reverse - external types 1622 // that are function local, such as those in (non-local) inline functions. 1623 if (!IsCtorOrDtor && !isFunctionLocalClass(Method->getParent())) 1624 MethodLinkageName = CGM.getMangledName(Method); 1625 1626 // Get the location for the method. 1627 llvm::DIFile *MethodDefUnit = nullptr; 1628 unsigned MethodLine = 0; 1629 if (!Method->isImplicit()) { 1630 MethodDefUnit = getOrCreateFile(Method->getLocation()); 1631 MethodLine = getLineNumber(Method->getLocation()); 1632 } 1633 1634 // Collect virtual method info. 1635 llvm::DIType *ContainingType = nullptr; 1636 unsigned VIndex = 0; 1637 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 1638 llvm::DISubprogram::DISPFlags SPFlags = llvm::DISubprogram::SPFlagZero; 1639 int ThisAdjustment = 0; 1640 1641 if (Method->isVirtual()) { 1642 if (Method->isPure()) 1643 SPFlags |= llvm::DISubprogram::SPFlagPureVirtual; 1644 else 1645 SPFlags |= llvm::DISubprogram::SPFlagVirtual; 1646 1647 if (CGM.getTarget().getCXXABI().isItaniumFamily()) { 1648 // It doesn't make sense to give a virtual destructor a vtable index, 1649 // since a single destructor has two entries in the vtable. 1650 if (!isa<CXXDestructorDecl>(Method)) 1651 VIndex = CGM.getItaniumVTableContext().getMethodVTableIndex(Method); 1652 } else { 1653 // Emit MS ABI vftable information. There is only one entry for the 1654 // deleting dtor. 1655 const auto *DD = dyn_cast<CXXDestructorDecl>(Method); 1656 GlobalDecl GD = DD ? GlobalDecl(DD, Dtor_Deleting) : GlobalDecl(Method); 1657 MethodVFTableLocation ML = 1658 CGM.getMicrosoftVTableContext().getMethodVFTableLocation(GD); 1659 VIndex = ML.Index; 1660 1661 // CodeView only records the vftable offset in the class that introduces 1662 // the virtual method. This is possible because, unlike Itanium, the MS 1663 // C++ ABI does not include all virtual methods from non-primary bases in 1664 // the vtable for the most derived class. For example, if C inherits from 1665 // A and B, C's primary vftable will not include B's virtual methods. 1666 if (Method->size_overridden_methods() == 0) 1667 Flags |= llvm::DINode::FlagIntroducedVirtual; 1668 1669 // The 'this' adjustment accounts for both the virtual and non-virtual 1670 // portions of the adjustment. Presumably the debugger only uses it when 1671 // it knows the dynamic type of an object. 1672 ThisAdjustment = CGM.getCXXABI() 1673 .getVirtualFunctionPrologueThisAdjustment(GD) 1674 .getQuantity(); 1675 } 1676 ContainingType = RecordTy; 1677 } 1678 1679 // We're checking for deleted C++ special member functions 1680 // [Ctors,Dtors, Copy/Move] 1681 auto checkAttrDeleted = [&](const auto *Method) { 1682 if (Method->getCanonicalDecl()->isDeleted()) 1683 SPFlags |= llvm::DISubprogram::SPFlagDeleted; 1684 }; 1685 1686 switch (Method->getKind()) { 1687 1688 case Decl::CXXConstructor: 1689 case Decl::CXXDestructor: 1690 checkAttrDeleted(Method); 1691 break; 1692 case Decl::CXXMethod: 1693 if (Method->isCopyAssignmentOperator() || 1694 Method->isMoveAssignmentOperator()) 1695 checkAttrDeleted(Method); 1696 break; 1697 default: 1698 break; 1699 } 1700 1701 if (Method->isNoReturn()) 1702 Flags |= llvm::DINode::FlagNoReturn; 1703 1704 if (Method->isStatic()) 1705 Flags |= llvm::DINode::FlagStaticMember; 1706 if (Method->isImplicit()) 1707 Flags |= llvm::DINode::FlagArtificial; 1708 Flags |= getAccessFlag(Method->getAccess(), Method->getParent()); 1709 if (const auto *CXXC = dyn_cast<CXXConstructorDecl>(Method)) { 1710 if (CXXC->isExplicit()) 1711 Flags |= llvm::DINode::FlagExplicit; 1712 } else if (const auto *CXXC = dyn_cast<CXXConversionDecl>(Method)) { 1713 if (CXXC->isExplicit()) 1714 Flags |= llvm::DINode::FlagExplicit; 1715 } 1716 if (Method->hasPrototype()) 1717 Flags |= llvm::DINode::FlagPrototyped; 1718 if (Method->getRefQualifier() == RQ_LValue) 1719 Flags |= llvm::DINode::FlagLValueReference; 1720 if (Method->getRefQualifier() == RQ_RValue) 1721 Flags |= llvm::DINode::FlagRValueReference; 1722 if (CGM.getLangOpts().Optimize) 1723 SPFlags |= llvm::DISubprogram::SPFlagOptimized; 1724 1725 // In this debug mode, emit type info for a class when its constructor type 1726 // info is emitted. 1727 if (DebugKind == codegenoptions::DebugInfoConstructor) 1728 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Method)) 1729 completeUnusedClass(*CD->getParent()); 1730 1731 llvm::DINodeArray TParamsArray = CollectFunctionTemplateParams(Method, Unit); 1732 llvm::DISubprogram *SP = DBuilder.createMethod( 1733 RecordTy, MethodName, MethodLinkageName, MethodDefUnit, MethodLine, 1734 MethodTy, VIndex, ThisAdjustment, ContainingType, Flags, SPFlags, 1735 TParamsArray.get()); 1736 1737 SPCache[Method->getCanonicalDecl()].reset(SP); 1738 1739 return SP; 1740 } 1741 1742 void CGDebugInfo::CollectCXXMemberFunctions( 1743 const CXXRecordDecl *RD, llvm::DIFile *Unit, 1744 SmallVectorImpl<llvm::Metadata *> &EltTys, llvm::DIType *RecordTy) { 1745 1746 // Since we want more than just the individual member decls if we 1747 // have templated functions iterate over every declaration to gather 1748 // the functions. 1749 for (const auto *I : RD->decls()) { 1750 const auto *Method = dyn_cast<CXXMethodDecl>(I); 1751 // If the member is implicit, don't add it to the member list. This avoids 1752 // the member being added to type units by LLVM, while still allowing it 1753 // to be emitted into the type declaration/reference inside the compile 1754 // unit. 1755 // Ditto 'nodebug' methods, for consistency with CodeGenFunction.cpp. 1756 // FIXME: Handle Using(Shadow?)Decls here to create 1757 // DW_TAG_imported_declarations inside the class for base decls brought into 1758 // derived classes. GDB doesn't seem to notice/leverage these when I tried 1759 // it, so I'm not rushing to fix this. (GCC seems to produce them, if 1760 // referenced) 1761 if (!Method || Method->isImplicit() || Method->hasAttr<NoDebugAttr>()) 1762 continue; 1763 1764 if (Method->getType()->castAs<FunctionProtoType>()->getContainedAutoType()) 1765 continue; 1766 1767 // Reuse the existing member function declaration if it exists. 1768 // It may be associated with the declaration of the type & should be 1769 // reused as we're building the definition. 1770 // 1771 // This situation can arise in the vtable-based debug info reduction where 1772 // implicit members are emitted in a non-vtable TU. 1773 auto MI = SPCache.find(Method->getCanonicalDecl()); 1774 EltTys.push_back(MI == SPCache.end() 1775 ? CreateCXXMemberFunction(Method, Unit, RecordTy) 1776 : static_cast<llvm::Metadata *>(MI->second)); 1777 } 1778 } 1779 1780 void CGDebugInfo::CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile *Unit, 1781 SmallVectorImpl<llvm::Metadata *> &EltTys, 1782 llvm::DIType *RecordTy) { 1783 llvm::DenseSet<CanonicalDeclPtr<const CXXRecordDecl>> SeenTypes; 1784 CollectCXXBasesAux(RD, Unit, EltTys, RecordTy, RD->bases(), SeenTypes, 1785 llvm::DINode::FlagZero); 1786 1787 // If we are generating CodeView debug info, we also need to emit records for 1788 // indirect virtual base classes. 1789 if (CGM.getCodeGenOpts().EmitCodeView) { 1790 CollectCXXBasesAux(RD, Unit, EltTys, RecordTy, RD->vbases(), SeenTypes, 1791 llvm::DINode::FlagIndirectVirtualBase); 1792 } 1793 } 1794 1795 void CGDebugInfo::CollectCXXBasesAux( 1796 const CXXRecordDecl *RD, llvm::DIFile *Unit, 1797 SmallVectorImpl<llvm::Metadata *> &EltTys, llvm::DIType *RecordTy, 1798 const CXXRecordDecl::base_class_const_range &Bases, 1799 llvm::DenseSet<CanonicalDeclPtr<const CXXRecordDecl>> &SeenTypes, 1800 llvm::DINode::DIFlags StartingFlags) { 1801 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); 1802 for (const auto &BI : Bases) { 1803 const auto *Base = 1804 cast<CXXRecordDecl>(BI.getType()->castAs<RecordType>()->getDecl()); 1805 if (!SeenTypes.insert(Base).second) 1806 continue; 1807 auto *BaseTy = getOrCreateType(BI.getType(), Unit); 1808 llvm::DINode::DIFlags BFlags = StartingFlags; 1809 uint64_t BaseOffset; 1810 uint32_t VBPtrOffset = 0; 1811 1812 if (BI.isVirtual()) { 1813 if (CGM.getTarget().getCXXABI().isItaniumFamily()) { 1814 // virtual base offset offset is -ve. The code generator emits dwarf 1815 // expression where it expects +ve number. 1816 BaseOffset = 0 - CGM.getItaniumVTableContext() 1817 .getVirtualBaseOffsetOffset(RD, Base) 1818 .getQuantity(); 1819 } else { 1820 // In the MS ABI, store the vbtable offset, which is analogous to the 1821 // vbase offset offset in Itanium. 1822 BaseOffset = 1823 4 * CGM.getMicrosoftVTableContext().getVBTableIndex(RD, Base); 1824 VBPtrOffset = CGM.getContext() 1825 .getASTRecordLayout(RD) 1826 .getVBPtrOffset() 1827 .getQuantity(); 1828 } 1829 BFlags |= llvm::DINode::FlagVirtual; 1830 } else 1831 BaseOffset = CGM.getContext().toBits(RL.getBaseClassOffset(Base)); 1832 // FIXME: Inconsistent units for BaseOffset. It is in bytes when 1833 // BI->isVirtual() and bits when not. 1834 1835 BFlags |= getAccessFlag(BI.getAccessSpecifier(), RD); 1836 llvm::DIType *DTy = DBuilder.createInheritance(RecordTy, BaseTy, BaseOffset, 1837 VBPtrOffset, BFlags); 1838 EltTys.push_back(DTy); 1839 } 1840 } 1841 1842 llvm::DINodeArray 1843 CGDebugInfo::CollectTemplateParams(const TemplateParameterList *TPList, 1844 ArrayRef<TemplateArgument> TAList, 1845 llvm::DIFile *Unit) { 1846 SmallVector<llvm::Metadata *, 16> TemplateParams; 1847 for (unsigned i = 0, e = TAList.size(); i != e; ++i) { 1848 const TemplateArgument &TA = TAList[i]; 1849 StringRef Name; 1850 bool defaultParameter = false; 1851 if (TPList) 1852 Name = TPList->getParam(i)->getName(); 1853 switch (TA.getKind()) { 1854 case TemplateArgument::Type: { 1855 llvm::DIType *TTy = getOrCreateType(TA.getAsType(), Unit); 1856 1857 if (TPList) 1858 if (auto *templateType = 1859 dyn_cast_or_null<TemplateTypeParmDecl>(TPList->getParam(i))) 1860 if (templateType->hasDefaultArgument()) 1861 defaultParameter = 1862 templateType->getDefaultArgument() == TA.getAsType(); 1863 1864 TemplateParams.push_back(DBuilder.createTemplateTypeParameter( 1865 TheCU, Name, TTy, defaultParameter)); 1866 1867 } break; 1868 case TemplateArgument::Integral: { 1869 llvm::DIType *TTy = getOrCreateType(TA.getIntegralType(), Unit); 1870 if (TPList && CGM.getCodeGenOpts().DwarfVersion >= 5) 1871 if (auto *templateType = 1872 dyn_cast_or_null<NonTypeTemplateParmDecl>(TPList->getParam(i))) 1873 if (templateType->hasDefaultArgument() && 1874 !templateType->getDefaultArgument()->isValueDependent()) 1875 defaultParameter = llvm::APSInt::isSameValue( 1876 templateType->getDefaultArgument()->EvaluateKnownConstInt( 1877 CGM.getContext()), 1878 TA.getAsIntegral()); 1879 1880 TemplateParams.push_back(DBuilder.createTemplateValueParameter( 1881 TheCU, Name, TTy, defaultParameter, 1882 llvm::ConstantInt::get(CGM.getLLVMContext(), TA.getAsIntegral()))); 1883 } break; 1884 case TemplateArgument::Declaration: { 1885 const ValueDecl *D = TA.getAsDecl(); 1886 QualType T = TA.getParamTypeForDecl().getDesugaredType(CGM.getContext()); 1887 llvm::DIType *TTy = getOrCreateType(T, Unit); 1888 llvm::Constant *V = nullptr; 1889 // Skip retrieve the value if that template parameter has cuda device 1890 // attribute, i.e. that value is not available at the host side. 1891 if (!CGM.getLangOpts().CUDA || CGM.getLangOpts().CUDAIsDevice || 1892 !D->hasAttr<CUDADeviceAttr>()) { 1893 const CXXMethodDecl *MD; 1894 // Variable pointer template parameters have a value that is the address 1895 // of the variable. 1896 if (const auto *VD = dyn_cast<VarDecl>(D)) 1897 V = CGM.GetAddrOfGlobalVar(VD); 1898 // Member function pointers have special support for building them, 1899 // though this is currently unsupported in LLVM CodeGen. 1900 else if ((MD = dyn_cast<CXXMethodDecl>(D)) && MD->isInstance()) 1901 V = CGM.getCXXABI().EmitMemberFunctionPointer(MD); 1902 else if (const auto *FD = dyn_cast<FunctionDecl>(D)) 1903 V = CGM.GetAddrOfFunction(FD); 1904 // Member data pointers have special handling too to compute the fixed 1905 // offset within the object. 1906 else if (const auto *MPT = 1907 dyn_cast<MemberPointerType>(T.getTypePtr())) { 1908 // These five lines (& possibly the above member function pointer 1909 // handling) might be able to be refactored to use similar code in 1910 // CodeGenModule::getMemberPointerConstant 1911 uint64_t fieldOffset = CGM.getContext().getFieldOffset(D); 1912 CharUnits chars = 1913 CGM.getContext().toCharUnitsFromBits((int64_t)fieldOffset); 1914 V = CGM.getCXXABI().EmitMemberDataPointer(MPT, chars); 1915 } else if (const auto *GD = dyn_cast<MSGuidDecl>(D)) { 1916 V = CGM.GetAddrOfMSGuidDecl(GD).getPointer(); 1917 } 1918 assert(V && "Failed to find template parameter pointer"); 1919 V = V->stripPointerCasts(); 1920 } 1921 TemplateParams.push_back(DBuilder.createTemplateValueParameter( 1922 TheCU, Name, TTy, defaultParameter, cast_or_null<llvm::Constant>(V))); 1923 } break; 1924 case TemplateArgument::NullPtr: { 1925 QualType T = TA.getNullPtrType(); 1926 llvm::DIType *TTy = getOrCreateType(T, Unit); 1927 llvm::Constant *V = nullptr; 1928 // Special case member data pointer null values since they're actually -1 1929 // instead of zero. 1930 if (const auto *MPT = dyn_cast<MemberPointerType>(T.getTypePtr())) 1931 // But treat member function pointers as simple zero integers because 1932 // it's easier than having a special case in LLVM's CodeGen. If LLVM 1933 // CodeGen grows handling for values of non-null member function 1934 // pointers then perhaps we could remove this special case and rely on 1935 // EmitNullMemberPointer for member function pointers. 1936 if (MPT->isMemberDataPointer()) 1937 V = CGM.getCXXABI().EmitNullMemberPointer(MPT); 1938 if (!V) 1939 V = llvm::ConstantInt::get(CGM.Int8Ty, 0); 1940 TemplateParams.push_back(DBuilder.createTemplateValueParameter( 1941 TheCU, Name, TTy, defaultParameter, V)); 1942 } break; 1943 case TemplateArgument::Template: 1944 TemplateParams.push_back(DBuilder.createTemplateTemplateParameter( 1945 TheCU, Name, nullptr, 1946 TA.getAsTemplate().getAsTemplateDecl()->getQualifiedNameAsString())); 1947 break; 1948 case TemplateArgument::Pack: 1949 TemplateParams.push_back(DBuilder.createTemplateParameterPack( 1950 TheCU, Name, nullptr, 1951 CollectTemplateParams(nullptr, TA.getPackAsArray(), Unit))); 1952 break; 1953 case TemplateArgument::Expression: { 1954 const Expr *E = TA.getAsExpr(); 1955 QualType T = E->getType(); 1956 if (E->isGLValue()) 1957 T = CGM.getContext().getLValueReferenceType(T); 1958 llvm::Constant *V = ConstantEmitter(CGM).emitAbstract(E, T); 1959 assert(V && "Expression in template argument isn't constant"); 1960 llvm::DIType *TTy = getOrCreateType(T, Unit); 1961 TemplateParams.push_back(DBuilder.createTemplateValueParameter( 1962 TheCU, Name, TTy, defaultParameter, V->stripPointerCasts())); 1963 } break; 1964 // And the following should never occur: 1965 case TemplateArgument::TemplateExpansion: 1966 case TemplateArgument::Null: 1967 llvm_unreachable( 1968 "These argument types shouldn't exist in concrete types"); 1969 } 1970 } 1971 return DBuilder.getOrCreateArray(TemplateParams); 1972 } 1973 1974 llvm::DINodeArray 1975 CGDebugInfo::CollectFunctionTemplateParams(const FunctionDecl *FD, 1976 llvm::DIFile *Unit) { 1977 if (FD->getTemplatedKind() == 1978 FunctionDecl::TK_FunctionTemplateSpecialization) { 1979 const TemplateParameterList *TList = FD->getTemplateSpecializationInfo() 1980 ->getTemplate() 1981 ->getTemplateParameters(); 1982 return CollectTemplateParams( 1983 TList, FD->getTemplateSpecializationArgs()->asArray(), Unit); 1984 } 1985 return llvm::DINodeArray(); 1986 } 1987 1988 llvm::DINodeArray CGDebugInfo::CollectVarTemplateParams(const VarDecl *VL, 1989 llvm::DIFile *Unit) { 1990 // Always get the full list of parameters, not just the ones from the 1991 // specialization. A partial specialization may have fewer parameters than 1992 // there are arguments. 1993 auto *TS = dyn_cast<VarTemplateSpecializationDecl>(VL); 1994 if (!TS) 1995 return llvm::DINodeArray(); 1996 VarTemplateDecl *T = TS->getSpecializedTemplate(); 1997 const TemplateParameterList *TList = T->getTemplateParameters(); 1998 auto TA = TS->getTemplateArgs().asArray(); 1999 return CollectTemplateParams(TList, TA, Unit); 2000 } 2001 2002 llvm::DINodeArray CGDebugInfo::CollectCXXTemplateParams( 2003 const ClassTemplateSpecializationDecl *TSpecial, llvm::DIFile *Unit) { 2004 // Always get the full list of parameters, not just the ones from the 2005 // specialization. A partial specialization may have fewer parameters than 2006 // there are arguments. 2007 TemplateParameterList *TPList = 2008 TSpecial->getSpecializedTemplate()->getTemplateParameters(); 2009 const TemplateArgumentList &TAList = TSpecial->getTemplateArgs(); 2010 return CollectTemplateParams(TPList, TAList.asArray(), Unit); 2011 } 2012 2013 llvm::DIType *CGDebugInfo::getOrCreateVTablePtrType(llvm::DIFile *Unit) { 2014 if (VTablePtrType) 2015 return VTablePtrType; 2016 2017 ASTContext &Context = CGM.getContext(); 2018 2019 /* Function type */ 2020 llvm::Metadata *STy = getOrCreateType(Context.IntTy, Unit); 2021 llvm::DITypeRefArray SElements = DBuilder.getOrCreateTypeArray(STy); 2022 llvm::DIType *SubTy = DBuilder.createSubroutineType(SElements); 2023 unsigned Size = Context.getTypeSize(Context.VoidPtrTy); 2024 unsigned VtblPtrAddressSpace = CGM.getTarget().getVtblPtrAddressSpace(); 2025 Optional<unsigned> DWARFAddressSpace = 2026 CGM.getTarget().getDWARFAddressSpace(VtblPtrAddressSpace); 2027 2028 llvm::DIType *vtbl_ptr_type = DBuilder.createPointerType( 2029 SubTy, Size, 0, DWARFAddressSpace, "__vtbl_ptr_type"); 2030 VTablePtrType = DBuilder.createPointerType(vtbl_ptr_type, Size); 2031 return VTablePtrType; 2032 } 2033 2034 StringRef CGDebugInfo::getVTableName(const CXXRecordDecl *RD) { 2035 // Copy the gdb compatible name on the side and use its reference. 2036 return internString("_vptr$", RD->getNameAsString()); 2037 } 2038 2039 StringRef CGDebugInfo::getDynamicInitializerName(const VarDecl *VD, 2040 DynamicInitKind StubKind, 2041 llvm::Function *InitFn) { 2042 // If we're not emitting codeview, use the mangled name. For Itanium, this is 2043 // arbitrary. 2044 if (!CGM.getCodeGenOpts().EmitCodeView) 2045 return InitFn->getName(); 2046 2047 // Print the normal qualified name for the variable, then break off the last 2048 // NNS, and add the appropriate other text. Clang always prints the global 2049 // variable name without template arguments, so we can use rsplit("::") and 2050 // then recombine the pieces. 2051 SmallString<128> QualifiedGV; 2052 StringRef Quals; 2053 StringRef GVName; 2054 { 2055 llvm::raw_svector_ostream OS(QualifiedGV); 2056 VD->printQualifiedName(OS, getPrintingPolicy()); 2057 std::tie(Quals, GVName) = OS.str().rsplit("::"); 2058 if (GVName.empty()) 2059 std::swap(Quals, GVName); 2060 } 2061 2062 SmallString<128> InitName; 2063 llvm::raw_svector_ostream OS(InitName); 2064 if (!Quals.empty()) 2065 OS << Quals << "::"; 2066 2067 switch (StubKind) { 2068 case DynamicInitKind::NoStub: 2069 llvm_unreachable("not an initializer"); 2070 case DynamicInitKind::Initializer: 2071 OS << "`dynamic initializer for '"; 2072 break; 2073 case DynamicInitKind::AtExit: 2074 OS << "`dynamic atexit destructor for '"; 2075 break; 2076 } 2077 2078 OS << GVName; 2079 2080 // Add any template specialization args. 2081 if (const auto *VTpl = dyn_cast<VarTemplateSpecializationDecl>(VD)) { 2082 printTemplateArgumentList(OS, VTpl->getTemplateArgs().asArray(), 2083 getPrintingPolicy()); 2084 } 2085 2086 OS << '\''; 2087 2088 return internString(OS.str()); 2089 } 2090 2091 void CGDebugInfo::CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile *Unit, 2092 SmallVectorImpl<llvm::Metadata *> &EltTys, 2093 llvm::DICompositeType *RecordTy) { 2094 // If this class is not dynamic then there is not any vtable info to collect. 2095 if (!RD->isDynamicClass()) 2096 return; 2097 2098 // Don't emit any vtable shape or vptr info if this class doesn't have an 2099 // extendable vfptr. This can happen if the class doesn't have virtual 2100 // methods, or in the MS ABI if those virtual methods only come from virtually 2101 // inherited bases. 2102 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); 2103 if (!RL.hasExtendableVFPtr()) 2104 return; 2105 2106 // CodeView needs to know how large the vtable of every dynamic class is, so 2107 // emit a special named pointer type into the element list. The vptr type 2108 // points to this type as well. 2109 llvm::DIType *VPtrTy = nullptr; 2110 bool NeedVTableShape = CGM.getCodeGenOpts().EmitCodeView && 2111 CGM.getTarget().getCXXABI().isMicrosoft(); 2112 if (NeedVTableShape) { 2113 uint64_t PtrWidth = 2114 CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy); 2115 const VTableLayout &VFTLayout = 2116 CGM.getMicrosoftVTableContext().getVFTableLayout(RD, CharUnits::Zero()); 2117 unsigned VSlotCount = 2118 VFTLayout.vtable_components().size() - CGM.getLangOpts().RTTIData; 2119 unsigned VTableWidth = PtrWidth * VSlotCount; 2120 unsigned VtblPtrAddressSpace = CGM.getTarget().getVtblPtrAddressSpace(); 2121 Optional<unsigned> DWARFAddressSpace = 2122 CGM.getTarget().getDWARFAddressSpace(VtblPtrAddressSpace); 2123 2124 // Create a very wide void* type and insert it directly in the element list. 2125 llvm::DIType *VTableType = DBuilder.createPointerType( 2126 nullptr, VTableWidth, 0, DWARFAddressSpace, "__vtbl_ptr_type"); 2127 EltTys.push_back(VTableType); 2128 2129 // The vptr is a pointer to this special vtable type. 2130 VPtrTy = DBuilder.createPointerType(VTableType, PtrWidth); 2131 } 2132 2133 // If there is a primary base then the artificial vptr member lives there. 2134 if (RL.getPrimaryBase()) 2135 return; 2136 2137 if (!VPtrTy) 2138 VPtrTy = getOrCreateVTablePtrType(Unit); 2139 2140 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy); 2141 llvm::DIType *VPtrMember = 2142 DBuilder.createMemberType(Unit, getVTableName(RD), Unit, 0, Size, 0, 0, 2143 llvm::DINode::FlagArtificial, VPtrTy); 2144 EltTys.push_back(VPtrMember); 2145 } 2146 2147 llvm::DIType *CGDebugInfo::getOrCreateRecordType(QualType RTy, 2148 SourceLocation Loc) { 2149 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 2150 llvm::DIType *T = getOrCreateType(RTy, getOrCreateFile(Loc)); 2151 return T; 2152 } 2153 2154 llvm::DIType *CGDebugInfo::getOrCreateInterfaceType(QualType D, 2155 SourceLocation Loc) { 2156 return getOrCreateStandaloneType(D, Loc); 2157 } 2158 2159 llvm::DIType *CGDebugInfo::getOrCreateStandaloneType(QualType D, 2160 SourceLocation Loc) { 2161 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 2162 assert(!D.isNull() && "null type"); 2163 llvm::DIType *T = getOrCreateType(D, getOrCreateFile(Loc)); 2164 assert(T && "could not create debug info for type"); 2165 2166 RetainedTypes.push_back(D.getAsOpaquePtr()); 2167 return T; 2168 } 2169 2170 void CGDebugInfo::addHeapAllocSiteMetadata(llvm::CallBase *CI, 2171 QualType AllocatedTy, 2172 SourceLocation Loc) { 2173 if (CGM.getCodeGenOpts().getDebugInfo() <= 2174 codegenoptions::DebugLineTablesOnly) 2175 return; 2176 llvm::MDNode *node; 2177 if (AllocatedTy->isVoidType()) 2178 node = llvm::MDNode::get(CGM.getLLVMContext(), None); 2179 else 2180 node = getOrCreateType(AllocatedTy, getOrCreateFile(Loc)); 2181 2182 CI->setMetadata("heapallocsite", node); 2183 } 2184 2185 void CGDebugInfo::completeType(const EnumDecl *ED) { 2186 if (DebugKind <= codegenoptions::DebugLineTablesOnly) 2187 return; 2188 QualType Ty = CGM.getContext().getEnumType(ED); 2189 void *TyPtr = Ty.getAsOpaquePtr(); 2190 auto I = TypeCache.find(TyPtr); 2191 if (I == TypeCache.end() || !cast<llvm::DIType>(I->second)->isForwardDecl()) 2192 return; 2193 llvm::DIType *Res = CreateTypeDefinition(Ty->castAs<EnumType>()); 2194 assert(!Res->isForwardDecl()); 2195 TypeCache[TyPtr].reset(Res); 2196 } 2197 2198 void CGDebugInfo::completeType(const RecordDecl *RD) { 2199 if (DebugKind > codegenoptions::LimitedDebugInfo || 2200 !CGM.getLangOpts().CPlusPlus) 2201 completeRequiredType(RD); 2202 } 2203 2204 /// Return true if the class or any of its methods are marked dllimport. 2205 static bool isClassOrMethodDLLImport(const CXXRecordDecl *RD) { 2206 if (RD->hasAttr<DLLImportAttr>()) 2207 return true; 2208 for (const CXXMethodDecl *MD : RD->methods()) 2209 if (MD->hasAttr<DLLImportAttr>()) 2210 return true; 2211 return false; 2212 } 2213 2214 /// Does a type definition exist in an imported clang module? 2215 static bool isDefinedInClangModule(const RecordDecl *RD) { 2216 // Only definitions that where imported from an AST file come from a module. 2217 if (!RD || !RD->isFromASTFile()) 2218 return false; 2219 // Anonymous entities cannot be addressed. Treat them as not from module. 2220 if (!RD->isExternallyVisible() && RD->getName().empty()) 2221 return false; 2222 if (auto *CXXDecl = dyn_cast<CXXRecordDecl>(RD)) { 2223 if (!CXXDecl->isCompleteDefinition()) 2224 return false; 2225 // Check wether RD is a template. 2226 auto TemplateKind = CXXDecl->getTemplateSpecializationKind(); 2227 if (TemplateKind != TSK_Undeclared) { 2228 // Unfortunately getOwningModule() isn't accurate enough to find the 2229 // owning module of a ClassTemplateSpecializationDecl that is inside a 2230 // namespace spanning multiple modules. 2231 bool Explicit = false; 2232 if (auto *TD = dyn_cast<ClassTemplateSpecializationDecl>(CXXDecl)) 2233 Explicit = TD->isExplicitInstantiationOrSpecialization(); 2234 if (!Explicit && CXXDecl->getEnclosingNamespaceContext()) 2235 return false; 2236 // This is a template, check the origin of the first member. 2237 if (CXXDecl->field_begin() == CXXDecl->field_end()) 2238 return TemplateKind == TSK_ExplicitInstantiationDeclaration; 2239 if (!CXXDecl->field_begin()->isFromASTFile()) 2240 return false; 2241 } 2242 } 2243 return true; 2244 } 2245 2246 void CGDebugInfo::completeClassData(const RecordDecl *RD) { 2247 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RD)) 2248 if (CXXRD->isDynamicClass() && 2249 CGM.getVTableLinkage(CXXRD) == 2250 llvm::GlobalValue::AvailableExternallyLinkage && 2251 !isClassOrMethodDLLImport(CXXRD)) 2252 return; 2253 2254 if (DebugTypeExtRefs && isDefinedInClangModule(RD->getDefinition())) 2255 return; 2256 2257 completeClass(RD); 2258 } 2259 2260 void CGDebugInfo::completeClass(const RecordDecl *RD) { 2261 if (DebugKind <= codegenoptions::DebugLineTablesOnly) 2262 return; 2263 QualType Ty = CGM.getContext().getRecordType(RD); 2264 void *TyPtr = Ty.getAsOpaquePtr(); 2265 auto I = TypeCache.find(TyPtr); 2266 if (I != TypeCache.end() && !cast<llvm::DIType>(I->second)->isForwardDecl()) 2267 return; 2268 llvm::DIType *Res = CreateTypeDefinition(Ty->castAs<RecordType>()); 2269 assert(!Res->isForwardDecl()); 2270 TypeCache[TyPtr].reset(Res); 2271 } 2272 2273 static bool hasExplicitMemberDefinition(CXXRecordDecl::method_iterator I, 2274 CXXRecordDecl::method_iterator End) { 2275 for (CXXMethodDecl *MD : llvm::make_range(I, End)) 2276 if (FunctionDecl *Tmpl = MD->getInstantiatedFromMemberFunction()) 2277 if (!Tmpl->isImplicit() && Tmpl->isThisDeclarationADefinition() && 2278 !MD->getMemberSpecializationInfo()->isExplicitSpecialization()) 2279 return true; 2280 return false; 2281 } 2282 2283 static bool canUseCtorHoming(const CXXRecordDecl *RD) { 2284 // Constructor homing can be used for classes that cannnot be constructed 2285 // without emitting code for one of their constructors. This is classes that 2286 // don't have trivial or constexpr constructors, or can be created from 2287 // aggregate initialization. Also skip lambda objects because they don't call 2288 // constructors. 2289 2290 // Skip this optimization if the class or any of its methods are marked 2291 // dllimport. 2292 if (isClassOrMethodDLLImport(RD)) 2293 return false; 2294 2295 return !RD->isLambda() && !RD->isAggregate() && 2296 !RD->hasTrivialDefaultConstructor() && 2297 !RD->hasConstexprNonCopyMoveConstructor(); 2298 } 2299 2300 static bool shouldOmitDefinition(codegenoptions::DebugInfoKind DebugKind, 2301 bool DebugTypeExtRefs, const RecordDecl *RD, 2302 const LangOptions &LangOpts) { 2303 if (DebugTypeExtRefs && isDefinedInClangModule(RD->getDefinition())) 2304 return true; 2305 2306 if (auto *ES = RD->getASTContext().getExternalSource()) 2307 if (ES->hasExternalDefinitions(RD) == ExternalASTSource::EK_Always) 2308 return true; 2309 2310 if (DebugKind > codegenoptions::LimitedDebugInfo) 2311 return false; 2312 2313 if (!LangOpts.CPlusPlus) 2314 return false; 2315 2316 if (!RD->isCompleteDefinitionRequired()) 2317 return true; 2318 2319 const auto *CXXDecl = dyn_cast<CXXRecordDecl>(RD); 2320 2321 if (!CXXDecl) 2322 return false; 2323 2324 // Only emit complete debug info for a dynamic class when its vtable is 2325 // emitted. However, Microsoft debuggers don't resolve type information 2326 // across DLL boundaries, so skip this optimization if the class or any of its 2327 // methods are marked dllimport. This isn't a complete solution, since objects 2328 // without any dllimport methods can be used in one DLL and constructed in 2329 // another, but it is the current behavior of LimitedDebugInfo. 2330 if (CXXDecl->hasDefinition() && CXXDecl->isDynamicClass() && 2331 !isClassOrMethodDLLImport(CXXDecl)) 2332 return true; 2333 2334 TemplateSpecializationKind Spec = TSK_Undeclared; 2335 if (const auto *SD = dyn_cast<ClassTemplateSpecializationDecl>(RD)) 2336 Spec = SD->getSpecializationKind(); 2337 2338 if (Spec == TSK_ExplicitInstantiationDeclaration && 2339 hasExplicitMemberDefinition(CXXDecl->method_begin(), 2340 CXXDecl->method_end())) 2341 return true; 2342 2343 // In constructor homing mode, only emit complete debug info for a class 2344 // when its constructor is emitted. 2345 if ((DebugKind == codegenoptions::DebugInfoConstructor) && 2346 canUseCtorHoming(CXXDecl)) 2347 return true; 2348 2349 return false; 2350 } 2351 2352 void CGDebugInfo::completeRequiredType(const RecordDecl *RD) { 2353 if (shouldOmitDefinition(DebugKind, DebugTypeExtRefs, RD, CGM.getLangOpts())) 2354 return; 2355 2356 QualType Ty = CGM.getContext().getRecordType(RD); 2357 llvm::DIType *T = getTypeOrNull(Ty); 2358 if (T && T->isForwardDecl()) 2359 completeClassData(RD); 2360 } 2361 2362 llvm::DIType *CGDebugInfo::CreateType(const RecordType *Ty) { 2363 RecordDecl *RD = Ty->getDecl(); 2364 llvm::DIType *T = cast_or_null<llvm::DIType>(getTypeOrNull(QualType(Ty, 0))); 2365 if (T || shouldOmitDefinition(DebugKind, DebugTypeExtRefs, RD, 2366 CGM.getLangOpts())) { 2367 if (!T) 2368 T = getOrCreateRecordFwdDecl(Ty, getDeclContextDescriptor(RD)); 2369 return T; 2370 } 2371 2372 return CreateTypeDefinition(Ty); 2373 } 2374 2375 llvm::DIType *CGDebugInfo::CreateTypeDefinition(const RecordType *Ty) { 2376 RecordDecl *RD = Ty->getDecl(); 2377 2378 // Get overall information about the record type for the debug info. 2379 llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation()); 2380 2381 // Records and classes and unions can all be recursive. To handle them, we 2382 // first generate a debug descriptor for the struct as a forward declaration. 2383 // Then (if it is a definition) we go through and get debug info for all of 2384 // its members. Finally, we create a descriptor for the complete type (which 2385 // may refer to the forward decl if the struct is recursive) and replace all 2386 // uses of the forward declaration with the final definition. 2387 llvm::DICompositeType *FwdDecl = getOrCreateLimitedType(Ty, DefUnit); 2388 2389 const RecordDecl *D = RD->getDefinition(); 2390 if (!D || !D->isCompleteDefinition()) 2391 return FwdDecl; 2392 2393 if (const auto *CXXDecl = dyn_cast<CXXRecordDecl>(RD)) 2394 CollectContainingType(CXXDecl, FwdDecl); 2395 2396 // Push the struct on region stack. 2397 LexicalBlockStack.emplace_back(&*FwdDecl); 2398 RegionMap[Ty->getDecl()].reset(FwdDecl); 2399 2400 // Convert all the elements. 2401 SmallVector<llvm::Metadata *, 16> EltTys; 2402 // what about nested types? 2403 2404 // Note: The split of CXXDecl information here is intentional, the 2405 // gdb tests will depend on a certain ordering at printout. The debug 2406 // information offsets are still correct if we merge them all together 2407 // though. 2408 const auto *CXXDecl = dyn_cast<CXXRecordDecl>(RD); 2409 if (CXXDecl) { 2410 CollectCXXBases(CXXDecl, DefUnit, EltTys, FwdDecl); 2411 CollectVTableInfo(CXXDecl, DefUnit, EltTys, FwdDecl); 2412 } 2413 2414 // Collect data fields (including static variables and any initializers). 2415 CollectRecordFields(RD, DefUnit, EltTys, FwdDecl); 2416 if (CXXDecl) 2417 CollectCXXMemberFunctions(CXXDecl, DefUnit, EltTys, FwdDecl); 2418 2419 LexicalBlockStack.pop_back(); 2420 RegionMap.erase(Ty->getDecl()); 2421 2422 llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys); 2423 DBuilder.replaceArrays(FwdDecl, Elements); 2424 2425 if (FwdDecl->isTemporary()) 2426 FwdDecl = 2427 llvm::MDNode::replaceWithPermanent(llvm::TempDICompositeType(FwdDecl)); 2428 2429 RegionMap[Ty->getDecl()].reset(FwdDecl); 2430 return FwdDecl; 2431 } 2432 2433 llvm::DIType *CGDebugInfo::CreateType(const ObjCObjectType *Ty, 2434 llvm::DIFile *Unit) { 2435 // Ignore protocols. 2436 return getOrCreateType(Ty->getBaseType(), Unit); 2437 } 2438 2439 llvm::DIType *CGDebugInfo::CreateType(const ObjCTypeParamType *Ty, 2440 llvm::DIFile *Unit) { 2441 // Ignore protocols. 2442 SourceLocation Loc = Ty->getDecl()->getLocation(); 2443 2444 // Use Typedefs to represent ObjCTypeParamType. 2445 return DBuilder.createTypedef( 2446 getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit), 2447 Ty->getDecl()->getName(), getOrCreateFile(Loc), getLineNumber(Loc), 2448 getDeclContextDescriptor(Ty->getDecl())); 2449 } 2450 2451 /// \return true if Getter has the default name for the property PD. 2452 static bool hasDefaultGetterName(const ObjCPropertyDecl *PD, 2453 const ObjCMethodDecl *Getter) { 2454 assert(PD); 2455 if (!Getter) 2456 return true; 2457 2458 assert(Getter->getDeclName().isObjCZeroArgSelector()); 2459 return PD->getName() == 2460 Getter->getDeclName().getObjCSelector().getNameForSlot(0); 2461 } 2462 2463 /// \return true if Setter has the default name for the property PD. 2464 static bool hasDefaultSetterName(const ObjCPropertyDecl *PD, 2465 const ObjCMethodDecl *Setter) { 2466 assert(PD); 2467 if (!Setter) 2468 return true; 2469 2470 assert(Setter->getDeclName().isObjCOneArgSelector()); 2471 return SelectorTable::constructSetterName(PD->getName()) == 2472 Setter->getDeclName().getObjCSelector().getNameForSlot(0); 2473 } 2474 2475 llvm::DIType *CGDebugInfo::CreateType(const ObjCInterfaceType *Ty, 2476 llvm::DIFile *Unit) { 2477 ObjCInterfaceDecl *ID = Ty->getDecl(); 2478 if (!ID) 2479 return nullptr; 2480 2481 // Return a forward declaration if this type was imported from a clang module, 2482 // and this is not the compile unit with the implementation of the type (which 2483 // may contain hidden ivars). 2484 if (DebugTypeExtRefs && ID->isFromASTFile() && ID->getDefinition() && 2485 !ID->getImplementation()) 2486 return DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, 2487 ID->getName(), 2488 getDeclContextDescriptor(ID), Unit, 0); 2489 2490 // Get overall information about the record type for the debug info. 2491 llvm::DIFile *DefUnit = getOrCreateFile(ID->getLocation()); 2492 unsigned Line = getLineNumber(ID->getLocation()); 2493 auto RuntimeLang = 2494 static_cast<llvm::dwarf::SourceLanguage>(TheCU->getSourceLanguage()); 2495 2496 // If this is just a forward declaration return a special forward-declaration 2497 // debug type since we won't be able to lay out the entire type. 2498 ObjCInterfaceDecl *Def = ID->getDefinition(); 2499 if (!Def || !Def->getImplementation()) { 2500 llvm::DIScope *Mod = getParentModuleOrNull(ID); 2501 llvm::DIType *FwdDecl = DBuilder.createReplaceableCompositeType( 2502 llvm::dwarf::DW_TAG_structure_type, ID->getName(), Mod ? Mod : TheCU, 2503 DefUnit, Line, RuntimeLang); 2504 ObjCInterfaceCache.push_back(ObjCInterfaceCacheEntry(Ty, FwdDecl, Unit)); 2505 return FwdDecl; 2506 } 2507 2508 return CreateTypeDefinition(Ty, Unit); 2509 } 2510 2511 llvm::DIModule *CGDebugInfo::getOrCreateModuleRef(ASTSourceDescriptor Mod, 2512 bool CreateSkeletonCU) { 2513 // Use the Module pointer as the key into the cache. This is a 2514 // nullptr if the "Module" is a PCH, which is safe because we don't 2515 // support chained PCH debug info, so there can only be a single PCH. 2516 const Module *M = Mod.getModuleOrNull(); 2517 auto ModRef = ModuleCache.find(M); 2518 if (ModRef != ModuleCache.end()) 2519 return cast<llvm::DIModule>(ModRef->second); 2520 2521 // Macro definitions that were defined with "-D" on the command line. 2522 SmallString<128> ConfigMacros; 2523 { 2524 llvm::raw_svector_ostream OS(ConfigMacros); 2525 const auto &PPOpts = CGM.getPreprocessorOpts(); 2526 unsigned I = 0; 2527 // Translate the macro definitions back into a command line. 2528 for (auto &M : PPOpts.Macros) { 2529 if (++I > 1) 2530 OS << " "; 2531 const std::string &Macro = M.first; 2532 bool Undef = M.second; 2533 OS << "\"-" << (Undef ? 'U' : 'D'); 2534 for (char c : Macro) 2535 switch (c) { 2536 case '\\': 2537 OS << "\\\\"; 2538 break; 2539 case '"': 2540 OS << "\\\""; 2541 break; 2542 default: 2543 OS << c; 2544 } 2545 OS << '\"'; 2546 } 2547 } 2548 2549 bool IsRootModule = M ? !M->Parent : true; 2550 // When a module name is specified as -fmodule-name, that module gets a 2551 // clang::Module object, but it won't actually be built or imported; it will 2552 // be textual. 2553 if (CreateSkeletonCU && IsRootModule && Mod.getASTFile().empty() && M) 2554 assert(StringRef(M->Name).startswith(CGM.getLangOpts().ModuleName) && 2555 "clang module without ASTFile must be specified by -fmodule-name"); 2556 2557 // Return a StringRef to the remapped Path. 2558 auto RemapPath = [this](StringRef Path) -> std::string { 2559 std::string Remapped = remapDIPath(Path); 2560 StringRef Relative(Remapped); 2561 StringRef CompDir = TheCU->getDirectory(); 2562 if (Relative.consume_front(CompDir)) 2563 Relative.consume_front(llvm::sys::path::get_separator()); 2564 2565 return Relative.str(); 2566 }; 2567 2568 if (CreateSkeletonCU && IsRootModule && !Mod.getASTFile().empty()) { 2569 // PCH files don't have a signature field in the control block, 2570 // but LLVM detects skeleton CUs by looking for a non-zero DWO id. 2571 // We use the lower 64 bits for debug info. 2572 2573 uint64_t Signature = 0; 2574 if (const auto &ModSig = Mod.getSignature()) 2575 Signature = ModSig.truncatedValue(); 2576 else 2577 Signature = ~1ULL; 2578 2579 llvm::DIBuilder DIB(CGM.getModule()); 2580 SmallString<0> PCM; 2581 if (!llvm::sys::path::is_absolute(Mod.getASTFile())) 2582 PCM = Mod.getPath(); 2583 llvm::sys::path::append(PCM, Mod.getASTFile()); 2584 DIB.createCompileUnit( 2585 TheCU->getSourceLanguage(), 2586 // TODO: Support "Source" from external AST providers? 2587 DIB.createFile(Mod.getModuleName(), TheCU->getDirectory()), 2588 TheCU->getProducer(), false, StringRef(), 0, RemapPath(PCM), 2589 llvm::DICompileUnit::FullDebug, Signature); 2590 DIB.finalize(); 2591 } 2592 2593 llvm::DIModule *Parent = 2594 IsRootModule ? nullptr 2595 : getOrCreateModuleRef(ASTSourceDescriptor(*M->Parent), 2596 CreateSkeletonCU); 2597 std::string IncludePath = Mod.getPath().str(); 2598 llvm::DIModule *DIMod = 2599 DBuilder.createModule(Parent, Mod.getModuleName(), ConfigMacros, 2600 RemapPath(IncludePath)); 2601 ModuleCache[M].reset(DIMod); 2602 return DIMod; 2603 } 2604 2605 llvm::DIType *CGDebugInfo::CreateTypeDefinition(const ObjCInterfaceType *Ty, 2606 llvm::DIFile *Unit) { 2607 ObjCInterfaceDecl *ID = Ty->getDecl(); 2608 llvm::DIFile *DefUnit = getOrCreateFile(ID->getLocation()); 2609 unsigned Line = getLineNumber(ID->getLocation()); 2610 unsigned RuntimeLang = TheCU->getSourceLanguage(); 2611 2612 // Bit size, align and offset of the type. 2613 uint64_t Size = CGM.getContext().getTypeSize(Ty); 2614 auto Align = getTypeAlignIfRequired(Ty, CGM.getContext()); 2615 2616 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 2617 if (ID->getImplementation()) 2618 Flags |= llvm::DINode::FlagObjcClassComplete; 2619 2620 llvm::DIScope *Mod = getParentModuleOrNull(ID); 2621 llvm::DICompositeType *RealDecl = DBuilder.createStructType( 2622 Mod ? Mod : Unit, ID->getName(), DefUnit, Line, Size, Align, Flags, 2623 nullptr, llvm::DINodeArray(), RuntimeLang); 2624 2625 QualType QTy(Ty, 0); 2626 TypeCache[QTy.getAsOpaquePtr()].reset(RealDecl); 2627 2628 // Push the struct on region stack. 2629 LexicalBlockStack.emplace_back(RealDecl); 2630 RegionMap[Ty->getDecl()].reset(RealDecl); 2631 2632 // Convert all the elements. 2633 SmallVector<llvm::Metadata *, 16> EltTys; 2634 2635 ObjCInterfaceDecl *SClass = ID->getSuperClass(); 2636 if (SClass) { 2637 llvm::DIType *SClassTy = 2638 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit); 2639 if (!SClassTy) 2640 return nullptr; 2641 2642 llvm::DIType *InhTag = DBuilder.createInheritance(RealDecl, SClassTy, 0, 0, 2643 llvm::DINode::FlagZero); 2644 EltTys.push_back(InhTag); 2645 } 2646 2647 // Create entries for all of the properties. 2648 auto AddProperty = [&](const ObjCPropertyDecl *PD) { 2649 SourceLocation Loc = PD->getLocation(); 2650 llvm::DIFile *PUnit = getOrCreateFile(Loc); 2651 unsigned PLine = getLineNumber(Loc); 2652 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); 2653 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); 2654 llvm::MDNode *PropertyNode = DBuilder.createObjCProperty( 2655 PD->getName(), PUnit, PLine, 2656 hasDefaultGetterName(PD, Getter) ? "" 2657 : getSelectorName(PD->getGetterName()), 2658 hasDefaultSetterName(PD, Setter) ? "" 2659 : getSelectorName(PD->getSetterName()), 2660 PD->getPropertyAttributes(), getOrCreateType(PD->getType(), PUnit)); 2661 EltTys.push_back(PropertyNode); 2662 }; 2663 { 2664 llvm::SmallPtrSet<const IdentifierInfo *, 16> PropertySet; 2665 for (const ObjCCategoryDecl *ClassExt : ID->known_extensions()) 2666 for (auto *PD : ClassExt->properties()) { 2667 PropertySet.insert(PD->getIdentifier()); 2668 AddProperty(PD); 2669 } 2670 for (const auto *PD : ID->properties()) { 2671 // Don't emit duplicate metadata for properties that were already in a 2672 // class extension. 2673 if (!PropertySet.insert(PD->getIdentifier()).second) 2674 continue; 2675 AddProperty(PD); 2676 } 2677 } 2678 2679 const ASTRecordLayout &RL = CGM.getContext().getASTObjCInterfaceLayout(ID); 2680 unsigned FieldNo = 0; 2681 for (ObjCIvarDecl *Field = ID->all_declared_ivar_begin(); Field; 2682 Field = Field->getNextIvar(), ++FieldNo) { 2683 llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit); 2684 if (!FieldTy) 2685 return nullptr; 2686 2687 StringRef FieldName = Field->getName(); 2688 2689 // Ignore unnamed fields. 2690 if (FieldName.empty()) 2691 continue; 2692 2693 // Get the location for the field. 2694 llvm::DIFile *FieldDefUnit = getOrCreateFile(Field->getLocation()); 2695 unsigned FieldLine = getLineNumber(Field->getLocation()); 2696 QualType FType = Field->getType(); 2697 uint64_t FieldSize = 0; 2698 uint32_t FieldAlign = 0; 2699 2700 if (!FType->isIncompleteArrayType()) { 2701 2702 // Bit size, align and offset of the type. 2703 FieldSize = Field->isBitField() 2704 ? Field->getBitWidthValue(CGM.getContext()) 2705 : CGM.getContext().getTypeSize(FType); 2706 FieldAlign = getTypeAlignIfRequired(FType, CGM.getContext()); 2707 } 2708 2709 uint64_t FieldOffset; 2710 if (CGM.getLangOpts().ObjCRuntime.isNonFragile()) { 2711 // We don't know the runtime offset of an ivar if we're using the 2712 // non-fragile ABI. For bitfields, use the bit offset into the first 2713 // byte of storage of the bitfield. For other fields, use zero. 2714 if (Field->isBitField()) { 2715 FieldOffset = 2716 CGM.getObjCRuntime().ComputeBitfieldBitOffset(CGM, ID, Field); 2717 FieldOffset %= CGM.getContext().getCharWidth(); 2718 } else { 2719 FieldOffset = 0; 2720 } 2721 } else { 2722 FieldOffset = RL.getFieldOffset(FieldNo); 2723 } 2724 2725 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 2726 if (Field->getAccessControl() == ObjCIvarDecl::Protected) 2727 Flags = llvm::DINode::FlagProtected; 2728 else if (Field->getAccessControl() == ObjCIvarDecl::Private) 2729 Flags = llvm::DINode::FlagPrivate; 2730 else if (Field->getAccessControl() == ObjCIvarDecl::Public) 2731 Flags = llvm::DINode::FlagPublic; 2732 2733 llvm::MDNode *PropertyNode = nullptr; 2734 if (ObjCImplementationDecl *ImpD = ID->getImplementation()) { 2735 if (ObjCPropertyImplDecl *PImpD = 2736 ImpD->FindPropertyImplIvarDecl(Field->getIdentifier())) { 2737 if (ObjCPropertyDecl *PD = PImpD->getPropertyDecl()) { 2738 SourceLocation Loc = PD->getLocation(); 2739 llvm::DIFile *PUnit = getOrCreateFile(Loc); 2740 unsigned PLine = getLineNumber(Loc); 2741 ObjCMethodDecl *Getter = PImpD->getGetterMethodDecl(); 2742 ObjCMethodDecl *Setter = PImpD->getSetterMethodDecl(); 2743 PropertyNode = DBuilder.createObjCProperty( 2744 PD->getName(), PUnit, PLine, 2745 hasDefaultGetterName(PD, Getter) 2746 ? "" 2747 : getSelectorName(PD->getGetterName()), 2748 hasDefaultSetterName(PD, Setter) 2749 ? "" 2750 : getSelectorName(PD->getSetterName()), 2751 PD->getPropertyAttributes(), 2752 getOrCreateType(PD->getType(), PUnit)); 2753 } 2754 } 2755 } 2756 FieldTy = DBuilder.createObjCIVar(FieldName, FieldDefUnit, FieldLine, 2757 FieldSize, FieldAlign, FieldOffset, Flags, 2758 FieldTy, PropertyNode); 2759 EltTys.push_back(FieldTy); 2760 } 2761 2762 llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys); 2763 DBuilder.replaceArrays(RealDecl, Elements); 2764 2765 LexicalBlockStack.pop_back(); 2766 return RealDecl; 2767 } 2768 2769 llvm::DIType *CGDebugInfo::CreateType(const VectorType *Ty, 2770 llvm::DIFile *Unit) { 2771 llvm::DIType *ElementTy = getOrCreateType(Ty->getElementType(), Unit); 2772 int64_t Count = Ty->getNumElements(); 2773 2774 llvm::Metadata *Subscript; 2775 QualType QTy(Ty, 0); 2776 auto SizeExpr = SizeExprCache.find(QTy); 2777 if (SizeExpr != SizeExprCache.end()) 2778 Subscript = DBuilder.getOrCreateSubrange( 2779 SizeExpr->getSecond() /*count*/, nullptr /*lowerBound*/, 2780 nullptr /*upperBound*/, nullptr /*stride*/); 2781 else { 2782 auto *CountNode = 2783 llvm::ConstantAsMetadata::get(llvm::ConstantInt::getSigned( 2784 llvm::Type::getInt64Ty(CGM.getLLVMContext()), Count ? Count : -1)); 2785 Subscript = DBuilder.getOrCreateSubrange( 2786 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, 2787 nullptr /*stride*/); 2788 } 2789 llvm::DINodeArray SubscriptArray = DBuilder.getOrCreateArray(Subscript); 2790 2791 uint64_t Size = CGM.getContext().getTypeSize(Ty); 2792 auto Align = getTypeAlignIfRequired(Ty, CGM.getContext()); 2793 2794 return DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray); 2795 } 2796 2797 llvm::DIType *CGDebugInfo::CreateType(const ConstantMatrixType *Ty, 2798 llvm::DIFile *Unit) { 2799 // FIXME: Create another debug type for matrices 2800 // For the time being, it treats it like a nested ArrayType. 2801 2802 llvm::DIType *ElementTy = getOrCreateType(Ty->getElementType(), Unit); 2803 uint64_t Size = CGM.getContext().getTypeSize(Ty); 2804 uint32_t Align = getTypeAlignIfRequired(Ty, CGM.getContext()); 2805 2806 // Create ranges for both dimensions. 2807 llvm::SmallVector<llvm::Metadata *, 2> Subscripts; 2808 auto *ColumnCountNode = 2809 llvm::ConstantAsMetadata::get(llvm::ConstantInt::getSigned( 2810 llvm::Type::getInt64Ty(CGM.getLLVMContext()), Ty->getNumColumns())); 2811 auto *RowCountNode = 2812 llvm::ConstantAsMetadata::get(llvm::ConstantInt::getSigned( 2813 llvm::Type::getInt64Ty(CGM.getLLVMContext()), Ty->getNumRows())); 2814 Subscripts.push_back(DBuilder.getOrCreateSubrange( 2815 ColumnCountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, 2816 nullptr /*stride*/)); 2817 Subscripts.push_back(DBuilder.getOrCreateSubrange( 2818 RowCountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, 2819 nullptr /*stride*/)); 2820 llvm::DINodeArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts); 2821 return DBuilder.createArrayType(Size, Align, ElementTy, SubscriptArray); 2822 } 2823 2824 llvm::DIType *CGDebugInfo::CreateType(const ArrayType *Ty, llvm::DIFile *Unit) { 2825 uint64_t Size; 2826 uint32_t Align; 2827 2828 // FIXME: make getTypeAlign() aware of VLAs and incomplete array types 2829 if (const auto *VAT = dyn_cast<VariableArrayType>(Ty)) { 2830 Size = 0; 2831 Align = getTypeAlignIfRequired(CGM.getContext().getBaseElementType(VAT), 2832 CGM.getContext()); 2833 } else if (Ty->isIncompleteArrayType()) { 2834 Size = 0; 2835 if (Ty->getElementType()->isIncompleteType()) 2836 Align = 0; 2837 else 2838 Align = getTypeAlignIfRequired(Ty->getElementType(), CGM.getContext()); 2839 } else if (Ty->isIncompleteType()) { 2840 Size = 0; 2841 Align = 0; 2842 } else { 2843 // Size and align of the whole array, not the element type. 2844 Size = CGM.getContext().getTypeSize(Ty); 2845 Align = getTypeAlignIfRequired(Ty, CGM.getContext()); 2846 } 2847 2848 // Add the dimensions of the array. FIXME: This loses CV qualifiers from 2849 // interior arrays, do we care? Why aren't nested arrays represented the 2850 // obvious/recursive way? 2851 SmallVector<llvm::Metadata *, 8> Subscripts; 2852 QualType EltTy(Ty, 0); 2853 while ((Ty = dyn_cast<ArrayType>(EltTy))) { 2854 // If the number of elements is known, then count is that number. Otherwise, 2855 // it's -1. This allows us to represent a subrange with an array of 0 2856 // elements, like this: 2857 // 2858 // struct foo { 2859 // int x[0]; 2860 // }; 2861 int64_t Count = -1; // Count == -1 is an unbounded array. 2862 if (const auto *CAT = dyn_cast<ConstantArrayType>(Ty)) 2863 Count = CAT->getSize().getZExtValue(); 2864 else if (const auto *VAT = dyn_cast<VariableArrayType>(Ty)) { 2865 if (Expr *Size = VAT->getSizeExpr()) { 2866 Expr::EvalResult Result; 2867 if (Size->EvaluateAsInt(Result, CGM.getContext())) 2868 Count = Result.Val.getInt().getExtValue(); 2869 } 2870 } 2871 2872 auto SizeNode = SizeExprCache.find(EltTy); 2873 if (SizeNode != SizeExprCache.end()) 2874 Subscripts.push_back(DBuilder.getOrCreateSubrange( 2875 SizeNode->getSecond() /*count*/, nullptr /*lowerBound*/, 2876 nullptr /*upperBound*/, nullptr /*stride*/)); 2877 else { 2878 auto *CountNode = 2879 llvm::ConstantAsMetadata::get(llvm::ConstantInt::getSigned( 2880 llvm::Type::getInt64Ty(CGM.getLLVMContext()), Count)); 2881 Subscripts.push_back(DBuilder.getOrCreateSubrange( 2882 CountNode /*count*/, nullptr /*lowerBound*/, nullptr /*upperBound*/, 2883 nullptr /*stride*/)); 2884 } 2885 EltTy = Ty->getElementType(); 2886 } 2887 2888 llvm::DINodeArray SubscriptArray = DBuilder.getOrCreateArray(Subscripts); 2889 2890 return DBuilder.createArrayType(Size, Align, getOrCreateType(EltTy, Unit), 2891 SubscriptArray); 2892 } 2893 2894 llvm::DIType *CGDebugInfo::CreateType(const LValueReferenceType *Ty, 2895 llvm::DIFile *Unit) { 2896 return CreatePointerLikeType(llvm::dwarf::DW_TAG_reference_type, Ty, 2897 Ty->getPointeeType(), Unit); 2898 } 2899 2900 llvm::DIType *CGDebugInfo::CreateType(const RValueReferenceType *Ty, 2901 llvm::DIFile *Unit) { 2902 return CreatePointerLikeType(llvm::dwarf::DW_TAG_rvalue_reference_type, Ty, 2903 Ty->getPointeeType(), Unit); 2904 } 2905 2906 llvm::DIType *CGDebugInfo::CreateType(const MemberPointerType *Ty, 2907 llvm::DIFile *U) { 2908 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 2909 uint64_t Size = 0; 2910 2911 if (!Ty->isIncompleteType()) { 2912 Size = CGM.getContext().getTypeSize(Ty); 2913 2914 // Set the MS inheritance model. There is no flag for the unspecified model. 2915 if (CGM.getTarget().getCXXABI().isMicrosoft()) { 2916 switch (Ty->getMostRecentCXXRecordDecl()->getMSInheritanceModel()) { 2917 case MSInheritanceModel::Single: 2918 Flags |= llvm::DINode::FlagSingleInheritance; 2919 break; 2920 case MSInheritanceModel::Multiple: 2921 Flags |= llvm::DINode::FlagMultipleInheritance; 2922 break; 2923 case MSInheritanceModel::Virtual: 2924 Flags |= llvm::DINode::FlagVirtualInheritance; 2925 break; 2926 case MSInheritanceModel::Unspecified: 2927 break; 2928 } 2929 } 2930 } 2931 2932 llvm::DIType *ClassType = getOrCreateType(QualType(Ty->getClass(), 0), U); 2933 if (Ty->isMemberDataPointerType()) 2934 return DBuilder.createMemberPointerType( 2935 getOrCreateType(Ty->getPointeeType(), U), ClassType, Size, /*Align=*/0, 2936 Flags); 2937 2938 const FunctionProtoType *FPT = 2939 Ty->getPointeeType()->getAs<FunctionProtoType>(); 2940 return DBuilder.createMemberPointerType( 2941 getOrCreateInstanceMethodType( 2942 CXXMethodDecl::getThisType(FPT, Ty->getMostRecentCXXRecordDecl()), 2943 FPT, U, false), 2944 ClassType, Size, /*Align=*/0, Flags); 2945 } 2946 2947 llvm::DIType *CGDebugInfo::CreateType(const AtomicType *Ty, llvm::DIFile *U) { 2948 auto *FromTy = getOrCreateType(Ty->getValueType(), U); 2949 return DBuilder.createQualifiedType(llvm::dwarf::DW_TAG_atomic_type, FromTy); 2950 } 2951 2952 llvm::DIType *CGDebugInfo::CreateType(const PipeType *Ty, llvm::DIFile *U) { 2953 return getOrCreateType(Ty->getElementType(), U); 2954 } 2955 2956 llvm::DIType *CGDebugInfo::CreateEnumType(const EnumType *Ty) { 2957 const EnumDecl *ED = Ty->getDecl(); 2958 2959 uint64_t Size = 0; 2960 uint32_t Align = 0; 2961 if (!ED->getTypeForDecl()->isIncompleteType()) { 2962 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl()); 2963 Align = getDeclAlignIfRequired(ED, CGM.getContext()); 2964 } 2965 2966 SmallString<256> Identifier = getTypeIdentifier(Ty, CGM, TheCU); 2967 2968 bool isImportedFromModule = 2969 DebugTypeExtRefs && ED->isFromASTFile() && ED->getDefinition(); 2970 2971 // If this is just a forward declaration, construct an appropriately 2972 // marked node and just return it. 2973 if (isImportedFromModule || !ED->getDefinition()) { 2974 // Note that it is possible for enums to be created as part of 2975 // their own declcontext. In this case a FwdDecl will be created 2976 // twice. This doesn't cause a problem because both FwdDecls are 2977 // entered into the ReplaceMap: finalize() will replace the first 2978 // FwdDecl with the second and then replace the second with 2979 // complete type. 2980 llvm::DIScope *EDContext = getDeclContextDescriptor(ED); 2981 llvm::DIFile *DefUnit = getOrCreateFile(ED->getLocation()); 2982 llvm::TempDIScope TmpContext(DBuilder.createReplaceableCompositeType( 2983 llvm::dwarf::DW_TAG_enumeration_type, "", TheCU, DefUnit, 0)); 2984 2985 unsigned Line = getLineNumber(ED->getLocation()); 2986 StringRef EDName = ED->getName(); 2987 llvm::DIType *RetTy = DBuilder.createReplaceableCompositeType( 2988 llvm::dwarf::DW_TAG_enumeration_type, EDName, EDContext, DefUnit, Line, 2989 0, Size, Align, llvm::DINode::FlagFwdDecl, Identifier); 2990 2991 ReplaceMap.emplace_back( 2992 std::piecewise_construct, std::make_tuple(Ty), 2993 std::make_tuple(static_cast<llvm::Metadata *>(RetTy))); 2994 return RetTy; 2995 } 2996 2997 return CreateTypeDefinition(Ty); 2998 } 2999 3000 llvm::DIType *CGDebugInfo::CreateTypeDefinition(const EnumType *Ty) { 3001 const EnumDecl *ED = Ty->getDecl(); 3002 uint64_t Size = 0; 3003 uint32_t Align = 0; 3004 if (!ED->getTypeForDecl()->isIncompleteType()) { 3005 Size = CGM.getContext().getTypeSize(ED->getTypeForDecl()); 3006 Align = getDeclAlignIfRequired(ED, CGM.getContext()); 3007 } 3008 3009 SmallString<256> Identifier = getTypeIdentifier(Ty, CGM, TheCU); 3010 3011 // Create elements for each enumerator. 3012 SmallVector<llvm::Metadata *, 16> Enumerators; 3013 ED = ED->getDefinition(); 3014 bool IsSigned = ED->getIntegerType()->isSignedIntegerType(); 3015 for (const auto *Enum : ED->enumerators()) { 3016 const auto &InitVal = Enum->getInitVal(); 3017 auto Value = IsSigned ? InitVal.getSExtValue() : InitVal.getZExtValue(); 3018 Enumerators.push_back( 3019 DBuilder.createEnumerator(Enum->getName(), Value, !IsSigned)); 3020 } 3021 3022 // Return a CompositeType for the enum itself. 3023 llvm::DINodeArray EltArray = DBuilder.getOrCreateArray(Enumerators); 3024 3025 llvm::DIFile *DefUnit = getOrCreateFile(ED->getLocation()); 3026 unsigned Line = getLineNumber(ED->getLocation()); 3027 llvm::DIScope *EnumContext = getDeclContextDescriptor(ED); 3028 llvm::DIType *ClassTy = getOrCreateType(ED->getIntegerType(), DefUnit); 3029 return DBuilder.createEnumerationType(EnumContext, ED->getName(), DefUnit, 3030 Line, Size, Align, EltArray, ClassTy, 3031 Identifier, ED->isScoped()); 3032 } 3033 3034 llvm::DIMacro *CGDebugInfo::CreateMacro(llvm::DIMacroFile *Parent, 3035 unsigned MType, SourceLocation LineLoc, 3036 StringRef Name, StringRef Value) { 3037 unsigned Line = LineLoc.isInvalid() ? 0 : getLineNumber(LineLoc); 3038 return DBuilder.createMacro(Parent, Line, MType, Name, Value); 3039 } 3040 3041 llvm::DIMacroFile *CGDebugInfo::CreateTempMacroFile(llvm::DIMacroFile *Parent, 3042 SourceLocation LineLoc, 3043 SourceLocation FileLoc) { 3044 llvm::DIFile *FName = getOrCreateFile(FileLoc); 3045 unsigned Line = LineLoc.isInvalid() ? 0 : getLineNumber(LineLoc); 3046 return DBuilder.createTempMacroFile(Parent, Line, FName); 3047 } 3048 3049 static QualType UnwrapTypeForDebugInfo(QualType T, const ASTContext &C) { 3050 Qualifiers Quals; 3051 do { 3052 Qualifiers InnerQuals = T.getLocalQualifiers(); 3053 // Qualifiers::operator+() doesn't like it if you add a Qualifier 3054 // that is already there. 3055 Quals += Qualifiers::removeCommonQualifiers(Quals, InnerQuals); 3056 Quals += InnerQuals; 3057 QualType LastT = T; 3058 switch (T->getTypeClass()) { 3059 default: 3060 return C.getQualifiedType(T.getTypePtr(), Quals); 3061 case Type::TemplateSpecialization: { 3062 const auto *Spec = cast<TemplateSpecializationType>(T); 3063 if (Spec->isTypeAlias()) 3064 return C.getQualifiedType(T.getTypePtr(), Quals); 3065 T = Spec->desugar(); 3066 break; 3067 } 3068 case Type::TypeOfExpr: 3069 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); 3070 break; 3071 case Type::TypeOf: 3072 T = cast<TypeOfType>(T)->getUnderlyingType(); 3073 break; 3074 case Type::Decltype: 3075 T = cast<DecltypeType>(T)->getUnderlyingType(); 3076 break; 3077 case Type::UnaryTransform: 3078 T = cast<UnaryTransformType>(T)->getUnderlyingType(); 3079 break; 3080 case Type::Attributed: 3081 T = cast<AttributedType>(T)->getEquivalentType(); 3082 break; 3083 case Type::Elaborated: 3084 T = cast<ElaboratedType>(T)->getNamedType(); 3085 break; 3086 case Type::Paren: 3087 T = cast<ParenType>(T)->getInnerType(); 3088 break; 3089 case Type::MacroQualified: 3090 T = cast<MacroQualifiedType>(T)->getUnderlyingType(); 3091 break; 3092 case Type::SubstTemplateTypeParm: 3093 T = cast<SubstTemplateTypeParmType>(T)->getReplacementType(); 3094 break; 3095 case Type::Auto: 3096 case Type::DeducedTemplateSpecialization: { 3097 QualType DT = cast<DeducedType>(T)->getDeducedType(); 3098 assert(!DT.isNull() && "Undeduced types shouldn't reach here."); 3099 T = DT; 3100 break; 3101 } 3102 case Type::Adjusted: 3103 case Type::Decayed: 3104 // Decayed and adjusted types use the adjusted type in LLVM and DWARF. 3105 T = cast<AdjustedType>(T)->getAdjustedType(); 3106 break; 3107 } 3108 3109 assert(T != LastT && "Type unwrapping failed to unwrap!"); 3110 (void)LastT; 3111 } while (true); 3112 } 3113 3114 llvm::DIType *CGDebugInfo::getTypeOrNull(QualType Ty) { 3115 3116 // Unwrap the type as needed for debug information. 3117 Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext()); 3118 3119 auto It = TypeCache.find(Ty.getAsOpaquePtr()); 3120 if (It != TypeCache.end()) { 3121 // Verify that the debug info still exists. 3122 if (llvm::Metadata *V = It->second) 3123 return cast<llvm::DIType>(V); 3124 } 3125 3126 return nullptr; 3127 } 3128 3129 void CGDebugInfo::completeTemplateDefinition( 3130 const ClassTemplateSpecializationDecl &SD) { 3131 if (DebugKind <= codegenoptions::DebugLineTablesOnly) 3132 return; 3133 completeUnusedClass(SD); 3134 } 3135 3136 void CGDebugInfo::completeUnusedClass(const CXXRecordDecl &D) { 3137 if (DebugKind <= codegenoptions::DebugLineTablesOnly) 3138 return; 3139 3140 completeClassData(&D); 3141 // In case this type has no member function definitions being emitted, ensure 3142 // it is retained 3143 RetainedTypes.push_back(CGM.getContext().getRecordType(&D).getAsOpaquePtr()); 3144 } 3145 3146 llvm::DIType *CGDebugInfo::getOrCreateType(QualType Ty, llvm::DIFile *Unit) { 3147 if (Ty.isNull()) 3148 return nullptr; 3149 3150 llvm::TimeTraceScope TimeScope("DebugType", [&]() { 3151 std::string Name; 3152 llvm::raw_string_ostream OS(Name); 3153 Ty.print(OS, getPrintingPolicy()); 3154 return Name; 3155 }); 3156 3157 // Unwrap the type as needed for debug information. 3158 Ty = UnwrapTypeForDebugInfo(Ty, CGM.getContext()); 3159 3160 if (auto *T = getTypeOrNull(Ty)) 3161 return T; 3162 3163 llvm::DIType *Res = CreateTypeNode(Ty, Unit); 3164 void *TyPtr = Ty.getAsOpaquePtr(); 3165 3166 // And update the type cache. 3167 TypeCache[TyPtr].reset(Res); 3168 3169 return Res; 3170 } 3171 3172 llvm::DIModule *CGDebugInfo::getParentModuleOrNull(const Decl *D) { 3173 // A forward declaration inside a module header does not belong to the module. 3174 if (isa<RecordDecl>(D) && !cast<RecordDecl>(D)->getDefinition()) 3175 return nullptr; 3176 if (DebugTypeExtRefs && D->isFromASTFile()) { 3177 // Record a reference to an imported clang module or precompiled header. 3178 auto *Reader = CGM.getContext().getExternalSource(); 3179 auto Idx = D->getOwningModuleID(); 3180 auto Info = Reader->getSourceDescriptor(Idx); 3181 if (Info) 3182 return getOrCreateModuleRef(*Info, /*SkeletonCU=*/true); 3183 } else if (ClangModuleMap) { 3184 // We are building a clang module or a precompiled header. 3185 // 3186 // TODO: When D is a CXXRecordDecl or a C++ Enum, the ODR applies 3187 // and it wouldn't be necessary to specify the parent scope 3188 // because the type is already unique by definition (it would look 3189 // like the output of -fno-standalone-debug). On the other hand, 3190 // the parent scope helps a consumer to quickly locate the object 3191 // file where the type's definition is located, so it might be 3192 // best to make this behavior a command line or debugger tuning 3193 // option. 3194 if (Module *M = D->getOwningModule()) { 3195 // This is a (sub-)module. 3196 auto Info = ASTSourceDescriptor(*M); 3197 return getOrCreateModuleRef(Info, /*SkeletonCU=*/false); 3198 } else { 3199 // This the precompiled header being built. 3200 return getOrCreateModuleRef(PCHDescriptor, /*SkeletonCU=*/false); 3201 } 3202 } 3203 3204 return nullptr; 3205 } 3206 3207 llvm::DIType *CGDebugInfo::CreateTypeNode(QualType Ty, llvm::DIFile *Unit) { 3208 // Handle qualifiers, which recursively handles what they refer to. 3209 if (Ty.hasLocalQualifiers()) 3210 return CreateQualifiedType(Ty, Unit); 3211 3212 // Work out details of type. 3213 switch (Ty->getTypeClass()) { 3214 #define TYPE(Class, Base) 3215 #define ABSTRACT_TYPE(Class, Base) 3216 #define NON_CANONICAL_TYPE(Class, Base) 3217 #define DEPENDENT_TYPE(Class, Base) case Type::Class: 3218 #include "clang/AST/TypeNodes.inc" 3219 llvm_unreachable("Dependent types cannot show up in debug information"); 3220 3221 case Type::ExtVector: 3222 case Type::Vector: 3223 return CreateType(cast<VectorType>(Ty), Unit); 3224 case Type::ConstantMatrix: 3225 return CreateType(cast<ConstantMatrixType>(Ty), Unit); 3226 case Type::ObjCObjectPointer: 3227 return CreateType(cast<ObjCObjectPointerType>(Ty), Unit); 3228 case Type::ObjCObject: 3229 return CreateType(cast<ObjCObjectType>(Ty), Unit); 3230 case Type::ObjCTypeParam: 3231 return CreateType(cast<ObjCTypeParamType>(Ty), Unit); 3232 case Type::ObjCInterface: 3233 return CreateType(cast<ObjCInterfaceType>(Ty), Unit); 3234 case Type::Builtin: 3235 return CreateType(cast<BuiltinType>(Ty)); 3236 case Type::Complex: 3237 return CreateType(cast<ComplexType>(Ty)); 3238 case Type::Pointer: 3239 return CreateType(cast<PointerType>(Ty), Unit); 3240 case Type::BlockPointer: 3241 return CreateType(cast<BlockPointerType>(Ty), Unit); 3242 case Type::Typedef: 3243 return CreateType(cast<TypedefType>(Ty), Unit); 3244 case Type::Record: 3245 return CreateType(cast<RecordType>(Ty)); 3246 case Type::Enum: 3247 return CreateEnumType(cast<EnumType>(Ty)); 3248 case Type::FunctionProto: 3249 case Type::FunctionNoProto: 3250 return CreateType(cast<FunctionType>(Ty), Unit); 3251 case Type::ConstantArray: 3252 case Type::VariableArray: 3253 case Type::IncompleteArray: 3254 return CreateType(cast<ArrayType>(Ty), Unit); 3255 3256 case Type::LValueReference: 3257 return CreateType(cast<LValueReferenceType>(Ty), Unit); 3258 case Type::RValueReference: 3259 return CreateType(cast<RValueReferenceType>(Ty), Unit); 3260 3261 case Type::MemberPointer: 3262 return CreateType(cast<MemberPointerType>(Ty), Unit); 3263 3264 case Type::Atomic: 3265 return CreateType(cast<AtomicType>(Ty), Unit); 3266 3267 case Type::ExtInt: 3268 return CreateType(cast<ExtIntType>(Ty)); 3269 case Type::Pipe: 3270 return CreateType(cast<PipeType>(Ty), Unit); 3271 3272 case Type::TemplateSpecialization: 3273 return CreateType(cast<TemplateSpecializationType>(Ty), Unit); 3274 3275 case Type::Auto: 3276 case Type::Attributed: 3277 case Type::Adjusted: 3278 case Type::Decayed: 3279 case Type::DeducedTemplateSpecialization: 3280 case Type::Elaborated: 3281 case Type::Paren: 3282 case Type::MacroQualified: 3283 case Type::SubstTemplateTypeParm: 3284 case Type::TypeOfExpr: 3285 case Type::TypeOf: 3286 case Type::Decltype: 3287 case Type::UnaryTransform: 3288 break; 3289 } 3290 3291 llvm_unreachable("type should have been unwrapped!"); 3292 } 3293 3294 llvm::DICompositeType *CGDebugInfo::getOrCreateLimitedType(const RecordType *Ty, 3295 llvm::DIFile *Unit) { 3296 QualType QTy(Ty, 0); 3297 3298 auto *T = cast_or_null<llvm::DICompositeType>(getTypeOrNull(QTy)); 3299 3300 // We may have cached a forward decl when we could have created 3301 // a non-forward decl. Go ahead and create a non-forward decl 3302 // now. 3303 if (T && !T->isForwardDecl()) 3304 return T; 3305 3306 // Otherwise create the type. 3307 llvm::DICompositeType *Res = CreateLimitedType(Ty); 3308 3309 // Propagate members from the declaration to the definition 3310 // CreateType(const RecordType*) will overwrite this with the members in the 3311 // correct order if the full type is needed. 3312 DBuilder.replaceArrays(Res, T ? T->getElements() : llvm::DINodeArray()); 3313 3314 // And update the type cache. 3315 TypeCache[QTy.getAsOpaquePtr()].reset(Res); 3316 return Res; 3317 } 3318 3319 // TODO: Currently used for context chains when limiting debug info. 3320 llvm::DICompositeType *CGDebugInfo::CreateLimitedType(const RecordType *Ty) { 3321 RecordDecl *RD = Ty->getDecl(); 3322 3323 // Get overall information about the record type for the debug info. 3324 llvm::DIFile *DefUnit = getOrCreateFile(RD->getLocation()); 3325 unsigned Line = getLineNumber(RD->getLocation()); 3326 StringRef RDName = getClassName(RD); 3327 3328 llvm::DIScope *RDContext = getDeclContextDescriptor(RD); 3329 3330 // If we ended up creating the type during the context chain construction, 3331 // just return that. 3332 auto *T = cast_or_null<llvm::DICompositeType>( 3333 getTypeOrNull(CGM.getContext().getRecordType(RD))); 3334 if (T && (!T->isForwardDecl() || !RD->getDefinition())) 3335 return T; 3336 3337 // If this is just a forward or incomplete declaration, construct an 3338 // appropriately marked node and just return it. 3339 const RecordDecl *D = RD->getDefinition(); 3340 if (!D || !D->isCompleteDefinition()) 3341 return getOrCreateRecordFwdDecl(Ty, RDContext); 3342 3343 uint64_t Size = CGM.getContext().getTypeSize(Ty); 3344 auto Align = getDeclAlignIfRequired(D, CGM.getContext()); 3345 3346 SmallString<256> Identifier = getTypeIdentifier(Ty, CGM, TheCU); 3347 3348 // Explicitly record the calling convention and export symbols for C++ 3349 // records. 3350 auto Flags = llvm::DINode::FlagZero; 3351 if (auto CXXRD = dyn_cast<CXXRecordDecl>(RD)) { 3352 if (CGM.getCXXABI().getRecordArgABI(CXXRD) == CGCXXABI::RAA_Indirect) 3353 Flags |= llvm::DINode::FlagTypePassByReference; 3354 else 3355 Flags |= llvm::DINode::FlagTypePassByValue; 3356 3357 // Record if a C++ record is non-trivial type. 3358 if (!CXXRD->isTrivial()) 3359 Flags |= llvm::DINode::FlagNonTrivial; 3360 3361 // Record exports it symbols to the containing structure. 3362 if (CXXRD->isAnonymousStructOrUnion()) 3363 Flags |= llvm::DINode::FlagExportSymbols; 3364 } 3365 3366 llvm::DICompositeType *RealDecl = DBuilder.createReplaceableCompositeType( 3367 getTagForRecord(RD), RDName, RDContext, DefUnit, Line, 0, Size, Align, 3368 Flags, Identifier); 3369 3370 // Elements of composite types usually have back to the type, creating 3371 // uniquing cycles. Distinct nodes are more efficient. 3372 switch (RealDecl->getTag()) { 3373 default: 3374 llvm_unreachable("invalid composite type tag"); 3375 3376 case llvm::dwarf::DW_TAG_array_type: 3377 case llvm::dwarf::DW_TAG_enumeration_type: 3378 // Array elements and most enumeration elements don't have back references, 3379 // so they don't tend to be involved in uniquing cycles and there is some 3380 // chance of merging them when linking together two modules. Only make 3381 // them distinct if they are ODR-uniqued. 3382 if (Identifier.empty()) 3383 break; 3384 LLVM_FALLTHROUGH; 3385 3386 case llvm::dwarf::DW_TAG_structure_type: 3387 case llvm::dwarf::DW_TAG_union_type: 3388 case llvm::dwarf::DW_TAG_class_type: 3389 // Immediately resolve to a distinct node. 3390 RealDecl = 3391 llvm::MDNode::replaceWithDistinct(llvm::TempDICompositeType(RealDecl)); 3392 break; 3393 } 3394 3395 RegionMap[Ty->getDecl()].reset(RealDecl); 3396 TypeCache[QualType(Ty, 0).getAsOpaquePtr()].reset(RealDecl); 3397 3398 if (const auto *TSpecial = dyn_cast<ClassTemplateSpecializationDecl>(RD)) 3399 DBuilder.replaceArrays(RealDecl, llvm::DINodeArray(), 3400 CollectCXXTemplateParams(TSpecial, DefUnit)); 3401 return RealDecl; 3402 } 3403 3404 void CGDebugInfo::CollectContainingType(const CXXRecordDecl *RD, 3405 llvm::DICompositeType *RealDecl) { 3406 // A class's primary base or the class itself contains the vtable. 3407 llvm::DICompositeType *ContainingType = nullptr; 3408 const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); 3409 if (const CXXRecordDecl *PBase = RL.getPrimaryBase()) { 3410 // Seek non-virtual primary base root. 3411 while (1) { 3412 const ASTRecordLayout &BRL = CGM.getContext().getASTRecordLayout(PBase); 3413 const CXXRecordDecl *PBT = BRL.getPrimaryBase(); 3414 if (PBT && !BRL.isPrimaryBaseVirtual()) 3415 PBase = PBT; 3416 else 3417 break; 3418 } 3419 ContainingType = cast<llvm::DICompositeType>( 3420 getOrCreateType(QualType(PBase->getTypeForDecl(), 0), 3421 getOrCreateFile(RD->getLocation()))); 3422 } else if (RD->isDynamicClass()) 3423 ContainingType = RealDecl; 3424 3425 DBuilder.replaceVTableHolder(RealDecl, ContainingType); 3426 } 3427 3428 llvm::DIType *CGDebugInfo::CreateMemberType(llvm::DIFile *Unit, QualType FType, 3429 StringRef Name, uint64_t *Offset) { 3430 llvm::DIType *FieldTy = CGDebugInfo::getOrCreateType(FType, Unit); 3431 uint64_t FieldSize = CGM.getContext().getTypeSize(FType); 3432 auto FieldAlign = getTypeAlignIfRequired(FType, CGM.getContext()); 3433 llvm::DIType *Ty = 3434 DBuilder.createMemberType(Unit, Name, Unit, 0, FieldSize, FieldAlign, 3435 *Offset, llvm::DINode::FlagZero, FieldTy); 3436 *Offset += FieldSize; 3437 return Ty; 3438 } 3439 3440 void CGDebugInfo::collectFunctionDeclProps(GlobalDecl GD, llvm::DIFile *Unit, 3441 StringRef &Name, 3442 StringRef &LinkageName, 3443 llvm::DIScope *&FDContext, 3444 llvm::DINodeArray &TParamsArray, 3445 llvm::DINode::DIFlags &Flags) { 3446 const auto *FD = cast<FunctionDecl>(GD.getDecl()); 3447 Name = getFunctionName(FD); 3448 // Use mangled name as linkage name for C/C++ functions. 3449 if (FD->hasPrototype()) { 3450 LinkageName = CGM.getMangledName(GD); 3451 Flags |= llvm::DINode::FlagPrototyped; 3452 } 3453 // No need to replicate the linkage name if it isn't different from the 3454 // subprogram name, no need to have it at all unless coverage is enabled or 3455 // debug is set to more than just line tables or extra debug info is needed. 3456 if (LinkageName == Name || (!CGM.getCodeGenOpts().EmitGcovArcs && 3457 !CGM.getCodeGenOpts().EmitGcovNotes && 3458 !CGM.getCodeGenOpts().DebugInfoForProfiling && 3459 DebugKind <= codegenoptions::DebugLineTablesOnly)) 3460 LinkageName = StringRef(); 3461 3462 if (CGM.getCodeGenOpts().hasReducedDebugInfo()) { 3463 if (const NamespaceDecl *NSDecl = 3464 dyn_cast_or_null<NamespaceDecl>(FD->getDeclContext())) 3465 FDContext = getOrCreateNamespace(NSDecl); 3466 else if (const RecordDecl *RDecl = 3467 dyn_cast_or_null<RecordDecl>(FD->getDeclContext())) { 3468 llvm::DIScope *Mod = getParentModuleOrNull(RDecl); 3469 FDContext = getContextDescriptor(RDecl, Mod ? Mod : TheCU); 3470 } 3471 // Check if it is a noreturn-marked function 3472 if (FD->isNoReturn()) 3473 Flags |= llvm::DINode::FlagNoReturn; 3474 // Collect template parameters. 3475 TParamsArray = CollectFunctionTemplateParams(FD, Unit); 3476 } 3477 } 3478 3479 void CGDebugInfo::collectVarDeclProps(const VarDecl *VD, llvm::DIFile *&Unit, 3480 unsigned &LineNo, QualType &T, 3481 StringRef &Name, StringRef &LinkageName, 3482 llvm::MDTuple *&TemplateParameters, 3483 llvm::DIScope *&VDContext) { 3484 Unit = getOrCreateFile(VD->getLocation()); 3485 LineNo = getLineNumber(VD->getLocation()); 3486 3487 setLocation(VD->getLocation()); 3488 3489 T = VD->getType(); 3490 if (T->isIncompleteArrayType()) { 3491 // CodeGen turns int[] into int[1] so we'll do the same here. 3492 llvm::APInt ConstVal(32, 1); 3493 QualType ET = CGM.getContext().getAsArrayType(T)->getElementType(); 3494 3495 T = CGM.getContext().getConstantArrayType(ET, ConstVal, nullptr, 3496 ArrayType::Normal, 0); 3497 } 3498 3499 Name = VD->getName(); 3500 if (VD->getDeclContext() && !isa<FunctionDecl>(VD->getDeclContext()) && 3501 !isa<ObjCMethodDecl>(VD->getDeclContext())) 3502 LinkageName = CGM.getMangledName(VD); 3503 if (LinkageName == Name) 3504 LinkageName = StringRef(); 3505 3506 if (isa<VarTemplateSpecializationDecl>(VD)) { 3507 llvm::DINodeArray parameterNodes = CollectVarTemplateParams(VD, &*Unit); 3508 TemplateParameters = parameterNodes.get(); 3509 } else { 3510 TemplateParameters = nullptr; 3511 } 3512 3513 // Since we emit declarations (DW_AT_members) for static members, place the 3514 // definition of those static members in the namespace they were declared in 3515 // in the source code (the lexical decl context). 3516 // FIXME: Generalize this for even non-member global variables where the 3517 // declaration and definition may have different lexical decl contexts, once 3518 // we have support for emitting declarations of (non-member) global variables. 3519 const DeclContext *DC = VD->isStaticDataMember() ? VD->getLexicalDeclContext() 3520 : VD->getDeclContext(); 3521 // When a record type contains an in-line initialization of a static data 3522 // member, and the record type is marked as __declspec(dllexport), an implicit 3523 // definition of the member will be created in the record context. DWARF 3524 // doesn't seem to have a nice way to describe this in a form that consumers 3525 // are likely to understand, so fake the "normal" situation of a definition 3526 // outside the class by putting it in the global scope. 3527 if (DC->isRecord()) 3528 DC = CGM.getContext().getTranslationUnitDecl(); 3529 3530 llvm::DIScope *Mod = getParentModuleOrNull(VD); 3531 VDContext = getContextDescriptor(cast<Decl>(DC), Mod ? Mod : TheCU); 3532 } 3533 3534 llvm::DISubprogram *CGDebugInfo::getFunctionFwdDeclOrStub(GlobalDecl GD, 3535 bool Stub) { 3536 llvm::DINodeArray TParamsArray; 3537 StringRef Name, LinkageName; 3538 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 3539 llvm::DISubprogram::DISPFlags SPFlags = llvm::DISubprogram::SPFlagZero; 3540 SourceLocation Loc = GD.getDecl()->getLocation(); 3541 llvm::DIFile *Unit = getOrCreateFile(Loc); 3542 llvm::DIScope *DContext = Unit; 3543 unsigned Line = getLineNumber(Loc); 3544 collectFunctionDeclProps(GD, Unit, Name, LinkageName, DContext, TParamsArray, 3545 Flags); 3546 auto *FD = cast<FunctionDecl>(GD.getDecl()); 3547 3548 // Build function type. 3549 SmallVector<QualType, 16> ArgTypes; 3550 for (const ParmVarDecl *Parm : FD->parameters()) 3551 ArgTypes.push_back(Parm->getType()); 3552 3553 CallingConv CC = FD->getType()->castAs<FunctionType>()->getCallConv(); 3554 QualType FnType = CGM.getContext().getFunctionType( 3555 FD->getReturnType(), ArgTypes, FunctionProtoType::ExtProtoInfo(CC)); 3556 if (!FD->isExternallyVisible()) 3557 SPFlags |= llvm::DISubprogram::SPFlagLocalToUnit; 3558 if (CGM.getLangOpts().Optimize) 3559 SPFlags |= llvm::DISubprogram::SPFlagOptimized; 3560 3561 if (Stub) { 3562 Flags |= getCallSiteRelatedAttrs(); 3563 SPFlags |= llvm::DISubprogram::SPFlagDefinition; 3564 return DBuilder.createFunction( 3565 DContext, Name, LinkageName, Unit, Line, 3566 getOrCreateFunctionType(GD.getDecl(), FnType, Unit), 0, Flags, SPFlags, 3567 TParamsArray.get(), getFunctionDeclaration(FD)); 3568 } 3569 3570 llvm::DISubprogram *SP = DBuilder.createTempFunctionFwdDecl( 3571 DContext, Name, LinkageName, Unit, Line, 3572 getOrCreateFunctionType(GD.getDecl(), FnType, Unit), 0, Flags, SPFlags, 3573 TParamsArray.get(), getFunctionDeclaration(FD)); 3574 const FunctionDecl *CanonDecl = FD->getCanonicalDecl(); 3575 FwdDeclReplaceMap.emplace_back(std::piecewise_construct, 3576 std::make_tuple(CanonDecl), 3577 std::make_tuple(SP)); 3578 return SP; 3579 } 3580 3581 llvm::DISubprogram *CGDebugInfo::getFunctionForwardDeclaration(GlobalDecl GD) { 3582 return getFunctionFwdDeclOrStub(GD, /* Stub = */ false); 3583 } 3584 3585 llvm::DISubprogram *CGDebugInfo::getFunctionStub(GlobalDecl GD) { 3586 return getFunctionFwdDeclOrStub(GD, /* Stub = */ true); 3587 } 3588 3589 llvm::DIGlobalVariable * 3590 CGDebugInfo::getGlobalVariableForwardDeclaration(const VarDecl *VD) { 3591 QualType T; 3592 StringRef Name, LinkageName; 3593 SourceLocation Loc = VD->getLocation(); 3594 llvm::DIFile *Unit = getOrCreateFile(Loc); 3595 llvm::DIScope *DContext = Unit; 3596 unsigned Line = getLineNumber(Loc); 3597 llvm::MDTuple *TemplateParameters = nullptr; 3598 3599 collectVarDeclProps(VD, Unit, Line, T, Name, LinkageName, TemplateParameters, 3600 DContext); 3601 auto Align = getDeclAlignIfRequired(VD, CGM.getContext()); 3602 auto *GV = DBuilder.createTempGlobalVariableFwdDecl( 3603 DContext, Name, LinkageName, Unit, Line, getOrCreateType(T, Unit), 3604 !VD->isExternallyVisible(), nullptr, TemplateParameters, Align); 3605 FwdDeclReplaceMap.emplace_back( 3606 std::piecewise_construct, 3607 std::make_tuple(cast<VarDecl>(VD->getCanonicalDecl())), 3608 std::make_tuple(static_cast<llvm::Metadata *>(GV))); 3609 return GV; 3610 } 3611 3612 llvm::DINode *CGDebugInfo::getDeclarationOrDefinition(const Decl *D) { 3613 // We only need a declaration (not a definition) of the type - so use whatever 3614 // we would otherwise do to get a type for a pointee. (forward declarations in 3615 // limited debug info, full definitions (if the type definition is available) 3616 // in unlimited debug info) 3617 if (const auto *TD = dyn_cast<TypeDecl>(D)) 3618 return getOrCreateType(CGM.getContext().getTypeDeclType(TD), 3619 getOrCreateFile(TD->getLocation())); 3620 auto I = DeclCache.find(D->getCanonicalDecl()); 3621 3622 if (I != DeclCache.end()) { 3623 auto N = I->second; 3624 if (auto *GVE = dyn_cast_or_null<llvm::DIGlobalVariableExpression>(N)) 3625 return GVE->getVariable(); 3626 return dyn_cast_or_null<llvm::DINode>(N); 3627 } 3628 3629 // No definition for now. Emit a forward definition that might be 3630 // merged with a potential upcoming definition. 3631 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 3632 return getFunctionForwardDeclaration(FD); 3633 else if (const auto *VD = dyn_cast<VarDecl>(D)) 3634 return getGlobalVariableForwardDeclaration(VD); 3635 3636 return nullptr; 3637 } 3638 3639 llvm::DISubprogram *CGDebugInfo::getFunctionDeclaration(const Decl *D) { 3640 if (!D || DebugKind <= codegenoptions::DebugLineTablesOnly) 3641 return nullptr; 3642 3643 const auto *FD = dyn_cast<FunctionDecl>(D); 3644 if (!FD) 3645 return nullptr; 3646 3647 // Setup context. 3648 auto *S = getDeclContextDescriptor(D); 3649 3650 auto MI = SPCache.find(FD->getCanonicalDecl()); 3651 if (MI == SPCache.end()) { 3652 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD->getCanonicalDecl())) { 3653 return CreateCXXMemberFunction(MD, getOrCreateFile(MD->getLocation()), 3654 cast<llvm::DICompositeType>(S)); 3655 } 3656 } 3657 if (MI != SPCache.end()) { 3658 auto *SP = dyn_cast_or_null<llvm::DISubprogram>(MI->second); 3659 if (SP && !SP->isDefinition()) 3660 return SP; 3661 } 3662 3663 for (auto NextFD : FD->redecls()) { 3664 auto MI = SPCache.find(NextFD->getCanonicalDecl()); 3665 if (MI != SPCache.end()) { 3666 auto *SP = dyn_cast_or_null<llvm::DISubprogram>(MI->second); 3667 if (SP && !SP->isDefinition()) 3668 return SP; 3669 } 3670 } 3671 return nullptr; 3672 } 3673 3674 llvm::DISubprogram *CGDebugInfo::getObjCMethodDeclaration( 3675 const Decl *D, llvm::DISubroutineType *FnType, unsigned LineNo, 3676 llvm::DINode::DIFlags Flags, llvm::DISubprogram::DISPFlags SPFlags) { 3677 if (!D || DebugKind <= codegenoptions::DebugLineTablesOnly) 3678 return nullptr; 3679 3680 const auto *OMD = dyn_cast<ObjCMethodDecl>(D); 3681 if (!OMD) 3682 return nullptr; 3683 3684 if (CGM.getCodeGenOpts().DwarfVersion < 5 && !OMD->isDirectMethod()) 3685 return nullptr; 3686 3687 if (OMD->isDirectMethod()) 3688 SPFlags |= llvm::DISubprogram::SPFlagObjCDirect; 3689 3690 // Starting with DWARF V5 method declarations are emitted as children of 3691 // the interface type. 3692 auto *ID = dyn_cast_or_null<ObjCInterfaceDecl>(D->getDeclContext()); 3693 if (!ID) 3694 ID = OMD->getClassInterface(); 3695 if (!ID) 3696 return nullptr; 3697 QualType QTy(ID->getTypeForDecl(), 0); 3698 auto It = TypeCache.find(QTy.getAsOpaquePtr()); 3699 if (It == TypeCache.end()) 3700 return nullptr; 3701 auto *InterfaceType = cast<llvm::DICompositeType>(It->second); 3702 llvm::DISubprogram *FD = DBuilder.createFunction( 3703 InterfaceType, getObjCMethodName(OMD), StringRef(), 3704 InterfaceType->getFile(), LineNo, FnType, LineNo, Flags, SPFlags); 3705 DBuilder.finalizeSubprogram(FD); 3706 ObjCMethodCache[ID].push_back({FD, OMD->isDirectMethod()}); 3707 return FD; 3708 } 3709 3710 // getOrCreateFunctionType - Construct type. If it is a c++ method, include 3711 // implicit parameter "this". 3712 llvm::DISubroutineType *CGDebugInfo::getOrCreateFunctionType(const Decl *D, 3713 QualType FnType, 3714 llvm::DIFile *F) { 3715 if (!D || DebugKind <= codegenoptions::DebugLineTablesOnly) 3716 // Create fake but valid subroutine type. Otherwise -verify would fail, and 3717 // subprogram DIE will miss DW_AT_decl_file and DW_AT_decl_line fields. 3718 return DBuilder.createSubroutineType(DBuilder.getOrCreateTypeArray(None)); 3719 3720 if (const auto *Method = dyn_cast<CXXMethodDecl>(D)) 3721 return getOrCreateMethodType(Method, F, false); 3722 3723 const auto *FTy = FnType->getAs<FunctionType>(); 3724 CallingConv CC = FTy ? FTy->getCallConv() : CallingConv::CC_C; 3725 3726 if (const auto *OMethod = dyn_cast<ObjCMethodDecl>(D)) { 3727 // Add "self" and "_cmd" 3728 SmallVector<llvm::Metadata *, 16> Elts; 3729 3730 // First element is always return type. For 'void' functions it is NULL. 3731 QualType ResultTy = OMethod->getReturnType(); 3732 3733 // Replace the instancetype keyword with the actual type. 3734 if (ResultTy == CGM.getContext().getObjCInstanceType()) 3735 ResultTy = CGM.getContext().getPointerType( 3736 QualType(OMethod->getClassInterface()->getTypeForDecl(), 0)); 3737 3738 Elts.push_back(getOrCreateType(ResultTy, F)); 3739 // "self" pointer is always first argument. 3740 QualType SelfDeclTy; 3741 if (auto *SelfDecl = OMethod->getSelfDecl()) 3742 SelfDeclTy = SelfDecl->getType(); 3743 else if (auto *FPT = dyn_cast<FunctionProtoType>(FnType)) 3744 if (FPT->getNumParams() > 1) 3745 SelfDeclTy = FPT->getParamType(0); 3746 if (!SelfDeclTy.isNull()) 3747 Elts.push_back( 3748 CreateSelfType(SelfDeclTy, getOrCreateType(SelfDeclTy, F))); 3749 // "_cmd" pointer is always second argument. 3750 Elts.push_back(DBuilder.createArtificialType( 3751 getOrCreateType(CGM.getContext().getObjCSelType(), F))); 3752 // Get rest of the arguments. 3753 for (const auto *PI : OMethod->parameters()) 3754 Elts.push_back(getOrCreateType(PI->getType(), F)); 3755 // Variadic methods need a special marker at the end of the type list. 3756 if (OMethod->isVariadic()) 3757 Elts.push_back(DBuilder.createUnspecifiedParameter()); 3758 3759 llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(Elts); 3760 return DBuilder.createSubroutineType(EltTypeArray, llvm::DINode::FlagZero, 3761 getDwarfCC(CC)); 3762 } 3763 3764 // Handle variadic function types; they need an additional 3765 // unspecified parameter. 3766 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 3767 if (FD->isVariadic()) { 3768 SmallVector<llvm::Metadata *, 16> EltTys; 3769 EltTys.push_back(getOrCreateType(FD->getReturnType(), F)); 3770 if (const auto *FPT = dyn_cast<FunctionProtoType>(FnType)) 3771 for (QualType ParamType : FPT->param_types()) 3772 EltTys.push_back(getOrCreateType(ParamType, F)); 3773 EltTys.push_back(DBuilder.createUnspecifiedParameter()); 3774 llvm::DITypeRefArray EltTypeArray = DBuilder.getOrCreateTypeArray(EltTys); 3775 return DBuilder.createSubroutineType(EltTypeArray, llvm::DINode::FlagZero, 3776 getDwarfCC(CC)); 3777 } 3778 3779 return cast<llvm::DISubroutineType>(getOrCreateType(FnType, F)); 3780 } 3781 3782 void CGDebugInfo::EmitFunctionStart(GlobalDecl GD, SourceLocation Loc, 3783 SourceLocation ScopeLoc, QualType FnType, 3784 llvm::Function *Fn, bool CurFuncIsThunk, 3785 CGBuilderTy &Builder) { 3786 3787 StringRef Name; 3788 StringRef LinkageName; 3789 3790 FnBeginRegionCount.push_back(LexicalBlockStack.size()); 3791 3792 const Decl *D = GD.getDecl(); 3793 bool HasDecl = (D != nullptr); 3794 3795 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 3796 llvm::DISubprogram::DISPFlags SPFlags = llvm::DISubprogram::SPFlagZero; 3797 llvm::DIFile *Unit = getOrCreateFile(Loc); 3798 llvm::DIScope *FDContext = Unit; 3799 llvm::DINodeArray TParamsArray; 3800 if (!HasDecl) { 3801 // Use llvm function name. 3802 LinkageName = Fn->getName(); 3803 } else if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 3804 // If there is a subprogram for this function available then use it. 3805 auto FI = SPCache.find(FD->getCanonicalDecl()); 3806 if (FI != SPCache.end()) { 3807 auto *SP = dyn_cast_or_null<llvm::DISubprogram>(FI->second); 3808 if (SP && SP->isDefinition()) { 3809 LexicalBlockStack.emplace_back(SP); 3810 RegionMap[D].reset(SP); 3811 return; 3812 } 3813 } 3814 collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext, 3815 TParamsArray, Flags); 3816 } else if (const auto *OMD = dyn_cast<ObjCMethodDecl>(D)) { 3817 Name = getObjCMethodName(OMD); 3818 Flags |= llvm::DINode::FlagPrototyped; 3819 } else if (isa<VarDecl>(D) && 3820 GD.getDynamicInitKind() != DynamicInitKind::NoStub) { 3821 // This is a global initializer or atexit destructor for a global variable. 3822 Name = getDynamicInitializerName(cast<VarDecl>(D), GD.getDynamicInitKind(), 3823 Fn); 3824 } else { 3825 Name = Fn->getName(); 3826 3827 if (isa<BlockDecl>(D)) 3828 LinkageName = Name; 3829 3830 Flags |= llvm::DINode::FlagPrototyped; 3831 } 3832 if (Name.startswith("\01")) 3833 Name = Name.substr(1); 3834 3835 if (!HasDecl || D->isImplicit() || D->hasAttr<ArtificialAttr>()) { 3836 Flags |= llvm::DINode::FlagArtificial; 3837 // Artificial functions should not silently reuse CurLoc. 3838 CurLoc = SourceLocation(); 3839 } 3840 3841 if (CurFuncIsThunk) 3842 Flags |= llvm::DINode::FlagThunk; 3843 3844 if (Fn->hasLocalLinkage()) 3845 SPFlags |= llvm::DISubprogram::SPFlagLocalToUnit; 3846 if (CGM.getLangOpts().Optimize) 3847 SPFlags |= llvm::DISubprogram::SPFlagOptimized; 3848 3849 llvm::DINode::DIFlags FlagsForDef = Flags | getCallSiteRelatedAttrs(); 3850 llvm::DISubprogram::DISPFlags SPFlagsForDef = 3851 SPFlags | llvm::DISubprogram::SPFlagDefinition; 3852 3853 unsigned LineNo = getLineNumber(Loc); 3854 unsigned ScopeLine = getLineNumber(ScopeLoc); 3855 llvm::DISubroutineType *DIFnType = getOrCreateFunctionType(D, FnType, Unit); 3856 llvm::DISubprogram *Decl = nullptr; 3857 if (D) 3858 Decl = isa<ObjCMethodDecl>(D) 3859 ? getObjCMethodDeclaration(D, DIFnType, LineNo, Flags, SPFlags) 3860 : getFunctionDeclaration(D); 3861 3862 // FIXME: The function declaration we're constructing here is mostly reusing 3863 // declarations from CXXMethodDecl and not constructing new ones for arbitrary 3864 // FunctionDecls. When/if we fix this we can have FDContext be TheCU/null for 3865 // all subprograms instead of the actual context since subprogram definitions 3866 // are emitted as CU level entities by the backend. 3867 llvm::DISubprogram *SP = DBuilder.createFunction( 3868 FDContext, Name, LinkageName, Unit, LineNo, DIFnType, ScopeLine, 3869 FlagsForDef, SPFlagsForDef, TParamsArray.get(), Decl); 3870 Fn->setSubprogram(SP); 3871 // We might get here with a VarDecl in the case we're generating 3872 // code for the initialization of globals. Do not record these decls 3873 // as they will overwrite the actual VarDecl Decl in the cache. 3874 if (HasDecl && isa<FunctionDecl>(D)) 3875 DeclCache[D->getCanonicalDecl()].reset(SP); 3876 3877 // Push the function onto the lexical block stack. 3878 LexicalBlockStack.emplace_back(SP); 3879 3880 if (HasDecl) 3881 RegionMap[D].reset(SP); 3882 } 3883 3884 void CGDebugInfo::EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc, 3885 QualType FnType, llvm::Function *Fn) { 3886 StringRef Name; 3887 StringRef LinkageName; 3888 3889 const Decl *D = GD.getDecl(); 3890 if (!D) 3891 return; 3892 3893 llvm::TimeTraceScope TimeScope("DebugFunction", [&]() { 3894 std::string Name; 3895 llvm::raw_string_ostream OS(Name); 3896 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) 3897 ND->getNameForDiagnostic(OS, getPrintingPolicy(), 3898 /*Qualified=*/true); 3899 return Name; 3900 }); 3901 3902 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 3903 llvm::DIFile *Unit = getOrCreateFile(Loc); 3904 bool IsDeclForCallSite = Fn ? true : false; 3905 llvm::DIScope *FDContext = 3906 IsDeclForCallSite ? Unit : getDeclContextDescriptor(D); 3907 llvm::DINodeArray TParamsArray; 3908 if (isa<FunctionDecl>(D)) { 3909 // If there is a DISubprogram for this function available then use it. 3910 collectFunctionDeclProps(GD, Unit, Name, LinkageName, FDContext, 3911 TParamsArray, Flags); 3912 } else if (const auto *OMD = dyn_cast<ObjCMethodDecl>(D)) { 3913 Name = getObjCMethodName(OMD); 3914 Flags |= llvm::DINode::FlagPrototyped; 3915 } else { 3916 llvm_unreachable("not a function or ObjC method"); 3917 } 3918 if (!Name.empty() && Name[0] == '\01') 3919 Name = Name.substr(1); 3920 3921 if (D->isImplicit()) { 3922 Flags |= llvm::DINode::FlagArtificial; 3923 // Artificial functions without a location should not silently reuse CurLoc. 3924 if (Loc.isInvalid()) 3925 CurLoc = SourceLocation(); 3926 } 3927 unsigned LineNo = getLineNumber(Loc); 3928 unsigned ScopeLine = 0; 3929 llvm::DISubprogram::DISPFlags SPFlags = llvm::DISubprogram::SPFlagZero; 3930 if (CGM.getLangOpts().Optimize) 3931 SPFlags |= llvm::DISubprogram::SPFlagOptimized; 3932 3933 llvm::DISubprogram *SP = DBuilder.createFunction( 3934 FDContext, Name, LinkageName, Unit, LineNo, 3935 getOrCreateFunctionType(D, FnType, Unit), ScopeLine, Flags, SPFlags, 3936 TParamsArray.get(), getFunctionDeclaration(D)); 3937 3938 if (IsDeclForCallSite) 3939 Fn->setSubprogram(SP); 3940 3941 DBuilder.finalizeSubprogram(SP); 3942 } 3943 3944 void CGDebugInfo::EmitFuncDeclForCallSite(llvm::CallBase *CallOrInvoke, 3945 QualType CalleeType, 3946 const FunctionDecl *CalleeDecl) { 3947 if (!CallOrInvoke) 3948 return; 3949 auto *Func = CallOrInvoke->getCalledFunction(); 3950 if (!Func) 3951 return; 3952 if (Func->getSubprogram()) 3953 return; 3954 3955 // Do not emit a declaration subprogram for a builtin, a function with nodebug 3956 // attribute, or if call site info isn't required. Also, elide declarations 3957 // for functions with reserved names, as call site-related features aren't 3958 // interesting in this case (& also, the compiler may emit calls to these 3959 // functions without debug locations, which makes the verifier complain). 3960 if (CalleeDecl->getBuiltinID() != 0 || CalleeDecl->hasAttr<NoDebugAttr>() || 3961 getCallSiteRelatedAttrs() == llvm::DINode::FlagZero) 3962 return; 3963 if (const auto *Id = CalleeDecl->getIdentifier()) 3964 if (Id->isReservedName()) 3965 return; 3966 3967 // If there is no DISubprogram attached to the function being called, 3968 // create the one describing the function in order to have complete 3969 // call site debug info. 3970 if (!CalleeDecl->isStatic() && !CalleeDecl->isInlined()) 3971 EmitFunctionDecl(CalleeDecl, CalleeDecl->getLocation(), CalleeType, Func); 3972 } 3973 3974 void CGDebugInfo::EmitInlineFunctionStart(CGBuilderTy &Builder, GlobalDecl GD) { 3975 const auto *FD = cast<FunctionDecl>(GD.getDecl()); 3976 // If there is a subprogram for this function available then use it. 3977 auto FI = SPCache.find(FD->getCanonicalDecl()); 3978 llvm::DISubprogram *SP = nullptr; 3979 if (FI != SPCache.end()) 3980 SP = dyn_cast_or_null<llvm::DISubprogram>(FI->second); 3981 if (!SP || !SP->isDefinition()) 3982 SP = getFunctionStub(GD); 3983 FnBeginRegionCount.push_back(LexicalBlockStack.size()); 3984 LexicalBlockStack.emplace_back(SP); 3985 setInlinedAt(Builder.getCurrentDebugLocation()); 3986 EmitLocation(Builder, FD->getLocation()); 3987 } 3988 3989 void CGDebugInfo::EmitInlineFunctionEnd(CGBuilderTy &Builder) { 3990 assert(CurInlinedAt && "unbalanced inline scope stack"); 3991 EmitFunctionEnd(Builder, nullptr); 3992 setInlinedAt(llvm::DebugLoc(CurInlinedAt).getInlinedAt()); 3993 } 3994 3995 void CGDebugInfo::EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) { 3996 // Update our current location 3997 setLocation(Loc); 3998 3999 if (CurLoc.isInvalid() || CurLoc.isMacroID() || LexicalBlockStack.empty()) 4000 return; 4001 4002 llvm::MDNode *Scope = LexicalBlockStack.back(); 4003 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get( 4004 getLineNumber(CurLoc), getColumnNumber(CurLoc), Scope, CurInlinedAt)); 4005 } 4006 4007 void CGDebugInfo::CreateLexicalBlock(SourceLocation Loc) { 4008 llvm::MDNode *Back = nullptr; 4009 if (!LexicalBlockStack.empty()) 4010 Back = LexicalBlockStack.back().get(); 4011 LexicalBlockStack.emplace_back(DBuilder.createLexicalBlock( 4012 cast<llvm::DIScope>(Back), getOrCreateFile(CurLoc), getLineNumber(CurLoc), 4013 getColumnNumber(CurLoc))); 4014 } 4015 4016 void CGDebugInfo::AppendAddressSpaceXDeref( 4017 unsigned AddressSpace, SmallVectorImpl<int64_t> &Expr) const { 4018 Optional<unsigned> DWARFAddressSpace = 4019 CGM.getTarget().getDWARFAddressSpace(AddressSpace); 4020 if (!DWARFAddressSpace) 4021 return; 4022 4023 Expr.push_back(llvm::dwarf::DW_OP_constu); 4024 Expr.push_back(DWARFAddressSpace.getValue()); 4025 Expr.push_back(llvm::dwarf::DW_OP_swap); 4026 Expr.push_back(llvm::dwarf::DW_OP_xderef); 4027 } 4028 4029 void CGDebugInfo::EmitLexicalBlockStart(CGBuilderTy &Builder, 4030 SourceLocation Loc) { 4031 // Set our current location. 4032 setLocation(Loc); 4033 4034 // Emit a line table change for the current location inside the new scope. 4035 Builder.SetCurrentDebugLocation( 4036 llvm::DebugLoc::get(getLineNumber(Loc), getColumnNumber(Loc), 4037 LexicalBlockStack.back(), CurInlinedAt)); 4038 4039 if (DebugKind <= codegenoptions::DebugLineTablesOnly) 4040 return; 4041 4042 // Create a new lexical block and push it on the stack. 4043 CreateLexicalBlock(Loc); 4044 } 4045 4046 void CGDebugInfo::EmitLexicalBlockEnd(CGBuilderTy &Builder, 4047 SourceLocation Loc) { 4048 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!"); 4049 4050 // Provide an entry in the line table for the end of the block. 4051 EmitLocation(Builder, Loc); 4052 4053 if (DebugKind <= codegenoptions::DebugLineTablesOnly) 4054 return; 4055 4056 LexicalBlockStack.pop_back(); 4057 } 4058 4059 void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder, llvm::Function *Fn) { 4060 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!"); 4061 unsigned RCount = FnBeginRegionCount.back(); 4062 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch"); 4063 4064 // Pop all regions for this function. 4065 while (LexicalBlockStack.size() != RCount) { 4066 // Provide an entry in the line table for the end of the block. 4067 EmitLocation(Builder, CurLoc); 4068 LexicalBlockStack.pop_back(); 4069 } 4070 FnBeginRegionCount.pop_back(); 4071 4072 if (Fn && Fn->getSubprogram()) 4073 DBuilder.finalizeSubprogram(Fn->getSubprogram()); 4074 } 4075 4076 CGDebugInfo::BlockByRefType 4077 CGDebugInfo::EmitTypeForVarWithBlocksAttr(const VarDecl *VD, 4078 uint64_t *XOffset) { 4079 SmallVector<llvm::Metadata *, 5> EltTys; 4080 QualType FType; 4081 uint64_t FieldSize, FieldOffset; 4082 uint32_t FieldAlign; 4083 4084 llvm::DIFile *Unit = getOrCreateFile(VD->getLocation()); 4085 QualType Type = VD->getType(); 4086 4087 FieldOffset = 0; 4088 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); 4089 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); 4090 EltTys.push_back(CreateMemberType(Unit, FType, "__forwarding", &FieldOffset)); 4091 FType = CGM.getContext().IntTy; 4092 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); 4093 EltTys.push_back(CreateMemberType(Unit, FType, "__size", &FieldOffset)); 4094 4095 bool HasCopyAndDispose = CGM.getContext().BlockRequiresCopying(Type, VD); 4096 if (HasCopyAndDispose) { 4097 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); 4098 EltTys.push_back( 4099 CreateMemberType(Unit, FType, "__copy_helper", &FieldOffset)); 4100 EltTys.push_back( 4101 CreateMemberType(Unit, FType, "__destroy_helper", &FieldOffset)); 4102 } 4103 bool HasByrefExtendedLayout; 4104 Qualifiers::ObjCLifetime Lifetime; 4105 if (CGM.getContext().getByrefLifetime(Type, Lifetime, 4106 HasByrefExtendedLayout) && 4107 HasByrefExtendedLayout) { 4108 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); 4109 EltTys.push_back( 4110 CreateMemberType(Unit, FType, "__byref_variable_layout", &FieldOffset)); 4111 } 4112 4113 CharUnits Align = CGM.getContext().getDeclAlign(VD); 4114 if (Align > CGM.getContext().toCharUnitsFromBits( 4115 CGM.getTarget().getPointerAlign(0))) { 4116 CharUnits FieldOffsetInBytes = 4117 CGM.getContext().toCharUnitsFromBits(FieldOffset); 4118 CharUnits AlignedOffsetInBytes = FieldOffsetInBytes.alignTo(Align); 4119 CharUnits NumPaddingBytes = AlignedOffsetInBytes - FieldOffsetInBytes; 4120 4121 if (NumPaddingBytes.isPositive()) { 4122 llvm::APInt pad(32, NumPaddingBytes.getQuantity()); 4123 FType = CGM.getContext().getConstantArrayType( 4124 CGM.getContext().CharTy, pad, nullptr, ArrayType::Normal, 0); 4125 EltTys.push_back(CreateMemberType(Unit, FType, "", &FieldOffset)); 4126 } 4127 } 4128 4129 FType = Type; 4130 llvm::DIType *WrappedTy = getOrCreateType(FType, Unit); 4131 FieldSize = CGM.getContext().getTypeSize(FType); 4132 FieldAlign = CGM.getContext().toBits(Align); 4133 4134 *XOffset = FieldOffset; 4135 llvm::DIType *FieldTy = DBuilder.createMemberType( 4136 Unit, VD->getName(), Unit, 0, FieldSize, FieldAlign, FieldOffset, 4137 llvm::DINode::FlagZero, WrappedTy); 4138 EltTys.push_back(FieldTy); 4139 FieldOffset += FieldSize; 4140 4141 llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys); 4142 return {DBuilder.createStructType(Unit, "", Unit, 0, FieldOffset, 0, 4143 llvm::DINode::FlagZero, nullptr, Elements), 4144 WrappedTy}; 4145 } 4146 4147 llvm::DILocalVariable *CGDebugInfo::EmitDeclare(const VarDecl *VD, 4148 llvm::Value *Storage, 4149 llvm::Optional<unsigned> ArgNo, 4150 CGBuilderTy &Builder, 4151 const bool UsePointerValue) { 4152 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4153 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!"); 4154 if (VD->hasAttr<NoDebugAttr>()) 4155 return nullptr; 4156 4157 bool Unwritten = 4158 VD->isImplicit() || (isa<Decl>(VD->getDeclContext()) && 4159 cast<Decl>(VD->getDeclContext())->isImplicit()); 4160 llvm::DIFile *Unit = nullptr; 4161 if (!Unwritten) 4162 Unit = getOrCreateFile(VD->getLocation()); 4163 llvm::DIType *Ty; 4164 uint64_t XOffset = 0; 4165 if (VD->hasAttr<BlocksAttr>()) 4166 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset).WrappedType; 4167 else 4168 Ty = getOrCreateType(VD->getType(), Unit); 4169 4170 // If there is no debug info for this type then do not emit debug info 4171 // for this variable. 4172 if (!Ty) 4173 return nullptr; 4174 4175 // Get location information. 4176 unsigned Line = 0; 4177 unsigned Column = 0; 4178 if (!Unwritten) { 4179 Line = getLineNumber(VD->getLocation()); 4180 Column = getColumnNumber(VD->getLocation()); 4181 } 4182 SmallVector<int64_t, 13> Expr; 4183 llvm::DINode::DIFlags Flags = llvm::DINode::FlagZero; 4184 if (VD->isImplicit()) 4185 Flags |= llvm::DINode::FlagArtificial; 4186 4187 auto Align = getDeclAlignIfRequired(VD, CGM.getContext()); 4188 4189 unsigned AddressSpace = CGM.getContext().getTargetAddressSpace(VD->getType()); 4190 AppendAddressSpaceXDeref(AddressSpace, Expr); 4191 4192 // If this is implicit parameter of CXXThis or ObjCSelf kind, then give it an 4193 // object pointer flag. 4194 if (const auto *IPD = dyn_cast<ImplicitParamDecl>(VD)) { 4195 if (IPD->getParameterKind() == ImplicitParamDecl::CXXThis || 4196 IPD->getParameterKind() == ImplicitParamDecl::ObjCSelf) 4197 Flags |= llvm::DINode::FlagObjectPointer; 4198 } 4199 4200 // Note: Older versions of clang used to emit byval references with an extra 4201 // DW_OP_deref, because they referenced the IR arg directly instead of 4202 // referencing an alloca. Newer versions of LLVM don't treat allocas 4203 // differently from other function arguments when used in a dbg.declare. 4204 auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back()); 4205 StringRef Name = VD->getName(); 4206 if (!Name.empty()) { 4207 if (VD->hasAttr<BlocksAttr>()) { 4208 // Here, we need an offset *into* the alloca. 4209 CharUnits offset = CharUnits::fromQuantity(32); 4210 Expr.push_back(llvm::dwarf::DW_OP_plus_uconst); 4211 // offset of __forwarding field 4212 offset = CGM.getContext().toCharUnitsFromBits( 4213 CGM.getTarget().getPointerWidth(0)); 4214 Expr.push_back(offset.getQuantity()); 4215 Expr.push_back(llvm::dwarf::DW_OP_deref); 4216 Expr.push_back(llvm::dwarf::DW_OP_plus_uconst); 4217 // offset of x field 4218 offset = CGM.getContext().toCharUnitsFromBits(XOffset); 4219 Expr.push_back(offset.getQuantity()); 4220 } 4221 } else if (const auto *RT = dyn_cast<RecordType>(VD->getType())) { 4222 // If VD is an anonymous union then Storage represents value for 4223 // all union fields. 4224 const RecordDecl *RD = RT->getDecl(); 4225 if (RD->isUnion() && RD->isAnonymousStructOrUnion()) { 4226 // GDB has trouble finding local variables in anonymous unions, so we emit 4227 // artificial local variables for each of the members. 4228 // 4229 // FIXME: Remove this code as soon as GDB supports this. 4230 // The debug info verifier in LLVM operates based on the assumption that a 4231 // variable has the same size as its storage and we had to disable the 4232 // check for artificial variables. 4233 for (const auto *Field : RD->fields()) { 4234 llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit); 4235 StringRef FieldName = Field->getName(); 4236 4237 // Ignore unnamed fields. Do not ignore unnamed records. 4238 if (FieldName.empty() && !isa<RecordType>(Field->getType())) 4239 continue; 4240 4241 // Use VarDecl's Tag, Scope and Line number. 4242 auto FieldAlign = getDeclAlignIfRequired(Field, CGM.getContext()); 4243 auto *D = DBuilder.createAutoVariable( 4244 Scope, FieldName, Unit, Line, FieldTy, CGM.getLangOpts().Optimize, 4245 Flags | llvm::DINode::FlagArtificial, FieldAlign); 4246 4247 // Insert an llvm.dbg.declare into the current block. 4248 DBuilder.insertDeclare( 4249 Storage, D, DBuilder.createExpression(Expr), 4250 llvm::DebugLoc::get(Line, Column, Scope, CurInlinedAt), 4251 Builder.GetInsertBlock()); 4252 } 4253 } 4254 } 4255 4256 // Clang stores the sret pointer provided by the caller in a static alloca. 4257 // Use DW_OP_deref to tell the debugger to load the pointer and treat it as 4258 // the address of the variable. 4259 if (UsePointerValue) { 4260 assert(std::find(Expr.begin(), Expr.end(), llvm::dwarf::DW_OP_deref) == 4261 Expr.end() && 4262 "Debug info already contains DW_OP_deref."); 4263 Expr.push_back(llvm::dwarf::DW_OP_deref); 4264 } 4265 4266 // Create the descriptor for the variable. 4267 auto *D = ArgNo ? DBuilder.createParameterVariable( 4268 Scope, Name, *ArgNo, Unit, Line, Ty, 4269 CGM.getLangOpts().Optimize, Flags) 4270 : DBuilder.createAutoVariable(Scope, Name, Unit, Line, Ty, 4271 CGM.getLangOpts().Optimize, 4272 Flags, Align); 4273 4274 // Insert an llvm.dbg.declare into the current block. 4275 DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(Expr), 4276 llvm::DebugLoc::get(Line, Column, Scope, CurInlinedAt), 4277 Builder.GetInsertBlock()); 4278 4279 return D; 4280 } 4281 4282 llvm::DILocalVariable * 4283 CGDebugInfo::EmitDeclareOfAutoVariable(const VarDecl *VD, llvm::Value *Storage, 4284 CGBuilderTy &Builder, 4285 const bool UsePointerValue) { 4286 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4287 return EmitDeclare(VD, Storage, llvm::None, Builder, UsePointerValue); 4288 } 4289 4290 void CGDebugInfo::EmitLabel(const LabelDecl *D, CGBuilderTy &Builder) { 4291 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4292 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!"); 4293 4294 if (D->hasAttr<NoDebugAttr>()) 4295 return; 4296 4297 auto *Scope = cast<llvm::DIScope>(LexicalBlockStack.back()); 4298 llvm::DIFile *Unit = getOrCreateFile(D->getLocation()); 4299 4300 // Get location information. 4301 unsigned Line = getLineNumber(D->getLocation()); 4302 unsigned Column = getColumnNumber(D->getLocation()); 4303 4304 StringRef Name = D->getName(); 4305 4306 // Create the descriptor for the label. 4307 auto *L = 4308 DBuilder.createLabel(Scope, Name, Unit, Line, CGM.getLangOpts().Optimize); 4309 4310 // Insert an llvm.dbg.label into the current block. 4311 DBuilder.insertLabel(L, 4312 llvm::DebugLoc::get(Line, Column, Scope, CurInlinedAt), 4313 Builder.GetInsertBlock()); 4314 } 4315 4316 llvm::DIType *CGDebugInfo::CreateSelfType(const QualType &QualTy, 4317 llvm::DIType *Ty) { 4318 llvm::DIType *CachedTy = getTypeOrNull(QualTy); 4319 if (CachedTy) 4320 Ty = CachedTy; 4321 return DBuilder.createObjectPointerType(Ty); 4322 } 4323 4324 void CGDebugInfo::EmitDeclareOfBlockDeclRefVariable( 4325 const VarDecl *VD, llvm::Value *Storage, CGBuilderTy &Builder, 4326 const CGBlockInfo &blockInfo, llvm::Instruction *InsertPoint) { 4327 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4328 assert(!LexicalBlockStack.empty() && "Region stack mismatch, stack empty!"); 4329 4330 if (Builder.GetInsertBlock() == nullptr) 4331 return; 4332 if (VD->hasAttr<NoDebugAttr>()) 4333 return; 4334 4335 bool isByRef = VD->hasAttr<BlocksAttr>(); 4336 4337 uint64_t XOffset = 0; 4338 llvm::DIFile *Unit = getOrCreateFile(VD->getLocation()); 4339 llvm::DIType *Ty; 4340 if (isByRef) 4341 Ty = EmitTypeForVarWithBlocksAttr(VD, &XOffset).WrappedType; 4342 else 4343 Ty = getOrCreateType(VD->getType(), Unit); 4344 4345 // Self is passed along as an implicit non-arg variable in a 4346 // block. Mark it as the object pointer. 4347 if (const auto *IPD = dyn_cast<ImplicitParamDecl>(VD)) 4348 if (IPD->getParameterKind() == ImplicitParamDecl::ObjCSelf) 4349 Ty = CreateSelfType(VD->getType(), Ty); 4350 4351 // Get location information. 4352 unsigned Line = getLineNumber(VD->getLocation()); 4353 unsigned Column = getColumnNumber(VD->getLocation()); 4354 4355 const llvm::DataLayout &target = CGM.getDataLayout(); 4356 4357 CharUnits offset = CharUnits::fromQuantity( 4358 target.getStructLayout(blockInfo.StructureType) 4359 ->getElementOffset(blockInfo.getCapture(VD).getIndex())); 4360 4361 SmallVector<int64_t, 9> addr; 4362 addr.push_back(llvm::dwarf::DW_OP_deref); 4363 addr.push_back(llvm::dwarf::DW_OP_plus_uconst); 4364 addr.push_back(offset.getQuantity()); 4365 if (isByRef) { 4366 addr.push_back(llvm::dwarf::DW_OP_deref); 4367 addr.push_back(llvm::dwarf::DW_OP_plus_uconst); 4368 // offset of __forwarding field 4369 offset = 4370 CGM.getContext().toCharUnitsFromBits(target.getPointerSizeInBits(0)); 4371 addr.push_back(offset.getQuantity()); 4372 addr.push_back(llvm::dwarf::DW_OP_deref); 4373 addr.push_back(llvm::dwarf::DW_OP_plus_uconst); 4374 // offset of x field 4375 offset = CGM.getContext().toCharUnitsFromBits(XOffset); 4376 addr.push_back(offset.getQuantity()); 4377 } 4378 4379 // Create the descriptor for the variable. 4380 auto Align = getDeclAlignIfRequired(VD, CGM.getContext()); 4381 auto *D = DBuilder.createAutoVariable( 4382 cast<llvm::DILocalScope>(LexicalBlockStack.back()), VD->getName(), Unit, 4383 Line, Ty, false, llvm::DINode::FlagZero, Align); 4384 4385 // Insert an llvm.dbg.declare into the current block. 4386 auto DL = 4387 llvm::DebugLoc::get(Line, Column, LexicalBlockStack.back(), CurInlinedAt); 4388 auto *Expr = DBuilder.createExpression(addr); 4389 if (InsertPoint) 4390 DBuilder.insertDeclare(Storage, D, Expr, DL, InsertPoint); 4391 else 4392 DBuilder.insertDeclare(Storage, D, Expr, DL, Builder.GetInsertBlock()); 4393 } 4394 4395 void CGDebugInfo::EmitDeclareOfArgVariable(const VarDecl *VD, llvm::Value *AI, 4396 unsigned ArgNo, 4397 CGBuilderTy &Builder) { 4398 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4399 EmitDeclare(VD, AI, ArgNo, Builder); 4400 } 4401 4402 namespace { 4403 struct BlockLayoutChunk { 4404 uint64_t OffsetInBits; 4405 const BlockDecl::Capture *Capture; 4406 }; 4407 bool operator<(const BlockLayoutChunk &l, const BlockLayoutChunk &r) { 4408 return l.OffsetInBits < r.OffsetInBits; 4409 } 4410 } // namespace 4411 4412 void CGDebugInfo::collectDefaultFieldsForBlockLiteralDeclare( 4413 const CGBlockInfo &Block, const ASTContext &Context, SourceLocation Loc, 4414 const llvm::StructLayout &BlockLayout, llvm::DIFile *Unit, 4415 SmallVectorImpl<llvm::Metadata *> &Fields) { 4416 // Blocks in OpenCL have unique constraints which make the standard fields 4417 // redundant while requiring size and align fields for enqueue_kernel. See 4418 // initializeForBlockHeader in CGBlocks.cpp 4419 if (CGM.getLangOpts().OpenCL) { 4420 Fields.push_back(createFieldType("__size", Context.IntTy, Loc, AS_public, 4421 BlockLayout.getElementOffsetInBits(0), 4422 Unit, Unit)); 4423 Fields.push_back(createFieldType("__align", Context.IntTy, Loc, AS_public, 4424 BlockLayout.getElementOffsetInBits(1), 4425 Unit, Unit)); 4426 } else { 4427 Fields.push_back(createFieldType("__isa", Context.VoidPtrTy, Loc, AS_public, 4428 BlockLayout.getElementOffsetInBits(0), 4429 Unit, Unit)); 4430 Fields.push_back(createFieldType("__flags", Context.IntTy, Loc, AS_public, 4431 BlockLayout.getElementOffsetInBits(1), 4432 Unit, Unit)); 4433 Fields.push_back( 4434 createFieldType("__reserved", Context.IntTy, Loc, AS_public, 4435 BlockLayout.getElementOffsetInBits(2), Unit, Unit)); 4436 auto *FnTy = Block.getBlockExpr()->getFunctionType(); 4437 auto FnPtrType = CGM.getContext().getPointerType(FnTy->desugar()); 4438 Fields.push_back(createFieldType("__FuncPtr", FnPtrType, Loc, AS_public, 4439 BlockLayout.getElementOffsetInBits(3), 4440 Unit, Unit)); 4441 Fields.push_back(createFieldType( 4442 "__descriptor", 4443 Context.getPointerType(Block.NeedsCopyDispose 4444 ? Context.getBlockDescriptorExtendedType() 4445 : Context.getBlockDescriptorType()), 4446 Loc, AS_public, BlockLayout.getElementOffsetInBits(4), Unit, Unit)); 4447 } 4448 } 4449 4450 void CGDebugInfo::EmitDeclareOfBlockLiteralArgVariable(const CGBlockInfo &block, 4451 StringRef Name, 4452 unsigned ArgNo, 4453 llvm::AllocaInst *Alloca, 4454 CGBuilderTy &Builder) { 4455 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4456 ASTContext &C = CGM.getContext(); 4457 const BlockDecl *blockDecl = block.getBlockDecl(); 4458 4459 // Collect some general information about the block's location. 4460 SourceLocation loc = blockDecl->getCaretLocation(); 4461 llvm::DIFile *tunit = getOrCreateFile(loc); 4462 unsigned line = getLineNumber(loc); 4463 unsigned column = getColumnNumber(loc); 4464 4465 // Build the debug-info type for the block literal. 4466 getDeclContextDescriptor(blockDecl); 4467 4468 const llvm::StructLayout *blockLayout = 4469 CGM.getDataLayout().getStructLayout(block.StructureType); 4470 4471 SmallVector<llvm::Metadata *, 16> fields; 4472 collectDefaultFieldsForBlockLiteralDeclare(block, C, loc, *blockLayout, tunit, 4473 fields); 4474 4475 // We want to sort the captures by offset, not because DWARF 4476 // requires this, but because we're paranoid about debuggers. 4477 SmallVector<BlockLayoutChunk, 8> chunks; 4478 4479 // 'this' capture. 4480 if (blockDecl->capturesCXXThis()) { 4481 BlockLayoutChunk chunk; 4482 chunk.OffsetInBits = 4483 blockLayout->getElementOffsetInBits(block.CXXThisIndex); 4484 chunk.Capture = nullptr; 4485 chunks.push_back(chunk); 4486 } 4487 4488 // Variable captures. 4489 for (const auto &capture : blockDecl->captures()) { 4490 const VarDecl *variable = capture.getVariable(); 4491 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable); 4492 4493 // Ignore constant captures. 4494 if (captureInfo.isConstant()) 4495 continue; 4496 4497 BlockLayoutChunk chunk; 4498 chunk.OffsetInBits = 4499 blockLayout->getElementOffsetInBits(captureInfo.getIndex()); 4500 chunk.Capture = &capture; 4501 chunks.push_back(chunk); 4502 } 4503 4504 // Sort by offset. 4505 llvm::array_pod_sort(chunks.begin(), chunks.end()); 4506 4507 for (const BlockLayoutChunk &Chunk : chunks) { 4508 uint64_t offsetInBits = Chunk.OffsetInBits; 4509 const BlockDecl::Capture *capture = Chunk.Capture; 4510 4511 // If we have a null capture, this must be the C++ 'this' capture. 4512 if (!capture) { 4513 QualType type; 4514 if (auto *Method = 4515 cast_or_null<CXXMethodDecl>(blockDecl->getNonClosureContext())) 4516 type = Method->getThisType(); 4517 else if (auto *RDecl = dyn_cast<CXXRecordDecl>(blockDecl->getParent())) 4518 type = QualType(RDecl->getTypeForDecl(), 0); 4519 else 4520 llvm_unreachable("unexpected block declcontext"); 4521 4522 fields.push_back(createFieldType("this", type, loc, AS_public, 4523 offsetInBits, tunit, tunit)); 4524 continue; 4525 } 4526 4527 const VarDecl *variable = capture->getVariable(); 4528 StringRef name = variable->getName(); 4529 4530 llvm::DIType *fieldType; 4531 if (capture->isByRef()) { 4532 TypeInfo PtrInfo = C.getTypeInfo(C.VoidPtrTy); 4533 auto Align = PtrInfo.AlignIsRequired ? PtrInfo.Align : 0; 4534 // FIXME: This recomputes the layout of the BlockByRefWrapper. 4535 uint64_t xoffset; 4536 fieldType = 4537 EmitTypeForVarWithBlocksAttr(variable, &xoffset).BlockByRefWrapper; 4538 fieldType = DBuilder.createPointerType(fieldType, PtrInfo.Width); 4539 fieldType = DBuilder.createMemberType(tunit, name, tunit, line, 4540 PtrInfo.Width, Align, offsetInBits, 4541 llvm::DINode::FlagZero, fieldType); 4542 } else { 4543 auto Align = getDeclAlignIfRequired(variable, CGM.getContext()); 4544 fieldType = createFieldType(name, variable->getType(), loc, AS_public, 4545 offsetInBits, Align, tunit, tunit); 4546 } 4547 fields.push_back(fieldType); 4548 } 4549 4550 SmallString<36> typeName; 4551 llvm::raw_svector_ostream(typeName) 4552 << "__block_literal_" << CGM.getUniqueBlockCount(); 4553 4554 llvm::DINodeArray fieldsArray = DBuilder.getOrCreateArray(fields); 4555 4556 llvm::DIType *type = 4557 DBuilder.createStructType(tunit, typeName.str(), tunit, line, 4558 CGM.getContext().toBits(block.BlockSize), 0, 4559 llvm::DINode::FlagZero, nullptr, fieldsArray); 4560 type = DBuilder.createPointerType(type, CGM.PointerWidthInBits); 4561 4562 // Get overall information about the block. 4563 llvm::DINode::DIFlags flags = llvm::DINode::FlagArtificial; 4564 auto *scope = cast<llvm::DILocalScope>(LexicalBlockStack.back()); 4565 4566 // Create the descriptor for the parameter. 4567 auto *debugVar = DBuilder.createParameterVariable( 4568 scope, Name, ArgNo, tunit, line, type, CGM.getLangOpts().Optimize, flags); 4569 4570 // Insert an llvm.dbg.declare into the current block. 4571 DBuilder.insertDeclare(Alloca, debugVar, DBuilder.createExpression(), 4572 llvm::DebugLoc::get(line, column, scope, CurInlinedAt), 4573 Builder.GetInsertBlock()); 4574 } 4575 4576 llvm::DIDerivedType * 4577 CGDebugInfo::getOrCreateStaticDataMemberDeclarationOrNull(const VarDecl *D) { 4578 if (!D || !D->isStaticDataMember()) 4579 return nullptr; 4580 4581 auto MI = StaticDataMemberCache.find(D->getCanonicalDecl()); 4582 if (MI != StaticDataMemberCache.end()) { 4583 assert(MI->second && "Static data member declaration should still exist"); 4584 return MI->second; 4585 } 4586 4587 // If the member wasn't found in the cache, lazily construct and add it to the 4588 // type (used when a limited form of the type is emitted). 4589 auto DC = D->getDeclContext(); 4590 auto *Ctxt = cast<llvm::DICompositeType>(getDeclContextDescriptor(D)); 4591 return CreateRecordStaticField(D, Ctxt, cast<RecordDecl>(DC)); 4592 } 4593 4594 llvm::DIGlobalVariableExpression *CGDebugInfo::CollectAnonRecordDecls( 4595 const RecordDecl *RD, llvm::DIFile *Unit, unsigned LineNo, 4596 StringRef LinkageName, llvm::GlobalVariable *Var, llvm::DIScope *DContext) { 4597 llvm::DIGlobalVariableExpression *GVE = nullptr; 4598 4599 for (const auto *Field : RD->fields()) { 4600 llvm::DIType *FieldTy = getOrCreateType(Field->getType(), Unit); 4601 StringRef FieldName = Field->getName(); 4602 4603 // Ignore unnamed fields, but recurse into anonymous records. 4604 if (FieldName.empty()) { 4605 if (const auto *RT = dyn_cast<RecordType>(Field->getType())) 4606 GVE = CollectAnonRecordDecls(RT->getDecl(), Unit, LineNo, LinkageName, 4607 Var, DContext); 4608 continue; 4609 } 4610 // Use VarDecl's Tag, Scope and Line number. 4611 GVE = DBuilder.createGlobalVariableExpression( 4612 DContext, FieldName, LinkageName, Unit, LineNo, FieldTy, 4613 Var->hasLocalLinkage()); 4614 Var->addDebugInfo(GVE); 4615 } 4616 return GVE; 4617 } 4618 4619 void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var, 4620 const VarDecl *D) { 4621 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4622 if (D->hasAttr<NoDebugAttr>()) 4623 return; 4624 4625 llvm::TimeTraceScope TimeScope("DebugGlobalVariable", [&]() { 4626 std::string Name; 4627 llvm::raw_string_ostream OS(Name); 4628 D->getNameForDiagnostic(OS, getPrintingPolicy(), 4629 /*Qualified=*/true); 4630 return Name; 4631 }); 4632 4633 // If we already created a DIGlobalVariable for this declaration, just attach 4634 // it to the llvm::GlobalVariable. 4635 auto Cached = DeclCache.find(D->getCanonicalDecl()); 4636 if (Cached != DeclCache.end()) 4637 return Var->addDebugInfo( 4638 cast<llvm::DIGlobalVariableExpression>(Cached->second)); 4639 4640 // Create global variable debug descriptor. 4641 llvm::DIFile *Unit = nullptr; 4642 llvm::DIScope *DContext = nullptr; 4643 unsigned LineNo; 4644 StringRef DeclName, LinkageName; 4645 QualType T; 4646 llvm::MDTuple *TemplateParameters = nullptr; 4647 collectVarDeclProps(D, Unit, LineNo, T, DeclName, LinkageName, 4648 TemplateParameters, DContext); 4649 4650 // Attempt to store one global variable for the declaration - even if we 4651 // emit a lot of fields. 4652 llvm::DIGlobalVariableExpression *GVE = nullptr; 4653 4654 // If this is an anonymous union then we'll want to emit a global 4655 // variable for each member of the anonymous union so that it's possible 4656 // to find the name of any field in the union. 4657 if (T->isUnionType() && DeclName.empty()) { 4658 const RecordDecl *RD = T->castAs<RecordType>()->getDecl(); 4659 assert(RD->isAnonymousStructOrUnion() && 4660 "unnamed non-anonymous struct or union?"); 4661 GVE = CollectAnonRecordDecls(RD, Unit, LineNo, LinkageName, Var, DContext); 4662 } else { 4663 auto Align = getDeclAlignIfRequired(D, CGM.getContext()); 4664 4665 SmallVector<int64_t, 4> Expr; 4666 unsigned AddressSpace = 4667 CGM.getContext().getTargetAddressSpace(D->getType()); 4668 if (CGM.getLangOpts().CUDA && CGM.getLangOpts().CUDAIsDevice) { 4669 if (D->hasAttr<CUDASharedAttr>()) 4670 AddressSpace = 4671 CGM.getContext().getTargetAddressSpace(LangAS::cuda_shared); 4672 else if (D->hasAttr<CUDAConstantAttr>()) 4673 AddressSpace = 4674 CGM.getContext().getTargetAddressSpace(LangAS::cuda_constant); 4675 } 4676 AppendAddressSpaceXDeref(AddressSpace, Expr); 4677 4678 GVE = DBuilder.createGlobalVariableExpression( 4679 DContext, DeclName, LinkageName, Unit, LineNo, getOrCreateType(T, Unit), 4680 Var->hasLocalLinkage(), true, 4681 Expr.empty() ? nullptr : DBuilder.createExpression(Expr), 4682 getOrCreateStaticDataMemberDeclarationOrNull(D), TemplateParameters, 4683 Align); 4684 Var->addDebugInfo(GVE); 4685 } 4686 DeclCache[D->getCanonicalDecl()].reset(GVE); 4687 } 4688 4689 void CGDebugInfo::EmitGlobalVariable(const ValueDecl *VD, const APValue &Init) { 4690 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4691 if (VD->hasAttr<NoDebugAttr>()) 4692 return; 4693 llvm::TimeTraceScope TimeScope("DebugConstGlobalVariable", [&]() { 4694 std::string Name; 4695 llvm::raw_string_ostream OS(Name); 4696 VD->getNameForDiagnostic(OS, getPrintingPolicy(), 4697 /*Qualified=*/true); 4698 return Name; 4699 }); 4700 4701 auto Align = getDeclAlignIfRequired(VD, CGM.getContext()); 4702 // Create the descriptor for the variable. 4703 llvm::DIFile *Unit = getOrCreateFile(VD->getLocation()); 4704 StringRef Name = VD->getName(); 4705 llvm::DIType *Ty = getOrCreateType(VD->getType(), Unit); 4706 4707 if (const auto *ECD = dyn_cast<EnumConstantDecl>(VD)) { 4708 const auto *ED = cast<EnumDecl>(ECD->getDeclContext()); 4709 assert(isa<EnumType>(ED->getTypeForDecl()) && "Enum without EnumType?"); 4710 4711 if (CGM.getCodeGenOpts().EmitCodeView) { 4712 // If CodeView, emit enums as global variables, unless they are defined 4713 // inside a class. We do this because MSVC doesn't emit S_CONSTANTs for 4714 // enums in classes, and because it is difficult to attach this scope 4715 // information to the global variable. 4716 if (isa<RecordDecl>(ED->getDeclContext())) 4717 return; 4718 } else { 4719 // If not CodeView, emit DW_TAG_enumeration_type if necessary. For 4720 // example: for "enum { ZERO };", a DW_TAG_enumeration_type is created the 4721 // first time `ZERO` is referenced in a function. 4722 llvm::DIType *EDTy = 4723 getOrCreateType(QualType(ED->getTypeForDecl(), 0), Unit); 4724 assert (EDTy->getTag() == llvm::dwarf::DW_TAG_enumeration_type); 4725 (void)EDTy; 4726 return; 4727 } 4728 } 4729 4730 llvm::DIScope *DContext = nullptr; 4731 4732 // Do not emit separate definitions for function local consts. 4733 if (isa<FunctionDecl>(VD->getDeclContext())) 4734 return; 4735 4736 // Emit definition for static members in CodeView. 4737 VD = cast<ValueDecl>(VD->getCanonicalDecl()); 4738 auto *VarD = dyn_cast<VarDecl>(VD); 4739 if (VarD && VarD->isStaticDataMember()) { 4740 auto *RD = cast<RecordDecl>(VarD->getDeclContext()); 4741 getDeclContextDescriptor(VarD); 4742 // Ensure that the type is retained even though it's otherwise unreferenced. 4743 // 4744 // FIXME: This is probably unnecessary, since Ty should reference RD 4745 // through its scope. 4746 RetainedTypes.push_back( 4747 CGM.getContext().getRecordType(RD).getAsOpaquePtr()); 4748 4749 if (!CGM.getCodeGenOpts().EmitCodeView) 4750 return; 4751 4752 // Use the global scope for static members. 4753 DContext = getContextDescriptor( 4754 cast<Decl>(CGM.getContext().getTranslationUnitDecl()), TheCU); 4755 } else { 4756 DContext = getDeclContextDescriptor(VD); 4757 } 4758 4759 auto &GV = DeclCache[VD]; 4760 if (GV) 4761 return; 4762 llvm::DIExpression *InitExpr = nullptr; 4763 if (CGM.getContext().getTypeSize(VD->getType()) <= 64) { 4764 // FIXME: Add a representation for integer constants wider than 64 bits. 4765 if (Init.isInt()) 4766 InitExpr = 4767 DBuilder.createConstantValueExpression(Init.getInt().getExtValue()); 4768 else if (Init.isFloat()) 4769 InitExpr = DBuilder.createConstantValueExpression( 4770 Init.getFloat().bitcastToAPInt().getZExtValue()); 4771 } 4772 4773 llvm::MDTuple *TemplateParameters = nullptr; 4774 4775 if (isa<VarTemplateSpecializationDecl>(VD)) 4776 if (VarD) { 4777 llvm::DINodeArray parameterNodes = CollectVarTemplateParams(VarD, &*Unit); 4778 TemplateParameters = parameterNodes.get(); 4779 } 4780 4781 GV.reset(DBuilder.createGlobalVariableExpression( 4782 DContext, Name, StringRef(), Unit, getLineNumber(VD->getLocation()), Ty, 4783 true, true, InitExpr, getOrCreateStaticDataMemberDeclarationOrNull(VarD), 4784 TemplateParameters, Align)); 4785 } 4786 4787 void CGDebugInfo::EmitExternalVariable(llvm::GlobalVariable *Var, 4788 const VarDecl *D) { 4789 assert(CGM.getCodeGenOpts().hasReducedDebugInfo()); 4790 if (D->hasAttr<NoDebugAttr>()) 4791 return; 4792 4793 auto Align = getDeclAlignIfRequired(D, CGM.getContext()); 4794 llvm::DIFile *Unit = getOrCreateFile(D->getLocation()); 4795 StringRef Name = D->getName(); 4796 llvm::DIType *Ty = getOrCreateType(D->getType(), Unit); 4797 4798 llvm::DIScope *DContext = getDeclContextDescriptor(D); 4799 llvm::DIGlobalVariableExpression *GVE = 4800 DBuilder.createGlobalVariableExpression( 4801 DContext, Name, StringRef(), Unit, getLineNumber(D->getLocation()), 4802 Ty, false, false, nullptr, nullptr, nullptr, Align); 4803 Var->addDebugInfo(GVE); 4804 } 4805 4806 llvm::DIScope *CGDebugInfo::getCurrentContextDescriptor(const Decl *D) { 4807 if (!LexicalBlockStack.empty()) 4808 return LexicalBlockStack.back(); 4809 llvm::DIScope *Mod = getParentModuleOrNull(D); 4810 return getContextDescriptor(D, Mod ? Mod : TheCU); 4811 } 4812 4813 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { 4814 if (!CGM.getCodeGenOpts().hasReducedDebugInfo()) 4815 return; 4816 const NamespaceDecl *NSDecl = UD.getNominatedNamespace(); 4817 if (!NSDecl->isAnonymousNamespace() || 4818 CGM.getCodeGenOpts().DebugExplicitImport) { 4819 auto Loc = UD.getLocation(); 4820 DBuilder.createImportedModule( 4821 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())), 4822 getOrCreateNamespace(NSDecl), getOrCreateFile(Loc), getLineNumber(Loc)); 4823 } 4824 } 4825 4826 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { 4827 if (!CGM.getCodeGenOpts().hasReducedDebugInfo()) 4828 return; 4829 assert(UD.shadow_size() && 4830 "We shouldn't be codegening an invalid UsingDecl containing no decls"); 4831 // Emitting one decl is sufficient - debuggers can detect that this is an 4832 // overloaded name & provide lookup for all the overloads. 4833 const UsingShadowDecl &USD = **UD.shadow_begin(); 4834 4835 // FIXME: Skip functions with undeduced auto return type for now since we 4836 // don't currently have the plumbing for separate declarations & definitions 4837 // of free functions and mismatched types (auto in the declaration, concrete 4838 // return type in the definition) 4839 if (const auto *FD = dyn_cast<FunctionDecl>(USD.getUnderlyingDecl())) 4840 if (const auto *AT = 4841 FD->getType()->castAs<FunctionProtoType>()->getContainedAutoType()) 4842 if (AT->getDeducedType().isNull()) 4843 return; 4844 if (llvm::DINode *Target = 4845 getDeclarationOrDefinition(USD.getUnderlyingDecl())) { 4846 auto Loc = USD.getLocation(); 4847 DBuilder.createImportedDeclaration( 4848 getCurrentContextDescriptor(cast<Decl>(USD.getDeclContext())), Target, 4849 getOrCreateFile(Loc), getLineNumber(Loc)); 4850 } 4851 } 4852 4853 void CGDebugInfo::EmitImportDecl(const ImportDecl &ID) { 4854 if (CGM.getCodeGenOpts().getDebuggerTuning() != llvm::DebuggerKind::LLDB) 4855 return; 4856 if (Module *M = ID.getImportedModule()) { 4857 auto Info = ASTSourceDescriptor(*M); 4858 auto Loc = ID.getLocation(); 4859 DBuilder.createImportedDeclaration( 4860 getCurrentContextDescriptor(cast<Decl>(ID.getDeclContext())), 4861 getOrCreateModuleRef(Info, DebugTypeExtRefs), getOrCreateFile(Loc), 4862 getLineNumber(Loc)); 4863 } 4864 } 4865 4866 llvm::DIImportedEntity * 4867 CGDebugInfo::EmitNamespaceAlias(const NamespaceAliasDecl &NA) { 4868 if (!CGM.getCodeGenOpts().hasReducedDebugInfo()) 4869 return nullptr; 4870 auto &VH = NamespaceAliasCache[&NA]; 4871 if (VH) 4872 return cast<llvm::DIImportedEntity>(VH); 4873 llvm::DIImportedEntity *R; 4874 auto Loc = NA.getLocation(); 4875 if (const auto *Underlying = 4876 dyn_cast<NamespaceAliasDecl>(NA.getAliasedNamespace())) 4877 // This could cache & dedup here rather than relying on metadata deduping. 4878 R = DBuilder.createImportedDeclaration( 4879 getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())), 4880 EmitNamespaceAlias(*Underlying), getOrCreateFile(Loc), 4881 getLineNumber(Loc), NA.getName()); 4882 else 4883 R = DBuilder.createImportedDeclaration( 4884 getCurrentContextDescriptor(cast<Decl>(NA.getDeclContext())), 4885 getOrCreateNamespace(cast<NamespaceDecl>(NA.getAliasedNamespace())), 4886 getOrCreateFile(Loc), getLineNumber(Loc), NA.getName()); 4887 VH.reset(R); 4888 return R; 4889 } 4890 4891 llvm::DINamespace * 4892 CGDebugInfo::getOrCreateNamespace(const NamespaceDecl *NSDecl) { 4893 // Don't canonicalize the NamespaceDecl here: The DINamespace will be uniqued 4894 // if necessary, and this way multiple declarations of the same namespace in 4895 // different parent modules stay distinct. 4896 auto I = NamespaceCache.find(NSDecl); 4897 if (I != NamespaceCache.end()) 4898 return cast<llvm::DINamespace>(I->second); 4899 4900 llvm::DIScope *Context = getDeclContextDescriptor(NSDecl); 4901 // Don't trust the context if it is a DIModule (see comment above). 4902 llvm::DINamespace *NS = 4903 DBuilder.createNameSpace(Context, NSDecl->getName(), NSDecl->isInline()); 4904 NamespaceCache[NSDecl].reset(NS); 4905 return NS; 4906 } 4907 4908 void CGDebugInfo::setDwoId(uint64_t Signature) { 4909 assert(TheCU && "no main compile unit"); 4910 TheCU->setDWOId(Signature); 4911 } 4912 4913 void CGDebugInfo::finalize() { 4914 // Creating types might create further types - invalidating the current 4915 // element and the size(), so don't cache/reference them. 4916 for (size_t i = 0; i != ObjCInterfaceCache.size(); ++i) { 4917 ObjCInterfaceCacheEntry E = ObjCInterfaceCache[i]; 4918 llvm::DIType *Ty = E.Type->getDecl()->getDefinition() 4919 ? CreateTypeDefinition(E.Type, E.Unit) 4920 : E.Decl; 4921 DBuilder.replaceTemporary(llvm::TempDIType(E.Decl), Ty); 4922 } 4923 4924 // Add methods to interface. 4925 for (const auto &P : ObjCMethodCache) { 4926 if (P.second.empty()) 4927 continue; 4928 4929 QualType QTy(P.first->getTypeForDecl(), 0); 4930 auto It = TypeCache.find(QTy.getAsOpaquePtr()); 4931 assert(It != TypeCache.end()); 4932 4933 llvm::DICompositeType *InterfaceDecl = 4934 cast<llvm::DICompositeType>(It->second); 4935 4936 auto CurElts = InterfaceDecl->getElements(); 4937 SmallVector<llvm::Metadata *, 16> EltTys(CurElts.begin(), CurElts.end()); 4938 4939 // For DWARF v4 or earlier, only add objc_direct methods. 4940 for (auto &SubprogramDirect : P.second) 4941 if (CGM.getCodeGenOpts().DwarfVersion >= 5 || SubprogramDirect.getInt()) 4942 EltTys.push_back(SubprogramDirect.getPointer()); 4943 4944 llvm::DINodeArray Elements = DBuilder.getOrCreateArray(EltTys); 4945 DBuilder.replaceArrays(InterfaceDecl, Elements); 4946 } 4947 4948 for (const auto &P : ReplaceMap) { 4949 assert(P.second); 4950 auto *Ty = cast<llvm::DIType>(P.second); 4951 assert(Ty->isForwardDecl()); 4952 4953 auto It = TypeCache.find(P.first); 4954 assert(It != TypeCache.end()); 4955 assert(It->second); 4956 4957 DBuilder.replaceTemporary(llvm::TempDIType(Ty), 4958 cast<llvm::DIType>(It->second)); 4959 } 4960 4961 for (const auto &P : FwdDeclReplaceMap) { 4962 assert(P.second); 4963 llvm::TempMDNode FwdDecl(cast<llvm::MDNode>(P.second)); 4964 llvm::Metadata *Repl; 4965 4966 auto It = DeclCache.find(P.first); 4967 // If there has been no definition for the declaration, call RAUW 4968 // with ourselves, that will destroy the temporary MDNode and 4969 // replace it with a standard one, avoiding leaking memory. 4970 if (It == DeclCache.end()) 4971 Repl = P.second; 4972 else 4973 Repl = It->second; 4974 4975 if (auto *GVE = dyn_cast_or_null<llvm::DIGlobalVariableExpression>(Repl)) 4976 Repl = GVE->getVariable(); 4977 DBuilder.replaceTemporary(std::move(FwdDecl), cast<llvm::MDNode>(Repl)); 4978 } 4979 4980 // We keep our own list of retained types, because we need to look 4981 // up the final type in the type cache. 4982 for (auto &RT : RetainedTypes) 4983 if (auto MD = TypeCache[RT]) 4984 DBuilder.retainType(cast<llvm::DIType>(MD)); 4985 4986 DBuilder.finalize(); 4987 } 4988 4989 // Don't ignore in case of explicit cast where it is referenced indirectly. 4990 void CGDebugInfo::EmitExplicitCastType(QualType Ty) { 4991 if (CGM.getCodeGenOpts().hasReducedDebugInfo()) 4992 if (auto *DieTy = getOrCreateType(Ty, TheCU->getFile())) 4993 DBuilder.retainType(DieTy); 4994 } 4995 4996 void CGDebugInfo::EmitAndRetainType(QualType Ty) { 4997 if (CGM.getCodeGenOpts().hasMaybeUnusedDebugInfo()) 4998 if (auto *DieTy = getOrCreateType(Ty, TheCU->getFile())) 4999 DBuilder.retainType(DieTy); 5000 } 5001 5002 llvm::DebugLoc CGDebugInfo::SourceLocToDebugLoc(SourceLocation Loc) { 5003 if (LexicalBlockStack.empty()) 5004 return llvm::DebugLoc(); 5005 5006 llvm::MDNode *Scope = LexicalBlockStack.back(); 5007 return llvm::DebugLoc::get(getLineNumber(Loc), getColumnNumber(Loc), Scope); 5008 } 5009 5010 llvm::DINode::DIFlags CGDebugInfo::getCallSiteRelatedAttrs() const { 5011 // Call site-related attributes are only useful in optimized programs, and 5012 // when there's a possibility of debugging backtraces. 5013 if (!CGM.getLangOpts().Optimize || DebugKind == codegenoptions::NoDebugInfo || 5014 DebugKind == codegenoptions::LocTrackingOnly) 5015 return llvm::DINode::FlagZero; 5016 5017 // Call site-related attributes are available in DWARF v5. Some debuggers, 5018 // while not fully DWARF v5-compliant, may accept these attributes as if they 5019 // were part of DWARF v4. 5020 bool SupportsDWARFv4Ext = 5021 CGM.getCodeGenOpts().DwarfVersion == 4 && 5022 (CGM.getCodeGenOpts().getDebuggerTuning() == llvm::DebuggerKind::LLDB || 5023 CGM.getCodeGenOpts().getDebuggerTuning() == llvm::DebuggerKind::GDB); 5024 5025 if (!SupportsDWARFv4Ext && CGM.getCodeGenOpts().DwarfVersion < 5) 5026 return llvm::DINode::FlagZero; 5027 5028 return llvm::DINode::FlagAllCallsDescribed; 5029 } 5030