stuartellis updated this revision to Diff 349307. stuartellis added a comment.
Address review comments Renaming InitializationOnly to InitOnly Add missing line in init-only.f90 Updating commit message with init-only/test-io comparison Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D102849/new/ https://reviews.llvm.org/D102849 Files: clang/include/clang/Driver/Options.td flang/include/flang/Frontend/FrontendActions.h flang/include/flang/Frontend/FrontendOptions.h flang/lib/Frontend/CompilerInvocation.cpp flang/lib/Frontend/FrontendActions.cpp flang/lib/FrontendTool/ExecuteCompilerInvocation.cpp flang/test/Driver/driver-help.f90 flang/test/Driver/init-only.f90
Index: flang/test/Driver/init-only.f90 =================================================================== --- /dev/null +++ flang/test/Driver/init-only.f90 @@ -0,0 +1,7 @@ +! Verify that -init-only flag generates a diagnostic as expected + +! REQUIRES: new-flang-driver + +! RUN: %flang_fc1 -init-only 2>&1 | FileCheck %s + +! CHECK: warning: Use `-init-only` for testing purposes only Index: flang/test/Driver/driver-help.f90 =================================================================== --- flang/test/Driver/driver-help.f90 +++ flang/test/Driver/driver-help.f90 @@ -104,6 +104,7 @@ ! HELP-FC1-NEXT: -fopenmp Parse OpenMP pragmas and generate parallel code. ! HELP-FC1-NEXT: -fxor-operator Enable .XOR. as a synonym of .NEQV. ! HELP-FC1-NEXT: -help Display available options +! HELP-FC1-NEXT: -init-only Only execute frontend initialization ! HELP-FC1-NEXT: -I <dir> Add directory to the end of the list of include search paths ! HELP-FC1-NEXT: -module-dir <dir> Put MODULE files in <dir> ! HELP-FC1-NEXT: -nocpp Disable predefined and command line preprocessor macros Index: flang/lib/FrontendTool/ExecuteCompilerInvocation.cpp =================================================================== --- flang/lib/FrontendTool/ExecuteCompilerInvocation.cpp +++ flang/lib/FrontendTool/ExecuteCompilerInvocation.cpp @@ -73,6 +73,9 @@ case GetSymbolsSources: return std::make_unique<GetSymbolsSourcesAction>(); break; + case InitOnly: + return std::make_unique<InitOnlyAction>(); + break; default: break; // TODO: Index: flang/lib/Frontend/FrontendActions.cpp =================================================================== --- flang/lib/Frontend/FrontendActions.cpp +++ flang/lib/Frontend/FrontendActions.cpp @@ -447,3 +447,11 @@ clang::DiagnosticsEngine::Error, "code-generation is not available yet"); ci.diagnostics().Report(DiagID); } + +void InitOnlyAction::ExecuteAction() { + CompilerInstance &ci = this->instance(); + unsigned DiagID = + ci.diagnostics().getCustomDiagID(clang::DiagnosticsEngine::Warning, + "Use `-init-only` for testing purposes only"); + ci.diagnostics().Report(DiagID); +} Index: flang/lib/Frontend/CompilerInvocation.cpp =================================================================== --- flang/lib/Frontend/CompilerInvocation.cpp +++ flang/lib/Frontend/CompilerInvocation.cpp @@ -162,9 +162,12 @@ case clang::driver::options::OPT_fget_definition: opts.programAction_ = GetDefinition; break; + case clang::driver::options::OPT_init_only: + opts.programAction_ = InitOnly; + break; // TODO: - // case calng::driver::options::OPT_emit_llvm: + // case clang::driver::options::OPT_emit_llvm: // case clang::driver::options::OPT_emit_llvm_only: // case clang::driver::options::OPT_emit_codegen_only: // case clang::driver::options::OPT_emit_module: Index: flang/include/flang/Frontend/FrontendOptions.h =================================================================== --- flang/include/flang/Frontend/FrontendOptions.h +++ flang/include/flang/Frontend/FrontendOptions.h @@ -71,7 +71,10 @@ GetDefinition, /// Parse, run semantics and then dump symbol sources map - GetSymbolsSources + GetSymbolsSources, + + /// Only execute frontend initialization + InitOnly /// TODO: RunPreprocessor, EmitLLVM, EmitLLVMOnly, /// EmitCodeGenOnly, EmitAssembly, (...) Index: flang/include/flang/Frontend/FrontendActions.h =================================================================== --- flang/include/flang/Frontend/FrontendActions.h +++ flang/include/flang/Frontend/FrontendActions.h @@ -38,6 +38,10 @@ void ExecuteAction() override; }; +class InitOnlyAction : public FrontendAction { + void ExecuteAction() override; +}; + //===----------------------------------------------------------------------===// // Prescan Actions //===----------------------------------------------------------------------===// Index: clang/include/clang/Driver/Options.td =================================================================== --- clang/include/clang/Driver/Options.td +++ clang/include/clang/Driver/Options.td @@ -5224,8 +5224,6 @@ HelpText<"Run static analysis engine">; def dump_tokens : Flag<["-"], "dump-tokens">, HelpText<"Run preprocessor, dump internal rep of tokens">; -def init_only : Flag<["-"], "init-only">, - HelpText<"Only execute frontend initialization">; def fixit : Flag<["-"], "fixit">, HelpText<"Apply fix-it advice to the input source">; def fixit_EQ : Joined<["-"], "fixit=">, @@ -5691,6 +5689,8 @@ def emit_obj : Flag<["-"], "emit-obj">, HelpText<"Emit native object files">; +def init_only : Flag<["-"], "init-only">, + HelpText<"Only execute frontend initialization">; } // let Group = Action_Group } // let Flags = [CC1Option, FC1Option, NoDriverOption]
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits