Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/IR/
H A DDebugLoc.cpp73 const MDNode *InlinedAt, bool ImplicitCode) { in get() argument
80 const_cast<MDNode *>(InlinedAt), ImplicitCode); in get()
83 DebugLoc DebugLoc::appendInlinedAt(DebugLoc DL, DILocation *InlinedAt, in appendInlinedAt() argument
88 DILocation *Last = InlinedAt; in appendInlinedAt()
H A DDebugInfo.cpp497 auto *InlinedAt = map(MLD->getInlinedAt()); in getReplacementMDLocation() local
500 MLD->getColumn(), Scope, InlinedAt); in getReplacementMDLocation()
502 Scope, InlinedAt); in getReplacementMDLocation()
642 MDNode *InlinedAt = DL.getInlinedAt(); in stripNonLineTableDebugInfo() local
644 InlinedAt = remap(InlinedAt); in stripNonLineTableDebugInfo()
645 return DebugLoc::get(DL.getLine(), DL.getCol(), Scope, InlinedAt); in stripNonLineTableDebugInfo()
886 LLVMMetadataRef InlinedAt) { in LLVMDIBuilderCreateDebugLocation() argument
888 unwrap(InlinedAt))); in LLVMDIBuilderCreateDebugLocation()
H A DLLVMContextImpl.h282 Metadata *InlinedAt;
286 Metadata *InlinedAt, bool ImplicitCode)
287 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt),
291 InlinedAt(L->getRawInlinedAt()), ImplicitCode(L->isImplicitCode()) {}
295 Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt() &&
300 return hash_combine(Line, Column, Scope, InlinedAt, ImplicitCode);
H A DDebugInfoMetadata.cpp51 Metadata *InlinedAt, bool ImplicitCode, in getImpl() argument
59 InlinedAt, ImplicitCode))) in getImpl()
69 if (InlinedAt) in getImpl()
70 Ops.push_back(InlinedAt); in getImpl()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DLexicalScopes.cpp188 const DILocation *InlinedAt) { in getOrCreateInlinedScope() argument
191 std::pair<const DILocalScope *, const DILocation *> P(Scope, InlinedAt); in getOrCreateInlinedScope()
198 Parent = getOrCreateInlinedScope(Block->getScope(), InlinedAt); in getOrCreateInlinedScope()
200 Parent = getOrCreateLexicalScope(InlinedAt); in getOrCreateInlinedScope()
204 std::forward_as_tuple(Parent, Scope, InlinedAt, false)) in getOrCreateInlinedScope()
H A DLiveDebugValues.cpp113 DebugVariable(const DILocalVariable *Var, const DILocation *InlinedAt) in DebugVariable()
114 : DebugVariableBase(Var, InlinedAt) {} in DebugVariable()
366 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugValue() local
371 DebugVariable V(Var, InlinedAt); in transferDebugValue()
H A DLiveDebugVariables.cpp454 if (auto *InlinedAt = DL->getInlinedAt()) { in printExtendedName() local
455 if (DebugLoc InlinedAtDL = InlinedAt) { in printExtendedName()
H A DMachineInstr.cpp1740 if (auto *InlinedAt = debugLoc->getInlinedAt()) { in print() local
1741 DebugLoc InlinedAtDL(InlinedAt); in print()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCCodeView.cpp110 MCCVFunctionInfo::LineInfo InlinedAt; in recordInlinedCallSiteId() local
111 InlinedAt.File = IAFile; in recordInlinedCallSiteId()
112 InlinedAt.Line = IALine; in recordInlinedCallSiteId()
113 InlinedAt.Col = IACol; in recordInlinedCallSiteId()
118 Info->InlinedAt = InlinedAt; in recordInlinedCallSiteId()
123 InlinedAt = Info->InlinedAt; in recordInlinedCallSiteId()
125 Info->InlinedAtMap[FuncId] = InlinedAt; in recordInlinedCallSiteId()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDebugLoc.h81 const MDNode *InlinedAt = nullptr,
89 static DebugLoc appendInlinedAt(DebugLoc DL, DILocation *InlinedAt,
H A DDebugInfoMetadata.h1411 Metadata *InlinedAt, bool ImplicitCode,
1415 DILocation *InlinedAt, bool ImplicitCode,
1418 static_cast<Metadata *>(InlinedAt), ImplicitCode, Storage,
1468 Metadata *InlinedAt = nullptr, bool ImplicitCode = false),
1469 (Line, Column, Scope, InlinedAt, ImplicitCode))
1472 DILocation *InlinedAt = nullptr,
1474 (Line, Column, Scope, InlinedAt, ImplicitCode))
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h70 const DILocation *InlinedAt; variable
81 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity()
87 const DILocation *getInlinedAt() const { return InlinedAt; } in getInlinedAt()
H A DCodeViewDebug.cpp227 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, in getInlineSite() argument
233 if (const DILocation *OuterIA = InlinedAt->getInlinedAt()) in getInlineSite()
241 InlinedAt->getLine(), InlinedAt->getColumn(), SMLoc()); in getInlineSite()
438 if (const DILocation *InlinedAt = LS->getInlinedAt()) { in recordLocalVariable() local
441 InlineSite &Site = getInlineSite(InlinedAt, Inlinee); in recordLocalVariable()
855 const DILocation *InlinedAt, in emitInlinedCallSite() argument
1049 for (const DILocation *InlinedAt : FI.ChildSites) { in emitDebugInfoForFunction() local
1050 auto I = FI.InlineSites.find(InlinedAt); in emitDebugInfoForFunction()
1053 emitInlinedCallSite(FI, InlinedAt, I->second); in emitDebugInfoForFunction()
1256 const DILocation *InlinedAt = IV.second; in collectVariableInfo() local
[all …]
H A DCodeViewDebug.h220 InlineSite &getInlineSite(const DILocation *InlinedAt,
335 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCCodeView.h108 LineInfo InlinedAt; member
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h219 const DILocation *InlinedAt);
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.h380 void setInlinedAt(llvm::MDNode *InlinedAt) { CurInlinedAt = InlinedAt; } in setInlinedAt() argument
/freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp1703 MDNode *InlinedAt = nullptr; in parseDILocation() local
1750 if (parseMDNode(InlinedAt)) in parseDILocation()
1753 if (parseDILocation(InlinedAt)) in parseDILocation()
1757 if (!isa<DILocation>(InlinedAt)) in parseDILocation()
1794 InlinedAt, ImplicitCode); in parseDILocation()
/freebsd-12.1/contrib/llvm/include/llvm-c/
H A DDebugInfo.h429 LLVMMetadataRef InlinedAt);
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp1145 Metadata *InlinedAt = getMDOrNull(Record[4]); in parseOneMetadata() local
1148 GET_OR_DISTINCT(DILocation, (Context, Line, Column, Scope, InlinedAt, in parseOneMetadata()