| /llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | PseudoProbePrinter.cpp | 33 auto *InlinedAt = DebugLoc ? DebugLoc->getInlinedAt() : nullptr; in emitPseudoProbe() local 34 while (InlinedAt) { in emitPseudoProbe() 35 const DISubprogram *SP = InlinedAt->getScope()->getSubprogram(); in emitPseudoProbe() 45 InlinedAt->getDiscriminator()); in emitPseudoProbe() 47 InlinedAt = InlinedAt->getInlinedAt(); in emitPseudoProbe()
|
| H A D | DwarfDebug.h | 74 const DILocation *InlinedAt; variable 80 : Entity(N), InlinedAt(IA), SubclassID(ID) {} in DbgEntity() 86 const DILocation *getInlinedAt() const { return InlinedAt; } in getInlinedAt()
|
| H A D | CodeViewDebug.cpp | 236 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, in getInlineSite() argument 242 if (const DILocation *OuterIA = InlinedAt->getInlinedAt()) in getInlineSite() 250 InlinedAt->getLine(), InlinedAt->getColumn(), SMLoc()); in getInlineSite() 489 if (const DILocation *InlinedAt = LS->getInlinedAt()) { in recordLocalVariable() local 492 InlineSite &Site = getInlineSite(InlinedAt, Inlinee); in recordLocalVariable() 998 const DILocation *InlinedAt, in emitInlinedCallSite() argument 1192 for (const DILocation *InlinedAt : FI.ChildSites) { in emitDebugInfoForFunction() local 1193 auto I = FI.InlineSites.find(InlinedAt); in emitDebugInfoForFunction() 1196 emitInlinedCallSite(FI, InlinedAt, I->second); in emitDebugInfoForFunction() 1418 const DILocation *InlinedAt = IV.second; in collectVariableInfo() local [all …]
|
| H A D | CodeViewDebug.h | 239 InlineSite &getInlineSite(const DILocation *InlinedAt, 355 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
|
| H A D | DbgEntityHistoryCalculator.cpp | 150 if (const DILocation *InlinedAt = Entity.second) { in trimLocationRanges() local 151 Scope = LScopes.findInlinedScope(LocalVar->getScope(), InlinedAt); in trimLocationRanges()
|
| /llvm-project-15.0.7/llvm/bindings/go/llvm/ |
| H A D | IRBindings.cpp | 55 LLVMMetadataRef InlinedAt) { in LLVMGoSetCurrentDebugLocation() argument 61 InlinedAt ? unwrap<MDNode>(InlinedAt) : nullptr)); in LLVMGoSetCurrentDebugLocation() 66 const auto* InlinedAt = Loc.getInlinedAt(); in LLVMGoGetCurrentDebugLocation() local 71 InlinedAt == nullptr ? nullptr : wrap(InlinedAt->getRawInlinedAt()), in LLVMGoGetCurrentDebugLocation()
|
| H A D | IRBindings.h | 33 LLVMMetadataRef InlinedAt; member 48 LLVMMetadataRef InlinedAt);
|
| H A D | dibuilder.go | 579 d.m.Context().C, C.uint(l.Line), C.uint(l.Col), l.Scope.C, l.InlinedAt.C) 588 d.m.Context().C, C.uint(l.Line), C.uint(l.Col), l.Scope.C, l.InlinedAt.C)
|
| /llvm-project-15.0.7/llvm/lib/Transforms/IPO/ |
| H A D | SampleProfileProbe.cpp | 54 const DILocation *InlinedAt = DIL ? DIL->getInlinedAt() : nullptr; in getCallStackHash() local 55 while (InlinedAt) { in getCallStackHash() 56 Hash ^= MD5Hash(std::to_string(InlinedAt->getLine())); in getCallStackHash() 57 Hash ^= MD5Hash(std::to_string(InlinedAt->getColumn())); in getCallStackHash() 58 const DISubprogram *SP = InlinedAt->getScope()->getSubprogram(); in getCallStackHash() 64 InlinedAt = InlinedAt->getInlinedAt(); in getCallStackHash()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | LexicalScopes.cpp | 189 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 D | LiveDebugVariables.cpp | 711 auto *InlinedAt = DL ? DL->getInlinedAt() : nullptr; in printExtendedName() local 712 if (InlinedAt) { in printExtendedName() 713 if (DebugLoc InlinedAtDL = InlinedAt) { in printExtendedName()
|
| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCCodeView.cpp | 110 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()
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | DebugLoc.cpp | 70 DebugLoc DebugLoc::appendInlinedAt(const DebugLoc &DL, DILocation *InlinedAt, in appendInlinedAt() argument 74 DILocation *Last = InlinedAt; in appendInlinedAt()
|
| H A D | DebugInfo.cpp | 617 auto *InlinedAt = map(MLD->getInlinedAt()); in getReplacementMDLocation() local 620 MLD->getColumn(), Scope, InlinedAt); in getReplacementMDLocation() 622 Scope, InlinedAt); in getReplacementMDLocation() 764 MDNode *InlinedAt = DL.getInlinedAt(); in stripNonLineTableDebugInfo() local 766 InlinedAt = remap(InlinedAt); in stripNonLineTableDebugInfo() 768 Scope, InlinedAt); in stripNonLineTableDebugInfo() 1051 LLVMMetadataRef InlinedAt) { in LLVMDIBuilderCreateDebugLocation() argument 1053 unwrap(InlinedAt))); in LLVMDIBuilderCreateDebugLocation()
|
| H A D | LLVMContextImpl.h | 270 Metadata *InlinedAt; 274 Metadata *InlinedAt, bool ImplicitCode) 275 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt), 279 InlinedAt(L->getRawInlinedAt()), ImplicitCode(L->isImplicitCode()) {} 283 Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt() && 288 return hash_combine(Line, Column, Scope, InlinedAt, ImplicitCode);
|
| H A D | DebugInfoMetadata.cpp | 61 Metadata *InlinedAt, bool ImplicitCode, in getImpl() argument 69 InlinedAt, ImplicitCode))) in getImpl() 79 if (InlinedAt) in getImpl() 80 Ops.push_back(InlinedAt); in getImpl()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | DebugLoc.h | 75 static DebugLoc appendInlinedAt(const DebugLoc &DL, DILocation *InlinedAt,
|
| H A D | DebugInfoMetadata.h | 1592 (Line, Column, Scope, InlinedAt, ImplicitCode)) 1595 DILocation *InlinedAt = nullptr, 1597 (Line, Column, Scope, InlinedAt, ImplicitCode)) 3625 const DILocation *InlinedAt; 3633 const DILocation *InlinedAt) 3634 : Variable(Var), Fragment(FragmentInfo), InlinedAt(InlinedAt) {} 3637 const DILocation *InlinedAt) 3640 InlinedAt(InlinedAt) {} 3644 const DILocation *getInlinedAt() const { return InlinedAt; } 3655 return std::tie(Variable, Fragment, InlinedAt) == [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCCodeView.h | 114 LineInfo InlinedAt; member
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | LexicalScopes.h | 215 const DILocation *InlinedAt);
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.h | 420 void setInlinedAt(llvm::MDNode *InlinedAt) { CurInlinedAt = InlinedAt; } in setInlinedAt() argument
|
| /llvm-project-15.0.7/llvm/bindings/ocaml/debuginfo/ |
| H A D | debuginfo_ocaml.c | 322 LLVMMetadataRef InlinedAt) { in llvm_dibuild_create_debug_location() argument 324 Scope, InlinedAt); in llvm_dibuild_create_debug_location()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/MIRParser/ |
| H A D | MIParser.cpp | 2247 MDNode *InlinedAt = nullptr; in parseDILocation() local 2294 if (parseMDNode(InlinedAt)) in parseDILocation() 2297 if (parseDILocation(InlinedAt)) in parseDILocation() 2301 if (!isa<DILocation>(InlinedAt)) in parseDILocation() 2338 InlinedAt, ImplicitCode); in parseDILocation()
|
| /llvm-project-15.0.7/llvm/include/llvm-c/ |
| H A D | DebugInfo.h | 462 LLVMMetadataRef InlinedAt);
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | InstrRefBasedImpl.cpp | 1040 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugValue() local 1044 DebugVariable V(Var, Expr, InlinedAt); in transferDebugValue() 1112 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugInstrRef() local 1116 DebugVariable V(Var, Expr, InlinedAt); in transferDebugInstrRef()
|