Home
last modified time | relevance | path

Searched refs:getInlinedAt (Results 1 – 25 of 45) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DDebugLoc.cpp39 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 DDebugInfoMetadata.cpp43 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 DDebugInfo.cpp158 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 DMIRFSDiscriminator.cpp71 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in getCallStackHashV0()
84 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in getCallStackHash()
H A DRemoveRedundantDebugValues.cpp93 MI.getDebugLoc()->getInlinedAt()); in reduceDbgValsForwardScan()
164 MI.getDebugLoc()->getInlinedAt()); in reduceDbgValsBackwardScan()
H A DAssignmentTrackingAnalysis.cpp175 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 DLiveDebugVariables.cpp518 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 DLexicalScopes.cpp133 if (auto *IA = DL->getInlinedAt()) { in findLexicalScope()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DPseudoProbePrinter.cpp33 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr; in emitPseudoProbe()
43 InlinedAt = InlinedAt->getInlinedAt(); in emitPseudoProbe()
H A DDbgEntityHistoryCalculator.cpp475 InlinedEntity Var(RawVar, MI.getDebugLoc()->getInlinedAt()); in calculateDbgEntityHistory()
486 InlinedEntity L(RawLabel, MI.getDebugLoc()->getInlinedAt()); in calculateDbgEntityHistory()
H A DDwarfCompileUnit.cpp579 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 DLexicalScopes.h62 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 DDebugLoc.h82 DILocation *getInlinedAt() const;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugValueManager.cpp116 DV->getDebugLoc()->getInlinedAt()); in getSinkableDebugValues()
134 DV->getDebugLoc()->getInlinedAt()); in getSinkableDebugValues()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfileProbe.cpp56 const DILocation *InlinedAt = DIL ? DIL->getInlinedAt() : nullptr; in getCallStackHash()
62 InlinedAt = InlinedAt->getInlinedAt(); in getCallStackHash()
H A DSampleContextTracker.cpp485 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in getContextFor()
H A DSampleProfile.cpp2132 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 DVarLocBasedImpl.cpp424 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 DInstrRefBasedImpl.cpp601 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 DInstrRefBasedImpl.h1028 MI.getDebugLoc()->getInlinedAt());
1058 Var.getInlinedAt());
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp244 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) { in findFunctionSamples()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineAdvisor.cpp441 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 Dllvm-dis.cpp87 if (DILocation *IDL = DL.getInlinedAt()) { in printDebugLoc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp403 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 DDebugify.cpp345 if (I.getDebugLoc().getInlinedAt()) in collectDebugInfoMetadata()
588 if (I.getDebugLoc().getInlinedAt()) in checkDebugInfoMetadata()

12