clang 19.0.0git
DragonFly.h
Go to the documentation of this file.
1//===--- DragonFly.h - DragonFly 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_DRAGONFLY_H
10#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_DRAGONFLY_H
11
12#include "Gnu.h"
13#include "clang/Driver/Tool.h"
15
16namespace clang {
17namespace driver {
18namespace tools {
19
20/// Directly call GNU Binutils assembler and linker
21namespace dragonfly {
22class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool {
23public:
25 : Tool("dragonfly::Assembler", "assembler", TC) {}
26
27 bool hasIntegratedCPP() const override { return false; }
28
29 void ConstructJob(Compilation &C, const JobAction &JA,
30 const InputInfo &Output, const InputInfoList &Inputs,
31 const llvm::opt::ArgList &TCArgs,
32 const char *LinkingOutput) const override;
33};
34
35class LLVM_LIBRARY_VISIBILITY Linker final : public Tool {
36public:
37 Linker(const ToolChain &TC) : Tool("dragonfly::Linker", "linker", TC) {}
38
39 bool hasIntegratedCPP() const override { return false; }
40 bool isLinkJob() const override { return true; }
41
42 void ConstructJob(Compilation &C, const JobAction &JA,
43 const InputInfo &Output, const InputInfoList &Inputs,
44 const llvm::opt::ArgList &TCArgs,
45 const char *LinkingOutput) const override;
46};
47} // end namespace dragonfly
48} // end namespace tools
49
50namespace toolchains {
51
52class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
53public:
54 DragonFly(const Driver &D, const llvm::Triple &Triple,
55 const llvm::opt::ArgList &Args);
56
57 bool IsMathErrnoDefault() const override { return false; }
58
59 void
60 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
61 llvm::opt::ArgStringList &CC1Args) const override;
62 void addLibStdCxxIncludePaths(
63 const llvm::opt::ArgList &DriverArgs,
64 llvm::opt::ArgStringList &CC1Args) const override;
65
66protected:
67 Tool *buildAssembler() const override;
68 Tool *buildLinker() const override;
69};
70
71} // end namespace toolchains
72} // end namespace driver
73} // end namespace clang
74
75#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_DRAGONFLY_H
Compilation - A set of tasks to perform for a single driver invocation.
Definition: Compilation.h:45
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:77
InputInfo - Wrapper for information about an input source.
Definition: InputInfo.h:22
ToolChain - Access to tools for a single platform.
Definition: ToolChain.h:92
Tool - Information on a specific compilation tool.
Definition: Tool.h:32
bool IsMathErrnoDefault() const override
IsMathErrnoDefault - Does this tool chain use -fmath-errno by default.
Definition: DragonFly.h:57
bool hasIntegratedCPP() const override
Definition: DragonFly.h:27
bool hasIntegratedCPP() const override
Definition: DragonFly.h:39
bool isLinkJob() const override
Definition: DragonFly.h:40
The JSON file list parser is used to communicate input to InstallAPI.