Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DDebugLoc.cpp36 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 DLLVMContextImpl.h224 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 DMetadata.cpp664 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 DDebugInfo.cpp1438 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 DLexicalScopes.cpp143 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 DMachineInstr.cpp1748 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 DIRBindings.cpp96 LLVMMetadataRef InlinedAt) { in LLVMSetCurrentDebugLocation2() argument
99 InlinedAt ? unwrap<MDNode>(InlinedAt) : nullptr)); in LLVMSetCurrentDebugLocation2()
H A DIRBindings.h56 LLVMMetadataRef InlinedAt);
/minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DMetadata.h840 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 DDebugLoc.h52 MDNode *InlinedAt = nullptr);
/minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h208 LexicalScope *getOrCreateInlinedScope(MDNode *Scope, MDNode *InlinedAt);
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp874 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 DBitcodeWriter.cpp792 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 DBitcodeReader.cpp1290 Metadata *InlinedAt = in ParseMetadata() local
1292 MDValueList.AssignValue(get(Context, Line, Column, Scope, InlinedAt), in ParseMetadata()