clang  5.0.0
Bitrig.h
Go to the documentation of this file.
1 //===--- Bitrig.h - Bitrig ToolChain Implementations ------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_BITRIG_H
11 #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_BITRIG_H
12 
13 #include "Gnu.h"
14 #include "clang/Driver/Driver.h"
15 #include "clang/Driver/ToolChain.h"
16 
17 namespace clang {
18 namespace driver {
19 namespace tools {
20 /// bitrig -- Directly call GNU Binutils assembler and linker
21 namespace bitrig {
22 class LLVM_LIBRARY_VISIBILITY Assembler : public GnuTool {
23 public:
24  Assembler(const ToolChain &TC)
25  : GnuTool("bitrig::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 
35 class LLVM_LIBRARY_VISIBILITY Linker : public GnuTool {
36 public:
37  Linker(const ToolChain &TC) : GnuTool("bitrig::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 bitrig
48 } // end namespace tools
49 
50 namespace toolchains {
51 
52 class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF {
53 public:
54  Bitrig(const Driver &D, const llvm::Triple &Triple,
55  const llvm::opt::ArgList &Args);
56 
57  bool IsMathErrnoDefault() const override { return false; }
58  bool IsObjCNonFragileABIDefault() const override { return true; }
59 
60  CXXStdlibType GetDefaultCXXStdlibType() const override;
61  void addLibStdCxxIncludePaths(
62  const llvm::opt::ArgList &DriverArgs,
63  llvm::opt::ArgStringList &CC1Args) const override;
64  void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
65  llvm::opt::ArgStringList &CmdArgs) const override;
66  unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const override {
67  return 1;
68  }
69 
70 protected:
71  Tool *buildAssembler() const override;
72  Tool *buildLinker() const override;
73 };
74 
75 } // end namespace toolchains
76 } // end namespace driver
77 } // end namespace clang
78 
79 #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_BITRIG_H
bool IsMathErrnoDefault() const override
IsMathErrnoDefault - Does this tool chain use -fmath-errno by default.
Definition: Bitrig.h:57
bool hasIntegratedCPP() const override
Definition: Bitrig.h:27
InputInfo - Wrapper for information about an input source.
Definition: InputInfo.h:23
Driver - Encapsulate logic for constructing compilation processes from a set of gcc-driver-like comma...
Definition: Driver.h:65
bool IsObjCNonFragileABIDefault() const override
IsObjCNonFragileABIDefault - Does this tool chain set -fobjc-nonfragile-abi by default.
Definition: Bitrig.h:58
Assembler(const ToolChain &TC)
Definition: Bitrig.h:24
bool hasIntegratedCPP() const override
Definition: Bitrig.h:39
Base class for all GNU tools that provide the same behavior when it comes to response files support...
Definition: Gnu.h:41
unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const override
GetDefaultStackProtectorLevel - Get the default stack protector level for this tool chain (0=off...
Definition: Bitrig.h:66
Linker(const ToolChain &TC)
Definition: Bitrig.h:37
Tool - Information on a specific compilation tool.
Definition: Tool.h:34
Compilation - A set of tasks to perform for a single driver invocation.
Definition: Compilation.h:34
bool isLinkJob() const override
Definition: Bitrig.h:40
ToolChain - Access to tools for a single platform.
Definition: ToolChain.h:50