/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | DebugLoc.cpp | 72 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()
|
D | DebugInfo.cpp | 497 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()
|
D | LLVMContextImpl.h | 282 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);
|
D | DebugInfoMetadata.cpp | 53 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/ |
D | LexicalScopes.cpp | 188 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()
|
D | LiveDebugVariables.cpp | 527 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/ |
D | MCCodeView.cpp | 109 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/ |
D | DebugLoc.h | 80 const MDNode *InlinedAt = nullptr, 88 static DebugLoc appendInlinedAt(DebugLoc DL, DILocation *InlinedAt,
|
D | DebugInfoMetadata.h | 1365 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/ |
D | CodeViewDebug.cpp | 266 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 …]
|
D | DwarfDebug.h | 71 const DILocation *InlinedAt; variable 82 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity() 88 const DILocation *getInlinedAt() const { return InlinedAt; } in getInlinedAt()
|
D | CodeViewDebug.h | 222 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/ |
D | DebugLoc.h | 81 const MDNode *InlinedAt = nullptr);
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SpirvShaderDebugger.cpp | 341 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/ |
D | MCCodeView.h | 107 LineInfo InlinedAt; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LexicalScopes.h | 218 const DILocation *InlinedAt);
|
/third_party/skia/third_party/externals/swiftshader/docs/ |
D | ReactorDebugInfo.md | 125 `InlinedAt`s. 164 Where '↳' represents an `InlinedAt`.
|
/third_party/spirv-tools/test/ |
D | ext_inst.debuginfo_test.cpp | 686 CASE_LII(InlinedAt, 1), 687 CASE_LII(InlinedAt, 42),
|
D | ext_inst.cldebug100_test.cpp | 909 CASE_LII(InlinedAt, 1), 910 CASE_LII(InlinedAt, 42),
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
D | ext_inst.debuginfo_test.cpp | 686 CASE_LII(InlinedAt, 1), 687 CASE_LII(InlinedAt, 42),
|
D | ext_inst.cldebug100_test.cpp | 909 CASE_LII(InlinedAt, 1), 910 CASE_LII(InlinedAt, 42),
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
D | ext_inst.debuginfo_test.cpp | 686 CASE_LII(InlinedAt, 1), 687 CASE_LII(InlinedAt, 42),
|
D | ext_inst.cldebug100_test.cpp | 909 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/ |
D | InlineFunction.cpp | 1351 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/ |
D | MIParser.cpp | 2023 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()
|