| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | DebugLoc.cpp | 36 if (MDNode *InlinedAt = getInlinedAt()) in getScopeNode() local 37 return DebugLoc::getFromDILocation(InlinedAt).getScopeNode(); in getScopeNode() 51 MDNode *Scope, MDNode *InlinedAt) { in get() argument 62 MDLocation::get(Scope->getContext(), Line, Col, Scope, InlinedAt)); in get()
|
| H A D | LLVMContextImpl.h | 224 Metadata *InlinedAt; member 226 KeyTy(unsigned Line, unsigned Column, Metadata *Scope, Metadata *InlinedAt) in KeyTy() 227 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt) {} in KeyTy() 231 InlinedAt(L->getInlinedAt()) {} in KeyTy() 237 Scope == RHS->getScope() && InlinedAt == RHS->getInlinedAt(); 247 return hash_combine(Key.Line, Key.Column, Key.Scope, Key.InlinedAt); in getHashValue()
|
| H A D | Metadata.cpp | 664 Metadata *InlinedAt, bool AllowRAUW) { in constructHelper() argument 667 if (InlinedAt) in constructHelper() 668 Ops.push_back(InlinedAt); in constructHelper() 686 Metadata *InlinedAt, bool ShouldCreate) { in getImpl() argument 691 MDLocationInfo::KeyTy Key(Line, Column, Scope, InlinedAt); in getImpl() 700 auto *N = constructHelper(Context, Line, Column, Scope, InlinedAt, in getImpl() 708 Metadata *InlinedAt) { in getDistinct() argument 713 auto *N = constructHelper(Context, Line, Column, Scope, InlinedAt, in getDistinct()
|
| H A D | DebugInfo.cpp | 1438 if (MDNode *InlinedAt = getInlinedAt()) { in printExtendedName() local 1439 DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(InlinedAt); in printExtendedName()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | LexicalScopes.cpp | 143 MDNode *InlinedAt = nullptr; in getOrCreateLexicalScope() local 144 DL.getScopeAndInlinedAt(Scope, InlinedAt, MF->getFunction()->getContext()); in getOrCreateLexicalScope() 146 if (InlinedAt) { in getOrCreateLexicalScope() 150 return getOrCreateInlinedScope(Scope, InlinedAt); in getOrCreateLexicalScope() 189 MDNode *InlinedAt) { in getOrCreateInlinedScope() argument 190 std::pair<const MDNode*, const MDNode*> P(ScopeNode, InlinedAt); in getOrCreateInlinedScope() 198 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILocation(InlinedAt)); in getOrCreateInlinedScope() 200 Parent = getOrCreateInlinedScope(Scope.getContext(), InlinedAt); in getOrCreateInlinedScope() 206 std::make_tuple(Parent, Scope, InlinedAt, in getOrCreateInlinedScope()
|
| H A D | MachineInstr.cpp | 1748 if (MDNode *InlinedAt = DV.getInlinedAt()) { in print() local 1749 DebugLoc InlinedAtDL = DebugLoc::getFromDILocation(InlinedAt); in print()
|
| /minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/ |
| H A D | IRBindings.cpp | 96 LLVMMetadataRef InlinedAt) { in LLVMSetCurrentDebugLocation2() argument 99 InlinedAt ? unwrap<MDNode>(InlinedAt) : nullptr)); in LLVMSetCurrentDebugLocation2()
|
| H A D | IRBindings.h | 56 LLVMMetadataRef InlinedAt);
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Metadata.h | 840 Metadata *InlinedAt, bool AllowRAUW); 844 Metadata *InlinedAt, bool ShouldCreate); 851 Metadata *Scope, Metadata *InlinedAt = nullptr) { 852 return getImpl(Context, Line, Column, Scope, InlinedAt, 857 Metadata *InlinedAt = nullptr) { 858 return getImpl(Context, Line, Column, Scope, InlinedAt, 863 Metadata *InlinedAt = nullptr);
|
| H A D | DebugLoc.h | 52 MDNode *InlinedAt = nullptr);
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | LexicalScopes.h | 208 LexicalScope *getOrCreateInlinedScope(MDNode *Scope, MDNode *InlinedAt);
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | InlineFunction.cpp | 874 MDNode *InlinedAt = BI->getDebugLoc().getInlinedAt(Ctx); in fixupLineNumbers() local 877 InlinedAt, Ctx))); in fixupLineNumbers() 880 MDNode *InlinedAt = BI->getDebugLoc().getInlinedAt(Ctx); in fixupLineNumbers() local 883 InlinedAt, Ctx))); in fixupLineNumbers()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 792 if (Metadata *InlinedAt = N->getInlinedAt()) in WriteMDLocation() local 793 Record.push_back(VE.getMetadataID(InlinedAt) + 1); in WriteMDLocation()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 1290 Metadata *InlinedAt = in ParseMetadata() local 1292 MDValueList.AssignValue(get(Context, Line, Column, Scope, InlinedAt), in ParseMetadata()
|