/external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/ |
D | IRBindings.cpp | 56 LLVMMetadataRef InlinedAt) { in LLVMSetCurrentDebugLocation2() argument 59 InlinedAt ? unwrap<MDNode>(InlinedAt) : nullptr)); in LLVMSetCurrentDebugLocation2() 64 const auto* InlinedAt = Loc.getInlinedAt(); in LLVMGetCurrentDebugLocation2() local 69 InlinedAt == nullptr ? nullptr : wrap(InlinedAt->getRawInlinedAt()), in LLVMGetCurrentDebugLocation2()
|
D | IRBindings.h | 34 LLVMMetadataRef InlinedAt; member 49 LLVMMetadataRef InlinedAt);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | LexicalScopes.cpp | 137 MDNode *InlinedAt = NULL; in getOrCreateLexicalScope() local 138 DL.getScopeAndInlinedAt(Scope, InlinedAt, MF->getFunction()->getContext()); in getOrCreateLexicalScope() 140 if (InlinedAt) { in getOrCreateLexicalScope() 144 return getOrCreateInlinedScope(Scope, InlinedAt); in getOrCreateLexicalScope() 176 MDNode *InlinedAt) { in getOrCreateInlinedScope() argument 177 LexicalScope *InlinedScope = LexicalScopeMap.lookup(InlinedAt); in getOrCreateInlinedScope() 181 DebugLoc InlinedLoc = DebugLoc::getFromDILocation(InlinedAt); in getOrCreateInlinedScope() 183 DIDescriptor(Scope), InlinedAt, false); in getOrCreateInlinedScope() 185 LexicalScopeMap[InlinedAt] = InlinedScope; in getOrCreateInlinedScope()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | DebugLoc.cpp | 60 const MDNode *InlinedAt) { in get() argument 67 const_cast<MDNode *>(InlinedAt)); in get() 70 DebugLoc DebugLoc::appendInlinedAt(DebugLoc DL, DILocation *InlinedAt, in appendInlinedAt() argument 75 DILocation *Last = InlinedAt; in appendInlinedAt()
|
D | DebugInfo.cpp | 499 auto *InlinedAt = map(MLD->getInlinedAt()); in getReplacementMDLocation() local 502 MLD->getColumn(), Scope, InlinedAt); in getReplacementMDLocation() 504 Scope, InlinedAt); in getReplacementMDLocation() 644 MDNode *InlinedAt = DL.getInlinedAt(); in stripNonLineTableDebugInfo() local 646 InlinedAt = remap(InlinedAt); in stripNonLineTableDebugInfo() 647 return DebugLoc::get(DL.getLine(), DL.getCol(), Scope, InlinedAt); in stripNonLineTableDebugInfo() 882 LLVMMetadataRef InlinedAt) { in LLVMDIBuilderCreateDebugLocation() argument 884 unwrap(InlinedAt))); in LLVMDIBuilderCreateDebugLocation()
|
D | LLVMContextImpl.h | 282 Metadata *InlinedAt; 285 Metadata *InlinedAt) 286 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt) {} 289 InlinedAt(L->getRawInlinedAt()) {} 293 Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt(); 297 return hash_combine(Line, Column, Scope, InlinedAt);
|
/external/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 170 const DILocation *InlinedAt) { in getOrCreateInlinedScope() argument 173 std::pair<const DILocalScope *, const DILocation *> P(Scope, InlinedAt); in getOrCreateInlinedScope() 180 Parent = getOrCreateInlinedScope(Block->getScope(), InlinedAt); in getOrCreateInlinedScope() 182 Parent = getOrCreateLexicalScope(InlinedAt); in getOrCreateInlinedScope() 187 InlinedAt, false)) in getOrCreateInlinedScope()
|
D | LiveDebugValues.cpp | 69 DebugVariable(const DILocalVariable *Var, const DILocation *InlinedAt) in DebugVariable() 70 : DebugVariableBase(Var, InlinedAt) {} in DebugVariable() 286 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugValue() local 291 DebugVariable V(Var, InlinedAt); in transferDebugValue()
|
/external/swiftshader/third_party/llvm-7.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 | LiveDebugValues.cpp | 113 DebugVariable(const DILocalVariable *Var, const DILocation *InlinedAt) in DebugVariable() 114 : DebugVariableBase(Var, InlinedAt) {} in DebugVariable() 363 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); in transferDebugValue() local 368 DebugVariable V(Var, InlinedAt); in transferDebugValue()
|
/external/llvm/bindings/go/llvm/ |
D | IRBindings.cpp | 96 LLVMMetadataRef InlinedAt) { in LLVMSetCurrentDebugLocation2() argument 99 InlinedAt ? unwrap<MDNode>(InlinedAt) : nullptr)); in LLVMSetCurrentDebugLocation2()
|
D | IRBindings.h | 56 LLVMMetadataRef InlinedAt);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | DebugLoc.h | 81 const MDNode *InlinedAt = nullptr); 88 static DebugLoc appendInlinedAt(DebugLoc DL, DILocation *InlinedAt,
|
/external/llvm/lib/IR/ |
D | DebugLoc.cpp | 59 const MDNode *InlinedAt) { in get() argument 66 const_cast<MDNode *>(InlinedAt)); in get()
|
D | LLVMContextImpl.h | 248 Metadata *InlinedAt; 251 Metadata *InlinedAt) 252 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt) {} 256 InlinedAt(L->getRawInlinedAt()) {} 260 Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt(); 263 return hash_combine(Line, Column, Scope, InlinedAt);
|
D | DebugInfoMetadata.cpp | 43 Metadata *InlinedAt, StorageType Storage, in getImpl() argument 51 DILocationInfo::KeyTy(Line, Column, Scope, InlinedAt))) in getImpl() 61 if (InlinedAt) in getImpl() 62 Ops.push_back(InlinedAt); in getImpl()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | DebugLoc.cpp | 74 MDNode *Scope, MDNode *InlinedAt) { in get() argument 88 if (InlinedAt == 0) in get() 92 InlinedAt, 0); in get()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 118 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, in getInlineSite() argument 120 auto SiteInsertion = CurFn->InlineSites.insert({InlinedAt, InlineSite()}); in getInlineSite() 288 const DILocation *InlinedAt) { in recordLocalVariable() argument 289 if (InlinedAt) { in recordLocalVariable() 292 InlineSite &Site = getInlineSite(InlinedAt, Inlinee); in recordLocalVariable() 543 const DILocation *InlinedAt, in emitInlinedCallSite() argument 688 for (const DILocation *InlinedAt : FI.ChildSites) { in emitDebugInfoForFunction() local 689 auto I = FI.InlineSites.find(InlinedAt); in emitDebugInfoForFunction() 692 emitInlinedCallSite(FI, InlinedAt, I->second); in emitDebugInfoForFunction() 784 const DILocation *InlinedAt = IV.second; in collectVariableInfo() local [all …]
|
D | CodeViewDebug.h | 121 InlineSite &getInlineSite(const DILocation *InlinedAt, 210 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 200 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, in getInlineSite() argument 202 auto SiteInsertion = CurFn->InlineSites.insert({InlinedAt, InlineSite()}); in getInlineSite() 206 if (const DILocation *OuterIA = InlinedAt->getInlinedAt()) in getInlineSite() 208 getInlineSite(OuterIA, InlinedAt->getScope()->getSubprogram()) in getInlineSite() 213 Site->SiteFuncId, ParentFuncId, maybeRecordFile(InlinedAt->getFile()), in getInlineSite() 214 InlinedAt->getLine(), InlinedAt->getColumn(), SMLoc()); in getInlineSite() 379 if (const DILocation *InlinedAt = LS->getInlinedAt()) { in recordLocalVariable() local 382 InlineSite &Site = getInlineSite(InlinedAt, Inlinee); in recordLocalVariable() 774 const DILocation *InlinedAt, in emitInlinedCallSite() argument 979 for (const DILocation *InlinedAt : FI.ChildSites) { in emitDebugInfoForFunction() local [all …]
|
D | CodeViewDebug.h | 173 InlineSite &getInlineSite(const DILocation *InlinedAt, 277 void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt,
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | DebugLoc.h | 81 const MDNode *InlinedAt = nullptr);
|
/external/llvm/include/llvm/IR/ |
D | DebugLoc.h | 91 const MDNode *InlinedAt = nullptr);
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | DebugLoc.h | 60 MDNode *Scope, MDNode *InlinedAt = 0);
|