Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DPseudoProbePrinter.cpp31 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr; in emitPseudoProbe() local
32 while (InlinedAt) { in emitPseudoProbe()
33 const DISubprogram *SP = InlinedAt->getScope()->getSubprogram(); in emitPseudoProbe()
40 InlinedAt->getDiscriminator()); in emitPseudoProbe()
42 InlinedAt = InlinedAt->getInlinedAt(); in emitPseudoProbe()
H A DCodeViewDebug.cpp241 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, in getInlineSite() argument
247 if (const DILocation *OuterIA = InlinedAt->getInlinedAt()) in getInlineSite()
255 InlinedAt->getLine(), InlinedAt->getColumn(), SMLoc()); in getInlineSite()
485 if (const DILocation *InlinedAt = LS->getInlinedAt()) { in recordLocalVariable() local
488 InlineSite &Site = getInlineSite(InlinedAt, Inlinee); in recordLocalVariable()
918 const DILocation *InlinedAt, in emitInlinedCallSite() argument
1112 for (const DILocation *InlinedAt : FI.ChildSites) { in emitDebugInfoForFunction() local
1113 auto I = FI.InlineSites.find(InlinedAt); in emitDebugInfoForFunction()
1116 emitInlinedCallSite(FI, InlinedAt, I->second); in emitDebugInfoForFunction()
1344 const DILocation *InlinedAt = IV.second; in collectVariableInfo() local
[all …]
H A DDwarfDebug.h69 const DILocation *InlinedAt; variable
80 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity()
86 const DILocation *getInlinedAt() const { return InlinedAt; } in getInlinedAt()
H A DCodeViewDebug.h225 InlineSite &getInlineSite(const DILocation *InlinedAt,
339 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
H A DDbgEntityHistoryCalculator.cpp151 if (const DILocation *InlinedAt = Entity.second) { in trimLocationRanges() local
152 Scope = LScopes.findInlinedScope(LocalVar->getScope(), InlinedAt); in trimLocationRanges()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfileProbe.cpp55 const DILocation *InlinedAt = DIL ? DIL->getInlinedAt() : nullptr; in getCallStackHash() local
56 while (InlinedAt) { in getCallStackHash()
57 Hash ^= MD5Hash(std::to_string(InlinedAt->getLine())); in getCallStackHash()
58 Hash ^= MD5Hash(std::to_string(InlinedAt->getColumn())); in getCallStackHash()
59 const DISubprogram *SP = InlinedAt->getScope()->getSubprogram(); in getCallStackHash()
65 InlinedAt = InlinedAt->getInlinedAt(); in getCallStackHash()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DLexicalScopes.cpp189 const DILocation *InlinedAt) { in getOrCreateInlinedScope() argument
192 std::pair<const DILocalScope *, const DILocation *> P(Scope, InlinedAt); in getOrCreateInlinedScope()
199 Parent = getOrCreateInlinedScope(Block->getScope(), InlinedAt); in getOrCreateInlinedScope()
201 Parent = getOrCreateLexicalScope(InlinedAt); in getOrCreateInlinedScope()
205 std::forward_as_tuple(Parent, Scope, InlinedAt, false)) in getOrCreateInlinedScope()
H A DLiveDebugVariables.cpp715 auto *InlinedAt = DL ? DL->getInlinedAt() : nullptr; in printExtendedName() local
716 if (InlinedAt) { in printExtendedName()
717 if (DebugLoc InlinedAtDL = InlinedAt) { in printExtendedName()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp109 MCCVFunctionInfo::LineInfo InlinedAt; in recordInlinedCallSiteId() local
110 InlinedAt.File = IAFile; in recordInlinedCallSiteId()
111 InlinedAt.Line = IALine; in recordInlinedCallSiteId()
112 InlinedAt.Col = IACol; in recordInlinedCallSiteId()
117 Info->InlinedAt = InlinedAt; in recordInlinedCallSiteId()
122 InlinedAt = Info->InlinedAt; in recordInlinedCallSiteId()
124 Info->InlinedAtMap[FuncId] = InlinedAt; in recordInlinedCallSiteId()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DDebugLoc.cpp71 DebugLoc DebugLoc::appendInlinedAt(const DebugLoc &DL, DILocation *InlinedAt, in appendInlinedAt() argument
75 DILocation *Last = InlinedAt; in appendInlinedAt()
H A DDebugInfo.cpp619 auto *InlinedAt = map(MLD->getInlinedAt()); in getReplacementMDLocation() local
622 MLD->getColumn(), Scope, InlinedAt); in getReplacementMDLocation()
624 Scope, InlinedAt); in getReplacementMDLocation()
766 MDNode *InlinedAt = DL.getInlinedAt(); in stripNonLineTableDebugInfo() local
768 InlinedAt = remap(InlinedAt); in stripNonLineTableDebugInfo()
770 Scope, InlinedAt); in stripNonLineTableDebugInfo()
1046 LLVMMetadataRef InlinedAt) { in LLVMDIBuilderCreateDebugLocation() argument
1048 unwrap(InlinedAt))); in LLVMDIBuilderCreateDebugLocation()
H A DLLVMContextImpl.h260 Metadata *InlinedAt;
264 Metadata *InlinedAt, bool ImplicitCode)
265 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt),
269 InlinedAt(L->getRawInlinedAt()), ImplicitCode(L->isImplicitCode()) {}
273 Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt() &&
278 return hash_combine(Line, Column, Scope, InlinedAt, ImplicitCode);
H A DDebugInfoMetadata.cpp60 Metadata *InlinedAt, bool ImplicitCode, in getImpl() argument
68 InlinedAt, ImplicitCode))) in getImpl()
78 if (InlinedAt) in getImpl()
79 Ops.push_back(InlinedAt); in getImpl()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugLoc.h75 static DebugLoc appendInlinedAt(const DebugLoc &DL, DILocation *InlinedAt,
H A DDebugInfoMetadata.h1597 (Line, Column, Scope, InlinedAt, ImplicitCode))
1600 DILocation *InlinedAt = nullptr,
1602 (Line, Column, Scope, InlinedAt, ImplicitCode))
3606 const DILocation *InlinedAt;
3614 const DILocation *InlinedAt)
3615 : Variable(Var), Fragment(FragmentInfo), InlinedAt(InlinedAt) {}
3618 const DILocation *InlinedAt)
3621 InlinedAt(InlinedAt) {}
3625 const DILocation *getInlinedAt() const { return InlinedAt; }
3636 return std::tie(Variable, Fragment, InlinedAt) ==
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h107 LineInfo InlinedAt; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h215 const DILocation *InlinedAt);
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h407 void setInlinedAt(llvm::MDNode *InlinedAt) { CurInlinedAt = InlinedAt; } in setInlinedAt() argument
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp2227 MDNode *InlinedAt = nullptr; in parseDILocation() local
2274 if (parseMDNode(InlinedAt)) in parseDILocation()
2277 if (parseDILocation(InlinedAt)) in parseDILocation()
2281 if (!isa<DILocation>(InlinedAt)) in parseDILocation()
2318 InlinedAt, ImplicitCode); in parseDILocation()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h448 LLVMMetadataRef InlinedAt);
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp1749 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugValue() local
1753 DebugVariable V(Var, Expr, InlinedAt); in transferDebugValue()
1810 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugInstrRef() local
1814 DebugVariable V(Var, Expr, InlinedAt); in transferDebugInstrRef()
H A DVarLocBasedImpl.cpp1289 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugValue() local
1293 DebugVariable V(Var, Expr, InlinedAt); in transferDebugValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp1311 Metadata *InlinedAt = getMDOrNull(Record[4]); in parseOneMetadata() local
1314 GET_OR_DISTINCT(DILocation, (Context, Line, Column, Scope, InlinedAt, in parseOneMetadata()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1484 static DebugLoc inlineDebugLoc(DebugLoc OrigDL, DILocation *InlinedAt, in inlineDebugLoc() argument
1487 auto IA = DebugLoc::appendInlinedAt(OrigDL, InlinedAt, Ctx, IANodes); in inlineDebugLoc()
H A DLocal.cpp1434 DILocation *InlinedAt = DeclareLoc.getInlinedAt(); in getDebugValueLoc() local
1436 return DILocation::get(DII->getContext(), 0, 0, Scope, InlinedAt); in getDebugValueLoc()