Home
last modified time | relevance | path

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

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDebugLoc.cpp72 const MDNode *InlinedAt, bool ImplicitCode) { in get() argument
79 const_cast<MDNode *>(InlinedAt), ImplicitCode); in get()
82 DebugLoc DebugLoc::appendInlinedAt(DebugLoc DL, DILocation *InlinedAt, in appendInlinedAt() argument
87 DILocation *Last = InlinedAt; in appendInlinedAt()
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()
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);
DDebugInfoMetadata.cpp53 Metadata *InlinedAt, bool ImplicitCode, in getImpl() argument
61 InlinedAt, ImplicitCode))) in getImpl()
71 if (InlinedAt) in getImpl()
72 Ops.push_back(InlinedAt); in getImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
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()
DLiveDebugVariables.cpp527 auto *InlinedAt = DL ? DL->getInlinedAt() : nullptr; in printExtendedName() local
528 if (InlinedAt) { in printExtendedName()
529 if (DebugLoc InlinedAtDL = InlinedAt) { in printExtendedName()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDebugLoc.h80 const MDNode *InlinedAt = nullptr,
88 static DebugLoc appendInlinedAt(DebugLoc DL, DILocation *InlinedAt,
DDebugInfoMetadata.h1365 Metadata *InlinedAt, bool ImplicitCode,
1369 DILocation *InlinedAt, bool ImplicitCode,
1372 static_cast<Metadata *>(InlinedAt), ImplicitCode, Storage,
1422 Metadata *InlinedAt = nullptr, bool ImplicitCode = false),
1423 (Line, Column, Scope, InlinedAt, ImplicitCode))
1426 DILocation *InlinedAt = nullptr,
1428 (Line, Column, Scope, InlinedAt, ImplicitCode))
3278 const DILocation *InlinedAt;
3286 const DILocation *InlinedAt)
3287 : Variable(Var), Fragment(FragmentInfo), InlinedAt(InlinedAt) {}
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp266 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, in getInlineSite() argument
268 auto SiteInsertion = CurFn->InlineSites.insert({InlinedAt, InlineSite()}); in getInlineSite()
272 if (const DILocation *OuterIA = InlinedAt->getInlinedAt()) in getInlineSite()
274 getInlineSite(OuterIA, InlinedAt->getScope()->getSubprogram()) in getInlineSite()
279 Site->SiteFuncId, ParentFuncId, maybeRecordFile(InlinedAt->getFile()), in getInlineSite()
280 InlinedAt->getLine(), InlinedAt->getColumn(), SMLoc()); in getInlineSite()
477 if (const DILocation *InlinedAt = LS->getInlinedAt()) { in recordLocalVariable() local
480 InlineSite &Site = getInlineSite(InlinedAt, Inlinee); in recordLocalVariable()
884 const DILocation *InlinedAt, in emitInlinedCallSite() argument
1077 for (const DILocation *InlinedAt : FI.ChildSites) { in emitDebugInfoForFunction() local
[all …]
DDwarfDebug.h71 const DILocation *InlinedAt; variable
82 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity()
88 const DILocation *getInlinedAt() const { return InlinedAt; } in getInlinedAt()
DCodeViewDebug.h222 InlineSite &getInlineSite(const DILocation *InlinedAt,
336 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DDebugLoc.h81 const MDNode *InlinedAt = nullptr);
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSpirvShaderDebugger.cpp341 InlinedAt, enumerator
389 case Object::Kind::InlinedAt: return "InlinedAt"; in cstr()
800 struct InlinedAt : ObjectImpl<InlinedAt, Object, Object::Kind::InlinedAt> struct
804 InlinedAt *inlined = nullptr; argument
812 InlinedAt *inlinedAt = nullptr;
1734 ss->inlinedAt = get(debug::InlinedAt::ID(insn.word(6))); in process()
1742 defineOrEmit(insn, pass, [&](debug::InlinedAt *ia) { in process()
1747 ia->inlined = get(debug::InlinedAt::ID(insn.word(7))); in process()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCCodeView.h107 LineInfo InlinedAt; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLexicalScopes.h218 const DILocation *InlinedAt);
/third_party/skia/third_party/externals/swiftshader/docs/
DReactorDebugInfo.md125 `InlinedAt`s.
164 Where '↳' represents an `InlinedAt`.
/third_party/spirv-tools/test/
Dext_inst.debuginfo_test.cpp686 CASE_LII(InlinedAt, 1),
687 CASE_LII(InlinedAt, 42),
Dext_inst.cldebug100_test.cpp909 CASE_LII(InlinedAt, 1),
910 CASE_LII(InlinedAt, 42),
/third_party/skia/third_party/externals/spirv-tools/test/
Dext_inst.debuginfo_test.cpp686 CASE_LII(InlinedAt, 1),
687 CASE_LII(InlinedAt, 42),
Dext_inst.cldebug100_test.cpp909 CASE_LII(InlinedAt, 1),
910 CASE_LII(InlinedAt, 42),
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Dext_inst.debuginfo_test.cpp686 CASE_LII(InlinedAt, 1),
687 CASE_LII(InlinedAt, 42),
Dext_inst.cldebug100_test.cpp909 CASE_LII(InlinedAt, 1),
910 CASE_LII(InlinedAt, 42),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DInlineFunction.cpp1351 static DebugLoc inlineDebugLoc(DebugLoc OrigDL, DILocation *InlinedAt, in inlineDebugLoc() argument
1354 auto IA = DebugLoc::appendInlinedAt(OrigDL, InlinedAt, Ctx, IANodes); in inlineDebugLoc()
1361 static MDNode *inlineLoopID(const MDNode *OrigLoopId, DILocation *InlinedAt, in inlineLoopID() argument
1376 MDs.push_back(inlineDebugLoc(DL, InlinedAt, Ctx, IANodes)); in inlineLoopID()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp2023 MDNode *InlinedAt = nullptr; in parseDILocation() local
2070 if (parseMDNode(InlinedAt)) in parseDILocation()
2073 if (parseDILocation(InlinedAt)) in parseDILocation()
2077 if (!isa<DILocation>(InlinedAt)) in parseDILocation()
2114 InlinedAt, ImplicitCode); in parseDILocation()

12