| /freebsd-14.2/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 | 43 InlinedAt(DII->getDebugLoc().getInlinedAt()) {} in DebugVariable() 48 InlinedAt(DPV->getDebugLoc().getInlinedAt()) {} in DebugVariable() 52 DVI->getDebugLoc()->getInlinedAt()) {} in DebugVariableAggregate() 136 for (auto [L, I] = std::make_pair(LocA, 0U); L; L = L->getInlinedAt(), I++) { in getMergedLocation() 139 {L->getScope()->getSubprogram(), L->getInlinedAt()}, I); in getMergedLocation() 151 for (auto [L, I] = std::make_pair(LocB, 0U); L; L = L->getInlinedAt(), I++) { in getMergedLocation() 158 auto IT = ALookup.find({L->getScope()->getSubprogram(), L->getInlinedAt()}); in getMergedLocation() 216 DILocation *Result = ARIt != ALocs.rend() ? (*ARIt)->getInlinedAt() : nullptr; in getMergedLocation()
|
| H A D | DebugInfo.cpp | 158 DILocation *InlinedAt = DeclareLoc.getInlinedAt(); in getDebugValueLoc() 170 DILocation *InlinedAt = DeclareLoc.getInlinedAt(); in getDebugValueLoc() 251 processLocation(M, Loc->getInlinedAt()); in processLocation() 729 auto *InlinedAt = map(MLD->getInlinedAt()); in getReplacementMDLocation() 875 MDNode *InlinedAt = DL.getInlinedAt(); in stripNonLineTableDebugInfo() 1218 return wrap(unwrapDI<DILocation>(Location)->getInlinedAt()); in LLVMDILocationGetInlinedAt()
|
| /freebsd-14.2/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() 331 return DebugAggregate(Var.getVariable(), Var.getInlinedAt()); in getAggregate() 676 DebugAggregate(DbgVar.getVariable(), VarLoc.DL.getInlinedAt())); in addDef() 976 FragMemLoc.DL.getInlinedAt()); in run() 2167 DebugAggregate DA = {DV.getVariable(), DV.getInlinedAt()}; in buildOverlapMapAndRecordDeclares() 2203 Assign->getDebugLoc().getInlinedAt()); in buildOverlapMapAndRecordDeclares() 2204 DebugAggregate DA = {DV.getVariable(), DV.getInlinedAt()}; in buildOverlapMapAndRecordDeclares() 2387 DebugAggregate Aggr{Var.getVariable(), Var.getInlinedAt()}; in run() 2428 DebugAggregate Aggr{Var.getVariable(), Var.getInlinedAt()}; in run() 2607 std::nullopt, Loc.DL.getInlinedAt()); in removeRedundantDbgLocsUsingForwardScan() [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-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | PseudoProbePrinter.cpp | 33 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr; in emitPseudoProbe() 43 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 | 579 assert((Scope->getInlinedAt() || !isa<DISubprogram>(DS)) && in constructScopeDIE() 703 const DILocation *IA = Scope->getInlinedAt(); in constructInlinedScopeDIE() 735 if (!Scope->getInlinedAt()) { in constructLexicalScopeDIE() 1081 assert(!Scope->getInlinedAt()); in constructSubprogramScopeDIE() 1125 if (!includeMinimalInlineScopes() && !Scope->getInlinedAt()) { in createAndAddScopeChildren()
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugLoc.h | 82 DILocation *getInlinedAt() const;
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | SampleProfileProbe.cpp | 56 const DILocation *InlinedAt = DIL ? DIL->getInlinedAt() : nullptr; in getCallStackHash() 62 InlinedAt = InlinedAt->getInlinedAt(); in getCallStackHash()
|
| H A D | SampleContextTracker.cpp | 485 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in getContextFor()
|
| H A D | SampleProfile.cpp | 2132 assert((DIL && DIL->getInlinedAt()) && "No inlined callsite"); in findIRAnchors() 2136 DIL = DIL->getInlinedAt(); in findIRAnchors() 2137 } while (DIL->getInlinedAt()); in findIRAnchors() 2161 if (DIL->getInlinedAt()) { in findIRAnchors() 2181 if (DIL->getInlinedAt()) { in findIRAnchors()
|
| /freebsd-14.2/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 | 601 if (Var.getInlinedAt()) in isEntryValueVariable() 668 MI.getDebugLoc()->getInlinedAt()); in redefVar() 707 MI.getDebugLoc()->getInlinedAt()); in redefVar() 924 const_cast<DILocation *>(Var.getInlinedAt())); in emitMOLoc() 1163 const_cast<DILocation *>(Var.getInlinedAt())); in emitLoc() 1584 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugInstrRef() 2195 MI.getDebugLoc()->getInlinedAt()); in accumulateFragmentMap() 3611 MI->getDebugLoc()->getInlinedAt()); in emitTransfers()
|
| H A D | InstrRefBasedImpl.h | 1028 MI.getDebugLoc()->getInlinedAt()); 1058 Var.getInlinedAt());
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | SampleProf.cpp | 244 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in findFunctionSamples()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InlineAdvisor.cpp | 441 for (DILocation *DIL = DLoc.get(); DIL; DIL = DIL->getInlinedAt()) { in formatCallSiteLocation() 471 for (DILocation *DIL = DLoc.get(); DIL; DIL = DIL->getInlinedAt()) { in addLocationToRemarks()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-dis/ |
| H A D | llvm-dis.cpp | 87 if (DILocation *IDL = DL.getInlinedAt()) { in printDebugLoc()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | BasicBlockUtils.cpp | 403 DPV.getDebugLoc()->getInlinedAt()); in DPValuesRemoveRedundantDbgInstrsUsingBackwardScan() 443 DVI->getDebugLoc()->getInlinedAt()); in removeRedundantDbgInstrsUsingBackwardScan() 503 DPV.getDebugLoc()->getInlinedAt()); in DPValuesRemoveRedundantDbgInstrsUsingForwardScan() 542 DPV.getDebugLoc().getInlinedAt()); in DPValuesRemoveUndefDbgAssignsFromEntryBlock() 581 DVI->getDebugLoc()->getInlinedAt()); in removeRedundantDbgInstrsUsingForwardScan() 645 DVI->getDebugLoc()->getInlinedAt()); in removeUndefDbgAssignsFromEntryBlock()
|
| H A D | Debugify.cpp | 345 if (I.getDebugLoc().getInlinedAt()) in collectDebugInfoMetadata() 588 if (I.getDebugLoc().getInlinedAt()) in checkDebugInfoMetadata()
|