| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugLoc.cpp | 39 DILocation *DebugLoc::getInlinedAt() const { in getInlinedAt() function in DebugLoc 41 return get()->getInlinedAt(); in getInlinedAt() 78 for (DILocation *Loc = RootLoc; Loc; Loc = Loc->getInlinedAt()) { in replaceInlinedAtSubprogram() 118 while (DILocation *IA = CurInlinedAt->getInlinedAt()) { in appendInlinedAt() 154 if (DebugLoc InlinedAtDL = getInlinedAt()) { in print()
|
| H A D | DebugInfoMetadata.cpp | 47 InlinedAt(DII->getDebugLoc().getInlinedAt()) {} in DebugVariable() 52 InlinedAt(DVR->getDebugLoc().getInlinedAt()) {} in DebugVariable() 56 DVI->getDebugLoc()->getInlinedAt()) {} in DebugVariableAggregate() 140 for (auto [L, I] = std::make_pair(LocA, 0U); L; L = L->getInlinedAt(), I++) { in getMergedLocation() 143 {L->getScope()->getSubprogram(), L->getInlinedAt()}, I); in getMergedLocation() 155 for (auto [L, I] = std::make_pair(LocB, 0U); L; L = L->getInlinedAt(), I++) { in getMergedLocation() 162 auto IT = ALookup.find({L->getScope()->getSubprogram(), L->getInlinedAt()}); in getMergedLocation() 220 DILocation *Result = ARIt != ALocs.rend() ? (*ARIt)->getInlinedAt() : nullptr; in getMergedLocation()
|
| H A D | DebugInfo.cpp | 162 DILocation *InlinedAt = DeclareLoc.getInlinedAt(); in getDebugValueLoc() 174 DILocation *InlinedAt = DeclareLoc.getInlinedAt(); in getDebugValueLoc() 255 processLocation(M, Loc->getInlinedAt()); in processLocation() 734 auto *InlinedAt = map(MLD->getInlinedAt()); in getReplacementMDLocation() 880 MDNode *InlinedAt = DL.getInlinedAt(); in stripNonLineTableDebugInfo() 1223 return wrap(unwrapDI<DILocation>(Location)->getInlinedAt()); in LLVMDILocationGetInlinedAt()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MIRFSDiscriminator.cpp | 71 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in getCallStackHashV0() 84 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in getCallStackHash()
|
| H A D | RemoveRedundantDebugValues.cpp | 93 MI.getDebugLoc()->getInlinedAt()); in reduceDbgValsForwardScan() 164 MI.getDebugLoc()->getInlinedAt()); in reduceDbgValsBackwardScan()
|
| H A D | AssignmentTrackingAnalysis.cpp | 175 if (const auto *IA = V.getInlinedAt()) in print() 330 return DebugAggregate(DII->getVariable(), DII->getDebugLoc().getInlinedAt()); in getAggregate() 333 return DebugAggregate(Var.getVariable(), Var.getInlinedAt()); in getAggregate() 677 DebugAggregate(DbgVar.getVariable(), VarLoc.DL.getInlinedAt())); in addDef() 977 FragMemLoc.DL.getInlinedAt()); in run() 1660 DILocation *InlinedAt = const_cast<DILocation *>(V.getInlinedAt()); in processUntaggedInstruction() 1957 DebugAggregate Aggr{DbgVar.getVariable(), DbgVar.getInlinedAt()}; in process() 2174 DebugAggregate DA = {DV.getVariable(), DV.getInlinedAt()}; in buildOverlapMapAndRecordDeclares() 2210 Assign->getDebugLoc().getInlinedAt()); in buildOverlapMapAndRecordDeclares() 2211 DebugAggregate DA = {DV.getVariable(), DV.getInlinedAt()}; in buildOverlapMapAndRecordDeclares() [all …]
|
| H A D | LiveDebugVariables.cpp | 518 return Label == L && dl->getInlinedAt() == IA && loc == Index; in matches() 689 DebugLoc InlinedAtDL = DL.getInlinedAt(); in printDebugLoc() 713 auto *InlinedAt = DL ? DL->getInlinedAt() : nullptr; in printExtendedName() 778 DebugVariable ID(Var, Fragment, DL->getInlinedAt()); in getUserValue() 909 if (L->matches(Label, DL->getInlinedAt(), Idx)) { in handleDebugLabel() 1182 if (!dl.getInlinedAt()) in computeIntervals()
|
| H A D | LexicalScopes.cpp | 133 if (auto *IA = DL->getInlinedAt()) { in findLexicalScope()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | PseudoProbePrinter.cpp | 31 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr; in emitPseudoProbe() 41 InlinedAt = InlinedAt->getInlinedAt(); in emitPseudoProbe()
|
| H A D | DbgEntityHistoryCalculator.cpp | 475 InlinedEntity Var(RawVar, MI.getDebugLoc()->getInlinedAt()); in calculateDbgEntityHistory() 486 InlinedEntity L(RawLabel, MI.getDebugLoc()->getInlinedAt()); in calculateDbgEntityHistory()
|
| H A D | DwarfCompileUnit.cpp | 594 assert((Scope->getInlinedAt() || !isa<DISubprogram>(DS)) && in constructScopeDIE() 718 const DILocation *IA = Scope->getInlinedAt(); in constructInlinedScopeDIE() 750 if (!Scope->getInlinedAt()) { in constructLexicalScopeDIE() 1096 assert(!Scope->getInlinedAt()); in constructSubprogramScopeDIE() 1140 if (!includeMinimalInlineScopes() && !Scope->getInlinedAt()) { in createAndAddScopeChildren()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | LexicalScopes.h | 62 const DILocation *getInlinedAt() const { return InlinedAtLocation; } in getInlinedAt() function 206 return DL ? getOrCreateLexicalScope(DL->getScope(), DL->getInlinedAt()) in getOrCreateLexicalScope()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | SampleProfileMatcher.cpp | 55 assert((DIL && DIL->getInlinedAt()) && "No inlined callsite"); in findIRAnchors() 59 DIL = DIL->getInlinedAt(); in findIRAnchors() 60 } while (DIL->getInlinedAt()); in findIRAnchors() 85 if (DIL->getInlinedAt()) { in findIRAnchors() 106 if (DIL->getInlinedAt()) { in findIRAnchors()
|
| H A D | SampleProfileProbe.cpp | 57 const DILocation *InlinedAt = DIL ? DIL->getInlinedAt() : nullptr; in getCallStackHash() 63 InlinedAt = InlinedAt->getInlinedAt(); in getCallStackHash()
|
| H A D | SampleContextTracker.cpp | 485 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in getContextFor()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyDebugValueManager.cpp | 116 DV->getDebugLoc()->getInlinedAt()); in getSinkableDebugValues() 134 DV->getDebugLoc()->getInlinedAt()); in getSinkableDebugValues()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugLoc.h | 82 DILocation *getInlinedAt() const;
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | VarLocBasedImpl.cpp | 424 MI.getDebugLoc()->getInlinedAt()), in VarLoc() 755 if (Var.getInlinedAt()) in dump() 756 Out << "!" << Var.getInlinedAt()->getMetadataID() << ")\n"; in dump() 1147 DoErase({Var.getVariable(), FragmentHolder, Var.getInlinedAt()}); in erase() 1405 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugValue() 1949 MI.getDebugLoc()->getInlinedAt()); in accumulateFragmentMap() 2136 if (MI.getDebugLoc()->getInlinedAt()) in isEntryValueCandidate() 2188 MI.getDebugLoc()->getInlinedAt()); in recordEntryValue()
|
| H A D | InstrRefBasedImpl.cpp | 627 if (Var.getInlinedAt()) in isEntryValueVariable() 695 MI.getDebugLoc()->getInlinedAt()); in redefVar() 735 MI.getDebugLoc()->getInlinedAt()); in redefVar() 956 const_cast<DILocation *>(Var.getInlinedAt())); in emitMOLoc() 1615 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugInstrRef() 2229 MI.getDebugLoc()->getInlinedAt()); in accumulateFragmentMap()
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | SampleProf.cpp | 246 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in findFunctionSamples()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InlineAdvisor.cpp | 442 for (DILocation *DIL = DLoc.get(); DIL; DIL = DIL->getInlinedAt()) { in formatCallSiteLocation() 472 for (DILocation *DIL = DLoc.get(); DIL; DIL = DIL->getInlinedAt()) { in addLocationToRemarks()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-dis/ |
| H A D | llvm-dis.cpp | 91 if (DILocation *IDL = DL.getInlinedAt()) { in printDebugLoc()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | BasicBlockUtils.cpp | 412 DVR.getDebugLoc()->getInlinedAt()); in DbgVariableRecordsRemoveRedundantDbgInstrsUsingBackwardScan() 452 DVI->getDebugLoc()->getInlinedAt()); in removeRedundantDbgInstrsUsingBackwardScan() 513 DVR.getDebugLoc()->getInlinedAt()); in DbgVariableRecordsRemoveRedundantDbgInstrsUsingForwardScan() 553 DVR.getDebugLoc().getInlinedAt()); in DbgVariableRecordsRemoveUndefDbgAssignsFromEntryBlock() 592 DVI->getDebugLoc()->getInlinedAt()); in removeRedundantDbgInstrsUsingForwardScan() 656 DVI->getDebugLoc()->getInlinedAt()); in removeUndefDbgAssignsFromEntryBlock()
|
| H A D | Debugify.cpp | 345 if (DbgVar->getDebugLoc().getInlinedAt()) in collectDebugInfoMetadata() 591 if (DbgVar->getDebugLoc().getInlinedAt()) in checkDebugInfoMetadata()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | ADCE.cpp | 446 if (const DILocation *IA = DL.getInlinedAt()) in collectLiveScopes()
|