clang  10.0.0git
Flang.h
Go to the documentation of this file.
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"
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
bool hasGoodDiagnostics() const override
Does this tool have "good" standardized diagnostics, or should the driver add an additional "command ...
Definition: Flang.h:30
InputInfo - Wrapper for information about an input source.
Definition: InputInfo.h:22
bool hasIntegratedAssembler() const override
Definition: Flang.h:31
bool hasIntegratedCPP() const override
Definition: Flang.h:32
Dataflow Directional Tag Classes.
Tool - Information on a specific compilation tool.
Definition: Tool.h:33
Flang compiler tool.
Definition: Flang.h:25
Compilation - A set of tasks to perform for a single driver invocation.
Definition: Compilation.h:45
bool canEmitIR() const override
Definition: Flang.h:33
ToolChain - Access to tools for a single platform.
Definition: ToolChain.h:88