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

12

/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DPseudoProbePrinter.cpp33 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr;
43 InlinedAt = InlinedAt->getInlinedAt();
H A DDbgEntityHistoryCalculator.cpp475 InlinedEntity Var(RawVar, MI.getDebugLoc()->getInlinedAt());
486 InlinedEntity L(RawLabel, MI.getDebugLoc()->getInlinedAt());
H A DDwarfCompileUnit.cpp579 assert((Scope->getInlinedAt() || !isa<DISubprogram>(DS)) &&
703 const DILocation *IA = Scope->getInlinedAt();
735 if (!Scope->getInlinedAt()) {
1081 assert(!Scope->getInlinedAt());
1125 if (!includeMinimalInlineScopes() && !Scope->getInlinedAt()) {
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DDebugLoc.cpp39 DILocation *DebugLoc::getInlinedAt() const { function in class:DebugLoc
41 return get()->getInlinedAt();
78 for (DILocation *Loc = RootLoc; Loc; Loc = Loc->getInlinedAt()) {
118 while (DILocation *IA = CurInlinedAt->getInlinedAt()) {
154 if (DebugLoc InlinedAtDL = getInlinedAt()) {
H A DDebugInfoMetadata.cpp43 InlinedAt(DII->getDebugLoc().getInlinedAt()) {}
48 InlinedAt(DPV->getDebugLoc().getInlinedAt()) {}
52 DVI->getDebugLoc()->getInlinedAt()) {}
136 for (auto [L, I] = std::make_pair(LocA, 0U); L; L = L->getInlinedAt(), I++) {
139 {L->getScope()->getSubprogram(), L->getInlinedAt()}, I);
151 for (auto [L, I] = std::make_pair(LocB, 0U); L; L = L->getInlinedAt(), I++) {
158 auto IT = ALookup.find({L->getScope()->getSubprogram(), L->getInlinedAt()});
216 DILocation *Result = ARIt != ALocs.rend() ? (*ARIt)->getInlinedAt() : nullptr;
H A DDebugInfo.cpp158 DILocation *InlinedAt = DeclareLoc.getInlinedAt();
170 DILocation *InlinedAt = DeclareLoc.getInlinedAt();
251 processLocation(M, Loc->getInlinedAt());
729 auto *InlinedAt = map(MLD->getInlinedAt());
875 MDNode *InlinedAt = DL.getInlinedAt();
1218 return wrap(unwrapDI<DILocation>(Location)->getInlinedAt());
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRFSDiscriminator.cpp71 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) {
84 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) {
H A DRemoveRedundantDebugValues.cpp93 MI.getDebugLoc()->getInlinedAt());
164 MI.getDebugLoc()->getInlinedAt());
H A DAssignmentTrackingAnalysis.cpp175 if (const auto *IA = V.getInlinedAt())
328 return DebugAggregate(DII->getVariable(), DII->getDebugLoc().getInlinedAt());
331 return DebugAggregate(Var.getVariable(), Var.getInlinedAt());
676 DebugAggregate(DbgVar.getVariable(), VarLoc.DL.getInlinedAt()));
976 FragMemLoc.DL.getInlinedAt());
1658 DILocation *InlinedAt = const_cast<DILocation *>(V.getInlinedAt());
1952 DebugAggregate Aggr{DbgVar.getVariable(), DbgVar.getInlinedAt()};
2167 DebugAggregate DA = {DV.getVariable(), DV.getInlinedAt()};
2203 Assign->getDebugLoc().getInlinedAt());
2204 DebugAggregate DA = {DV.getVariable(), DV.getInlinedAt()};
[all...]
H A DLiveDebugVariables.cpp518 return Label == L && dl->getInlinedAt() == IA && loc == Index;
689 DebugLoc InlinedAtDL = DL.getInlinedAt();
713 auto *InlinedAt = DL ? DL->getInlinedAt() : nullptr;
778 DebugVariable ID(Var, Fragment, DL->getInlinedAt());
909 if (L->matches(Label, DL->getInlinedAt(), Idx)) {
1182 if (!dl.getInlinedAt())
H A DLexicalScopes.cpp133 if (auto *IA = DL->getInlinedAt()) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugLoc.h82 DILocation *getInlinedAt() const;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h62 const DILocation *getInlinedAt() const { return InlinedAtLocation; } function in class:llvm::LexicalScope
206 return DL ? getOrCreateLexicalScope(DL->getScope(), DL->getInlinedAt())
/freebsd-current/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugValueManager.cpp116 DV->getDebugLoc()->getInlinedAt());
134 DV->getDebugLoc()->getInlinedAt());
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp244 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) {
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfileProbe.cpp56 const DILocation *InlinedAt = DIL ? DIL->getInlinedAt() : nullptr;
62 InlinedAt = InlinedAt->getInlinedAt();
H A DSampleContextTracker.cpp485 for (DIL = DIL->getInlinedAt(); DIL; DIL = DIL->getInlinedAt()) {
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp87 if (DILocation *IDL = DL.getInlinedAt()) {
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineAdvisor.cpp441 for (DILocation *DIL = DLoc.get(); DIL; DIL = DIL->getInlinedAt()) {
471 for (DILocation *DIL = DLoc.get(); DIL; DIL = DIL->getInlinedAt()) {
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DVarLocBasedImpl.cpp424 MI.getDebugLoc()->getInlinedAt()),
755 if (Var.getInlinedAt())
756 Out << "!" << Var.getInlinedAt()->getMetadataID() << ")\n";
1147 DoErase({Var.getVariable(), FragmentHolder, Var.getInlinedAt()});
1405 const DILocation *InlinedAt = DebugLoc->getInlinedAt();
1949 MI.getDebugLoc()->getInlinedAt());
2136 if (MI.getDebugLoc()->getInlinedAt())
2188 MI.getDebugLoc()->getInlinedAt());
H A DInstrRefBasedImpl.cpp601 if (Var.getInlinedAt())
668 MI.getDebugLoc()->getInlinedAt());
707 MI.getDebugLoc()->getInlinedAt());
924 const_cast<DILocation *>(Var.getInlinedAt()));
1163 const_cast<DILocation *>(Var.getInlinedAt()));
1584 const DILocation *InlinedAt = DebugLoc->getInlinedAt();
2195 MI.getDebugLoc()->getInlinedAt());
3611 MI->getDebugLoc()->getInlinedAt());
H A DInstrRefBasedImpl.h1028 MI.getDebugLoc()->getInlinedAt());
1058 Var.getInlinedAt());
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp403 DPV.getDebugLoc()->getInlinedAt());
443 DVI->getDebugLoc()->getInlinedAt());
503 DPV.getDebugLoc()->getInlinedAt());
542 DPV.getDebugLoc().getInlinedAt());
581 DVI->getDebugLoc()->getInlinedAt());
645 DVI->getDebugLoc()->getInlinedAt());
H A DDebugify.cpp345 if (I.getDebugLoc().getInlinedAt())
588 if (I.getDebugLoc().getInlinedAt())
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DADCE.cpp446 if (const DILocation *IA = DL.getInlinedAt())

Completed in 537 milliseconds

12