Home
last modified time | relevance | path

Searched refs:programAction (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/flang/lib/Frontend/
H A DCompilerInvocation.cpp155 opts.programAction = ParseSyntaxOnly; in parseFrontendArgs()
184 opts.programAction = EmitMLIR; in parseFrontendArgs()
187 opts.programAction = EmitLLVM; in parseFrontendArgs()
193 opts.programAction = EmitObj; in parseFrontendArgs()
196 opts.programAction = EmitAssembly; in parseFrontendArgs()
199 opts.programAction = DebugUnparse; in parseFrontendArgs()
214 opts.programAction = DebugDumpPFT; in parseFrontendArgs()
217 opts.programAction = DebugDumpAll; in parseFrontendArgs()
238 opts.programAction = GetDefinition; in parseFrontendArgs()
241 opts.programAction = InitOnly; in parseFrontendArgs()
[all …]
/llvm-project-15.0.7/flang/unittests/Frontend/
H A DFrontendActionTest.cpp92 compInst.getInvocation().getFrontendOpts().programAction = InputOutputTest; in TEST_F()
121 compInst.getInvocation().getFrontendOpts().programAction = in TEST_F()
149 compInst.getInvocation().getFrontendOpts().programAction = ParseSyntaxOnly; in TEST_F()
175 compInst.getInvocation().getFrontendOpts().programAction = EmitLLVM; in TEST_F()
205 compInst.getInvocation().getFrontendOpts().programAction = EmitAssembly; in TEST_F()
/llvm-project-15.0.7/flang/include/flang/Frontend/
H A DFrontendOptions.h256 frontend::ActionKind programAction = ParseSyntaxOnly; member
/llvm-project-15.0.7/flang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp35 switch (ci.getFrontendOpts().programAction) { in createFrontendAction()