1 //===--- OpenBSD.cpp - OpenBSD ToolChain Implementations --------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
11 #include "Arch/Mips.h"
12 #include "Arch/Sparc.h"
13 #include "CommonArgs.h"
14 #include "clang/Config/config.h"
15 #include "clang/Driver/Compilation.h"
16 #include "clang/Driver/Options.h"
17 #include "clang/Driver/SanitizerArgs.h"
18 #include "llvm/Option/ArgList.h"
19 #include "llvm/Support/Path.h"
20 #include "llvm/Support/VirtualFileSystem.h"
22 using namespace clang::driver
;
23 using namespace clang::driver::tools
;
24 using namespace clang::driver::toolchains
;
25 using namespace clang
;
26 using namespace llvm::opt
;
28 void openbsd::Assembler::ConstructJob(Compilation
&C
, const JobAction
&JA
,
29 const InputInfo
&Output
,
30 const InputInfoList
&Inputs
,
32 const char *LinkingOutput
) const {
33 const auto &ToolChain
= static_cast<const OpenBSD
&>(getToolChain());
34 const Driver
&D
= ToolChain
.getDriver();
35 const llvm::Triple
&Triple
= ToolChain
.getTriple();
36 ArgStringList CmdArgs
;
38 claimNoWarnArgs(Args
);
40 switch (ToolChain
.getArch()) {
41 case llvm::Triple::x86
:
42 // When building 32-bit code on OpenBSD/amd64, we have to explicitly
43 // instruct as in the base system to assemble 32-bit code.
44 CmdArgs
.push_back("--32");
47 case llvm::Triple::arm
: {
48 StringRef MArch
, MCPU
;
49 arm::getARMArchCPUFromArgs(Args
, MArch
, MCPU
, /*FromAs*/ true);
50 std::string Arch
= arm::getARMTargetCPU(MCPU
, MArch
, Triple
);
51 CmdArgs
.push_back(Args
.MakeArgString("-mcpu=" + Arch
));
55 case llvm::Triple::ppc
:
56 CmdArgs
.push_back("-mppc");
57 CmdArgs
.push_back("-many");
60 case llvm::Triple::sparcv9
: {
61 CmdArgs
.push_back("-64");
62 std::string CPU
= getCPUName(D
, Args
, Triple
);
63 CmdArgs
.push_back(sparc::getSparcAsmModeForCPU(CPU
, Triple
));
64 AddAssemblerKPIC(ToolChain
, Args
, CmdArgs
);
68 case llvm::Triple::mips64
:
69 case llvm::Triple::mips64el
: {
72 mips::getMipsCPUAndABI(Args
, Triple
, CPUName
, ABIName
);
74 CmdArgs
.push_back("-march");
75 CmdArgs
.push_back(CPUName
.data());
77 CmdArgs
.push_back("-mabi");
78 CmdArgs
.push_back(mips::getGnuCompatibleMipsABIName(ABIName
).data());
80 if (Triple
.isLittleEndian())
81 CmdArgs
.push_back("-EL");
83 CmdArgs
.push_back("-EB");
85 AddAssemblerKPIC(ToolChain
, Args
, CmdArgs
);
93 Args
.AddAllArgValues(CmdArgs
, options::OPT_Wa_COMMA
, options::OPT_Xassembler
);
95 CmdArgs
.push_back("-o");
96 CmdArgs
.push_back(Output
.getFilename());
98 for (const auto &II
: Inputs
)
99 CmdArgs
.push_back(II
.getFilename());
101 const char *Exec
= Args
.MakeArgString(ToolChain
.GetProgramPath("as"));
102 C
.addCommand(std::make_unique
<Command
>(JA
, *this,
103 ResponseFileSupport::AtFileCurCP(),
104 Exec
, CmdArgs
, Inputs
, Output
));
107 void openbsd::Linker::ConstructJob(Compilation
&C
, const JobAction
&JA
,
108 const InputInfo
&Output
,
109 const InputInfoList
&Inputs
,
111 const char *LinkingOutput
) const {
112 const auto &ToolChain
= static_cast<const OpenBSD
&>(getToolChain());
113 const Driver
&D
= ToolChain
.getDriver();
114 const llvm::Triple
&Triple
= ToolChain
.getTriple();
115 const llvm::Triple::ArchType Arch
= ToolChain
.getArch();
116 const bool Static
= Args
.hasArg(options::OPT_static
);
117 const bool Shared
= Args
.hasArg(options::OPT_shared
);
118 const bool Profiling
= Args
.hasArg(options::OPT_pg
);
119 const bool Pie
= Args
.hasArg(options::OPT_pie
);
120 const bool Nopie
= Args
.hasArg(options::OPT_no_pie
, options::OPT_nopie
);
121 const bool Relocatable
= Args
.hasArg(options::OPT_r
);
122 ArgStringList CmdArgs
;
124 // Silence warning for "clang -g foo.o -o foo"
125 Args
.ClaimAllArgs(options::OPT_g_Group
);
126 // and "clang -emit-llvm foo.o -o foo"
127 Args
.ClaimAllArgs(options::OPT_emit_llvm
);
128 // and for "clang -w foo.o -o foo". Other warning options are already
129 // handled somewhere else.
130 Args
.ClaimAllArgs(options::OPT_w
);
132 if (!D
.SysRoot
.empty())
133 CmdArgs
.push_back(Args
.MakeArgString("--sysroot=" + D
.SysRoot
));
135 if (Arch
== llvm::Triple::mips64
)
136 CmdArgs
.push_back("-EB");
137 else if (Arch
== llvm::Triple::mips64el
)
138 CmdArgs
.push_back("-EL");
140 if (!Args
.hasArg(options::OPT_nostdlib
) && !Shared
&& !Relocatable
) {
141 CmdArgs
.push_back("-e");
142 CmdArgs
.push_back("__start");
145 CmdArgs
.push_back("--eh-frame-hdr");
147 CmdArgs
.push_back("-Bstatic");
149 if (Args
.hasArg(options::OPT_rdynamic
))
150 CmdArgs
.push_back("-export-dynamic");
152 CmdArgs
.push_back("-shared");
153 } else if (!Relocatable
) {
154 CmdArgs
.push_back("-dynamic-linker");
155 CmdArgs
.push_back("/usr/libexec/ld.so");
160 CmdArgs
.push_back("-pie");
161 if (Nopie
|| Profiling
)
162 CmdArgs
.push_back("-nopie");
164 if (Triple
.isRISCV64()) {
165 CmdArgs
.push_back("-X");
166 if (Args
.hasArg(options::OPT_mno_relax
))
167 CmdArgs
.push_back("--no-relax");
170 assert((Output
.isFilename() || Output
.isNothing()) && "Invalid output.");
171 if (Output
.isFilename()) {
172 CmdArgs
.push_back("-o");
173 CmdArgs
.push_back(Output
.getFilename());
176 if (!Args
.hasArg(options::OPT_nostdlib
, options::OPT_nostartfiles
,
178 const char *crt0
= nullptr;
179 const char *crtbegin
= nullptr;
183 else if (Static
&& !Nopie
)
187 crtbegin
= "crtbegin.o";
189 crtbegin
= "crtbeginS.o";
193 CmdArgs
.push_back(Args
.MakeArgString(ToolChain
.GetFilePath(crt0
)));
194 CmdArgs
.push_back(Args
.MakeArgString(ToolChain
.GetFilePath(crtbegin
)));
197 Args
.AddAllArgs(CmdArgs
, options::OPT_L
);
198 ToolChain
.AddFilePathLibArgs(Args
, CmdArgs
);
199 Args
.addAllArgs(CmdArgs
,
200 {options::OPT_T_Group
, options::OPT_s
, options::OPT_t
});
202 if (D
.isUsingLTO()) {
203 assert(!Inputs
.empty() && "Must have at least one input.");
204 // Find the first filename InputInfo object.
205 auto Input
= llvm::find_if(
206 Inputs
, [](const InputInfo
&II
) -> bool { return II
.isFilename(); });
207 if (Input
== Inputs
.end())
208 // For a very rare case, all of the inputs to the linker are
209 // InputArg. If that happens, just use the first InputInfo.
210 Input
= Inputs
.begin();
212 addLTOOptions(ToolChain
, Args
, CmdArgs
, Output
, *Input
,
213 D
.getLTOMode() == LTOK_Thin
);
216 bool NeedsSanitizerDeps
= addSanitizerRuntimes(ToolChain
, Args
, CmdArgs
);
217 bool NeedsXRayDeps
= addXRayRuntime(ToolChain
, Args
, CmdArgs
);
218 AddLinkerInputs(ToolChain
, Inputs
, Args
, CmdArgs
, JA
);
220 if (!Args
.hasArg(options::OPT_nostdlib
, options::OPT_nodefaultlibs
,
222 // Use the static OpenMP runtime with -static-openmp
223 bool StaticOpenMP
= Args
.hasArg(options::OPT_static_openmp
) && !Static
;
224 addOpenMPRuntime(C
, CmdArgs
, ToolChain
, Args
, StaticOpenMP
);
227 if (ToolChain
.ShouldLinkCXXStdlib(Args
))
228 ToolChain
.AddCXXStdlibLibArgs(Args
, CmdArgs
);
230 CmdArgs
.push_back("-lm_p");
232 CmdArgs
.push_back("-lm");
235 // Silence warnings when linking C code with a C++ '-stdlib' argument.
236 Args
.ClaimAllArgs(options::OPT_stdlib_EQ
);
238 // Additional linker set-up and flags for Fortran. This is required in order
239 // to generate executables. As Fortran runtime depends on the C runtime,
240 // these dependencies need to be listed before the C runtime below (i.e.
242 if (D
.IsFlangMode() &&
243 !Args
.hasArg(options::OPT_nostdlib
, options::OPT_nodefaultlibs
)) {
244 addFortranRuntimeLibraryPath(ToolChain
, Args
, CmdArgs
);
245 addFortranRuntimeLibs(ToolChain
, Args
, CmdArgs
);
247 CmdArgs
.push_back("-lm_p");
249 CmdArgs
.push_back("-lm");
252 if (NeedsSanitizerDeps
) {
253 CmdArgs
.push_back(ToolChain
.getCompilerRTArgString(Args
, "builtins"));
254 linkSanitizerRuntimeDeps(ToolChain
, Args
, CmdArgs
);
257 CmdArgs
.push_back(ToolChain
.getCompilerRTArgString(Args
, "builtins"));
258 linkXRayRuntimeDeps(ToolChain
, Args
, CmdArgs
);
260 // FIXME: For some reason GCC passes -lgcc before adding
261 // the default system libraries. Just mimic this for now.
262 CmdArgs
.push_back("-lcompiler_rt");
264 if (Args
.hasArg(options::OPT_pthread
)) {
265 if (!Shared
&& Profiling
)
266 CmdArgs
.push_back("-lpthread_p");
268 CmdArgs
.push_back("-lpthread");
273 CmdArgs
.push_back("-lc_p");
275 CmdArgs
.push_back("-lc");
278 CmdArgs
.push_back("-lcompiler_rt");
281 if (!Args
.hasArg(options::OPT_nostdlib
, options::OPT_nostartfiles
,
283 const char *crtend
= nullptr;
287 crtend
= "crtendS.o";
289 CmdArgs
.push_back(Args
.MakeArgString(ToolChain
.GetFilePath(crtend
)));
292 ToolChain
.addProfileRTLibs(Args
, CmdArgs
);
294 const char *Exec
= Args
.MakeArgString(ToolChain
.GetLinkerPath());
295 C
.addCommand(std::make_unique
<Command
>(JA
, *this,
296 ResponseFileSupport::AtFileCurCP(),
297 Exec
, CmdArgs
, Inputs
, Output
));
300 SanitizerMask
OpenBSD::getSupportedSanitizers() const {
301 const bool IsX86
= getTriple().getArch() == llvm::Triple::x86
;
302 const bool IsX86_64
= getTriple().getArch() == llvm::Triple::x86_64
;
303 SanitizerMask Res
= ToolChain::getSupportedSanitizers();
304 if (IsX86
|| IsX86_64
) {
305 Res
|= SanitizerKind::Vptr
;
306 Res
|= SanitizerKind::Fuzzer
;
307 Res
|= SanitizerKind::FuzzerNoLink
;
310 Res
|= SanitizerKind::KernelAddress
;
315 /// OpenBSD - OpenBSD tool chain which can call as(1) and ld(1) directly.
317 OpenBSD::OpenBSD(const Driver
&D
, const llvm::Triple
&Triple
,
319 : Generic_ELF(D
, Triple
, Args
) {
320 getFilePaths().push_back(concat(getDriver().SysRoot
, "/usr/lib"));
323 void OpenBSD::AddClangSystemIncludeArgs(
324 const llvm::opt::ArgList
&DriverArgs
,
325 llvm::opt::ArgStringList
&CC1Args
) const {
326 const Driver
&D
= getDriver();
328 if (DriverArgs
.hasArg(clang::driver::options::OPT_nostdinc
))
331 if (!DriverArgs
.hasArg(options::OPT_nobuiltininc
)) {
332 SmallString
<128> Dir(D
.ResourceDir
);
333 llvm::sys::path::append(Dir
, "include");
334 addSystemInclude(DriverArgs
, CC1Args
, Dir
.str());
337 if (DriverArgs
.hasArg(options::OPT_nostdlibinc
))
340 // Check for configure-time C include directories.
341 StringRef
CIncludeDirs(C_INCLUDE_DIRS
);
342 if (CIncludeDirs
!= "") {
343 SmallVector
<StringRef
, 5> dirs
;
344 CIncludeDirs
.split(dirs
, ":");
345 for (StringRef dir
: dirs
) {
347 llvm::sys::path::is_absolute(dir
) ? StringRef(D
.SysRoot
) : "";
348 addExternCSystemInclude(DriverArgs
, CC1Args
, Prefix
+ dir
);
353 addExternCSystemInclude(DriverArgs
, CC1Args
,
354 concat(D
.SysRoot
, "/usr/include"));
357 void OpenBSD::addLibCxxIncludePaths(const llvm::opt::ArgList
&DriverArgs
,
358 llvm::opt::ArgStringList
&CC1Args
) const {
359 addSystemInclude(DriverArgs
, CC1Args
,
360 concat(getDriver().SysRoot
, "/usr/include/c++/v1"));
363 void OpenBSD::AddCXXStdlibLibArgs(const ArgList
&Args
,
364 ArgStringList
&CmdArgs
) const {
365 bool Profiling
= Args
.hasArg(options::OPT_pg
);
367 CmdArgs
.push_back(Profiling
? "-lc++_p" : "-lc++");
368 if (Args
.hasArg(options::OPT_fexperimental_library
))
369 CmdArgs
.push_back("-lc++experimental");
370 CmdArgs
.push_back(Profiling
? "-lc++abi_p" : "-lc++abi");
371 CmdArgs
.push_back(Profiling
? "-lpthread_p" : "-lpthread");
374 std::string
OpenBSD::getCompilerRT(const ArgList
&Args
, StringRef Component
,
375 FileType Type
) const {
376 if (Component
== "builtins") {
377 SmallString
<128> Path(getDriver().SysRoot
);
378 llvm::sys::path::append(Path
, "/usr/lib/libcompiler_rt.a");
379 if (getVFS().exists(Path
))
380 return std::string(Path
);
382 SmallString
<128> P(getDriver().ResourceDir
);
383 std::string CRTBasename
=
384 buildCompilerRTBasename(Args
, Component
, Type
, /*AddArch=*/false);
385 llvm::sys::path::append(P
, "lib", CRTBasename
);
386 // Checks if this is the base system case which uses a different location.
387 if (getVFS().exists(P
))
388 return std::string(P
);
389 return ToolChain::getCompilerRT(Args
, Component
, Type
);
392 Tool
*OpenBSD::buildAssembler() const {
393 return new tools::openbsd::Assembler(*this);
396 Tool
*OpenBSD::buildLinker() const { return new tools::openbsd::Linker(*this); }
398 bool OpenBSD::HasNativeLLVMSupport() const { return true; }
400 ToolChain::UnwindTableLevel
401 OpenBSD::getDefaultUnwindTableLevel(const ArgList
&Args
) const {
403 case llvm::Triple::arm
:
404 return UnwindTableLevel::None
;
406 return UnwindTableLevel::Asynchronous
;