clang 19.0.0git
NetBSD.h
Go to the documentation of this file.
1//===--- NetBSD.h - NetBSD 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_NETBSD_H
10#define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_NETBSD_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 netbsd {
22class LLVM_LIBRARY_VISIBILITY Assembler final : public Tool {
23public:
24 Assembler(const ToolChain &TC) : Tool("netbsd::Assembler", "assembler", TC) {}
25
26 bool hasIntegratedCPP() const override { return false; }
27
28 void ConstructJob(Compilation &C, const JobAction &JA,
29 const InputInfo &Output, const InputInfoList &Inputs,
30 const llvm::opt::ArgList &TCArgs,
31 const char *LinkingOutput) const override;
32};
33
34class LLVM_LIBRARY_VISIBILITY Linker final : public Tool {
35public:
36 Linker(const ToolChain &TC) : Tool("netbsd::Linker", "linker", TC) {}
37
38 bool hasIntegratedCPP() const override { return false; }
39 bool isLinkJob() const override { return true; }
40
41 void ConstructJob(Compilation &C, const JobAction &JA,
42 const InputInfo &Output, const InputInfoList &Inputs,
43 const llvm::opt::ArgList &TCArgs,
44 const char *LinkingOutput) const override;
45};
46} // end namespace netbsd
47} // end namespace tools
48
49namespace toolchains {
50
51class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
52public:
53 NetBSD(const Driver &D, const llvm::Triple &Triple,
54 const llvm::opt::ArgList &Args);
55
56 bool IsMathErrnoDefault() const override { return false; }
57 bool IsObjCNonFragileABIDefault() const override { return true; }
58
59 CXXStdlibType GetDefaultCXXStdlibType() const override;
60
61 void
62 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
63 llvm::opt::ArgStringList &CC1Args) const override;
64 void addLibCxxIncludePaths(
65 const llvm::opt::ArgList &DriverArgs,
66 llvm::opt::ArgStringList &CC1Args) const override;
67 void addLibStdCxxIncludePaths(
68 const llvm::opt::ArgList &DriverArgs,
69 llvm::opt::ArgStringList &CC1Args) const override;
70
71 UnwindTableLevel
72 getDefaultUnwindTableLevel(const llvm::opt::ArgList &Args) const override {
73 return UnwindTableLevel::Asynchronous;
74 }
75
76 llvm::ExceptionHandling GetExceptionModel(
77 const llvm::opt::ArgList &Args) const override;
78
79 SanitizerMask getSupportedSanitizers() const override;
80
81 void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs,
82 llvm::opt::ArgStringList &CC1Args,
83 Action::OffloadKind DeviceOffloadKind) const override;
84
85protected:
86 Tool *buildAssembler() const override;
87 Tool *buildLinker() const override;
88};
89
90} // end namespace toolchains
91} // end namespace driver
92} // end namespace clang
93
94#endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_NETBSD_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
UnwindTableLevel getDefaultUnwindTableLevel(const llvm::opt::ArgList &Args) const override
How detailed should the unwind tables be by default.
Definition: NetBSD.h:72
bool IsObjCNonFragileABIDefault() const override
IsObjCNonFragileABIDefault - Does this tool chain set -fobjc-nonfragile-abi by default.
Definition: NetBSD.h:57
bool IsMathErrnoDefault() const override
IsMathErrnoDefault - Does this tool chain use -fmath-errno by default.
Definition: NetBSD.h:56
Assembler(const ToolChain &TC)
Definition: NetBSD.h:24
bool hasIntegratedCPP() const override
Definition: NetBSD.h:26
Linker(const ToolChain &TC)
Definition: NetBSD.h:36
bool isLinkJob() const override
Definition: NetBSD.h:39
bool hasIntegratedCPP() const override
Definition: NetBSD.h:38
The JSON file list parser is used to communicate input to InstallAPI.