1 //===- Debugify.cpp - Attach synthetic debug info to everything -----------===// 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 /// \file This pass attaches synthetic debug info to everything. It can be used 10 /// to create targeted tests for debug info preservation. 11 /// 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/Transforms/Utils/Debugify.h" 15 #include "llvm/ADT/BitVector.h" 16 #include "llvm/ADT/StringExtras.h" 17 #include "llvm/IR/DIBuilder.h" 18 #include "llvm/IR/DebugInfo.h" 19 #include "llvm/IR/InstIterator.h" 20 #include "llvm/IR/Instructions.h" 21 #include "llvm/IR/IntrinsicInst.h" 22 #include "llvm/IR/Module.h" 23 #include "llvm/Pass.h" 24 #include "llvm/Support/CommandLine.h" 25 26 using namespace llvm; 27 28 namespace { 29 30 cl::opt<bool> Quiet("debugify-quiet", 31 cl::desc("Suppress verbose debugify output")); 32 33 enum class Level { 34 Locations, 35 LocationsAndVariables 36 }; 37 cl::opt<Level> DebugifyLevel( 38 "debugify-level", cl::desc("Kind of debug info to add"), 39 cl::values(clEnumValN(Level::Locations, "locations", "Locations only"), 40 clEnumValN(Level::LocationsAndVariables, "location+variables", 41 "Locations and Variables")), 42 cl::init(Level::LocationsAndVariables)); 43 44 raw_ostream &dbg() { return Quiet ? nulls() : errs(); } 45 46 uint64_t getAllocSizeInBits(Module &M, Type *Ty) { 47 return Ty->isSized() ? M.getDataLayout().getTypeAllocSizeInBits(Ty) : 0; 48 } 49 50 bool isFunctionSkipped(Function &F) { 51 return F.isDeclaration() || !F.hasExactDefinition(); 52 } 53 54 /// Find the basic block's terminating instruction. 55 /// 56 /// Special care is needed to handle musttail and deopt calls, as these behave 57 /// like (but are in fact not) terminators. 58 Instruction *findTerminatingInstruction(BasicBlock &BB) { 59 if (auto *I = BB.getTerminatingMustTailCall()) 60 return I; 61 if (auto *I = BB.getTerminatingDeoptimizeCall()) 62 return I; 63 return BB.getTerminator(); 64 } 65 } // end anonymous namespace 66 67 bool llvm::applyDebugifyMetadata( 68 Module &M, iterator_range<Module::iterator> Functions, StringRef Banner, 69 std::function<bool(DIBuilder &DIB, Function &F)> ApplyToMF) { 70 // Skip modules with debug info. 71 if (M.getNamedMetadata("llvm.dbg.cu")) { 72 dbg() << Banner << "Skipping module with debug info\n"; 73 return false; 74 } 75 76 DIBuilder DIB(M); 77 LLVMContext &Ctx = M.getContext(); 78 auto *Int32Ty = Type::getInt32Ty(Ctx); 79 80 // Get a DIType which corresponds to Ty. 81 DenseMap<uint64_t, DIType *> TypeCache; 82 auto getCachedDIType = [&](Type *Ty) -> DIType * { 83 uint64_t Size = getAllocSizeInBits(M, Ty); 84 DIType *&DTy = TypeCache[Size]; 85 if (!DTy) { 86 std::string Name = "ty" + utostr(Size); 87 DTy = DIB.createBasicType(Name, Size, dwarf::DW_ATE_unsigned); 88 } 89 return DTy; 90 }; 91 92 unsigned NextLine = 1; 93 unsigned NextVar = 1; 94 auto File = DIB.createFile(M.getName(), "/"); 95 auto CU = DIB.createCompileUnit(dwarf::DW_LANG_C, File, "debugify", 96 /*isOptimized=*/true, "", 0); 97 98 // Visit each instruction. 99 for (Function &F : Functions) { 100 if (isFunctionSkipped(F)) 101 continue; 102 103 bool InsertedDbgVal = false; 104 auto SPType = DIB.createSubroutineType(DIB.getOrCreateTypeArray(None)); 105 DISubprogram::DISPFlags SPFlags = 106 DISubprogram::SPFlagDefinition | DISubprogram::SPFlagOptimized; 107 if (F.hasPrivateLinkage() || F.hasInternalLinkage()) 108 SPFlags |= DISubprogram::SPFlagLocalToUnit; 109 auto SP = DIB.createFunction(CU, F.getName(), F.getName(), File, NextLine, 110 SPType, NextLine, DINode::FlagZero, SPFlags); 111 F.setSubprogram(SP); 112 113 // Helper that inserts a dbg.value before \p InsertBefore, copying the 114 // location (and possibly the type, if it's non-void) from \p TemplateInst. 115 auto insertDbgVal = [&](Instruction &TemplateInst, 116 Instruction *InsertBefore) { 117 std::string Name = utostr(NextVar++); 118 Value *V = &TemplateInst; 119 if (TemplateInst.getType()->isVoidTy()) 120 V = ConstantInt::get(Int32Ty, 0); 121 const DILocation *Loc = TemplateInst.getDebugLoc().get(); 122 auto LocalVar = DIB.createAutoVariable(SP, Name, File, Loc->getLine(), 123 getCachedDIType(V->getType()), 124 /*AlwaysPreserve=*/true); 125 DIB.insertDbgValueIntrinsic(V, LocalVar, DIB.createExpression(), Loc, 126 InsertBefore); 127 }; 128 129 for (BasicBlock &BB : F) { 130 // Attach debug locations. 131 for (Instruction &I : BB) 132 I.setDebugLoc(DILocation::get(Ctx, NextLine++, 1, SP)); 133 134 if (DebugifyLevel < Level::LocationsAndVariables) 135 continue; 136 137 // Inserting debug values into EH pads can break IR invariants. 138 if (BB.isEHPad()) 139 continue; 140 141 // Find the terminating instruction, after which no debug values are 142 // attached. 143 Instruction *LastInst = findTerminatingInstruction(BB); 144 assert(LastInst && "Expected basic block with a terminator"); 145 146 // Maintain an insertion point which can't be invalidated when updates 147 // are made. 148 BasicBlock::iterator InsertPt = BB.getFirstInsertionPt(); 149 assert(InsertPt != BB.end() && "Expected to find an insertion point"); 150 Instruction *InsertBefore = &*InsertPt; 151 152 // Attach debug values. 153 for (Instruction *I = &*BB.begin(); I != LastInst; I = I->getNextNode()) { 154 // Skip void-valued instructions. 155 if (I->getType()->isVoidTy()) 156 continue; 157 158 // Phis and EH pads must be grouped at the beginning of the block. 159 // Only advance the insertion point when we finish visiting these. 160 if (!isa<PHINode>(I) && !I->isEHPad()) 161 InsertBefore = I->getNextNode(); 162 163 insertDbgVal(*I, InsertBefore); 164 InsertedDbgVal = true; 165 } 166 } 167 // Make sure we emit at least one dbg.value, otherwise MachineDebugify may 168 // not have anything to work with as it goes about inserting DBG_VALUEs. 169 // (It's common for MIR tests to be written containing skeletal IR with 170 // empty functions -- we're still interested in debugifying the MIR within 171 // those tests, and this helps with that.) 172 if (DebugifyLevel == Level::LocationsAndVariables && !InsertedDbgVal) { 173 auto *Term = findTerminatingInstruction(F.getEntryBlock()); 174 insertDbgVal(*Term, Term); 175 } 176 if (ApplyToMF) 177 ApplyToMF(DIB, F); 178 DIB.finalizeSubprogram(SP); 179 } 180 DIB.finalize(); 181 182 // Track the number of distinct lines and variables. 183 NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.debugify"); 184 auto addDebugifyOperand = [&](unsigned N) { 185 NMD->addOperand(MDNode::get( 186 Ctx, ValueAsMetadata::getConstant(ConstantInt::get(Int32Ty, N)))); 187 }; 188 addDebugifyOperand(NextLine - 1); // Original number of lines. 189 addDebugifyOperand(NextVar - 1); // Original number of variables. 190 assert(NMD->getNumOperands() == 2 && 191 "llvm.debugify should have exactly 2 operands!"); 192 193 // Claim that this synthetic debug info is valid. 194 StringRef DIVersionKey = "Debug Info Version"; 195 if (!M.getModuleFlag(DIVersionKey)) 196 M.addModuleFlag(Module::Warning, DIVersionKey, DEBUG_METADATA_VERSION); 197 198 return true; 199 } 200 201 bool llvm::stripDebugifyMetadata(Module &M) { 202 bool Changed = false; 203 204 // Remove the llvm.debugify module-level named metadata. 205 NamedMDNode *DebugifyMD = M.getNamedMetadata("llvm.debugify"); 206 if (DebugifyMD) { 207 M.eraseNamedMetadata(DebugifyMD); 208 Changed = true; 209 } 210 211 // Strip out all debug intrinsics and supporting metadata (subprograms, types, 212 // variables, etc). 213 Changed |= StripDebugInfo(M); 214 215 // Strip out the dead dbg.value prototype. 216 Function *DbgValF = M.getFunction("llvm.dbg.value"); 217 if (DbgValF) { 218 assert(DbgValF->isDeclaration() && DbgValF->use_empty() && 219 "Not all debug info stripped?"); 220 DbgValF->eraseFromParent(); 221 Changed = true; 222 } 223 224 // Strip out the module-level Debug Info Version metadata. 225 // FIXME: There must be an easier way to remove an operand from a NamedMDNode. 226 NamedMDNode *NMD = M.getModuleFlagsMetadata(); 227 if (!NMD) 228 return Changed; 229 SmallVector<MDNode *, 4> Flags; 230 for (MDNode *Flag : NMD->operands()) 231 Flags.push_back(Flag); 232 NMD->clearOperands(); 233 for (MDNode *Flag : Flags) { 234 MDString *Key = dyn_cast_or_null<MDString>(Flag->getOperand(1)); 235 if (Key->getString() == "Debug Info Version") { 236 Changed = true; 237 continue; 238 } 239 NMD->addOperand(Flag); 240 } 241 // If we left it empty we might as well remove it. 242 if (NMD->getNumOperands() == 0) 243 NMD->eraseFromParent(); 244 245 return Changed; 246 } 247 248 namespace { 249 /// Return true if a mis-sized diagnostic is issued for \p DVI. 250 bool diagnoseMisSizedDbgValue(Module &M, DbgValueInst *DVI) { 251 // The size of a dbg.value's value operand should match the size of the 252 // variable it corresponds to. 253 // 254 // TODO: This, along with a check for non-null value operands, should be 255 // promoted to verifier failures. 256 Value *V = DVI->getValue(); 257 if (!V) 258 return false; 259 260 // For now, don't try to interpret anything more complicated than an empty 261 // DIExpression. Eventually we should try to handle OP_deref and fragments. 262 if (DVI->getExpression()->getNumElements()) 263 return false; 264 265 Type *Ty = V->getType(); 266 uint64_t ValueOperandSize = getAllocSizeInBits(M, Ty); 267 Optional<uint64_t> DbgVarSize = DVI->getFragmentSizeInBits(); 268 if (!ValueOperandSize || !DbgVarSize) 269 return false; 270 271 bool HasBadSize = false; 272 if (Ty->isIntegerTy()) { 273 auto Signedness = DVI->getVariable()->getSignedness(); 274 if (Signedness && *Signedness == DIBasicType::Signedness::Signed) 275 HasBadSize = ValueOperandSize < *DbgVarSize; 276 } else { 277 HasBadSize = ValueOperandSize != *DbgVarSize; 278 } 279 280 if (HasBadSize) { 281 dbg() << "ERROR: dbg.value operand has size " << ValueOperandSize 282 << ", but its variable has size " << *DbgVarSize << ": "; 283 DVI->print(dbg()); 284 dbg() << "\n"; 285 } 286 return HasBadSize; 287 } 288 289 bool checkDebugifyMetadata(Module &M, 290 iterator_range<Module::iterator> Functions, 291 StringRef NameOfWrappedPass, StringRef Banner, 292 bool Strip, DebugifyStatsMap *StatsMap) { 293 // Skip modules without debugify metadata. 294 NamedMDNode *NMD = M.getNamedMetadata("llvm.debugify"); 295 if (!NMD) { 296 dbg() << Banner << "Skipping module without debugify metadata\n"; 297 return false; 298 } 299 300 auto getDebugifyOperand = [&](unsigned Idx) -> unsigned { 301 return mdconst::extract<ConstantInt>(NMD->getOperand(Idx)->getOperand(0)) 302 ->getZExtValue(); 303 }; 304 assert(NMD->getNumOperands() == 2 && 305 "llvm.debugify should have exactly 2 operands!"); 306 unsigned OriginalNumLines = getDebugifyOperand(0); 307 unsigned OriginalNumVars = getDebugifyOperand(1); 308 bool HasErrors = false; 309 310 // Track debug info loss statistics if able. 311 DebugifyStatistics *Stats = nullptr; 312 if (StatsMap && !NameOfWrappedPass.empty()) 313 Stats = &StatsMap->operator[](NameOfWrappedPass); 314 315 BitVector MissingLines{OriginalNumLines, true}; 316 BitVector MissingVars{OriginalNumVars, true}; 317 for (Function &F : Functions) { 318 if (isFunctionSkipped(F)) 319 continue; 320 321 // Find missing lines. 322 for (Instruction &I : instructions(F)) { 323 if (isa<DbgValueInst>(&I) || isa<PHINode>(&I)) 324 continue; 325 326 auto DL = I.getDebugLoc(); 327 if (DL && DL.getLine() != 0) { 328 MissingLines.reset(DL.getLine() - 1); 329 continue; 330 } 331 332 if (!DL) { 333 dbg() << "ERROR: Instruction with empty DebugLoc in function "; 334 dbg() << F.getName() << " --"; 335 I.print(dbg()); 336 dbg() << "\n"; 337 HasErrors = true; 338 } 339 } 340 341 // Find missing variables and mis-sized debug values. 342 for (Instruction &I : instructions(F)) { 343 auto *DVI = dyn_cast<DbgValueInst>(&I); 344 if (!DVI) 345 continue; 346 347 unsigned Var = ~0U; 348 (void)to_integer(DVI->getVariable()->getName(), Var, 10); 349 assert(Var <= OriginalNumVars && "Unexpected name for DILocalVariable"); 350 bool HasBadSize = diagnoseMisSizedDbgValue(M, DVI); 351 if (!HasBadSize) 352 MissingVars.reset(Var - 1); 353 HasErrors |= HasBadSize; 354 } 355 } 356 357 // Print the results. 358 for (unsigned Idx : MissingLines.set_bits()) 359 dbg() << "WARNING: Missing line " << Idx + 1 << "\n"; 360 361 for (unsigned Idx : MissingVars.set_bits()) 362 dbg() << "WARNING: Missing variable " << Idx + 1 << "\n"; 363 364 // Update DI loss statistics. 365 if (Stats) { 366 Stats->NumDbgLocsExpected += OriginalNumLines; 367 Stats->NumDbgLocsMissing += MissingLines.count(); 368 Stats->NumDbgValuesExpected += OriginalNumVars; 369 Stats->NumDbgValuesMissing += MissingVars.count(); 370 } 371 372 dbg() << Banner; 373 if (!NameOfWrappedPass.empty()) 374 dbg() << " [" << NameOfWrappedPass << "]"; 375 dbg() << ": " << (HasErrors ? "FAIL" : "PASS") << '\n'; 376 377 // Strip debugify metadata if required. 378 if (Strip) 379 return stripDebugifyMetadata(M); 380 381 return false; 382 } 383 384 /// ModulePass for attaching synthetic debug info to everything, used with the 385 /// legacy module pass manager. 386 struct DebugifyModulePass : public ModulePass { 387 bool runOnModule(Module &M) override { 388 return applyDebugifyMetadata(M, M.functions(), 389 "ModuleDebugify: ", /*ApplyToMF*/ nullptr); 390 } 391 392 DebugifyModulePass() : ModulePass(ID) {} 393 394 void getAnalysisUsage(AnalysisUsage &AU) const override { 395 AU.setPreservesAll(); 396 } 397 398 static char ID; // Pass identification. 399 }; 400 401 /// FunctionPass for attaching synthetic debug info to instructions within a 402 /// single function, used with the legacy module pass manager. 403 struct DebugifyFunctionPass : public FunctionPass { 404 bool runOnFunction(Function &F) override { 405 Module &M = *F.getParent(); 406 auto FuncIt = F.getIterator(); 407 return applyDebugifyMetadata(M, make_range(FuncIt, std::next(FuncIt)), 408 "FunctionDebugify: ", /*ApplyToMF*/ nullptr); 409 } 410 411 DebugifyFunctionPass() : FunctionPass(ID) {} 412 413 void getAnalysisUsage(AnalysisUsage &AU) const override { 414 AU.setPreservesAll(); 415 } 416 417 static char ID; // Pass identification. 418 }; 419 420 /// ModulePass for checking debug info inserted by -debugify, used with the 421 /// legacy module pass manager. 422 struct CheckDebugifyModulePass : public ModulePass { 423 bool runOnModule(Module &M) override { 424 return checkDebugifyMetadata(M, M.functions(), NameOfWrappedPass, 425 "CheckModuleDebugify", Strip, StatsMap); 426 } 427 428 CheckDebugifyModulePass(bool Strip = false, StringRef NameOfWrappedPass = "", 429 DebugifyStatsMap *StatsMap = nullptr) 430 : ModulePass(ID), Strip(Strip), NameOfWrappedPass(NameOfWrappedPass), 431 StatsMap(StatsMap) {} 432 433 void getAnalysisUsage(AnalysisUsage &AU) const override { 434 AU.setPreservesAll(); 435 } 436 437 static char ID; // Pass identification. 438 439 private: 440 bool Strip; 441 StringRef NameOfWrappedPass; 442 DebugifyStatsMap *StatsMap; 443 }; 444 445 /// FunctionPass for checking debug info inserted by -debugify-function, used 446 /// with the legacy module pass manager. 447 struct CheckDebugifyFunctionPass : public FunctionPass { 448 bool runOnFunction(Function &F) override { 449 Module &M = *F.getParent(); 450 auto FuncIt = F.getIterator(); 451 return checkDebugifyMetadata(M, make_range(FuncIt, std::next(FuncIt)), 452 NameOfWrappedPass, "CheckFunctionDebugify", 453 Strip, StatsMap); 454 } 455 456 CheckDebugifyFunctionPass(bool Strip = false, 457 StringRef NameOfWrappedPass = "", 458 DebugifyStatsMap *StatsMap = nullptr) 459 : FunctionPass(ID), Strip(Strip), NameOfWrappedPass(NameOfWrappedPass), 460 StatsMap(StatsMap) {} 461 462 void getAnalysisUsage(AnalysisUsage &AU) const override { 463 AU.setPreservesAll(); 464 } 465 466 static char ID; // Pass identification. 467 468 private: 469 bool Strip; 470 StringRef NameOfWrappedPass; 471 DebugifyStatsMap *StatsMap; 472 }; 473 474 } // end anonymous namespace 475 476 ModulePass *createDebugifyModulePass() { return new DebugifyModulePass(); } 477 478 FunctionPass *createDebugifyFunctionPass() { 479 return new DebugifyFunctionPass(); 480 } 481 482 PreservedAnalyses NewPMDebugifyPass::run(Module &M, ModuleAnalysisManager &) { 483 applyDebugifyMetadata(M, M.functions(), 484 "ModuleDebugify: ", /*ApplyToMF*/ nullptr); 485 return PreservedAnalyses::all(); 486 } 487 488 ModulePass *createCheckDebugifyModulePass(bool Strip, 489 StringRef NameOfWrappedPass, 490 DebugifyStatsMap *StatsMap) { 491 return new CheckDebugifyModulePass(Strip, NameOfWrappedPass, StatsMap); 492 } 493 494 FunctionPass *createCheckDebugifyFunctionPass(bool Strip, 495 StringRef NameOfWrappedPass, 496 DebugifyStatsMap *StatsMap) { 497 return new CheckDebugifyFunctionPass(Strip, NameOfWrappedPass, StatsMap); 498 } 499 500 PreservedAnalyses NewPMCheckDebugifyPass::run(Module &M, 501 ModuleAnalysisManager &) { 502 checkDebugifyMetadata(M, M.functions(), "", "CheckModuleDebugify", false, 503 nullptr); 504 return PreservedAnalyses::all(); 505 } 506 507 char DebugifyModulePass::ID = 0; 508 static RegisterPass<DebugifyModulePass> DM("debugify", 509 "Attach debug info to everything"); 510 511 char CheckDebugifyModulePass::ID = 0; 512 static RegisterPass<CheckDebugifyModulePass> 513 CDM("check-debugify", "Check debug info from -debugify"); 514 515 char DebugifyFunctionPass::ID = 0; 516 static RegisterPass<DebugifyFunctionPass> DF("debugify-function", 517 "Attach debug info to a function"); 518 519 char CheckDebugifyFunctionPass::ID = 0; 520 static RegisterPass<CheckDebugifyFunctionPass> 521 CDF("check-debugify-function", "Check debug info from -debugify-function"); 522