Searched defs:InlinedAt (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/IR/
H A DDebugLoc.cpp59 const MDNode *InlinedAt) {
66 const_cast<MDNode *>(InlinedAt));
58 get(unsigned Line, unsigned Col, const MDNode *Scope, const MDNode *InlinedAt) argument
H A DLLVMContextImpl.h248 Metadata *InlinedAt; member in struct:llvm::MDNodeKeyImpl
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);
250 MDNodeKeyImpl(unsigned Line, unsigned Column, Metadata *Scope, Metadata *InlinedAt) argument
/external/llvm/bindings/go/llvm/
H A DIRBindings.cpp96 LLVMMetadataRef InlinedAt) {
99 InlinedAt ? unwrap<MDNode>(InlinedAt) : nullptr));
94 LLVMSetCurrentDebugLocation2(LLVMBuilderRef Bref, unsigned Line, unsigned Col, LLVMMetadataRef Scope, LLVMMetadataRef InlinedAt) argument
/external/llvm/lib/CodeGen/
H A DLexicalScopes.cpp170 const DILocation *InlinedAt) {
173 std::pair<const DILocalScope *, const DILocation *> P(Scope, InlinedAt);
180 Parent = getOrCreateInlinedScope(Block->getScope(), InlinedAt);
182 Parent = getOrCreateLexicalScope(InlinedAt);
187 InlinedAt, false))
169 getOrCreateInlinedScope(const DILocalScope *Scope, const DILocation *InlinedAt) argument
H A DLiveDebugValues.cpp69 DebugVariable(const DILocalVariable *Var, const DILocation *InlinedAt) argument
70 : DebugVariableBase(Var, InlinedAt) {}
286 const DILocation *InlinedAt = DebugLoc->getInlinedAt(); local
291 DebugVariable V(Var, InlinedAt);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLexicalScopes.cpp137 MDNode *InlinedAt = NULL; local
138 DL.getScopeAndInlinedAt(Scope, InlinedAt, MF->getFunction()->getContext());
140 if (InlinedAt) {
144 return getOrCreateInlinedScope(Scope, InlinedAt);
176 MDNode *InlinedAt) {
177 LexicalScope *InlinedScope = LexicalScopeMap.lookup(InlinedAt);
181 DebugLoc InlinedLoc = DebugLoc::getFromDILocation(InlinedAt);
183 DIDescriptor(Scope), InlinedAt, false);
185 LexicalScopeMap[InlinedAt] = InlinedScope;
175 getOrCreateInlinedScope(MDNode *Scope, MDNode *InlinedAt) argument
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DDebugLoc.cpp47 /// Return both the Scope and the InlinedAt values.
74 MDNode *Scope, MDNode *InlinedAt) {
88 if (InlinedAt == 0)
92 InlinedAt, 0);
73 get(unsigned Line, unsigned Col, MDNode *Scope, MDNode *InlinedAt) argument
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DInlineFunction.cpp872 MDNode *InlinedAt = BI->getDebugLoc().getInlinedAt(Ctx); local
874 InlinedAt, Ctx));
/external/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1182 Metadata *InlinedAt, StorageType Storage,
1186 DILocation *InlinedAt, StorageType Storage,
1189 static_cast<Metadata *>(InlinedAt), Storage, ShouldCreate);
1205 Metadata *InlinedAt = nullptr),
1206 (Line, Column, Scope, InlinedAt))
1209 DILocation *InlinedAt = nullptr),
1210 (Line, Column, Scope, InlinedAt))
1184 getImpl(LLVMContext &Context, unsigned Line, unsigned Column, DILocalScope *Scope, DILocation *InlinedAt, StorageType Storage, bool ShouldCreate = true) argument
/external/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp118 CodeViewDebug::getInlineSite(const DILocation *InlinedAt, argument
120 auto SiteInsertion = CurFn->InlineSites.insert({InlinedAt, InlineSite()});
288 const DILocation *InlinedAt) {
289 if (InlinedAt) {
292 InlineSite &Site = getInlineSite(InlinedAt, Inlinee);
543 const DILocation *InlinedAt,
688 for (const DILocation *InlinedAt : FI.ChildSites) {
689 auto I = FI.InlineSites.find(InlinedAt);
692 emitInlinedCallSite(FI, InlinedAt, I->second);
784 const DILocation *InlinedAt local
287 recordLocalVariable(LocalVariable &&Var, const DILocation *InlinedAt) argument
542 emitInlinedCallSite(const FunctionInfo &FI, const DILocation *InlinedAt, const InlineSite &Site) argument
860 recordLocalVariable(std::move(Var), InlinedAt); local
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2292 Metadata *InlinedAt = getMDOrNull(Record[4]); local
2295 (Context, Line, Column, Scope, InlinedAt)),

Completed in 1033 milliseconds