1 //===--- Flang.h - Flang Tool and ToolChain Implementations ====-*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_FLANG_H 10 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_FLANG_H 11 12 #include "clang/Driver/Tool.h" 13 #include "clang/Driver/Action.h" 14 #include "clang/Driver/Compilation.h" 15 #include "clang/Driver/ToolChain.h" 16 #include "llvm/Option/ArgList.h" 17 #include "llvm/Support/Compiler.h" 18 19 namespace clang { 20 namespace driver { 21 22 namespace tools { 23 24 /// Flang compiler tool. 25 class LLVM_LIBRARY_VISIBILITY Flang : public Tool { 26 public: 27 Flang(const ToolChain &TC); 28 ~Flang() override; 29 30 bool hasGoodDiagnostics() const override { return true; } 31 bool hasIntegratedAssembler() const override { return true; } 32 bool hasIntegratedCPP() const override { return true; } 33 bool canEmitIR() const override { return true; } 34 35 void ConstructJob(Compilation &C, const JobAction &JA, 36 const InputInfo &Output, const InputInfoList &Inputs, 37 const llvm::opt::ArgList &TCArgs, 38 const char *LinkingOutput) const override; 39 }; 40 41 } // end namespace tools 42 43 } // end namespace driver 44 } // end namespace clang 45 46 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_FLANG_H 47