Home
last modified time | relevance | path

Searched refs:allCooked (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/flang/lib/Parser/
H A Dmessage.cpp195 void Message::ResolveProvenances(const AllCookedSources &allCooked) { in ResolveProvenances() argument
198 allCooked.GetProvenanceRange(*cb)}) { in ResolveProvenances()
203 attachment->ResolveProvenances(allCooked); in ResolveProvenances()
208 const AllCookedSources &allCooked) const { in GetProvenanceRange()
211 [&](CharBlock cb) { return allCooked.GetProvenanceRange(cb); }, in GetProvenanceRange()
237 void Message::Emit(llvm::raw_ostream &o, const AllCookedSources &allCooked, in Emit() argument
240 const AllSources &sources{allCooked.allSources()}; in Emit()
246 sources.EmitMessage(o, attachment->GetProvenanceRange(allCooked), in Emit()
354 void Messages::ResolveProvenances(const AllCookedSources &allCooked) { in ResolveProvenances() argument
356 m.ResolveProvenances(allCooked); in ResolveProvenances()
[all …]
H A Dinstrumented-parser.cpp67 llvm::raw_ostream &o, const AllCookedSources &allCooked) const { in Dump()
71 Message{at, tagLog.first}.Emit(o, allCooked, true); in Dump()
74 entry.messages.Emit(o, allCooked); in Dump()
H A Dparsing.cpp20 Parsing::Parsing(AllCookedSources &allCooked) : allCooked_{allCooked} {} in Parsing() argument
110 const AllSources &allSources{allCooked().allSources()}; in EmitPreprocessedSource()
H A Ddebug-parser.cpp21 message.Emit(*out, ustate->allCooked(), true); in Parse()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Duser-state.h37 UserState(const AllCookedSources &allCooked, in UserState() argument
39 : allCooked_{allCooked}, features_{features} {} in UserState()
41 const AllCookedSources &allCooked() const { return allCooked_; } in allCooked() function
H A Dparsing.h51 AllCookedSources &allCooked() { return allCooked_; } in allCooked() function
52 const AllCookedSources &allCooked() const { return allCooked_; } in allCooked() function
/llvm-project-15.0.7/flang/examples/FlangOmpReport/
H A DFlangOmpReportVisitor.cpp61 return parsing->allCooked().GetSourcePositionRange(o.source)->first; in getLocation()
69 return parsing->allCooked().GetSourcePositionRange(c.source)->first; in getLocation()
76 return (parsing->allCooked().GetSourcePositionRange(source))->first; in getLocation()
82 return parsing->allCooked() in getLocation()
90 return (parsing->allCooked().GetSourcePositionRange(source))->first; in getLocation()
/llvm-project-15.0.7/flang/include/flang/Lower/
H A DBridge.h54 const Fortran::parser::AllCookedSources &allCooked, in create() argument
57 allCooked, triple, kindMap); in create()
/llvm-project-15.0.7/flang/tools/bbc/
H A Dbbc.cpp161 parsing.messages().Emit(llvm::errs(), parsing.allCooked()); in convertFortranSourceToMLIR()
167 parsing.messages().Emit(llvm::errs(), parsing.allCooked()); in convertFortranSourceToMLIR()
221 semanticsContext.targetCharacteristics(), parsing.allCooked(), "", in convertFortranSourceToMLIR()
/llvm-project-15.0.7/flang/tools/f18-parse-demo/
H A Df18-parse-demo.cpp172 parsing.messages().Emit(llvm::errs(), parsing.allCooked()); in CompileFortran()
201 parsing.messages().Emit(llvm::errs(), parsing.allCooked()); in CompileFortran()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dsemantics.cpp509 const parser::AllCookedSources &allCooked{context_.allCookedSources()}; in DumpSymbolsSources() local
512 if (auto sourceInfo{allCooked.GetSourcePositionRange(symbol.name())}) { in DumpSymbolsSources()
/llvm-project-15.0.7/flang/lib/Frontend/
H A DFrontendActions.cpp150 ci.getParsing().allCooked(), ci.getInvocation().getTargetOpts().triple, in beginSourceFileAction()