1//===--- Darwin.cpp - Darwin 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#include "Darwin.h"
10#include "Arch/AArch64.h"
11#include "Arch/ARM.h"
12#include "CommonArgs.h"
13#include "clang/Basic/AlignedAllocation.h"
14#include "clang/Basic/ObjCRuntime.h"
15#include "clang/Config/config.h"
16#include "clang/Driver/Compilation.h"
17#include "clang/Driver/Driver.h"
18#include "clang/Driver/DriverDiagnostic.h"
19#include "clang/Driver/Options.h"
20#include "clang/Driver/SanitizerArgs.h"
21#include "llvm/ADT/StringSwitch.h"
22#include "llvm/Option/ArgList.h"
23#include "llvm/ProfileData/InstrProf.h"
24#include "llvm/Support/Path.h"
25#include "llvm/Support/ScopedPrinter.h"
26#include "llvm/Support/Threading.h"
27#include "llvm/Support/VirtualFileSystem.h"
28#include "llvm/TargetParser/TargetParser.h"
29#include "llvm/TargetParser/Triple.h"
30#include <cstdlib> // ::getenv
31
32using namespace clang::driver;
33using namespace clang::driver::tools;
34using namespace clang::driver::toolchains;
35using namespace clang;
36using namespace llvm::opt;
37
38static VersionTuple minimumMacCatalystDeploymentTarget() {
39 return VersionTuple(13, 1);
40}
41
42llvm::Triple::ArchType darwin::getArchTypeForMachOArchName(StringRef Str) {
43 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
44 // archs which Darwin doesn't use.
45
46 // The matching this routine does is fairly pointless, since it is neither the
47 // complete architecture list, nor a reasonable subset. The problem is that
48 // historically the driver accepts this and also ties its -march=
49 // handling to the architecture name, so we need to be careful before removing
50 // support for it.
51
52 // This code must be kept in sync with Clang's Darwin specific argument
53 // translation.
54
55 return llvm::StringSwitch<llvm::Triple::ArchType>(Str)
56 .Cases(S0: "i386", S1: "i486", S2: "i486SX", S3: "i586", S4: "i686", Value: llvm::Triple::x86)
57 .Cases(S0: "pentium", S1: "pentpro", S2: "pentIIm3", S3: "pentIIm5", S4: "pentium4",
58 Value: llvm::Triple::x86)
59 .Cases(S0: "x86_64", S1: "x86_64h", Value: llvm::Triple::x86_64)
60 // This is derived from the driver.
61 .Cases(S0: "arm", S1: "armv4t", S2: "armv5", S3: "armv6", S4: "armv6m", Value: llvm::Triple::arm)
62 .Cases(S0: "armv7", S1: "armv7em", S2: "armv7k", S3: "armv7m", Value: llvm::Triple::arm)
63 .Cases(S0: "armv7s", S1: "xscale", Value: llvm::Triple::arm)
64 .Cases(S0: "arm64", S1: "arm64e", Value: llvm::Triple::aarch64)
65 .Case(S: "arm64_32", Value: llvm::Triple::aarch64_32)
66 .Case(S: "r600", Value: llvm::Triple::r600)
67 .Case(S: "amdgcn", Value: llvm::Triple::amdgcn)
68 .Case(S: "nvptx", Value: llvm::Triple::nvptx)
69 .Case(S: "nvptx64", Value: llvm::Triple::nvptx64)
70 .Case(S: "amdil", Value: llvm::Triple::amdil)
71 .Case(S: "spir", Value: llvm::Triple::spir)
72 .Default(Value: llvm::Triple::UnknownArch);
73}
74
75void darwin::setTripleTypeForMachOArchName(llvm::Triple &T, StringRef Str,
76 const ArgList &Args) {
77 const llvm::Triple::ArchType Arch = getArchTypeForMachOArchName(Str);
78 llvm::ARM::ArchKind ArchKind = llvm::ARM::parseArch(Arch: Str);
79 T.setArch(Kind: Arch);
80 if (Arch != llvm::Triple::UnknownArch)
81 T.setArchName(Str);
82
83 if (ArchKind == llvm::ARM::ArchKind::ARMV6M ||
84 ArchKind == llvm::ARM::ArchKind::ARMV7M ||
85 ArchKind == llvm::ARM::ArchKind::ARMV7EM) {
86 // Don't reject these -version-min= if we have the appropriate triple.
87 if (T.getOS() == llvm::Triple::IOS)
88 for (Arg *A : Args.filtered(options::OPT_mios_version_min_EQ))
89 A->ignoreTargetSpecific();
90 if (T.getOS() == llvm::Triple::WatchOS)
91 for (Arg *A : Args.filtered(options::OPT_mwatchos_version_min_EQ))
92 A->ignoreTargetSpecific();
93 if (T.getOS() == llvm::Triple::TvOS)
94 for (Arg *A : Args.filtered(options::OPT_mtvos_version_min_EQ))
95 A->ignoreTargetSpecific();
96
97 T.setOS(llvm::Triple::UnknownOS);
98 T.setObjectFormat(llvm::Triple::MachO);
99 }
100}
101
102void darwin::Assembler::ConstructJob(Compilation &C, const JobAction &JA,
103 const InputInfo &Output,
104 const InputInfoList &Inputs,
105 const ArgList &Args,
106 const char *LinkingOutput) const {
107 const llvm::Triple &T(getToolChain().getTriple());
108
109 ArgStringList CmdArgs;
110
111 assert(Inputs.size() == 1 && "Unexpected number of inputs.");
112 const InputInfo &Input = Inputs[0];
113
114 // Determine the original source input.
115 const Action *SourceAction = &JA;
116 while (SourceAction->getKind() != Action::InputClass) {
117 assert(!SourceAction->getInputs().empty() && "unexpected root action!");
118 SourceAction = SourceAction->getInputs()[0];
119 }
120
121 // If -fno-integrated-as is used add -Q to the darwin assembler driver to make
122 // sure it runs its system assembler not clang's integrated assembler.
123 // Applicable to darwin11+ and Xcode 4+. darwin<10 lacked integrated-as.
124 // FIXME: at run-time detect assembler capabilities or rely on version
125 // information forwarded by -target-assembler-version.
126 if (Args.hasArg(options::OPT_fno_integrated_as)) {
127 if (!(T.isMacOSX() && T.isMacOSXVersionLT(Major: 10, Minor: 7)))
128 CmdArgs.push_back(Elt: "-Q");
129 }
130
131 // Forward -g, assuming we are dealing with an actual assembly file.
132 if (SourceAction->getType() == types::TY_Asm ||
133 SourceAction->getType() == types::TY_PP_Asm) {
134 if (Args.hasArg(options::OPT_gstabs))
135 CmdArgs.push_back(Elt: "--gstabs");
136 else if (Args.hasArg(options::OPT_g_Group))
137 CmdArgs.push_back(Elt: "-g");
138 }
139
140 // Derived from asm spec.
141 AddMachOArch(Args, CmdArgs);
142
143 // Use -force_cpusubtype_ALL on x86 by default.
144 if (T.isX86() || Args.hasArg(options::OPT_force__cpusubtype__ALL))
145 CmdArgs.push_back(Elt: "-force_cpusubtype_ALL");
146
147 if (getToolChain().getArch() != llvm::Triple::x86_64 &&
148 (((Args.hasArg(options::OPT_mkernel) ||
149 Args.hasArg(options::OPT_fapple_kext)) &&
150 getMachOToolChain().isKernelStatic()) ||
151 Args.hasArg(options::OPT_static)))
152 CmdArgs.push_back(Elt: "-static");
153
154 Args.AddAllArgValues(Output&: CmdArgs, options::Id0: OPT_Wa_COMMA, options::Id1: OPT_Xassembler);
155
156 assert(Output.isFilename() && "Unexpected lipo output.");
157 CmdArgs.push_back(Elt: "-o");
158 CmdArgs.push_back(Elt: Output.getFilename());
159
160 assert(Input.isFilename() && "Invalid input.");
161 CmdArgs.push_back(Elt: Input.getFilename());
162
163 // asm_final spec is empty.
164
165 const char *Exec = Args.MakeArgString(Str: getToolChain().GetProgramPath(Name: "as"));
166 C.addCommand(C: std::make_unique<Command>(args: JA, args: *this, args: ResponseFileSupport::None(),
167 args&: Exec, args&: CmdArgs, args: Inputs, args: Output));
168}
169
170void darwin::MachOTool::anchor() {}
171
172void darwin::MachOTool::AddMachOArch(const ArgList &Args,
173 ArgStringList &CmdArgs) const {
174 StringRef ArchName = getMachOToolChain().getMachOArchName(Args);
175
176 // Derived from darwin_arch spec.
177 CmdArgs.push_back(Elt: "-arch");
178 CmdArgs.push_back(Elt: Args.MakeArgString(Str: ArchName));
179
180 // FIXME: Is this needed anymore?
181 if (ArchName == "arm")
182 CmdArgs.push_back(Elt: "-force_cpusubtype_ALL");
183}
184
185bool darwin::Linker::NeedsTempPath(const InputInfoList &Inputs) const {
186 // We only need to generate a temp path for LTO if we aren't compiling object
187 // files. When compiling source files, we run 'dsymutil' after linking. We
188 // don't run 'dsymutil' when compiling object files.
189 for (const auto &Input : Inputs)
190 if (Input.getType() != types::TY_Object)
191 return true;
192
193 return false;
194}
195
196/// Pass -no_deduplicate to ld64 under certain conditions:
197///
198/// - Either -O0 or -O1 is explicitly specified
199/// - No -O option is specified *and* this is a compile+link (implicit -O0)
200///
201/// Also do *not* add -no_deduplicate when no -O option is specified and this
202/// is just a link (we can't imply -O0)
203static bool shouldLinkerNotDedup(bool IsLinkerOnlyAction, const ArgList &Args) {
204 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
205 if (A->getOption().matches(options::ID: OPT_O0))
206 return true;
207 if (A->getOption().matches(options::ID: OPT_O))
208 return llvm::StringSwitch<bool>(A->getValue())
209 .Case(S: "1", Value: true)
210 .Default(Value: false);
211 return false; // OPT_Ofast & OPT_O4
212 }
213
214 if (!IsLinkerOnlyAction) // Implicit -O0 for compile+linker only.
215 return true;
216 return false;
217}
218
219void darwin::Linker::AddLinkArgs(Compilation &C, const ArgList &Args,
220 ArgStringList &CmdArgs,
221 const InputInfoList &Inputs,
222 VersionTuple Version, bool LinkerIsLLD,
223 bool UsePlatformVersion) const {
224 const Driver &D = getToolChain().getDriver();
225 const toolchains::MachO &MachOTC = getMachOToolChain();
226
227 // Newer linkers support -demangle. Pass it if supported and not disabled by
228 // the user.
229 if ((Version >= VersionTuple(100) || LinkerIsLLD) &&
230 !Args.hasArg(options::OPT_Z_Xlinker__no_demangle))
231 CmdArgs.push_back(Elt: "-demangle");
232
233 if (Args.hasArg(options::OPT_rdynamic) &&
234 (Version >= VersionTuple(137) || LinkerIsLLD))
235 CmdArgs.push_back(Elt: "-export_dynamic");
236
237 // If we are using App Extension restrictions, pass a flag to the linker
238 // telling it that the compiled code has been audited.
239 if (Args.hasFlag(options::OPT_fapplication_extension,
240 options::OPT_fno_application_extension, false))
241 CmdArgs.push_back(Elt: "-application_extension");
242
243 if (D.isUsingLTO() && (Version >= VersionTuple(116) || LinkerIsLLD) &&
244 NeedsTempPath(Inputs)) {
245 std::string TmpPathName;
246 if (D.getLTOMode() == LTOK_Full) {
247 // If we are using full LTO, then automatically create a temporary file
248 // path for the linker to use, so that it's lifetime will extend past a
249 // possible dsymutil step.
250 TmpPathName =
251 D.GetTemporaryPath(Prefix: "cc", Suffix: types::getTypeTempSuffix(Id: types::TY_Object));
252 } else if (D.getLTOMode() == LTOK_Thin)
253 // If we are using thin LTO, then create a directory instead.
254 TmpPathName = D.GetTemporaryDirectory(Prefix: "thinlto");
255
256 if (!TmpPathName.empty()) {
257 auto *TmpPath = C.getArgs().MakeArgString(Str: TmpPathName);
258 C.addTempFile(Name: TmpPath);
259 CmdArgs.push_back(Elt: "-object_path_lto");
260 CmdArgs.push_back(Elt: TmpPath);
261 }
262 }
263
264 // Use -lto_library option to specify the libLTO.dylib path. Try to find
265 // it in clang installed libraries. ld64 will only look at this argument
266 // when it actually uses LTO, so libLTO.dylib only needs to exist at link
267 // time if ld64 decides that it needs to use LTO.
268 // Since this is passed unconditionally, ld64 will never look for libLTO.dylib
269 // next to it. That's ok since ld64 using a libLTO.dylib not matching the
270 // clang version won't work anyways.
271 // lld is built at the same revision as clang and statically links in
272 // LLVM libraries, so it doesn't need libLTO.dylib.
273 if (Version >= VersionTuple(133) && !LinkerIsLLD) {
274 // Search for libLTO in <InstalledDir>/../lib/libLTO.dylib
275 StringRef P = llvm::sys::path::parent_path(path: D.Dir);
276 SmallString<128> LibLTOPath(P);
277 llvm::sys::path::append(path&: LibLTOPath, a: "lib");
278 llvm::sys::path::append(path&: LibLTOPath, a: "libLTO.dylib");
279 CmdArgs.push_back(Elt: "-lto_library");
280 CmdArgs.push_back(Elt: C.getArgs().MakeArgString(Str: LibLTOPath));
281 }
282
283 // ld64 version 262 and above runs the deduplicate pass by default.
284 // FIXME: lld doesn't dedup by default. Should we pass `--icf=safe`
285 // if `!shouldLinkerNotDedup()` if LinkerIsLLD here?
286 if (Version >= VersionTuple(262) &&
287 shouldLinkerNotDedup(IsLinkerOnlyAction: C.getJobs().empty(), Args))
288 CmdArgs.push_back(Elt: "-no_deduplicate");
289
290 // Derived from the "link" spec.
291 Args.AddAllArgs(Output&: CmdArgs, options::Id0: OPT_static);
292 if (!Args.hasArg(options::OPT_static))
293 CmdArgs.push_back(Elt: "-dynamic");
294 if (Args.hasArg(options::OPT_fgnu_runtime)) {
295 // FIXME: gcc replaces -lobjc in forward args with -lobjc-gnu
296 // here. How do we wish to handle such things?
297 }
298
299 if (!Args.hasArg(options::OPT_dynamiclib)) {
300 AddMachOArch(Args, CmdArgs);
301 // FIXME: Why do this only on this path?
302 Args.AddLastArg(CmdArgs, options::OPT_force__cpusubtype__ALL);
303
304 Args.AddLastArg(CmdArgs, options::OPT_bundle);
305 Args.AddAllArgs(Output&: CmdArgs, options::Id0: OPT_bundle__loader);
306 Args.AddAllArgs(Output&: CmdArgs, options::Id0: OPT_client__name);
307
308 Arg *A;
309 if ((A = Args.getLastArg(options::OPT_compatibility__version)) ||
310 (A = Args.getLastArg(options::OPT_current__version)) ||
311 (A = Args.getLastArg(options::OPT_install__name)))
312 D.Diag(diag::DiagID: err_drv_argument_only_allowed_with) << A->getAsString(Args)
313 << "-dynamiclib";
314
315 Args.AddLastArg(CmdArgs, options::OPT_force__flat__namespace);
316 Args.AddLastArg(CmdArgs, options::OPT_keep__private__externs);
317 Args.AddLastArg(CmdArgs, options::OPT_private__bundle);
318 } else {
319 CmdArgs.push_back(Elt: "-dylib");
320
321 Arg *A;
322 if ((A = Args.getLastArg(options::OPT_bundle)) ||
323 (A = Args.getLastArg(options::OPT_bundle__loader)) ||
324 (A = Args.getLastArg(options::OPT_client__name)) ||
325 (A = Args.getLastArg(options::OPT_force__flat__namespace)) ||
326 (A = Args.getLastArg(options::OPT_keep__private__externs)) ||
327 (A = Args.getLastArg(options::OPT_private__bundle)))
328 D.Diag(diag::DiagID: err_drv_argument_not_allowed_with) << A->getAsString(Args)
329 << "-dynamiclib";
330
331 Args.AddAllArgsTranslated(Output&: CmdArgs, options::Id0: OPT_compatibility__version,
332 Translation: "-dylib_compatibility_version");
333 Args.AddAllArgsTranslated(Output&: CmdArgs, options::Id0: OPT_current__version,
334 Translation: "-dylib_current_version");
335
336 AddMachOArch(Args, CmdArgs);
337
338 Args.AddAllArgsTranslated(Output&: CmdArgs, options::Id0: OPT_install__name,
339 Translation: "-dylib_install_name");
340 }
341
342 Args.AddLastArg(CmdArgs, options::OPT_all__load);
343 Args.AddAllArgs(Output&: CmdArgs, options::Id0: OPT_allowable__client);
344 Args.AddLastArg(CmdArgs, options::OPT_bind__at__load);
345 if (MachOTC.isTargetIOSBased())
346 Args.AddLastArg(CmdArgs, options::OPT_arch__errors__fatal);
347 Args.AddLastArg(CmdArgs, options::OPT_dead__strip);
348 Args.AddLastArg(CmdArgs, options::OPT_no__dead__strip__inits__and__terms);
349 Args.AddAllArgs(CmdArgs, options::OPT_dylib__file);
350 Args.AddLastArg(CmdArgs, options::OPT_dynamic);
351 Args.AddAllArgs(CmdArgs, options::OPT_exported__symbols__list);
352 Args.AddLastArg(CmdArgs, options::OPT_flat__namespace);
353 Args.AddAllArgs(CmdArgs, options::OPT_force__load);
354 Args.AddAllArgs(CmdArgs, options::OPT_headerpad__max__install__names);
355 Args.AddAllArgs(CmdArgs, options::OPT_image__base);
356 Args.AddAllArgs(CmdArgs, options::OPT_init);
357
358 // Add the deployment target.
359 if (Version >= VersionTuple(520) || LinkerIsLLD || UsePlatformVersion)
360 MachOTC.addPlatformVersionArgs(Args, CmdArgs);
361 else
362 MachOTC.addMinVersionArgs(Args, CmdArgs);
363
364 Args.AddLastArg(CmdArgs, options::OPT_nomultidefs);
365 Args.AddLastArg(CmdArgs, options::OPT_multi__module);
366 Args.AddLastArg(CmdArgs, options::OPT_single__module);
367 Args.AddAllArgs(CmdArgs, options::OPT_multiply__defined);
368 Args.AddAllArgs(CmdArgs, options::OPT_multiply__defined__unused);
369
370 if (const Arg *A =
371 Args.getLastArg(options::OPT_fpie, options::OPT_fPIE,
372 options::OPT_fno_pie, options::OPT_fno_PIE)) {
373 if (A->getOption().matches(options::OPT_fpie) ||
374 A->getOption().matches(options::OPT_fPIE))
375 CmdArgs.push_back(Elt: "-pie");
376 else
377 CmdArgs.push_back(Elt: "-no_pie");
378 }
379
380 // for embed-bitcode, use -bitcode_bundle in linker command
381 if (C.getDriver().embedBitcodeEnabled()) {
382 // Check if the toolchain supports bitcode build flow.
383 if (MachOTC.SupportsEmbeddedBitcode()) {
384 CmdArgs.push_back(Elt: "-bitcode_bundle");
385 // FIXME: Pass this if LinkerIsLLD too, once it implements this flag.
386 if (C.getDriver().embedBitcodeMarkerOnly() &&
387 Version >= VersionTuple(278)) {
388 CmdArgs.push_back(Elt: "-bitcode_process_mode");
389 CmdArgs.push_back(Elt: "marker");
390 }
391 } else
392 D.Diag(diag::err_drv_bitcode_unsupported_on_toolchain);
393 }
394
395 // If GlobalISel is enabled, pass it through to LLVM.
396 if (Arg *A = Args.getLastArg(options::OPT_fglobal_isel,
397 options::OPT_fno_global_isel)) {
398 if (A->getOption().matches(options::OPT_fglobal_isel)) {
399 CmdArgs.push_back(Elt: "-mllvm");
400 CmdArgs.push_back(Elt: "-global-isel");
401 // Disable abort and fall back to SDAG silently.
402 CmdArgs.push_back(Elt: "-mllvm");
403 CmdArgs.push_back(Elt: "-global-isel-abort=0");
404 }
405 }
406
407 if (Args.hasArg(options::OPT_mkernel) ||
408 Args.hasArg(options::OPT_fapple_kext) ||
409 Args.hasArg(options::OPT_ffreestanding)) {
410 CmdArgs.push_back(Elt: "-mllvm");
411 CmdArgs.push_back(Elt: "-disable-atexit-based-global-dtor-lowering");
412 }
413
414 Args.AddLastArg(CmdArgs, options::OPT_prebind);
415 Args.AddLastArg(CmdArgs, options::OPT_noprebind);
416 Args.AddLastArg(CmdArgs, options::OPT_nofixprebinding);
417 Args.AddLastArg(CmdArgs, options::OPT_prebind__all__twolevel__modules);
418 Args.AddLastArg(CmdArgs, options::OPT_read__only__relocs);
419 Args.AddAllArgs(CmdArgs, options::OPT_sectcreate);
420 Args.AddAllArgs(CmdArgs, options::OPT_sectorder);
421 Args.AddAllArgs(CmdArgs, options::OPT_seg1addr);
422 Args.AddAllArgs(CmdArgs, options::OPT_segprot);
423 Args.AddAllArgs(CmdArgs, options::OPT_segaddr);
424 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__only__addr);
425 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__write__addr);
426 Args.AddAllArgs(CmdArgs, options::OPT_seg__addr__table);
427 Args.AddAllArgs(CmdArgs, options::OPT_seg__addr__table__filename);
428 Args.AddAllArgs(CmdArgs, options::OPT_sub__library);
429 Args.AddAllArgs(CmdArgs, options::OPT_sub__umbrella);
430
431 // Give --sysroot= preference, over the Apple specific behavior to also use
432 // --isysroot as the syslibroot.
433 StringRef sysroot = C.getSysRoot();
434 if (sysroot != "") {
435 CmdArgs.push_back(Elt: "-syslibroot");
436 CmdArgs.push_back(Elt: C.getArgs().MakeArgString(Str: sysroot));
437 } else if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
438 CmdArgs.push_back(Elt: "-syslibroot");
439 CmdArgs.push_back(Elt: A->getValue());
440 }
441
442 Args.AddLastArg(CmdArgs, options::OPT_twolevel__namespace);
443 Args.AddLastArg(CmdArgs, options::OPT_twolevel__namespace__hints);
444 Args.AddAllArgs(CmdArgs, options::OPT_umbrella);
445 Args.AddAllArgs(CmdArgs, options::OPT_undefined);
446 Args.AddAllArgs(CmdArgs, options::OPT_unexported__symbols__list);
447 Args.AddAllArgs(CmdArgs, options::OPT_weak__reference__mismatches);
448 Args.AddLastArg(CmdArgs, options::OPT_X_Flag);
449 Args.AddAllArgs(CmdArgs, options::OPT_y);
450 Args.AddLastArg(CmdArgs, options::OPT_w);
451 Args.AddAllArgs(CmdArgs, options::OPT_pagezero__size);
452 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__);
453 Args.AddLastArg(CmdArgs, options::OPT_seglinkedit);
454 Args.AddLastArg(CmdArgs, options::OPT_noseglinkedit);
455 Args.AddAllArgs(CmdArgs, options::OPT_sectalign);
456 Args.AddAllArgs(CmdArgs, options::OPT_sectobjectsymbols);
457 Args.AddAllArgs(CmdArgs, options::OPT_segcreate);
458 Args.AddLastArg(CmdArgs, options::OPT_why_load);
459 Args.AddLastArg(CmdArgs, options::OPT_whatsloaded);
460 Args.AddAllArgs(CmdArgs, options::OPT_dylinker__install__name);
461 Args.AddLastArg(CmdArgs, options::OPT_dylinker);
462 Args.AddLastArg(CmdArgs, options::OPT_Mach);
463
464 if (LinkerIsLLD) {
465 if (auto *CSPGOGenerateArg = getLastCSProfileGenerateArg(Args)) {
466 SmallString<128> Path(CSPGOGenerateArg->getNumValues() == 0
467 ? ""
468 : CSPGOGenerateArg->getValue());
469 llvm::sys::path::append(path&: Path, a: "default_%m.profraw");
470 CmdArgs.push_back(Elt: "--cs-profile-generate");
471 CmdArgs.push_back(Elt: Args.MakeArgString(Str: Twine("--cs-profile-path=") + Path));
472 } else if (auto *ProfileUseArg = getLastProfileUseArg(Args)) {
473 SmallString<128> Path(
474 ProfileUseArg->getNumValues() == 0 ? "" : ProfileUseArg->getValue());
475 if (Path.empty() || llvm::sys::fs::is_directory(Path))
476 llvm::sys::path::append(path&: Path, a: "default.profdata");
477 CmdArgs.push_back(Elt: Args.MakeArgString(Str: Twine("--cs-profile-path=") + Path));
478 }
479 }
480}
481
482/// Determine whether we are linking the ObjC runtime.
483static bool isObjCRuntimeLinked(const ArgList &Args) {
484 if (isObjCAutoRefCount(Args)) {
485 Args.ClaimAllArgs(options::OPT_fobjc_link_runtime);
486 return true;
487 }
488 return Args.hasArg(options::OPT_fobjc_link_runtime);
489}
490
491static bool checkRemarksOptions(const Driver &D, const ArgList &Args,
492 const llvm::Triple &Triple) {
493 // When enabling remarks, we need to error if:
494 // * The remark file is specified but we're targeting multiple architectures,
495 // which means more than one remark file is being generated.
496 bool hasMultipleInvocations =
497 Args.getAllArgValues(options::OPT_arch).size() > 1;
498 bool hasExplicitOutputFile =
499 Args.getLastArg(options::OPT_foptimization_record_file_EQ);
500 if (hasMultipleInvocations && hasExplicitOutputFile) {
501 D.Diag(diag::err_drv_invalid_output_with_multiple_archs)
502 << "-foptimization-record-file";
503 return false;
504 }
505 return true;
506}
507
508static void renderRemarksOptions(const ArgList &Args, ArgStringList &CmdArgs,
509 const llvm::Triple &Triple,
510 const InputInfo &Output, const JobAction &JA) {
511 StringRef Format = "yaml";
512 if (const Arg *A = Args.getLastArg(options::OPT_fsave_optimization_record_EQ))
513 Format = A->getValue();
514
515 CmdArgs.push_back(Elt: "-mllvm");
516 CmdArgs.push_back(Elt: "-lto-pass-remarks-output");
517 CmdArgs.push_back(Elt: "-mllvm");
518
519 const Arg *A = Args.getLastArg(options::OPT_foptimization_record_file_EQ);
520 if (A) {
521 CmdArgs.push_back(Elt: A->getValue());
522 } else {
523 assert(Output.isFilename() && "Unexpected ld output.");
524 SmallString<128> F;
525 F = Output.getFilename();
526 F += ".opt.";
527 F += Format;
528
529 CmdArgs.push_back(Elt: Args.MakeArgString(Str: F));
530 }
531
532 if (const Arg *A =
533 Args.getLastArg(options::OPT_foptimization_record_passes_EQ)) {
534 CmdArgs.push_back(Elt: "-mllvm");
535 std::string Passes =
536 std::string("-lto-pass-remarks-filter=") + A->getValue();
537 CmdArgs.push_back(Elt: Args.MakeArgString(Str: Passes));
538 }
539
540 if (!Format.empty()) {
541 CmdArgs.push_back(Elt: "-mllvm");
542 Twine FormatArg = Twine("-lto-pass-remarks-format=") + Format;
543 CmdArgs.push_back(Elt: Args.MakeArgString(Str: FormatArg));
544 }
545
546 if (getLastProfileUseArg(Args)) {
547 CmdArgs.push_back(Elt: "-mllvm");
548 CmdArgs.push_back(Elt: "-lto-pass-remarks-with-hotness");
549
550 if (const Arg *A =
551 Args.getLastArg(options::OPT_fdiagnostics_hotness_threshold_EQ)) {
552 CmdArgs.push_back(Elt: "-mllvm");
553 std::string Opt =
554 std::string("-lto-pass-remarks-hotness-threshold=") + A->getValue();
555 CmdArgs.push_back(Elt: Args.MakeArgString(Str: Opt));
556 }
557 }
558}
559
560static void AppendPlatformPrefix(SmallString<128> &Path, const llvm::Triple &T);
561
562void darwin::Linker::ConstructJob(Compilation &C, const JobAction &JA,
563 const InputInfo &Output,
564 const InputInfoList &Inputs,
565 const ArgList &Args,
566 const char *LinkingOutput) const {
567 assert(Output.getType() == types::TY_Image && "Invalid linker output type.");
568
569 // If the number of arguments surpasses the system limits, we will encode the
570 // input files in a separate file, shortening the command line. To this end,
571 // build a list of input file names that can be passed via a file with the
572 // -filelist linker option.
573 llvm::opt::ArgStringList InputFileList;
574
575 // The logic here is derived from gcc's behavior; most of which
576 // comes from specs (starting with link_command). Consult gcc for
577 // more information.
578 ArgStringList CmdArgs;
579
580 /// Hack(tm) to ignore linking errors when we are doing ARC migration.
581 if (Args.hasArg(options::OPT_ccc_arcmt_check,
582 options::OPT_ccc_arcmt_migrate)) {
583 for (const auto &Arg : Args)
584 Arg->claim();
585 const char *Exec =
586 Args.MakeArgString(Str: getToolChain().GetProgramPath(Name: "touch"));
587 CmdArgs.push_back(Elt: Output.getFilename());
588 C.addCommand(C: std::make_unique<Command>(args: JA, args: *this,
589 args: ResponseFileSupport::None(), args&: Exec,
590 args&: CmdArgs, args: std::nullopt, args: Output));
591 return;
592 }
593
594 VersionTuple Version = getMachOToolChain().getLinkerVersion(Args);
595
596 bool LinkerIsLLD;
597 const char *Exec =
598 Args.MakeArgString(Str: getToolChain().GetLinkerPath(LinkerIsLLD: &LinkerIsLLD));
599
600 // xrOS always uses -platform-version.
601 bool UsePlatformVersion = getToolChain().getTriple().isXROS();
602
603 // I'm not sure why this particular decomposition exists in gcc, but
604 // we follow suite for ease of comparison.
605 AddLinkArgs(C, Args, CmdArgs, Inputs, Version, LinkerIsLLD,
606 UsePlatformVersion);
607
608 if (willEmitRemarks(Args) &&
609 checkRemarksOptions(D: getToolChain().getDriver(), Args,
610 Triple: getToolChain().getTriple()))
611 renderRemarksOptions(Args, CmdArgs, Triple: getToolChain().getTriple(), Output, JA);
612
613 // Propagate the -moutline flag to the linker in LTO.
614 if (Arg *A =
615 Args.getLastArg(options::OPT_moutline, options::OPT_mno_outline)) {
616 if (A->getOption().matches(options::OPT_moutline)) {
617 if (getMachOToolChain().getMachOArchName(Args) == "arm64") {
618 CmdArgs.push_back(Elt: "-mllvm");
619 CmdArgs.push_back(Elt: "-enable-machine-outliner");
620 }
621 } else {
622 // Disable all outlining behaviour if we have mno-outline. We need to do
623 // this explicitly, because targets which support default outlining will
624 // try to do work if we don't.
625 CmdArgs.push_back(Elt: "-mllvm");
626 CmdArgs.push_back(Elt: "-enable-machine-outliner=never");
627 }
628 }
629
630 // Outline from linkonceodr functions by default in LTO, whenever the outliner
631 // is enabled. Note that the target may enable the machine outliner
632 // independently of -moutline.
633 CmdArgs.push_back(Elt: "-mllvm");
634 CmdArgs.push_back(Elt: "-enable-linkonceodr-outlining");
635
636 // Setup statistics file output.
637 SmallString<128> StatsFile =
638 getStatsFileName(Args, Output, Input: Inputs[0], D: getToolChain().getDriver());
639 if (!StatsFile.empty()) {
640 CmdArgs.push_back(Elt: "-mllvm");
641 CmdArgs.push_back(Elt: Args.MakeArgString(Str: "-lto-stats-file=" + StatsFile.str()));
642 }
643
644 // It seems that the 'e' option is completely ignored for dynamic executables
645 // (the default), and with static executables, the last one wins, as expected.
646 Args.addAllArgs(CmdArgs,
647 {options::OPT_d_Flag, options::OPT_s, options::OPT_t,
648 options::OPT_Z_Flag, options::OPT_u_Group, options::OPT_r});
649
650 // Forward -ObjC when either -ObjC or -ObjC++ is used, to force loading
651 // members of static archive libraries which implement Objective-C classes or
652 // categories.
653 if (Args.hasArg(options::OPT_ObjC) || Args.hasArg(options::OPT_ObjCXX))
654 CmdArgs.push_back(Elt: "-ObjC");
655
656 CmdArgs.push_back(Elt: "-o");
657 CmdArgs.push_back(Elt: Output.getFilename());
658
659 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles))
660 getMachOToolChain().addStartObjectFileArgs(Args, CmdArgs);
661
662 Args.AddAllArgs(CmdArgs, options::OPT_L);
663
664 AddLinkerInputs(TC: getToolChain(), Inputs, Args, CmdArgs, JA);
665 // Build the input file for -filelist (list of linker input files) in case we
666 // need it later
667 for (const auto &II : Inputs) {
668 if (!II.isFilename()) {
669 // This is a linker input argument.
670 // We cannot mix input arguments and file names in a -filelist input, thus
671 // we prematurely stop our list (remaining files shall be passed as
672 // arguments).
673 if (InputFileList.size() > 0)
674 break;
675
676 continue;
677 }
678
679 InputFileList.push_back(Elt: II.getFilename());
680 }
681
682 // Additional linker set-up and flags for Fortran. This is required in order
683 // to generate executables.
684 if (getToolChain().getDriver().IsFlangMode()) {
685 addFortranRuntimeLibraryPath(TC: getToolChain(), Args, CmdArgs);
686 addFortranRuntimeLibs(TC: getToolChain(), Args, CmdArgs);
687 }
688
689 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs))
690 addOpenMPRuntime(CmdArgs, TC: getToolChain(), Args);
691
692 if (isObjCRuntimeLinked(Args) &&
693 !Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) {
694 // We use arclite library for both ARC and subscripting support.
695 getMachOToolChain().AddLinkARCArgs(Args, CmdArgs);
696
697 CmdArgs.push_back(Elt: "-framework");
698 CmdArgs.push_back(Elt: "Foundation");
699 // Link libobj.
700 CmdArgs.push_back(Elt: "-lobjc");
701 }
702
703 if (LinkingOutput) {
704 CmdArgs.push_back(Elt: "-arch_multiple");
705 CmdArgs.push_back(Elt: "-final_output");
706 CmdArgs.push_back(Elt: LinkingOutput);
707 }
708
709 if (Args.hasArg(options::OPT_fnested_functions))
710 CmdArgs.push_back(Elt: "-allow_stack_execute");
711
712 getMachOToolChain().addProfileRTLibs(Args, CmdArgs);
713
714 StringRef Parallelism = getLTOParallelism(Args, D: getToolChain().getDriver());
715 if (!Parallelism.empty()) {
716 CmdArgs.push_back(Elt: "-mllvm");
717 unsigned NumThreads =
718 llvm::get_threadpool_strategy(Num: Parallelism)->compute_thread_count();
719 CmdArgs.push_back(Elt: Args.MakeArgString(Str: "-threads=" + Twine(NumThreads)));
720 }
721
722 if (getToolChain().ShouldLinkCXXStdlib(Args))
723 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
724
725 bool NoStdOrDefaultLibs =
726 Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs);
727 bool ForceLinkBuiltins = Args.hasArg(options::OPT_fapple_link_rtlib);
728 if (!NoStdOrDefaultLibs || ForceLinkBuiltins) {
729 // link_ssp spec is empty.
730
731 // If we have both -nostdlib/nodefaultlibs and -fapple-link-rtlib then
732 // we just want to link the builtins, not the other libs like libSystem.
733 if (NoStdOrDefaultLibs && ForceLinkBuiltins) {
734 getMachOToolChain().AddLinkRuntimeLib(Args, CmdArgs, Component: "builtins");
735 } else {
736 // Let the tool chain choose which runtime library to link.
737 getMachOToolChain().AddLinkRuntimeLibArgs(Args, CmdArgs,
738 ForceLinkBuiltinRT: ForceLinkBuiltins);
739
740 // No need to do anything for pthreads. Claim argument to avoid warning.
741 Args.ClaimAllArgs(options::OPT_pthread);
742 Args.ClaimAllArgs(options::OPT_pthreads);
743 }
744 }
745
746 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) {
747 // endfile_spec is empty.
748 }
749
750 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
751 Args.AddAllArgs(CmdArgs, options::OPT_F);
752
753 // -iframework should be forwarded as -F.
754 for (const Arg *A : Args.filtered(options::OPT_iframework))
755 CmdArgs.push_back(Args.MakeArgString(std::string("-F") + A->getValue()));
756
757 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) {
758 if (Arg *A = Args.getLastArg(options::OPT_fveclib)) {
759 if (A->getValue() == StringRef("Accelerate")) {
760 CmdArgs.push_back(Elt: "-framework");
761 CmdArgs.push_back(Elt: "Accelerate");
762 }
763 }
764 }
765
766 // Add non-standard, platform-specific search paths, e.g., for DriverKit:
767 // -L<sysroot>/System/DriverKit/usr/lib
768 // -F<sysroot>/System/DriverKit/System/Library/Framework
769 {
770 bool NonStandardSearchPath = false;
771 const auto &Triple = getToolChain().getTriple();
772 if (Triple.isDriverKit()) {
773 // ld64 fixed the implicit -F and -L paths in ld64-605.1+.
774 NonStandardSearchPath =
775 Version.getMajor() < 605 ||
776 (Version.getMajor() == 605 && Version.getMinor().value_or(u: 0) < 1);
777 }
778
779 if (NonStandardSearchPath) {
780 if (auto *Sysroot = Args.getLastArg(options::OPT_isysroot)) {
781 auto AddSearchPath = [&](StringRef Flag, StringRef SearchPath) {
782 SmallString<128> P(Sysroot->getValue());
783 AppendPlatformPrefix(Path&: P, T: Triple);
784 llvm::sys::path::append(path&: P, a: SearchPath);
785 if (getToolChain().getVFS().exists(Path: P)) {
786 CmdArgs.push_back(Elt: Args.MakeArgString(Str: Flag + P));
787 }
788 };
789 AddSearchPath("-L", "/usr/lib");
790 AddSearchPath("-F", "/System/Library/Frameworks");
791 }
792 }
793 }
794
795 ResponseFileSupport ResponseSupport;
796 if (Version >= VersionTuple(705) || LinkerIsLLD) {
797 ResponseSupport = ResponseFileSupport::AtFileUTF8();
798 } else {
799 // For older versions of the linker, use the legacy filelist method instead.
800 ResponseSupport = {.ResponseKind: ResponseFileSupport::RF_FileList, .ResponseEncoding: llvm::sys::WEM_UTF8,
801 .ResponseFlag: "-filelist"};
802 }
803
804 std::unique_ptr<Command> Cmd = std::make_unique<Command>(
805 args: JA, args: *this, args&: ResponseSupport, args&: Exec, args&: CmdArgs, args: Inputs, args: Output);
806 Cmd->setInputFileList(std::move(InputFileList));
807 C.addCommand(C: std::move(Cmd));
808}
809
810void darwin::StaticLibTool::ConstructJob(Compilation &C, const JobAction &JA,
811 const InputInfo &Output,
812 const InputInfoList &Inputs,
813 const ArgList &Args,
814 const char *LinkingOutput) const {
815 const Driver &D = getToolChain().getDriver();
816
817 // Silence warning for "clang -g foo.o -o foo"
818 Args.ClaimAllArgs(options::OPT_g_Group);
819 // and "clang -emit-llvm foo.o -o foo"
820 Args.ClaimAllArgs(options::OPT_emit_llvm);
821 // and for "clang -w foo.o -o foo". Other warning options are already
822 // handled somewhere else.
823 Args.ClaimAllArgs(options::OPT_w);
824 // Silence warnings when linking C code with a C++ '-stdlib' argument.
825 Args.ClaimAllArgs(options::OPT_stdlib_EQ);
826
827 // libtool <options> <output_file> <input_files>
828 ArgStringList CmdArgs;
829 // Create and insert file members with a deterministic index.
830 CmdArgs.push_back(Elt: "-static");
831 CmdArgs.push_back(Elt: "-D");
832 CmdArgs.push_back(Elt: "-no_warning_for_no_symbols");
833 CmdArgs.push_back(Elt: "-o");
834 CmdArgs.push_back(Elt: Output.getFilename());
835
836 for (const auto &II : Inputs) {
837 if (II.isFilename()) {
838 CmdArgs.push_back(Elt: II.getFilename());
839 }
840 }
841
842 // Delete old output archive file if it already exists before generating a new
843 // archive file.
844 const auto *OutputFileName = Output.getFilename();
845 if (Output.isFilename() && llvm::sys::fs::exists(Path: OutputFileName)) {
846 if (std::error_code EC = llvm::sys::fs::remove(path: OutputFileName)) {
847 D.Diag(diag::err_drv_unable_to_remove_file) << EC.message();
848 return;
849 }
850 }
851
852 const char *Exec = Args.MakeArgString(Str: getToolChain().GetStaticLibToolPath());
853 C.addCommand(C: std::make_unique<Command>(args: JA, args: *this,
854 args: ResponseFileSupport::AtFileUTF8(),
855 args&: Exec, args&: CmdArgs, args: Inputs, args: Output));
856}
857
858void darwin::Lipo::ConstructJob(Compilation &C, const JobAction &JA,
859 const InputInfo &Output,
860 const InputInfoList &Inputs,
861 const ArgList &Args,
862 const char *LinkingOutput) const {
863 ArgStringList CmdArgs;
864
865 CmdArgs.push_back(Elt: "-create");
866 assert(Output.isFilename() && "Unexpected lipo output.");
867
868 CmdArgs.push_back(Elt: "-output");
869 CmdArgs.push_back(Elt: Output.getFilename());
870
871 for (const auto &II : Inputs) {
872 assert(II.isFilename() && "Unexpected lipo input.");
873 CmdArgs.push_back(Elt: II.getFilename());
874 }
875
876 const char *Exec = Args.MakeArgString(Str: getToolChain().GetProgramPath(Name: "lipo"));
877 C.addCommand(C: std::make_unique<Command>(args: JA, args: *this, args: ResponseFileSupport::None(),
878 args&: Exec, args&: CmdArgs, args: Inputs, args: Output));
879}
880
881void darwin::Dsymutil::ConstructJob(Compilation &C, const JobAction &JA,
882 const InputInfo &Output,
883 const InputInfoList &Inputs,
884 const ArgList &Args,
885 const char *LinkingOutput) const {
886 ArgStringList CmdArgs;
887
888 CmdArgs.push_back(Elt: "-o");
889 CmdArgs.push_back(Elt: Output.getFilename());
890
891 assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
892 const InputInfo &Input = Inputs[0];
893 assert(Input.isFilename() && "Unexpected dsymutil input.");
894 CmdArgs.push_back(Elt: Input.getFilename());
895
896 const char *Exec =
897 Args.MakeArgString(Str: getToolChain().GetProgramPath(Name: "dsymutil"));
898 C.addCommand(C: std::make_unique<Command>(args: JA, args: *this, args: ResponseFileSupport::None(),
899 args&: Exec, args&: CmdArgs, args: Inputs, args: Output));
900}
901
902void darwin::VerifyDebug::ConstructJob(Compilation &C, const JobAction &JA,
903 const InputInfo &Output,
904 const InputInfoList &Inputs,
905 const ArgList &Args,
906 const char *LinkingOutput) const {
907 ArgStringList CmdArgs;
908 CmdArgs.push_back(Elt: "--verify");
909 CmdArgs.push_back(Elt: "--debug-info");
910 CmdArgs.push_back(Elt: "--eh-frame");
911 CmdArgs.push_back(Elt: "--quiet");
912
913 assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
914 const InputInfo &Input = Inputs[0];
915 assert(Input.isFilename() && "Unexpected verify input");
916
917 // Grabbing the output of the earlier dsymutil run.
918 CmdArgs.push_back(Elt: Input.getFilename());
919
920 const char *Exec =
921 Args.MakeArgString(Str: getToolChain().GetProgramPath(Name: "dwarfdump"));
922 C.addCommand(C: std::make_unique<Command>(args: JA, args: *this, args: ResponseFileSupport::None(),
923 args&: Exec, args&: CmdArgs, args: Inputs, args: Output));
924}
925
926MachO::MachO(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
927 : ToolChain(D, Triple, Args) {
928 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
929 getProgramPaths().push_back(Elt: getDriver().getInstalledDir());
930 if (getDriver().getInstalledDir() != getDriver().Dir)
931 getProgramPaths().push_back(Elt: getDriver().Dir);
932}
933
934/// Darwin - Darwin tool chain for i386 and x86_64.
935Darwin::Darwin(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
936 : MachO(D, Triple, Args), TargetInitialized(false),
937 CudaInstallation(D, Triple, Args), RocmInstallation(D, Triple, Args) {}
938
939types::ID MachO::LookupTypeForExtension(StringRef Ext) const {
940 types::ID Ty = ToolChain::LookupTypeForExtension(Ext);
941
942 // Darwin always preprocesses assembly files (unless -x is used explicitly).
943 if (Ty == types::TY_PP_Asm)
944 return types::TY_Asm;
945
946 return Ty;
947}
948
949bool MachO::HasNativeLLVMSupport() const { return true; }
950
951ToolChain::CXXStdlibType Darwin::GetDefaultCXXStdlibType() const {
952 // Always use libc++ by default
953 return ToolChain::CST_Libcxx;
954}
955
956/// Darwin provides an ARC runtime starting in MacOS X 10.7 and iOS 5.0.
957ObjCRuntime Darwin::getDefaultObjCRuntime(bool isNonFragile) const {
958 if (isTargetWatchOSBased())
959 return ObjCRuntime(ObjCRuntime::WatchOS, TargetVersion);
960 if (isTargetIOSBased())
961 return ObjCRuntime(ObjCRuntime::iOS, TargetVersion);
962 if (isTargetXROS()) {
963 // XROS uses the iOS runtime.
964 auto T = llvm::Triple(Twine("arm64-apple-") +
965 llvm::Triple::getOSTypeName(Kind: llvm::Triple::XROS) +
966 TargetVersion.getAsString());
967 return ObjCRuntime(ObjCRuntime::iOS, T.getiOSVersion());
968 }
969 if (isNonFragile)
970 return ObjCRuntime(ObjCRuntime::MacOSX, TargetVersion);
971 return ObjCRuntime(ObjCRuntime::FragileMacOSX, TargetVersion);
972}
973
974/// Darwin provides a blocks runtime starting in MacOS X 10.6 and iOS 3.2.
975bool Darwin::hasBlocksRuntime() const {
976 if (isTargetWatchOSBased() || isTargetDriverKit() || isTargetXROS())
977 return true;
978 else if (isTargetIOSBased())
979 return !isIPhoneOSVersionLT(V0: 3, V1: 2);
980 else {
981 assert(isTargetMacOSBased() && "unexpected darwin target");
982 return !isMacosxVersionLT(V0: 10, V1: 6);
983 }
984}
985
986void Darwin::AddCudaIncludeArgs(const ArgList &DriverArgs,
987 ArgStringList &CC1Args) const {
988 CudaInstallation->AddCudaIncludeArgs(DriverArgs, CC1Args);
989}
990
991void Darwin::AddHIPIncludeArgs(const ArgList &DriverArgs,
992 ArgStringList &CC1Args) const {
993 RocmInstallation->AddHIPIncludeArgs(DriverArgs, CC1Args);
994}
995
996// This is just a MachO name translation routine and there's no
997// way to join this into ARMTargetParser without breaking all
998// other assumptions. Maybe MachO should consider standardising
999// their nomenclature.
1000static const char *ArmMachOArchName(StringRef Arch) {
1001 return llvm::StringSwitch<const char *>(Arch)
1002 .Case(S: "armv6k", Value: "armv6")
1003 .Case(S: "armv6m", Value: "armv6m")
1004 .Case(S: "armv5tej", Value: "armv5")
1005 .Case(S: "xscale", Value: "xscale")
1006 .Case(S: "armv4t", Value: "armv4t")
1007 .Case(S: "armv7", Value: "armv7")
1008 .Cases(S0: "armv7a", S1: "armv7-a", Value: "armv7")
1009 .Cases(S0: "armv7r", S1: "armv7-r", Value: "armv7")
1010 .Cases(S0: "armv7em", S1: "armv7e-m", Value: "armv7em")
1011 .Cases(S0: "armv7k", S1: "armv7-k", Value: "armv7k")
1012 .Cases(S0: "armv7m", S1: "armv7-m", Value: "armv7m")
1013 .Cases(S0: "armv7s", S1: "armv7-s", Value: "armv7s")
1014 .Default(Value: nullptr);
1015}
1016
1017static const char *ArmMachOArchNameCPU(StringRef CPU) {
1018 llvm::ARM::ArchKind ArchKind = llvm::ARM::parseCPUArch(CPU);
1019 if (ArchKind == llvm::ARM::ArchKind::INVALID)
1020 return nullptr;
1021 StringRef Arch = llvm::ARM::getArchName(AK: ArchKind);
1022
1023 // FIXME: Make sure this MachO triple mangling is really necessary.
1024 // ARMv5* normalises to ARMv5.
1025 if (Arch.starts_with(Prefix: "armv5"))
1026 Arch = Arch.substr(Start: 0, N: 5);
1027 // ARMv6*, except ARMv6M, normalises to ARMv6.
1028 else if (Arch.starts_with(Prefix: "armv6") && !Arch.ends_with(Suffix: "6m"))
1029 Arch = Arch.substr(Start: 0, N: 5);
1030 // ARMv7A normalises to ARMv7.
1031 else if (Arch.ends_with(Suffix: "v7a"))
1032 Arch = Arch.substr(Start: 0, N: 5);
1033 return Arch.data();
1034}
1035
1036StringRef MachO::getMachOArchName(const ArgList &Args) const {
1037 switch (getTriple().getArch()) {
1038 default:
1039 return getDefaultUniversalArchName();
1040
1041 case llvm::Triple::aarch64_32:
1042 return "arm64_32";
1043
1044 case llvm::Triple::aarch64: {
1045 if (getTriple().isArm64e())
1046 return "arm64e";
1047 return "arm64";
1048 }
1049
1050 case llvm::Triple::thumb:
1051 case llvm::Triple::arm:
1052 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ))
1053 if (const char *Arch = ArmMachOArchName(Arch: A->getValue()))
1054 return Arch;
1055
1056 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
1057 if (const char *Arch = ArmMachOArchNameCPU(CPU: A->getValue()))
1058 return Arch;
1059
1060 return "arm";
1061 }
1062}
1063
1064VersionTuple MachO::getLinkerVersion(const llvm::opt::ArgList &Args) const {
1065 if (LinkerVersion) {
1066#ifndef NDEBUG
1067 VersionTuple NewLinkerVersion;
1068 if (Arg *A = Args.getLastArg(options::OPT_mlinker_version_EQ))
1069 (void)NewLinkerVersion.tryParse(string: A->getValue());
1070 assert(NewLinkerVersion == LinkerVersion);
1071#endif
1072 return *LinkerVersion;
1073 }
1074
1075 VersionTuple NewLinkerVersion;
1076 if (Arg *A = Args.getLastArg(options::OPT_mlinker_version_EQ))
1077 if (NewLinkerVersion.tryParse(A->getValue()))
1078 getDriver().Diag(diag::err_drv_invalid_version_number)
1079 << A->getAsString(Args);
1080
1081 LinkerVersion = NewLinkerVersion;
1082 return *LinkerVersion;
1083}
1084
1085Darwin::~Darwin() {}
1086
1087MachO::~MachO() {}
1088
1089std::string Darwin::ComputeEffectiveClangTriple(const ArgList &Args,
1090 types::ID InputType) const {
1091 llvm::Triple Triple(ComputeLLVMTriple(Args, InputType));
1092
1093 // If the target isn't initialized (e.g., an unknown Darwin platform, return
1094 // the default triple).
1095 if (!isTargetInitialized())
1096 return Triple.getTriple();
1097
1098 SmallString<16> Str;
1099 if (isTargetWatchOSBased())
1100 Str += "watchos";
1101 else if (isTargetTvOSBased())
1102 Str += "tvos";
1103 else if (isTargetDriverKit())
1104 Str += "driverkit";
1105 else if (isTargetIOSBased() || isTargetMacCatalyst())
1106 Str += "ios";
1107 else if (isTargetXROS())
1108 Str += llvm::Triple::getOSTypeName(Kind: llvm::Triple::XROS);
1109 else
1110 Str += "macosx";
1111 Str += getTripleTargetVersion().getAsString();
1112 Triple.setOSName(Str);
1113
1114 return Triple.getTriple();
1115}
1116
1117Tool *MachO::getTool(Action::ActionClass AC) const {
1118 switch (AC) {
1119 case Action::LipoJobClass:
1120 if (!Lipo)
1121 Lipo.reset(p: new tools::darwin::Lipo(*this));
1122 return Lipo.get();
1123 case Action::DsymutilJobClass:
1124 if (!Dsymutil)
1125 Dsymutil.reset(p: new tools::darwin::Dsymutil(*this));
1126 return Dsymutil.get();
1127 case Action::VerifyDebugInfoJobClass:
1128 if (!VerifyDebug)
1129 VerifyDebug.reset(p: new tools::darwin::VerifyDebug(*this));
1130 return VerifyDebug.get();
1131 default:
1132 return ToolChain::getTool(AC);
1133 }
1134}
1135
1136Tool *MachO::buildLinker() const { return new tools::darwin::Linker(*this); }
1137
1138Tool *MachO::buildStaticLibTool() const {
1139 return new tools::darwin::StaticLibTool(*this);
1140}
1141
1142Tool *MachO::buildAssembler() const {
1143 return new tools::darwin::Assembler(*this);
1144}
1145
1146DarwinClang::DarwinClang(const Driver &D, const llvm::Triple &Triple,
1147 const ArgList &Args)
1148 : Darwin(D, Triple, Args) {}
1149
1150void DarwinClang::addClangWarningOptions(ArgStringList &CC1Args) const {
1151 // Always error about undefined 'TARGET_OS_*' macros.
1152 CC1Args.push_back(Elt: "-Wundef-prefix=TARGET_OS_");
1153 CC1Args.push_back(Elt: "-Werror=undef-prefix");
1154
1155 // For modern targets, promote certain warnings to errors.
1156 if (isTargetWatchOSBased() || getTriple().isArch64Bit()) {
1157 // Always enable -Wdeprecated-objc-isa-usage and promote it
1158 // to an error.
1159 CC1Args.push_back(Elt: "-Wdeprecated-objc-isa-usage");
1160 CC1Args.push_back(Elt: "-Werror=deprecated-objc-isa-usage");
1161
1162 // For iOS and watchOS, also error about implicit function declarations,
1163 // as that can impact calling conventions.
1164 if (!isTargetMacOS())
1165 CC1Args.push_back(Elt: "-Werror=implicit-function-declaration");
1166 }
1167}
1168
1169/// Take a path that speculatively points into Xcode and return the
1170/// `XCODE/Contents/Developer` path if it is an Xcode path, or an empty path
1171/// otherwise.
1172static StringRef getXcodeDeveloperPath(StringRef PathIntoXcode) {
1173 static constexpr llvm::StringLiteral XcodeAppSuffix(
1174 ".app/Contents/Developer");
1175 size_t Index = PathIntoXcode.find(Str: XcodeAppSuffix);
1176 if (Index == StringRef::npos)
1177 return "";
1178 return PathIntoXcode.take_front(N: Index + XcodeAppSuffix.size());
1179}
1180
1181void DarwinClang::AddLinkARCArgs(const ArgList &Args,
1182 ArgStringList &CmdArgs) const {
1183 // Avoid linking compatibility stubs on i386 mac.
1184 if (isTargetMacOSBased() && getArch() == llvm::Triple::x86)
1185 return;
1186 if (isTargetAppleSiliconMac())
1187 return;
1188 // ARC runtime is supported everywhere on arm64e.
1189 if (getTriple().isArm64e())
1190 return;
1191 if (isTargetXROS())
1192 return;
1193
1194 ObjCRuntime runtime = getDefaultObjCRuntime(/*nonfragile*/ isNonFragile: true);
1195
1196 if ((runtime.hasNativeARC() || !isObjCAutoRefCount(Args)) &&
1197 runtime.hasSubscripting())
1198 return;
1199
1200 SmallString<128> P(getDriver().ClangExecutable);
1201 llvm::sys::path::remove_filename(path&: P); // 'clang'
1202 llvm::sys::path::remove_filename(path&: P); // 'bin'
1203 llvm::sys::path::append(path&: P, a: "lib", b: "arc");
1204
1205 // 'libarclite' usually lives in the same toolchain as 'clang'. However, the
1206 // Swift open source toolchains for macOS distribute Clang without libarclite.
1207 // In that case, to allow the linker to find 'libarclite', we point to the
1208 // 'libarclite' in the XcodeDefault toolchain instead.
1209 if (!getVFS().exists(Path: P)) {
1210 auto updatePath = [&](const Arg *A) {
1211 // Try to infer the path to 'libarclite' in the toolchain from the
1212 // specified SDK path.
1213 StringRef XcodePathForSDK = getXcodeDeveloperPath(PathIntoXcode: A->getValue());
1214 if (XcodePathForSDK.empty())
1215 return false;
1216
1217 P = XcodePathForSDK;
1218 llvm::sys::path::append(path&: P, a: "Toolchains/XcodeDefault.xctoolchain/usr",
1219 b: "lib", c: "arc");
1220 return getVFS().exists(Path: P);
1221 };
1222
1223 bool updated = false;
1224 if (const Arg *A = Args.getLastArg(options::OPT_isysroot))
1225 updated = updatePath(A);
1226
1227 if (!updated) {
1228 if (const Arg *A = Args.getLastArg(options::OPT__sysroot_EQ))
1229 updatePath(A);
1230 }
1231 }
1232
1233 CmdArgs.push_back(Elt: "-force_load");
1234 llvm::sys::path::append(path&: P, a: "libarclite_");
1235 // Mash in the platform.
1236 if (isTargetWatchOSSimulator())
1237 P += "watchsimulator";
1238 else if (isTargetWatchOS())
1239 P += "watchos";
1240 else if (isTargetTvOSSimulator())
1241 P += "appletvsimulator";
1242 else if (isTargetTvOS())
1243 P += "appletvos";
1244 else if (isTargetIOSSimulator())
1245 P += "iphonesimulator";
1246 else if (isTargetIPhoneOS())
1247 P += "iphoneos";
1248 else
1249 P += "macosx";
1250 P += ".a";
1251
1252 if (!getVFS().exists(P))
1253 getDriver().Diag(clang::diag::err_drv_darwin_sdk_missing_arclite) << P;
1254
1255 CmdArgs.push_back(Elt: Args.MakeArgString(Str: P));
1256}
1257
1258unsigned DarwinClang::GetDefaultDwarfVersion() const {
1259 // Default to use DWARF 2 on OS X 10.10 / iOS 8 and lower.
1260 if ((isTargetMacOSBased() && isMacosxVersionLT(V0: 10, V1: 11)) ||
1261 (isTargetIOSBased() && isIPhoneOSVersionLT(V0: 9)))
1262 return 2;
1263 return 4;
1264}
1265
1266void MachO::AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
1267 StringRef Component, RuntimeLinkOptions Opts,
1268 bool IsShared) const {
1269 SmallString<64> DarwinLibName = StringRef("libclang_rt.");
1270 // an Darwin the builtins compomnent is not in the library name
1271 if (Component != "builtins") {
1272 DarwinLibName += Component;
1273 if (!(Opts & RLO_IsEmbedded))
1274 DarwinLibName += "_";
1275 }
1276
1277 DarwinLibName += getOSLibraryNameSuffix();
1278 DarwinLibName += IsShared ? "_dynamic.dylib" : ".a";
1279 SmallString<128> Dir(getDriver().ResourceDir);
1280 llvm::sys::path::append(path&: Dir, a: "lib", b: "darwin");
1281 if (Opts & RLO_IsEmbedded)
1282 llvm::sys::path::append(path&: Dir, a: "macho_embedded");
1283
1284 SmallString<128> P(Dir);
1285 llvm::sys::path::append(path&: P, a: DarwinLibName);
1286
1287 // For now, allow missing resource libraries to support developers who may
1288 // not have compiler-rt checked out or integrated into their build (unless
1289 // we explicitly force linking with this library).
1290 if ((Opts & RLO_AlwaysLink) || getVFS().exists(Path: P)) {
1291 const char *LibArg = Args.MakeArgString(Str: P);
1292 CmdArgs.push_back(Elt: LibArg);
1293 }
1294
1295 // Adding the rpaths might negatively interact when other rpaths are involved,
1296 // so we should make sure we add the rpaths last, after all user-specified
1297 // rpaths. This is currently true from this place, but we need to be
1298 // careful if this function is ever called before user's rpaths are emitted.
1299 if (Opts & RLO_AddRPath) {
1300 assert(DarwinLibName.ends_with(".dylib") && "must be a dynamic library");
1301
1302 // Add @executable_path to rpath to support having the dylib copied with
1303 // the executable.
1304 CmdArgs.push_back(Elt: "-rpath");
1305 CmdArgs.push_back(Elt: "@executable_path");
1306
1307 // Add the path to the resource dir to rpath to support using the dylib
1308 // from the default location without copying.
1309 CmdArgs.push_back(Elt: "-rpath");
1310 CmdArgs.push_back(Elt: Args.MakeArgString(Str: Dir));
1311 }
1312}
1313
1314StringRef Darwin::getPlatformFamily() const {
1315 switch (TargetPlatform) {
1316 case DarwinPlatformKind::MacOS:
1317 return "MacOSX";
1318 case DarwinPlatformKind::IPhoneOS:
1319 if (TargetEnvironment == MacCatalyst)
1320 return "MacOSX";
1321 return "iPhone";
1322 case DarwinPlatformKind::TvOS:
1323 return "AppleTV";
1324 case DarwinPlatformKind::WatchOS:
1325 return "Watch";
1326 case DarwinPlatformKind::DriverKit:
1327 return "DriverKit";
1328 case DarwinPlatformKind::XROS:
1329 return "XR";
1330 }
1331 llvm_unreachable("Unsupported platform");
1332}
1333
1334StringRef Darwin::getSDKName(StringRef isysroot) {
1335 // Assume SDK has path: SOME_PATH/SDKs/PlatformXX.YY.sdk
1336 auto BeginSDK = llvm::sys::path::rbegin(path: isysroot);
1337 auto EndSDK = llvm::sys::path::rend(path: isysroot);
1338 for (auto IT = BeginSDK; IT != EndSDK; ++IT) {
1339 StringRef SDK = *IT;
1340 if (SDK.ends_with(Suffix: ".sdk"))
1341 return SDK.slice(Start: 0, End: SDK.size() - 4);
1342 }
1343 return "";
1344}
1345
1346StringRef Darwin::getOSLibraryNameSuffix(bool IgnoreSim) const {
1347 switch (TargetPlatform) {
1348 case DarwinPlatformKind::MacOS:
1349 return "osx";
1350 case DarwinPlatformKind::IPhoneOS:
1351 if (TargetEnvironment == MacCatalyst)
1352 return "osx";
1353 return TargetEnvironment == NativeEnvironment || IgnoreSim ? "ios"
1354 : "iossim";
1355 case DarwinPlatformKind::TvOS:
1356 return TargetEnvironment == NativeEnvironment || IgnoreSim ? "tvos"
1357 : "tvossim";
1358 case DarwinPlatformKind::WatchOS:
1359 return TargetEnvironment == NativeEnvironment || IgnoreSim ? "watchos"
1360 : "watchossim";
1361 case DarwinPlatformKind::XROS:
1362 return TargetEnvironment == NativeEnvironment || IgnoreSim ? "xros"
1363 : "xrossim";
1364 case DarwinPlatformKind::DriverKit:
1365 return "driverkit";
1366 }
1367 llvm_unreachable("Unsupported platform");
1368}
1369
1370/// Check if the link command contains a symbol export directive.
1371static bool hasExportSymbolDirective(const ArgList &Args) {
1372 for (Arg *A : Args) {
1373 if (A->getOption().matches(options::OPT_exported__symbols__list))
1374 return true;
1375 if (!A->getOption().matches(options::OPT_Wl_COMMA) &&
1376 !A->getOption().matches(options::OPT_Xlinker))
1377 continue;
1378 if (A->containsValue(Value: "-exported_symbols_list") ||
1379 A->containsValue(Value: "-exported_symbol"))
1380 return true;
1381 }
1382 return false;
1383}
1384
1385/// Add an export directive for \p Symbol to the link command.
1386static void addExportedSymbol(ArgStringList &CmdArgs, const char *Symbol) {
1387 CmdArgs.push_back(Elt: "-exported_symbol");
1388 CmdArgs.push_back(Elt: Symbol);
1389}
1390
1391/// Add a sectalign directive for \p Segment and \p Section to the maximum
1392/// expected page size for Darwin.
1393///
1394/// On iPhone 6+ the max supported page size is 16K. On macOS, the max is 4K.
1395/// Use a common alignment constant (16K) for now, and reduce the alignment on
1396/// macOS if it proves important.
1397static void addSectalignToPage(const ArgList &Args, ArgStringList &CmdArgs,
1398 StringRef Segment, StringRef Section) {
1399 for (const char *A : {"-sectalign", Args.MakeArgString(Str: Segment),
1400 Args.MakeArgString(Str: Section), "0x4000"})
1401 CmdArgs.push_back(Elt: A);
1402}
1403
1404void Darwin::addProfileRTLibs(const ArgList &Args,
1405 ArgStringList &CmdArgs) const {
1406 if (!needsProfileRT(Args) && !needsGCovInstrumentation(Args))
1407 return;
1408
1409 AddLinkRuntimeLib(Args, CmdArgs, Component: "profile",
1410 Opts: RuntimeLinkOptions(RLO_AlwaysLink));
1411
1412 bool ForGCOV = needsGCovInstrumentation(Args);
1413
1414 // If we have a symbol export directive and we're linking in the profile
1415 // runtime, automatically export symbols necessary to implement some of the
1416 // runtime's functionality.
1417 if (hasExportSymbolDirective(Args) && ForGCOV) {
1418 addExportedSymbol(CmdArgs, Symbol: "___gcov_dump");
1419 addExportedSymbol(CmdArgs, Symbol: "___gcov_reset");
1420 addExportedSymbol(CmdArgs, Symbol: "_writeout_fn_list");
1421 addExportedSymbol(CmdArgs, Symbol: "_reset_fn_list");
1422 }
1423
1424 // Align __llvm_prf_{cnts,bits,data} sections to the maximum expected page
1425 // alignment. This allows profile counters to be mmap()'d to disk. Note that
1426 // it's not enough to just page-align __llvm_prf_cnts: the following section
1427 // must also be page-aligned so that its data is not clobbered by mmap().
1428 //
1429 // The section alignment is only needed when continuous profile sync is
1430 // enabled, but this is expected to be the default in Xcode. Specifying the
1431 // extra alignment also allows the same binary to be used with/without sync
1432 // enabled.
1433 if (!ForGCOV) {
1434 for (auto IPSK : {llvm::IPSK_cnts, llvm::IPSK_bitmap, llvm::IPSK_data}) {
1435 addSectalignToPage(
1436 Args, CmdArgs, Segment: "__DATA",
1437 Section: llvm::getInstrProfSectionName(IPSK, OF: llvm::Triple::MachO,
1438 /*AddSegmentInfo=*/false));
1439 }
1440 }
1441}
1442
1443void DarwinClang::AddLinkSanitizerLibArgs(const ArgList &Args,
1444 ArgStringList &CmdArgs,
1445 StringRef Sanitizer,
1446 bool Shared) const {
1447 auto RLO = RuntimeLinkOptions(RLO_AlwaysLink | (Shared ? RLO_AddRPath : 0U));
1448 AddLinkRuntimeLib(Args, CmdArgs, Component: Sanitizer, Opts: RLO, IsShared: Shared);
1449}
1450
1451ToolChain::RuntimeLibType DarwinClang::GetRuntimeLibType(
1452 const ArgList &Args) const {
1453 if (Arg* A = Args.getLastArg(options::OPT_rtlib_EQ)) {
1454 StringRef Value = A->getValue();
1455 if (Value != "compiler-rt" && Value != "platform")
1456 getDriver().Diag(clang::diag::err_drv_unsupported_rtlib_for_platform)
1457 << Value << "darwin";
1458 }
1459
1460 return ToolChain::RLT_CompilerRT;
1461}
1462
1463void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
1464 ArgStringList &CmdArgs,
1465 bool ForceLinkBuiltinRT) const {
1466 // Call once to ensure diagnostic is printed if wrong value was specified
1467 GetRuntimeLibType(Args);
1468
1469 // Darwin doesn't support real static executables, don't link any runtime
1470 // libraries with -static.
1471 if (Args.hasArg(options::OPT_static) ||
1472 Args.hasArg(options::OPT_fapple_kext) ||
1473 Args.hasArg(options::OPT_mkernel)) {
1474 if (ForceLinkBuiltinRT)
1475 AddLinkRuntimeLib(Args, CmdArgs, Component: "builtins");
1476 return;
1477 }
1478
1479 // Reject -static-libgcc for now, we can deal with this when and if someone
1480 // cares. This is useful in situations where someone wants to statically link
1481 // something like libstdc++, and needs its runtime support routines.
1482 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
1483 getDriver().Diag(diag::err_drv_unsupported_opt) << A->getAsString(Args);
1484 return;
1485 }
1486
1487 const SanitizerArgs &Sanitize = getSanitizerArgs(JobArgs: Args);
1488
1489 if (!Sanitize.needsSharedRt()) {
1490 const char *sanitizer = nullptr;
1491 if (Sanitize.needsUbsanRt()) {
1492 sanitizer = "UndefinedBehaviorSanitizer";
1493 } else if (Sanitize.needsAsanRt()) {
1494 sanitizer = "AddressSanitizer";
1495 } else if (Sanitize.needsTsanRt()) {
1496 sanitizer = "ThreadSanitizer";
1497 }
1498 if (sanitizer) {
1499 getDriver().Diag(diag::err_drv_unsupported_static_sanitizer_darwin)
1500 << sanitizer;
1501 return;
1502 }
1503 }
1504
1505 if (Sanitize.linkRuntimes()) {
1506 if (Sanitize.needsAsanRt()) {
1507 if (Sanitize.needsStableAbi()) {
1508 AddLinkSanitizerLibArgs(Args, CmdArgs, Sanitizer: "asan_abi", /*shared=*/Shared: false);
1509 } else {
1510 assert(Sanitize.needsSharedRt() &&
1511 "Static sanitizer runtimes not supported");
1512 AddLinkSanitizerLibArgs(Args, CmdArgs, Sanitizer: "asan");
1513 }
1514 }
1515 if (Sanitize.needsLsanRt())
1516 AddLinkSanitizerLibArgs(Args, CmdArgs, Sanitizer: "lsan");
1517 if (Sanitize.needsUbsanRt()) {
1518 assert(Sanitize.needsSharedRt() &&
1519 "Static sanitizer runtimes not supported");
1520 AddLinkSanitizerLibArgs(
1521 Args, CmdArgs,
1522 Sanitizer: Sanitize.requiresMinimalRuntime() ? "ubsan_minimal" : "ubsan");
1523 }
1524 if (Sanitize.needsTsanRt()) {
1525 assert(Sanitize.needsSharedRt() &&
1526 "Static sanitizer runtimes not supported");
1527 AddLinkSanitizerLibArgs(Args, CmdArgs, Sanitizer: "tsan");
1528 }
1529 if (Sanitize.needsFuzzer() && !Args.hasArg(options::OPT_dynamiclib)) {
1530 AddLinkSanitizerLibArgs(Args, CmdArgs, Sanitizer: "fuzzer", /*shared=*/Shared: false);
1531
1532 // Libfuzzer is written in C++ and requires libcxx.
1533 AddCXXStdlibLibArgs(Args, CmdArgs);
1534 }
1535 if (Sanitize.needsStatsRt()) {
1536 AddLinkRuntimeLib(Args, CmdArgs, Component: "stats_client", Opts: RLO_AlwaysLink);
1537 AddLinkSanitizerLibArgs(Args, CmdArgs, Sanitizer: "stats");
1538 }
1539 }
1540
1541 const XRayArgs &XRay = getXRayArgs();
1542 if (XRay.needsXRayRt()) {
1543 AddLinkRuntimeLib(Args, CmdArgs, Component: "xray");
1544 AddLinkRuntimeLib(Args, CmdArgs, Component: "xray-basic");
1545 AddLinkRuntimeLib(Args, CmdArgs, Component: "xray-fdr");
1546 }
1547
1548 if (isTargetDriverKit() && !Args.hasArg(options::OPT_nodriverkitlib)) {
1549 CmdArgs.push_back(Elt: "-framework");
1550 CmdArgs.push_back(Elt: "DriverKit");
1551 }
1552
1553 // Otherwise link libSystem, then the dynamic runtime library, and finally any
1554 // target specific static runtime library.
1555 if (!isTargetDriverKit())
1556 CmdArgs.push_back(Elt: "-lSystem");
1557
1558 // Select the dynamic runtime library and the target specific static library.
1559 if (isTargetIOSBased()) {
1560 // If we are compiling as iOS / simulator, don't attempt to link libgcc_s.1,
1561 // it never went into the SDK.
1562 // Linking against libgcc_s.1 isn't needed for iOS 5.0+
1563 if (isIPhoneOSVersionLT(V0: 5, V1: 0) && !isTargetIOSSimulator() &&
1564 getTriple().getArch() != llvm::Triple::aarch64)
1565 CmdArgs.push_back(Elt: "-lgcc_s.1");
1566 }
1567 AddLinkRuntimeLib(Args, CmdArgs, Component: "builtins");
1568}
1569
1570/// Returns the most appropriate macOS target version for the current process.
1571///
1572/// If the macOS SDK version is the same or earlier than the system version,
1573/// then the SDK version is returned. Otherwise the system version is returned.
1574static std::string getSystemOrSDKMacOSVersion(StringRef MacOSSDKVersion) {
1575 llvm::Triple SystemTriple(llvm::sys::getProcessTriple());
1576 if (!SystemTriple.isMacOSX())
1577 return std::string(MacOSSDKVersion);
1578 VersionTuple SystemVersion;
1579 SystemTriple.getMacOSXVersion(Version&: SystemVersion);
1580
1581 unsigned Major, Minor, Micro;
1582 bool HadExtra;
1583 if (!Driver::GetReleaseVersion(Str: MacOSSDKVersion, Major, Minor, Micro,
1584 HadExtra))
1585 return std::string(MacOSSDKVersion);
1586 VersionTuple SDKVersion(Major, Minor, Micro);
1587
1588 if (SDKVersion > SystemVersion)
1589 return SystemVersion.getAsString();
1590 return std::string(MacOSSDKVersion);
1591}
1592
1593namespace {
1594
1595/// The Darwin OS that was selected or inferred from arguments / environment.
1596struct DarwinPlatform {
1597 enum SourceKind {
1598 /// The OS was specified using the -target argument.
1599 TargetArg,
1600 /// The OS was specified using the -mtargetos= argument.
1601 MTargetOSArg,
1602 /// The OS was specified using the -m<os>-version-min argument.
1603 OSVersionArg,
1604 /// The OS was specified using the OS_DEPLOYMENT_TARGET environment.
1605 DeploymentTargetEnv,
1606 /// The OS was inferred from the SDK.
1607 InferredFromSDK,
1608 /// The OS was inferred from the -arch.
1609 InferredFromArch
1610 };
1611
1612 using DarwinPlatformKind = Darwin::DarwinPlatformKind;
1613 using DarwinEnvironmentKind = Darwin::DarwinEnvironmentKind;
1614
1615 DarwinPlatformKind getPlatform() const { return Platform; }
1616
1617 DarwinEnvironmentKind getEnvironment() const { return Environment; }
1618
1619 void setEnvironment(DarwinEnvironmentKind Kind) {
1620 Environment = Kind;
1621 InferSimulatorFromArch = false;
1622 }
1623
1624 StringRef getOSVersion() const {
1625 if (Kind == OSVersionArg)
1626 return Argument->getValue();
1627 return OSVersion;
1628 }
1629
1630 void setOSVersion(StringRef S) {
1631 assert(Kind == TargetArg && "Unexpected kind!");
1632 OSVersion = std::string(S);
1633 }
1634
1635 bool hasOSVersion() const { return HasOSVersion; }
1636
1637 VersionTuple getNativeTargetVersion() const {
1638 assert(Environment == DarwinEnvironmentKind::MacCatalyst &&
1639 "native target version is specified only for Mac Catalyst");
1640 return NativeTargetVersion;
1641 }
1642
1643 /// Returns true if the target OS was explicitly specified.
1644 bool isExplicitlySpecified() const { return Kind <= DeploymentTargetEnv; }
1645
1646 /// Returns true if the simulator environment can be inferred from the arch.
1647 bool canInferSimulatorFromArch() const { return InferSimulatorFromArch; }
1648
1649 const std::optional<llvm::Triple> &getTargetVariantTriple() const {
1650 return TargetVariantTriple;
1651 }
1652
1653 /// Adds the -m<os>-version-min argument to the compiler invocation.
1654 void addOSVersionMinArgument(DerivedArgList &Args, const OptTable &Opts) {
1655 if (Argument)
1656 return;
1657 assert(Kind != TargetArg && Kind != MTargetOSArg && Kind != OSVersionArg &&
1658 "Invalid kind");
1659 options::ID Opt;
1660 switch (Platform) {
1661 case DarwinPlatformKind::MacOS:
1662 Opt = options::OPT_mmacos_version_min_EQ;
1663 break;
1664 case DarwinPlatformKind::IPhoneOS:
1665 Opt = options::OPT_mios_version_min_EQ;
1666 break;
1667 case DarwinPlatformKind::TvOS:
1668 Opt = options::OPT_mtvos_version_min_EQ;
1669 break;
1670 case DarwinPlatformKind::WatchOS:
1671 Opt = options::OPT_mwatchos_version_min_EQ;
1672 break;
1673 case DarwinPlatformKind::XROS:
1674 // xrOS always explicitly provides a version in the triple.
1675 return;
1676 case DarwinPlatformKind::DriverKit:
1677 // DriverKit always explicitly provides a version in the triple.
1678 return;
1679 }
1680 Argument = Args.MakeJoinedArg(BaseArg: nullptr, Opt: Opts.getOption(Opt), Value: OSVersion);
1681 Args.append(A: Argument);
1682 }
1683
1684 /// Returns the OS version with the argument / environment variable that
1685 /// specified it.
1686 std::string getAsString(DerivedArgList &Args, const OptTable &Opts) {
1687 switch (Kind) {
1688 case TargetArg:
1689 case MTargetOSArg:
1690 case OSVersionArg:
1691 case InferredFromSDK:
1692 case InferredFromArch:
1693 assert(Argument && "OS version argument not yet inferred");
1694 return Argument->getAsString(Args);
1695 case DeploymentTargetEnv:
1696 return (llvm::Twine(EnvVarName) + "=" + OSVersion).str();
1697 }
1698 llvm_unreachable("Unsupported Darwin Source Kind");
1699 }
1700
1701 void setEnvironment(llvm::Triple::EnvironmentType EnvType,
1702 const VersionTuple &OSVersion,
1703 const std::optional<DarwinSDKInfo> &SDKInfo) {
1704 switch (EnvType) {
1705 case llvm::Triple::Simulator:
1706 Environment = DarwinEnvironmentKind::Simulator;
1707 break;
1708 case llvm::Triple::MacABI: {
1709 Environment = DarwinEnvironmentKind::MacCatalyst;
1710 // The minimum native macOS target for MacCatalyst is macOS 10.15.
1711 NativeTargetVersion = VersionTuple(10, 15);
1712 if (HasOSVersion && SDKInfo) {
1713 if (const auto *MacCatalystToMacOSMapping = SDKInfo->getVersionMapping(
1714 Kind: DarwinSDKInfo::OSEnvPair::macCatalystToMacOSPair())) {
1715 if (auto MacOSVersion = MacCatalystToMacOSMapping->map(
1716 Key: OSVersion, MinimumValue: NativeTargetVersion, MaximumValue: std::nullopt)) {
1717 NativeTargetVersion = *MacOSVersion;
1718 }
1719 }
1720 }
1721 // In a zippered build, we could be building for a macOS target that's
1722 // lower than the version that's implied by the OS version. In that case
1723 // we need to use the minimum version as the native target version.
1724 if (TargetVariantTriple) {
1725 auto TargetVariantVersion = TargetVariantTriple->getOSVersion();
1726 if (TargetVariantVersion.getMajor()) {
1727 if (TargetVariantVersion < NativeTargetVersion)
1728 NativeTargetVersion = TargetVariantVersion;
1729 }
1730 }
1731 break;
1732 }
1733 default:
1734 break;
1735 }
1736 }
1737
1738 static DarwinPlatform
1739 createFromTarget(const llvm::Triple &TT, StringRef OSVersion, Arg *A,
1740 std::optional<llvm::Triple> TargetVariantTriple,
1741 const std::optional<DarwinSDKInfo> &SDKInfo) {
1742 DarwinPlatform Result(TargetArg, getPlatformFromOS(OS: TT.getOS()), OSVersion,
1743 A);
1744 VersionTuple OsVersion = TT.getOSVersion();
1745 if (OsVersion.getMajor() == 0)
1746 Result.HasOSVersion = false;
1747 Result.TargetVariantTriple = TargetVariantTriple;
1748 Result.setEnvironment(EnvType: TT.getEnvironment(), OSVersion: OsVersion, SDKInfo);
1749 return Result;
1750 }
1751 static DarwinPlatform
1752 createFromMTargetOS(llvm::Triple::OSType OS, VersionTuple OSVersion,
1753 llvm::Triple::EnvironmentType Environment, Arg *A,
1754 const std::optional<DarwinSDKInfo> &SDKInfo) {
1755 DarwinPlatform Result(MTargetOSArg, getPlatformFromOS(OS),
1756 OSVersion.getAsString(), A);
1757 Result.InferSimulatorFromArch = false;
1758 Result.setEnvironment(EnvType: Environment, OSVersion, SDKInfo);
1759 return Result;
1760 }
1761 static DarwinPlatform createOSVersionArg(DarwinPlatformKind Platform, Arg *A,
1762 bool IsSimulator) {
1763 DarwinPlatform Result{OSVersionArg, Platform, A};
1764 if (IsSimulator)
1765 Result.Environment = DarwinEnvironmentKind::Simulator;
1766 return Result;
1767 }
1768 static DarwinPlatform createDeploymentTargetEnv(DarwinPlatformKind Platform,
1769 StringRef EnvVarName,
1770 StringRef Value) {
1771 DarwinPlatform Result(DeploymentTargetEnv, Platform, Value);
1772 Result.EnvVarName = EnvVarName;
1773 return Result;
1774 }
1775 static DarwinPlatform createFromSDK(DarwinPlatformKind Platform,
1776 StringRef Value,
1777 bool IsSimulator = false) {
1778 DarwinPlatform Result(InferredFromSDK, Platform, Value);
1779 if (IsSimulator)
1780 Result.Environment = DarwinEnvironmentKind::Simulator;
1781 Result.InferSimulatorFromArch = false;
1782 return Result;
1783 }
1784 static DarwinPlatform createFromArch(llvm::Triple::OSType OS,
1785 StringRef Value) {
1786 return DarwinPlatform(InferredFromArch, getPlatformFromOS(OS), Value);
1787 }
1788
1789 /// Constructs an inferred SDKInfo value based on the version inferred from
1790 /// the SDK path itself. Only works for values that were created by inferring
1791 /// the platform from the SDKPath.
1792 DarwinSDKInfo inferSDKInfo() {
1793 assert(Kind == InferredFromSDK && "can infer SDK info only");
1794 llvm::VersionTuple Version;
1795 bool IsValid = !Version.tryParse(string: OSVersion);
1796 (void)IsValid;
1797 assert(IsValid && "invalid SDK version");
1798 return DarwinSDKInfo(
1799 Version,
1800 /*MaximumDeploymentTarget=*/VersionTuple(Version.getMajor(), 0, 99));
1801 }
1802
1803private:
1804 DarwinPlatform(SourceKind Kind, DarwinPlatformKind Platform, Arg *Argument)
1805 : Kind(Kind), Platform(Platform), Argument(Argument) {}
1806 DarwinPlatform(SourceKind Kind, DarwinPlatformKind Platform, StringRef Value,
1807 Arg *Argument = nullptr)
1808 : Kind(Kind), Platform(Platform), OSVersion(Value), Argument(Argument) {}
1809
1810 static DarwinPlatformKind getPlatformFromOS(llvm::Triple::OSType OS) {
1811 switch (OS) {
1812 case llvm::Triple::Darwin:
1813 case llvm::Triple::MacOSX:
1814 return DarwinPlatformKind::MacOS;
1815 case llvm::Triple::IOS:
1816 return DarwinPlatformKind::IPhoneOS;
1817 case llvm::Triple::TvOS:
1818 return DarwinPlatformKind::TvOS;
1819 case llvm::Triple::WatchOS:
1820 return DarwinPlatformKind::WatchOS;
1821 case llvm::Triple::XROS:
1822 return DarwinPlatformKind::XROS;
1823 case llvm::Triple::DriverKit:
1824 return DarwinPlatformKind::DriverKit;
1825 default:
1826 llvm_unreachable("Unable to infer Darwin variant");
1827 }
1828 }
1829
1830 SourceKind Kind;
1831 DarwinPlatformKind Platform;
1832 DarwinEnvironmentKind Environment = DarwinEnvironmentKind::NativeEnvironment;
1833 VersionTuple NativeTargetVersion;
1834 std::string OSVersion;
1835 bool HasOSVersion = true, InferSimulatorFromArch = true;
1836 Arg *Argument;
1837 StringRef EnvVarName;
1838 std::optional<llvm::Triple> TargetVariantTriple;
1839};
1840
1841/// Returns the deployment target that's specified using the -m<os>-version-min
1842/// argument.
1843std::optional<DarwinPlatform>
1844getDeploymentTargetFromOSVersionArg(DerivedArgList &Args,
1845 const Driver &TheDriver) {
1846 Arg *macOSVersion = Args.getLastArg(options::OPT_mmacos_version_min_EQ);
1847 Arg *iOSVersion = Args.getLastArg(options::OPT_mios_version_min_EQ,
1848 options::OPT_mios_simulator_version_min_EQ);
1849 Arg *TvOSVersion =
1850 Args.getLastArg(options::OPT_mtvos_version_min_EQ,
1851 options::OPT_mtvos_simulator_version_min_EQ);
1852 Arg *WatchOSVersion =
1853 Args.getLastArg(options::OPT_mwatchos_version_min_EQ,
1854 options::OPT_mwatchos_simulator_version_min_EQ);
1855 if (macOSVersion) {
1856 if (iOSVersion || TvOSVersion || WatchOSVersion) {
1857 TheDriver.Diag(diag::err_drv_argument_not_allowed_with)
1858 << macOSVersion->getAsString(Args)
1859 << (iOSVersion ? iOSVersion
1860 : TvOSVersion ? TvOSVersion : WatchOSVersion)
1861 ->getAsString(Args);
1862 }
1863 return DarwinPlatform::createOSVersionArg(Platform: Darwin::MacOS, A: macOSVersion,
1864 /*IsSimulator=*/false);
1865 } else if (iOSVersion) {
1866 if (TvOSVersion || WatchOSVersion) {
1867 TheDriver.Diag(diag::err_drv_argument_not_allowed_with)
1868 << iOSVersion->getAsString(Args)
1869 << (TvOSVersion ? TvOSVersion : WatchOSVersion)->getAsString(Args);
1870 }
1871 return DarwinPlatform::createOSVersionArg(
1872 Darwin::IPhoneOS, iOSVersion,
1873 iOSVersion->getOption().getID() ==
1874 options::OPT_mios_simulator_version_min_EQ);
1875 } else if (TvOSVersion) {
1876 if (WatchOSVersion) {
1877 TheDriver.Diag(diag::err_drv_argument_not_allowed_with)
1878 << TvOSVersion->getAsString(Args)
1879 << WatchOSVersion->getAsString(Args);
1880 }
1881 return DarwinPlatform::createOSVersionArg(
1882 Darwin::TvOS, TvOSVersion,
1883 TvOSVersion->getOption().getID() ==
1884 options::OPT_mtvos_simulator_version_min_EQ);
1885 } else if (WatchOSVersion)
1886 return DarwinPlatform::createOSVersionArg(
1887 Darwin::WatchOS, WatchOSVersion,
1888 WatchOSVersion->getOption().getID() ==
1889 options::OPT_mwatchos_simulator_version_min_EQ);
1890 return std::nullopt;
1891}
1892
1893/// Returns the deployment target that's specified using the
1894/// OS_DEPLOYMENT_TARGET environment variable.
1895std::optional<DarwinPlatform>
1896getDeploymentTargetFromEnvironmentVariables(const Driver &TheDriver,
1897 const llvm::Triple &Triple) {
1898 std::string Targets[Darwin::LastDarwinPlatform + 1];
1899 const char *EnvVars[] = {
1900 "MACOSX_DEPLOYMENT_TARGET",
1901 "IPHONEOS_DEPLOYMENT_TARGET",
1902 "TVOS_DEPLOYMENT_TARGET",
1903 "WATCHOS_DEPLOYMENT_TARGET",
1904 "DRIVERKIT_DEPLOYMENT_TARGET",
1905 "XROS_DEPLOYMENT_TARGET"
1906 };
1907 static_assert(std::size(EnvVars) == Darwin::LastDarwinPlatform + 1,
1908 "Missing platform");
1909 for (const auto &I : llvm::enumerate(First: llvm::ArrayRef(EnvVars))) {
1910 if (char *Env = ::getenv(name: I.value()))
1911 Targets[I.index()] = Env;
1912 }
1913
1914 // Allow conflicts among OSX and iOS for historical reasons, but choose the
1915 // default platform.
1916 if (!Targets[Darwin::MacOS].empty() &&
1917 (!Targets[Darwin::IPhoneOS].empty() ||
1918 !Targets[Darwin::WatchOS].empty() || !Targets[Darwin::TvOS].empty() ||
1919 !Targets[Darwin::XROS].empty())) {
1920 if (Triple.getArch() == llvm::Triple::arm ||
1921 Triple.getArch() == llvm::Triple::aarch64 ||
1922 Triple.getArch() == llvm::Triple::thumb)
1923 Targets[Darwin::MacOS] = "";
1924 else
1925 Targets[Darwin::IPhoneOS] = Targets[Darwin::WatchOS] =
1926 Targets[Darwin::TvOS] = Targets[Darwin::XROS] = "";
1927 } else {
1928 // Don't allow conflicts in any other platform.
1929 unsigned FirstTarget = std::size(Targets);
1930 for (unsigned I = 0; I != std::size(Targets); ++I) {
1931 if (Targets[I].empty())
1932 continue;
1933 if (FirstTarget == std::size(Targets))
1934 FirstTarget = I;
1935 else
1936 TheDriver.Diag(diag::err_drv_conflicting_deployment_targets)
1937 << Targets[FirstTarget] << Targets[I];
1938 }
1939 }
1940
1941 for (const auto &Target : llvm::enumerate(First: llvm::ArrayRef(Targets))) {
1942 if (!Target.value().empty())
1943 return DarwinPlatform::createDeploymentTargetEnv(
1944 Platform: (Darwin::DarwinPlatformKind)Target.index(), EnvVarName: EnvVars[Target.index()],
1945 Value: Target.value());
1946 }
1947 return std::nullopt;
1948}
1949
1950/// Returns the SDK name without the optional prefix that ends with a '.' or an
1951/// empty string otherwise.
1952static StringRef dropSDKNamePrefix(StringRef SDKName) {
1953 size_t PrefixPos = SDKName.find(C: '.');
1954 if (PrefixPos == StringRef::npos)
1955 return "";
1956 return SDKName.substr(Start: PrefixPos + 1);
1957}
1958
1959/// Tries to infer the deployment target from the SDK specified by -isysroot
1960/// (or SDKROOT). Uses the version specified in the SDKSettings.json file if
1961/// it's available.
1962std::optional<DarwinPlatform>
1963inferDeploymentTargetFromSDK(DerivedArgList &Args,
1964 const std::optional<DarwinSDKInfo> &SDKInfo) {
1965 const Arg *A = Args.getLastArg(options::OPT_isysroot);
1966 if (!A)
1967 return std::nullopt;
1968 StringRef isysroot = A->getValue();
1969 StringRef SDK = Darwin::getSDKName(isysroot);
1970 if (!SDK.size())
1971 return std::nullopt;
1972
1973 std::string Version;
1974 if (SDKInfo) {
1975 // Get the version from the SDKSettings.json if it's available.
1976 Version = SDKInfo->getVersion().getAsString();
1977 } else {
1978 // Slice the version number out.
1979 // Version number is between the first and the last number.
1980 size_t StartVer = SDK.find_first_of(Chars: "0123456789");
1981 size_t EndVer = SDK.find_last_of(Chars: "0123456789");
1982 if (StartVer != StringRef::npos && EndVer > StartVer)
1983 Version = std::string(SDK.slice(Start: StartVer, End: EndVer + 1));
1984 }
1985 if (Version.empty())
1986 return std::nullopt;
1987
1988 auto CreatePlatformFromSDKName =
1989 [&](StringRef SDK) -> std::optional<DarwinPlatform> {
1990 if (SDK.starts_with(Prefix: "iPhoneOS") || SDK.starts_with(Prefix: "iPhoneSimulator"))
1991 return DarwinPlatform::createFromSDK(
1992 Platform: Darwin::IPhoneOS, Value: Version,
1993 /*IsSimulator=*/SDK.starts_with(Prefix: "iPhoneSimulator"));
1994 else if (SDK.starts_with(Prefix: "MacOSX"))
1995 return DarwinPlatform::createFromSDK(Platform: Darwin::MacOS,
1996 Value: getSystemOrSDKMacOSVersion(MacOSSDKVersion: Version));
1997 else if (SDK.starts_with(Prefix: "WatchOS") || SDK.starts_with(Prefix: "WatchSimulator"))
1998 return DarwinPlatform::createFromSDK(
1999 Platform: Darwin::WatchOS, Value: Version,
2000 /*IsSimulator=*/SDK.starts_with(Prefix: "WatchSimulator"));
2001 else if (SDK.starts_with(Prefix: "AppleTVOS") ||
2002 SDK.starts_with(Prefix: "AppleTVSimulator"))
2003 return DarwinPlatform::createFromSDK(
2004 Platform: Darwin::TvOS, Value: Version,
2005 /*IsSimulator=*/SDK.starts_with(Prefix: "AppleTVSimulator"));
2006 else if (SDK.starts_with(Prefix: "XR"))
2007 return DarwinPlatform::createFromSDK(
2008 Platform: Darwin::XROS, Value: Version,
2009 /*IsSimulator=*/SDK.contains(Other: "Simulator"));
2010 else if (SDK.starts_with(Prefix: "DriverKit"))
2011 return DarwinPlatform::createFromSDK(Platform: Darwin::DriverKit, Value: Version);
2012 return std::nullopt;
2013 };
2014 if (auto Result = CreatePlatformFromSDKName(SDK))
2015 return Result;
2016 // The SDK can be an SDK variant with a name like `<prefix>.<platform>`.
2017 return CreatePlatformFromSDKName(dropSDKNamePrefix(SDKName: SDK));
2018}
2019
2020std::string getOSVersion(llvm::Triple::OSType OS, const llvm::Triple &Triple,
2021 const Driver &TheDriver) {
2022 VersionTuple OsVersion;
2023 llvm::Triple SystemTriple(llvm::sys::getProcessTriple());
2024 switch (OS) {
2025 case llvm::Triple::Darwin:
2026 case llvm::Triple::MacOSX:
2027 // If there is no version specified on triple, and both host and target are
2028 // macos, use the host triple to infer OS version.
2029 if (Triple.isMacOSX() && SystemTriple.isMacOSX() &&
2030 !Triple.getOSMajorVersion())
2031 SystemTriple.getMacOSXVersion(Version&: OsVersion);
2032 else if (!Triple.getMacOSXVersion(OsVersion))
2033 TheDriver.Diag(diag::err_drv_invalid_darwin_version)
2034 << Triple.getOSName();
2035 break;
2036 case llvm::Triple::IOS:
2037 if (Triple.isMacCatalystEnvironment() && !Triple.getOSMajorVersion()) {
2038 OsVersion = VersionTuple(13, 1);
2039 } else
2040 OsVersion = Triple.getiOSVersion();
2041 break;
2042 case llvm::Triple::TvOS:
2043 OsVersion = Triple.getOSVersion();
2044 break;
2045 case llvm::Triple::WatchOS:
2046 OsVersion = Triple.getWatchOSVersion();
2047 break;
2048 case llvm::Triple::XROS:
2049 OsVersion = Triple.getOSVersion();
2050 if (!OsVersion.getMajor())
2051 OsVersion = OsVersion.withMajorReplaced(NewMajor: 1);
2052 break;
2053 case llvm::Triple::DriverKit:
2054 OsVersion = Triple.getDriverKitVersion();
2055 break;
2056 default:
2057 llvm_unreachable("Unexpected OS type");
2058 break;
2059 }
2060
2061 std::string OSVersion;
2062 llvm::raw_string_ostream(OSVersion)
2063 << OsVersion.getMajor() << '.' << OsVersion.getMinor().value_or(u: 0) << '.'
2064 << OsVersion.getSubminor().value_or(u: 0);
2065 return OSVersion;
2066}
2067
2068/// Tries to infer the target OS from the -arch.
2069std::optional<DarwinPlatform>
2070inferDeploymentTargetFromArch(DerivedArgList &Args, const Darwin &Toolchain,
2071 const llvm::Triple &Triple,
2072 const Driver &TheDriver) {
2073 llvm::Triple::OSType OSTy = llvm::Triple::UnknownOS;
2074
2075 StringRef MachOArchName = Toolchain.getMachOArchName(Args);
2076 if (MachOArchName == "arm64" || MachOArchName == "arm64e")
2077 OSTy = llvm::Triple::MacOSX;
2078 else if (MachOArchName == "armv7" || MachOArchName == "armv7s")
2079 OSTy = llvm::Triple::IOS;
2080 else if (MachOArchName == "armv7k" || MachOArchName == "arm64_32")
2081 OSTy = llvm::Triple::WatchOS;
2082 else if (MachOArchName != "armv6m" && MachOArchName != "armv7m" &&
2083 MachOArchName != "armv7em")
2084 OSTy = llvm::Triple::MacOSX;
2085 if (OSTy == llvm::Triple::UnknownOS)
2086 return std::nullopt;
2087 return DarwinPlatform::createFromArch(OS: OSTy,
2088 Value: getOSVersion(OS: OSTy, Triple, TheDriver));
2089}
2090
2091/// Returns the deployment target that's specified using the -target option.
2092std::optional<DarwinPlatform> getDeploymentTargetFromTargetArg(
2093 DerivedArgList &Args, const llvm::Triple &Triple, const Driver &TheDriver,
2094 const std::optional<DarwinSDKInfo> &SDKInfo) {
2095 if (!Args.hasArg(options::OPT_target))
2096 return std::nullopt;
2097 if (Triple.getOS() == llvm::Triple::Darwin ||
2098 Triple.getOS() == llvm::Triple::UnknownOS)
2099 return std::nullopt;
2100 std::string OSVersion = getOSVersion(OS: Triple.getOS(), Triple, TheDriver);
2101 std::optional<llvm::Triple> TargetVariantTriple;
2102 for (const Arg *A : Args.filtered(options::OPT_darwin_target_variant)) {
2103 llvm::Triple TVT(A->getValue());
2104 // Find a matching <arch>-<vendor> target variant triple that can be used.
2105 if ((Triple.getArch() == llvm::Triple::aarch64 ||
2106 TVT.getArchName() == Triple.getArchName()) &&
2107 TVT.getArch() == Triple.getArch() &&
2108 TVT.getSubArch() == Triple.getSubArch() &&
2109 TVT.getVendor() == Triple.getVendor()) {
2110 if (TargetVariantTriple)
2111 continue;
2112 A->claim();
2113 // Accept a -target-variant triple when compiling code that may run on
2114 // macOS or Mac Catalyst.
2115 if ((Triple.isMacOSX() && TVT.getOS() == llvm::Triple::IOS &&
2116 TVT.isMacCatalystEnvironment()) ||
2117 (TVT.isMacOSX() && Triple.getOS() == llvm::Triple::IOS &&
2118 Triple.isMacCatalystEnvironment())) {
2119 TargetVariantTriple = TVT;
2120 continue;
2121 }
2122 TheDriver.Diag(diag::err_drv_target_variant_invalid)
2123 << A->getSpelling() << A->getValue();
2124 }
2125 }
2126 return DarwinPlatform::createFromTarget(Triple, OSVersion,
2127 Args.getLastArg(options::OPT_target),
2128 TargetVariantTriple, SDKInfo);
2129}
2130
2131/// Returns the deployment target that's specified using the -mtargetos option.
2132std::optional<DarwinPlatform> getDeploymentTargetFromMTargetOSArg(
2133 DerivedArgList &Args, const Driver &TheDriver,
2134 const std::optional<DarwinSDKInfo> &SDKInfo) {
2135 auto *A = Args.getLastArg(options::OPT_mtargetos_EQ);
2136 if (!A)
2137 return std::nullopt;
2138 llvm::Triple TT(llvm::Twine("unknown-apple-") + A->getValue());
2139 switch (TT.getOS()) {
2140 case llvm::Triple::MacOSX:
2141 case llvm::Triple::IOS:
2142 case llvm::Triple::TvOS:
2143 case llvm::Triple::WatchOS:
2144 case llvm::Triple::XROS:
2145 break;
2146 default:
2147 TheDriver.Diag(diag::err_drv_invalid_os_in_arg)
2148 << TT.getOSName() << A->getAsString(Args);
2149 return std::nullopt;
2150 }
2151
2152 VersionTuple Version = TT.getOSVersion();
2153 if (!Version.getMajor()) {
2154 TheDriver.Diag(diag::err_drv_invalid_version_number)
2155 << A->getAsString(Args);
2156 return std::nullopt;
2157 }
2158 return DarwinPlatform::createFromMTargetOS(OS: TT.getOS(), OSVersion: Version,
2159 Environment: TT.getEnvironment(), A: A, SDKInfo);
2160}
2161
2162std::optional<DarwinSDKInfo> parseSDKSettings(llvm::vfs::FileSystem &VFS,
2163 const ArgList &Args,
2164 const Driver &TheDriver) {
2165 const Arg *A = Args.getLastArg(options::OPT_isysroot);
2166 if (!A)
2167 return std::nullopt;
2168 StringRef isysroot = A->getValue();
2169 auto SDKInfoOrErr = parseDarwinSDKInfo(VFS, SDKRootPath: isysroot);
2170 if (!SDKInfoOrErr) {
2171 llvm::consumeError(Err: SDKInfoOrErr.takeError());
2172 TheDriver.Diag(diag::warn_drv_darwin_sdk_invalid_settings);
2173 return std::nullopt;
2174 }
2175 return *SDKInfoOrErr;
2176}
2177
2178} // namespace
2179
2180void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
2181 const OptTable &Opts = getDriver().getOpts();
2182
2183 // Support allowing the SDKROOT environment variable used by xcrun and other
2184 // Xcode tools to define the default sysroot, by making it the default for
2185 // isysroot.
2186 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
2187 // Warn if the path does not exist.
2188 if (!getVFS().exists(A->getValue()))
2189 getDriver().Diag(clang::diag::warn_missing_sysroot) << A->getValue();
2190 } else {
2191 if (char *env = ::getenv(name: "SDKROOT")) {
2192 // We only use this value as the default if it is an absolute path,
2193 // exists, and it is not the root path.
2194 if (llvm::sys::path::is_absolute(path: env) && getVFS().exists(Path: env) &&
2195 StringRef(env) != "/") {
2196 Args.append(Args.MakeSeparateArg(
2197 nullptr, Opts.getOption(options::OPT_isysroot), env));
2198 }
2199 }
2200 }
2201
2202 // Read the SDKSettings.json file for more information, like the SDK version
2203 // that we can pass down to the compiler.
2204 SDKInfo = parseSDKSettings(VFS&: getVFS(), Args, TheDriver: getDriver());
2205
2206 // The OS and the version can be specified using the -target argument.
2207 std::optional<DarwinPlatform> OSTarget =
2208 getDeploymentTargetFromTargetArg(Args, Triple: getTriple(), TheDriver: getDriver(), SDKInfo);
2209 if (OSTarget) {
2210 // Disallow mixing -target and -mtargetos=.
2211 if (const auto *MTargetOSArg = Args.getLastArg(options::OPT_mtargetos_EQ)) {
2212 std::string TargetArgStr = OSTarget->getAsString(Args, Opts);
2213 std::string MTargetOSArgStr = MTargetOSArg->getAsString(Args);
2214 getDriver().Diag(diag::err_drv_cannot_mix_options)
2215 << TargetArgStr << MTargetOSArgStr;
2216 }
2217 std::optional<DarwinPlatform> OSVersionArgTarget =
2218 getDeploymentTargetFromOSVersionArg(Args, TheDriver: getDriver());
2219 if (OSVersionArgTarget) {
2220 unsigned TargetMajor, TargetMinor, TargetMicro;
2221 bool TargetExtra;
2222 unsigned ArgMajor, ArgMinor, ArgMicro;
2223 bool ArgExtra;
2224 if (OSTarget->getPlatform() != OSVersionArgTarget->getPlatform() ||
2225 (Driver::GetReleaseVersion(Str: OSTarget->getOSVersion(), Major&: TargetMajor,
2226 Minor&: TargetMinor, Micro&: TargetMicro, HadExtra&: TargetExtra) &&
2227 Driver::GetReleaseVersion(Str: OSVersionArgTarget->getOSVersion(),
2228 Major&: ArgMajor, Minor&: ArgMinor, Micro&: ArgMicro, HadExtra&: ArgExtra) &&
2229 (VersionTuple(TargetMajor, TargetMinor, TargetMicro) !=
2230 VersionTuple(ArgMajor, ArgMinor, ArgMicro) ||
2231 TargetExtra != ArgExtra))) {
2232 // Select the OS version from the -m<os>-version-min argument when
2233 // the -target does not include an OS version.
2234 if (OSTarget->getPlatform() == OSVersionArgTarget->getPlatform() &&
2235 !OSTarget->hasOSVersion()) {
2236 OSTarget->setOSVersion(OSVersionArgTarget->getOSVersion());
2237 } else {
2238 // Warn about -m<os>-version-min that doesn't match the OS version
2239 // that's specified in the target.
2240 std::string OSVersionArg =
2241 OSVersionArgTarget->getAsString(Args, Opts);
2242 std::string TargetArg = OSTarget->getAsString(Args, Opts);
2243 getDriver().Diag(clang::diag::warn_drv_overriding_option)
2244 << OSVersionArg << TargetArg;
2245 }
2246 }
2247 }
2248 } else if ((OSTarget = getDeploymentTargetFromMTargetOSArg(Args, TheDriver: getDriver(),
2249 SDKInfo))) {
2250 // The OS target can be specified using the -mtargetos= argument.
2251 // Disallow mixing -mtargetos= and -m<os>version-min=.
2252 std::optional<DarwinPlatform> OSVersionArgTarget =
2253 getDeploymentTargetFromOSVersionArg(Args, TheDriver: getDriver());
2254 if (OSVersionArgTarget) {
2255 std::string MTargetOSArgStr = OSTarget->getAsString(Args, Opts);
2256 std::string OSVersionArgStr = OSVersionArgTarget->getAsString(Args, Opts);
2257 getDriver().Diag(diag::err_drv_cannot_mix_options)
2258 << MTargetOSArgStr << OSVersionArgStr;
2259 }
2260 } else {
2261 // The OS target can be specified using the -m<os>version-min argument.
2262 OSTarget = getDeploymentTargetFromOSVersionArg(Args, TheDriver: getDriver());
2263 // If no deployment target was specified on the command line, check for
2264 // environment defines.
2265 if (!OSTarget) {
2266 OSTarget =
2267 getDeploymentTargetFromEnvironmentVariables(TheDriver: getDriver(), Triple: getTriple());
2268 if (OSTarget) {
2269 // Don't infer simulator from the arch when the SDK is also specified.
2270 std::optional<DarwinPlatform> SDKTarget =
2271 inferDeploymentTargetFromSDK(Args, SDKInfo);
2272 if (SDKTarget)
2273 OSTarget->setEnvironment(SDKTarget->getEnvironment());
2274 }
2275 }
2276 // If there is no command-line argument to specify the Target version and
2277 // no environment variable defined, see if we can set the default based
2278 // on -isysroot using SDKSettings.json if it exists.
2279 if (!OSTarget) {
2280 OSTarget = inferDeploymentTargetFromSDK(Args, SDKInfo);
2281 /// If the target was successfully constructed from the SDK path, try to
2282 /// infer the SDK info if the SDK doesn't have it.
2283 if (OSTarget && !SDKInfo)
2284 SDKInfo = OSTarget->inferSDKInfo();
2285 }
2286 // If no OS targets have been specified, try to guess platform from -target
2287 // or arch name and compute the version from the triple.
2288 if (!OSTarget)
2289 OSTarget =
2290 inferDeploymentTargetFromArch(Args, Toolchain: *this, Triple: getTriple(), TheDriver: getDriver());
2291 }
2292
2293 assert(OSTarget && "Unable to infer Darwin variant");
2294 OSTarget->addOSVersionMinArgument(Args, Opts);
2295 DarwinPlatformKind Platform = OSTarget->getPlatform();
2296
2297 unsigned Major, Minor, Micro;
2298 bool HadExtra;
2299 // The major version should not be over this number.
2300 const unsigned MajorVersionLimit = 1000;
2301 // Set the tool chain target information.
2302 if (Platform == MacOS) {
2303 if (!Driver::GetReleaseVersion(OSTarget->getOSVersion(), Major, Minor,
2304 Micro, HadExtra) ||
2305 HadExtra || Major < 10 || Major >= MajorVersionLimit || Minor >= 100 ||
2306 Micro >= 100)
2307 getDriver().Diag(diag::err_drv_invalid_version_number)
2308 << OSTarget->getAsString(Args, Opts);
2309 } else if (Platform == IPhoneOS) {
2310 if (!Driver::GetReleaseVersion(OSTarget->getOSVersion(), Major, Minor,
2311 Micro, HadExtra) ||
2312 HadExtra || Major >= MajorVersionLimit || Minor >= 100 || Micro >= 100)
2313 getDriver().Diag(diag::err_drv_invalid_version_number)
2314 << OSTarget->getAsString(Args, Opts);
2315 ;
2316 if (OSTarget->getEnvironment() == MacCatalyst &&
2317 (Major < 13 || (Major == 13 && Minor < 1))) {
2318 getDriver().Diag(diag::err_drv_invalid_version_number)
2319 << OSTarget->getAsString(Args, Opts);
2320 Major = 13;
2321 Minor = 1;
2322 Micro = 0;
2323 }
2324 // For 32-bit targets, the deployment target for iOS has to be earlier than
2325 // iOS 11.
2326 if (getTriple().isArch32Bit() && Major >= 11) {
2327 // If the deployment target is explicitly specified, print a diagnostic.
2328 if (OSTarget->isExplicitlySpecified()) {
2329 if (OSTarget->getEnvironment() == MacCatalyst)
2330 getDriver().Diag(diag::err_invalid_macos_32bit_deployment_target);
2331 else
2332 getDriver().Diag(diag::warn_invalid_ios_deployment_target)
2333 << OSTarget->getAsString(Args, Opts);
2334 // Otherwise, set it to 10.99.99.
2335 } else {
2336 Major = 10;
2337 Minor = 99;
2338 Micro = 99;
2339 }
2340 }
2341 } else if (Platform == TvOS) {
2342 if (!Driver::GetReleaseVersion(OSTarget->getOSVersion(), Major, Minor,
2343 Micro, HadExtra) ||
2344 HadExtra || Major >= MajorVersionLimit || Minor >= 100 || Micro >= 100)
2345 getDriver().Diag(diag::err_drv_invalid_version_number)
2346 << OSTarget->getAsString(Args, Opts);
2347 } else if (Platform == WatchOS) {
2348 if (!Driver::GetReleaseVersion(OSTarget->getOSVersion(), Major, Minor,
2349 Micro, HadExtra) ||
2350 HadExtra || Major >= MajorVersionLimit || Minor >= 100 || Micro >= 100)
2351 getDriver().Diag(diag::err_drv_invalid_version_number)
2352 << OSTarget->getAsString(Args, Opts);
2353 } else if (Platform == DriverKit) {
2354 if (!Driver::GetReleaseVersion(OSTarget->getOSVersion(), Major, Minor,
2355 Micro, HadExtra) ||
2356 HadExtra || Major < 19 || Major >= MajorVersionLimit || Minor >= 100 ||
2357 Micro >= 100)
2358 getDriver().Diag(diag::err_drv_invalid_version_number)
2359 << OSTarget->getAsString(Args, Opts);
2360 } else if (Platform == XROS) {
2361 if (!Driver::GetReleaseVersion(OSTarget->getOSVersion(), Major, Minor,
2362 Micro, HadExtra) ||
2363 HadExtra || Major < 1 || Major >= MajorVersionLimit || Minor >= 100 ||
2364 Micro >= 100)
2365 getDriver().Diag(diag::err_drv_invalid_version_number)
2366 << OSTarget->getAsString(Args, Opts);
2367 } else
2368 llvm_unreachable("unknown kind of Darwin platform");
2369
2370 DarwinEnvironmentKind Environment = OSTarget->getEnvironment();
2371 // Recognize iOS targets with an x86 architecture as the iOS simulator.
2372 if (Environment == NativeEnvironment && Platform != MacOS &&
2373 Platform != DriverKit && OSTarget->canInferSimulatorFromArch() &&
2374 getTriple().isX86())
2375 Environment = Simulator;
2376
2377 VersionTuple NativeTargetVersion;
2378 if (Environment == MacCatalyst)
2379 NativeTargetVersion = OSTarget->getNativeTargetVersion();
2380 setTarget(Platform, Environment, Major, Minor, Micro, NativeTargetVersion);
2381 TargetVariantTriple = OSTarget->getTargetVariantTriple();
2382
2383 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
2384 StringRef SDK = getSDKName(isysroot: A->getValue());
2385 if (SDK.size() > 0) {
2386 size_t StartVer = SDK.find_first_of(Chars: "0123456789");
2387 StringRef SDKName = SDK.slice(Start: 0, End: StartVer);
2388 if (!SDKName.starts_with(getPlatformFamily()) &&
2389 !dropSDKNamePrefix(SDKName).starts_with(getPlatformFamily()))
2390 getDriver().Diag(diag::warn_incompatible_sysroot)
2391 << SDKName << getPlatformFamily();
2392 }
2393 }
2394}
2395
2396// For certain platforms/environments almost all resources (e.g., headers) are
2397// located in sub-directories, e.g., for DriverKit they live in
2398// <SYSROOT>/System/DriverKit/usr/include (instead of <SYSROOT>/usr/include).
2399static void AppendPlatformPrefix(SmallString<128> &Path,
2400 const llvm::Triple &T) {
2401 if (T.isDriverKit()) {
2402 llvm::sys::path::append(path&: Path, a: "System", b: "DriverKit");
2403 }
2404}
2405
2406// Returns the effective sysroot from either -isysroot or --sysroot, plus the
2407// platform prefix (if any).
2408llvm::SmallString<128>
2409DarwinClang::GetEffectiveSysroot(const llvm::opt::ArgList &DriverArgs) const {
2410 llvm::SmallString<128> Path("/");
2411 if (DriverArgs.hasArg(options::OPT_isysroot))
2412 Path = DriverArgs.getLastArgValue(options::OPT_isysroot);
2413 else if (!getDriver().SysRoot.empty())
2414 Path = getDriver().SysRoot;
2415
2416 if (hasEffectiveTriple()) {
2417 AppendPlatformPrefix(Path, T: getEffectiveTriple());
2418 }
2419 return Path;
2420}
2421
2422void DarwinClang::AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
2423 llvm::opt::ArgStringList &CC1Args) const {
2424 const Driver &D = getDriver();
2425
2426 llvm::SmallString<128> Sysroot = GetEffectiveSysroot(DriverArgs);
2427
2428 bool NoStdInc = DriverArgs.hasArg(options::OPT_nostdinc);
2429 bool NoStdlibInc = DriverArgs.hasArg(options::OPT_nostdlibinc);
2430 bool NoBuiltinInc = DriverArgs.hasFlag(
2431 options::OPT_nobuiltininc, options::OPT_ibuiltininc, /*Default=*/false);
2432 bool ForceBuiltinInc = DriverArgs.hasFlag(
2433 options::OPT_ibuiltininc, options::OPT_nobuiltininc, /*Default=*/false);
2434
2435 // Add <sysroot>/usr/local/include
2436 if (!NoStdInc && !NoStdlibInc) {
2437 SmallString<128> P(Sysroot);
2438 llvm::sys::path::append(path&: P, a: "usr", b: "local", c: "include");
2439 addSystemInclude(DriverArgs, CC1Args, Path: P);
2440 }
2441
2442 // Add the Clang builtin headers (<resource>/include)
2443 if (!(NoStdInc && !ForceBuiltinInc) && !NoBuiltinInc) {
2444 SmallString<128> P(D.ResourceDir);
2445 llvm::sys::path::append(path&: P, a: "include");
2446 addSystemInclude(DriverArgs, CC1Args, Path: P);
2447 }
2448
2449 if (NoStdInc || NoStdlibInc)
2450 return;
2451
2452 // Check for configure-time C include directories.
2453 llvm::StringRef CIncludeDirs(C_INCLUDE_DIRS);
2454 if (!CIncludeDirs.empty()) {
2455 llvm::SmallVector<llvm::StringRef, 5> dirs;
2456 CIncludeDirs.split(A&: dirs, Separator: ":");
2457 for (llvm::StringRef dir : dirs) {
2458 llvm::StringRef Prefix =
2459 llvm::sys::path::is_absolute(path: dir) ? "" : llvm::StringRef(Sysroot);
2460 addExternCSystemInclude(DriverArgs, CC1Args, Path: Prefix + dir);
2461 }
2462 } else {
2463 // Otherwise, add <sysroot>/usr/include.
2464 SmallString<128> P(Sysroot);
2465 llvm::sys::path::append(path&: P, a: "usr", b: "include");
2466 addExternCSystemInclude(DriverArgs, CC1Args, Path: P.str());
2467 }
2468}
2469
2470bool DarwinClang::AddGnuCPlusPlusIncludePaths(const llvm::opt::ArgList &DriverArgs,
2471 llvm::opt::ArgStringList &CC1Args,
2472 llvm::SmallString<128> Base,
2473 llvm::StringRef Version,
2474 llvm::StringRef ArchDir,
2475 llvm::StringRef BitDir) const {
2476 llvm::sys::path::append(path&: Base, a: Version);
2477
2478 // Add the base dir
2479 addSystemInclude(DriverArgs, CC1Args, Path: Base);
2480
2481 // Add the multilib dirs
2482 {
2483 llvm::SmallString<128> P = Base;
2484 if (!ArchDir.empty())
2485 llvm::sys::path::append(path&: P, a: ArchDir);
2486 if (!BitDir.empty())
2487 llvm::sys::path::append(path&: P, a: BitDir);
2488 addSystemInclude(DriverArgs, CC1Args, Path: P);
2489 }
2490
2491 // Add the backward dir
2492 {
2493 llvm::SmallString<128> P = Base;
2494 llvm::sys::path::append(path&: P, a: "backward");
2495 addSystemInclude(DriverArgs, CC1Args, Path: P);
2496 }
2497
2498 return getVFS().exists(Path: Base);
2499}
2500
2501void DarwinClang::AddClangCXXStdlibIncludeArgs(
2502 const llvm::opt::ArgList &DriverArgs,
2503 llvm::opt::ArgStringList &CC1Args) const {
2504 // The implementation from a base class will pass through the -stdlib to
2505 // CC1Args.
2506 // FIXME: this should not be necessary, remove usages in the frontend
2507 // (e.g. HeaderSearchOptions::UseLibcxx) and don't pipe -stdlib.
2508 // Also check whether this is used for setting library search paths.
2509 ToolChain::AddClangCXXStdlibIncludeArgs(DriverArgs, CC1Args);
2510
2511 if (DriverArgs.hasArg(options::OPT_nostdinc, options::OPT_nostdlibinc,
2512 options::OPT_nostdincxx))
2513 return;
2514
2515 llvm::SmallString<128> Sysroot = GetEffectiveSysroot(DriverArgs);
2516
2517 switch (GetCXXStdlibType(Args: DriverArgs)) {
2518 case ToolChain::CST_Libcxx: {
2519 // On Darwin, libc++ can be installed in one of the following places:
2520 // 1. Alongside the compiler in <install>/include/c++/v1
2521 // 2. Alongside the compiler in <clang-executable-folder>/../include/c++/v1
2522 // 3. In a SDK (or a custom sysroot) in <sysroot>/usr/include/c++/v1
2523 //
2524 // The precedence of paths is as listed above, i.e. we take the first path
2525 // that exists. Note that we never include libc++ twice -- we take the first
2526 // path that exists and don't send the other paths to CC1 (otherwise
2527 // include_next could break).
2528 //
2529 // Also note that in most cases, (1) and (2) are exactly the same path.
2530 // Those two paths will differ only when the `clang` program being run
2531 // is actually a symlink to the real executable.
2532
2533 // Check for (1)
2534 // Get from '<install>/bin' to '<install>/include/c++/v1'.
2535 // Note that InstallBin can be relative, so we use '..' instead of
2536 // parent_path.
2537 llvm::SmallString<128> InstallBin =
2538 llvm::StringRef(getDriver().getInstalledDir()); // <install>/bin
2539 llvm::sys::path::append(path&: InstallBin, a: "..", b: "include", c: "c++", d: "v1");
2540 if (getVFS().exists(Path: InstallBin)) {
2541 addSystemInclude(DriverArgs, CC1Args, Path: InstallBin);
2542 return;
2543 } else if (DriverArgs.hasArg(options::OPT_v)) {
2544 llvm::errs() << "ignoring nonexistent directory \"" << InstallBin
2545 << "\"\n";
2546 }
2547
2548 // (2) Check for the folder where the executable is located, if different.
2549 if (getDriver().getInstalledDir() != getDriver().Dir) {
2550 InstallBin = llvm::StringRef(getDriver().Dir);
2551 llvm::sys::path::append(path&: InstallBin, a: "..", b: "include", c: "c++", d: "v1");
2552 if (getVFS().exists(Path: InstallBin)) {
2553 addSystemInclude(DriverArgs, CC1Args, Path: InstallBin);
2554 return;
2555 } else if (DriverArgs.hasArg(options::OPT_v)) {
2556 llvm::errs() << "ignoring nonexistent directory \"" << InstallBin
2557 << "\"\n";
2558 }
2559 }
2560
2561 // Otherwise, check for (3)
2562 llvm::SmallString<128> SysrootUsr = Sysroot;
2563 llvm::sys::path::append(path&: SysrootUsr, a: "usr", b: "include", c: "c++", d: "v1");
2564 if (getVFS().exists(Path: SysrootUsr)) {
2565 addSystemInclude(DriverArgs, CC1Args, Path: SysrootUsr);
2566 return;
2567 } else if (DriverArgs.hasArg(options::OPT_v)) {
2568 llvm::errs() << "ignoring nonexistent directory \"" << SysrootUsr
2569 << "\"\n";
2570 }
2571
2572 // Otherwise, don't add any path.
2573 break;
2574 }
2575
2576 case ToolChain::CST_Libstdcxx:
2577 llvm::SmallString<128> UsrIncludeCxx = Sysroot;
2578 llvm::sys::path::append(path&: UsrIncludeCxx, a: "usr", b: "include", c: "c++");
2579
2580 llvm::Triple::ArchType arch = getTriple().getArch();
2581 bool IsBaseFound = true;
2582 switch (arch) {
2583 default: break;
2584
2585 case llvm::Triple::x86:
2586 case llvm::Triple::x86_64:
2587 IsBaseFound = AddGnuCPlusPlusIncludePaths(DriverArgs, CC1Args, Base: UsrIncludeCxx,
2588 Version: "4.2.1",
2589 ArchDir: "i686-apple-darwin10",
2590 BitDir: arch == llvm::Triple::x86_64 ? "x86_64" : "");
2591 IsBaseFound |= AddGnuCPlusPlusIncludePaths(DriverArgs, CC1Args, Base: UsrIncludeCxx,
2592 Version: "4.0.0", ArchDir: "i686-apple-darwin8",
2593 BitDir: "");
2594 break;
2595
2596 case llvm::Triple::arm:
2597 case llvm::Triple::thumb:
2598 IsBaseFound = AddGnuCPlusPlusIncludePaths(DriverArgs, CC1Args, Base: UsrIncludeCxx,
2599 Version: "4.2.1",
2600 ArchDir: "arm-apple-darwin10",
2601 BitDir: "v7");
2602 IsBaseFound |= AddGnuCPlusPlusIncludePaths(DriverArgs, CC1Args, Base: UsrIncludeCxx,
2603 Version: "4.2.1",
2604 ArchDir: "arm-apple-darwin10",
2605 BitDir: "v6");
2606 break;
2607
2608 case llvm::Triple::aarch64:
2609 IsBaseFound = AddGnuCPlusPlusIncludePaths(DriverArgs, CC1Args, Base: UsrIncludeCxx,
2610 Version: "4.2.1",
2611 ArchDir: "arm64-apple-darwin10",
2612 BitDir: "");
2613 break;
2614 }
2615
2616 if (!IsBaseFound) {
2617 getDriver().Diag(diag::warn_drv_libstdcxx_not_found);
2618 }
2619
2620 break;
2621 }
2622}
2623
2624void DarwinClang::AddCXXStdlibLibArgs(const ArgList &Args,
2625 ArgStringList &CmdArgs) const {
2626 CXXStdlibType Type = GetCXXStdlibType(Args);
2627
2628 switch (Type) {
2629 case ToolChain::CST_Libcxx:
2630 CmdArgs.push_back(Elt: "-lc++");
2631 if (Args.hasArg(options::OPT_fexperimental_library))
2632 CmdArgs.push_back(Elt: "-lc++experimental");
2633 break;
2634
2635 case ToolChain::CST_Libstdcxx:
2636 // Unfortunately, -lstdc++ doesn't always exist in the standard search path;
2637 // it was previously found in the gcc lib dir. However, for all the Darwin
2638 // platforms we care about it was -lstdc++.6, so we search for that
2639 // explicitly if we can't see an obvious -lstdc++ candidate.
2640
2641 // Check in the sysroot first.
2642 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
2643 SmallString<128> P(A->getValue());
2644 llvm::sys::path::append(path&: P, a: "usr", b: "lib", c: "libstdc++.dylib");
2645
2646 if (!getVFS().exists(Path: P)) {
2647 llvm::sys::path::remove_filename(path&: P);
2648 llvm::sys::path::append(path&: P, a: "libstdc++.6.dylib");
2649 if (getVFS().exists(Path: P)) {
2650 CmdArgs.push_back(Elt: Args.MakeArgString(Str: P));
2651 return;
2652 }
2653 }
2654 }
2655
2656 // Otherwise, look in the root.
2657 // FIXME: This should be removed someday when we don't have to care about
2658 // 10.6 and earlier, where /usr/lib/libstdc++.dylib does not exist.
2659 if (!getVFS().exists(Path: "/usr/lib/libstdc++.dylib") &&
2660 getVFS().exists(Path: "/usr/lib/libstdc++.6.dylib")) {
2661 CmdArgs.push_back(Elt: "/usr/lib/libstdc++.6.dylib");
2662 return;
2663 }
2664
2665 // Otherwise, let the linker search.
2666 CmdArgs.push_back(Elt: "-lstdc++");
2667 break;
2668 }
2669}
2670
2671void DarwinClang::AddCCKextLibArgs(const ArgList &Args,
2672 ArgStringList &CmdArgs) const {
2673 // For Darwin platforms, use the compiler-rt-based support library
2674 // instead of the gcc-provided one (which is also incidentally
2675 // only present in the gcc lib dir, which makes it hard to find).
2676
2677 SmallString<128> P(getDriver().ResourceDir);
2678 llvm::sys::path::append(path&: P, a: "lib", b: "darwin");
2679
2680 // Use the newer cc_kext for iOS ARM after 6.0.
2681 if (isTargetWatchOS()) {
2682 llvm::sys::path::append(path&: P, a: "libclang_rt.cc_kext_watchos.a");
2683 } else if (isTargetTvOS()) {
2684 llvm::sys::path::append(path&: P, a: "libclang_rt.cc_kext_tvos.a");
2685 } else if (isTargetIPhoneOS()) {
2686 llvm::sys::path::append(path&: P, a: "libclang_rt.cc_kext_ios.a");
2687 } else if (isTargetDriverKit()) {
2688 // DriverKit doesn't want extra runtime support.
2689 } else if (isTargetXROSDevice()) {
2690 llvm::sys::path::append(
2691 path&: P, a: llvm::Twine("libclang_rt.cc_kext_") +
2692 llvm::Triple::getOSTypeName(Kind: llvm::Triple::XROS) + ".a");
2693 } else {
2694 llvm::sys::path::append(path&: P, a: "libclang_rt.cc_kext.a");
2695 }
2696
2697 // For now, allow missing resource libraries to support developers who may
2698 // not have compiler-rt checked out or integrated into their build.
2699 if (getVFS().exists(Path: P))
2700 CmdArgs.push_back(Elt: Args.MakeArgString(Str: P));
2701}
2702
2703DerivedArgList *MachO::TranslateArgs(const DerivedArgList &Args,
2704 StringRef BoundArch,
2705 Action::OffloadKind) const {
2706 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
2707 const OptTable &Opts = getDriver().getOpts();
2708
2709 // FIXME: We really want to get out of the tool chain level argument
2710 // translation business, as it makes the driver functionality much
2711 // more opaque. For now, we follow gcc closely solely for the
2712 // purpose of easily achieving feature parity & testability. Once we
2713 // have something that works, we should reevaluate each translation
2714 // and try to push it down into tool specific logic.
2715
2716 for (Arg *A : Args) {
2717 if (A->getOption().matches(options::OPT_Xarch__)) {
2718 // Skip this argument unless the architecture matches either the toolchain
2719 // triple arch, or the arch being bound.
2720 StringRef XarchArch = A->getValue(N: 0);
2721 if (!(XarchArch == getArchName() ||
2722 (!BoundArch.empty() && XarchArch == BoundArch)))
2723 continue;
2724
2725 Arg *OriginalArg = A;
2726 TranslateXarchArgs(Args, A, DAL);
2727
2728 // Linker input arguments require custom handling. The problem is that we
2729 // have already constructed the phase actions, so we can not treat them as
2730 // "input arguments".
2731 if (A->getOption().hasFlag(Val: options::LinkerInput)) {
2732 // Convert the argument into individual Zlinker_input_args.
2733 for (const char *Value : A->getValues()) {
2734 DAL->AddSeparateArg(
2735 OriginalArg, Opts.getOption(options::OPT_Zlinker_input), Value);
2736 }
2737 continue;
2738 }
2739 }
2740
2741 // Sob. These is strictly gcc compatible for the time being. Apple
2742 // gcc translates options twice, which means that self-expanding
2743 // options add duplicates.
2744 switch ((options::ID)A->getOption().getID()) {
2745 default:
2746 DAL->append(A);
2747 break;
2748
2749 case options::OPT_mkernel:
2750 case options::OPT_fapple_kext:
2751 DAL->append(A);
2752 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
2753 break;
2754
2755 case options::OPT_dependency_file:
2756 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF), A->getValue());
2757 break;
2758
2759 case options::OPT_gfull:
2760 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
2761 DAL->AddFlagArg(
2762 A, Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols));
2763 break;
2764
2765 case options::OPT_gused:
2766 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
2767 DAL->AddFlagArg(
2768 A, Opts.getOption(options::OPT_feliminate_unused_debug_symbols));
2769 break;
2770
2771 case options::OPT_shared:
2772 DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib));
2773 break;
2774
2775 case options::OPT_fconstant_cfstrings:
2776 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings));
2777 break;
2778
2779 case options::OPT_fno_constant_cfstrings:
2780 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings));
2781 break;
2782
2783 case options::OPT_Wnonportable_cfstrings:
2784 DAL->AddFlagArg(A,
2785 Opts.getOption(options::OPT_mwarn_nonportable_cfstrings));
2786 break;
2787
2788 case options::OPT_Wno_nonportable_cfstrings:
2789 DAL->AddFlagArg(
2790 A, Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings));
2791 break;
2792 }
2793 }
2794
2795 // Add the arch options based on the particular spelling of -arch, to match
2796 // how the driver works.
2797 if (!BoundArch.empty()) {
2798 StringRef Name = BoundArch;
2799 const Option MCpu = Opts.getOption(options::OPT_mcpu_EQ);
2800 const Option MArch = Opts.getOption(clang::driver::options::OPT_march_EQ);
2801
2802 // This code must be kept in sync with LLVM's getArchTypeForDarwinArch,
2803 // which defines the list of which architectures we accept.
2804 if (Name == "ppc")
2805 ;
2806 else if (Name == "ppc601")
2807 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MCpu, Value: "601");
2808 else if (Name == "ppc603")
2809 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MCpu, Value: "603");
2810 else if (Name == "ppc604")
2811 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MCpu, Value: "604");
2812 else if (Name == "ppc604e")
2813 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MCpu, Value: "604e");
2814 else if (Name == "ppc750")
2815 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MCpu, Value: "750");
2816 else if (Name == "ppc7400")
2817 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MCpu, Value: "7400");
2818 else if (Name == "ppc7450")
2819 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MCpu, Value: "7450");
2820 else if (Name == "ppc970")
2821 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MCpu, Value: "970");
2822
2823 else if (Name == "ppc64" || Name == "ppc64le")
2824 DAL->AddFlagArg(nullptr, Opts.getOption(options::OPT_m64));
2825
2826 else if (Name == "i386")
2827 ;
2828 else if (Name == "i486")
2829 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "i486");
2830 else if (Name == "i586")
2831 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "i586");
2832 else if (Name == "i686")
2833 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "i686");
2834 else if (Name == "pentium")
2835 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "pentium");
2836 else if (Name == "pentium2")
2837 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "pentium2");
2838 else if (Name == "pentpro")
2839 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "pentiumpro");
2840 else if (Name == "pentIIm3")
2841 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "pentium2");
2842
2843 else if (Name == "x86_64" || Name == "x86_64h")
2844 DAL->AddFlagArg(nullptr, Opts.getOption(options::OPT_m64));
2845
2846 else if (Name == "arm")
2847 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv4t");
2848 else if (Name == "armv4t")
2849 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv4t");
2850 else if (Name == "armv5")
2851 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv5tej");
2852 else if (Name == "xscale")
2853 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "xscale");
2854 else if (Name == "armv6")
2855 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv6k");
2856 else if (Name == "armv6m")
2857 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv6m");
2858 else if (Name == "armv7")
2859 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv7a");
2860 else if (Name == "armv7em")
2861 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv7em");
2862 else if (Name == "armv7k")
2863 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv7k");
2864 else if (Name == "armv7m")
2865 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv7m");
2866 else if (Name == "armv7s")
2867 DAL->AddJoinedArg(BaseArg: nullptr, Opt: MArch, Value: "armv7s");
2868 }
2869
2870 return DAL;
2871}
2872
2873void MachO::AddLinkRuntimeLibArgs(const ArgList &Args,
2874 ArgStringList &CmdArgs,
2875 bool ForceLinkBuiltinRT) const {
2876 // Embedded targets are simple at the moment, not supporting sanitizers and
2877 // with different libraries for each member of the product { static, PIC } x
2878 // { hard-float, soft-float }
2879 llvm::SmallString<32> CompilerRT = StringRef("");
2880 CompilerRT +=
2881 (tools::arm::getARMFloatABI(TC: *this, Args) == tools::arm::FloatABI::Hard)
2882 ? "hard"
2883 : "soft";
2884 CompilerRT += Args.hasArg(options::OPT_fPIC) ? "_pic" : "_static";
2885
2886 AddLinkRuntimeLib(Args, CmdArgs, Component: CompilerRT, Opts: RLO_IsEmbedded);
2887}
2888
2889bool Darwin::isAlignedAllocationUnavailable() const {
2890 llvm::Triple::OSType OS;
2891
2892 if (isTargetMacCatalyst())
2893 return TargetVersion < alignedAllocMinVersion(OS: llvm::Triple::MacOSX);
2894 switch (TargetPlatform) {
2895 case MacOS: // Earlier than 10.13.
2896 OS = llvm::Triple::MacOSX;
2897 break;
2898 case IPhoneOS:
2899 OS = llvm::Triple::IOS;
2900 break;
2901 case TvOS: // Earlier than 11.0.
2902 OS = llvm::Triple::TvOS;
2903 break;
2904 case WatchOS: // Earlier than 4.0.
2905 OS = llvm::Triple::WatchOS;
2906 break;
2907 case XROS: // Always available.
2908 return false;
2909 case DriverKit: // Always available.
2910 return false;
2911 }
2912
2913 return TargetVersion < alignedAllocMinVersion(OS);
2914}
2915
2916static bool sdkSupportsBuiltinModules(const Darwin::DarwinPlatformKind &TargetPlatform, const std::optional<DarwinSDKInfo> &SDKInfo) {
2917 if (!SDKInfo)
2918 return false;
2919
2920 VersionTuple SDKVersion = SDKInfo->getVersion();
2921 switch (TargetPlatform) {
2922 case Darwin::MacOS:
2923 return SDKVersion >= VersionTuple(99U);
2924 case Darwin::IPhoneOS:
2925 return SDKVersion >= VersionTuple(99U);
2926 case Darwin::TvOS:
2927 return SDKVersion >= VersionTuple(99U);
2928 case Darwin::WatchOS:
2929 return SDKVersion >= VersionTuple(99U);
2930 case Darwin::XROS:
2931 return SDKVersion >= VersionTuple(99U);
2932 default:
2933 return true;
2934 }
2935}
2936
2937void Darwin::addClangTargetOptions(const llvm::opt::ArgList &DriverArgs,
2938 llvm::opt::ArgStringList &CC1Args,
2939 Action::OffloadKind DeviceOffloadKind) const {
2940 // Pass "-faligned-alloc-unavailable" only when the user hasn't manually
2941 // enabled or disabled aligned allocations.
2942 if (!DriverArgs.hasArgNoClaim(options::OPT_faligned_allocation,
2943 options::OPT_fno_aligned_allocation) &&
2944 isAlignedAllocationUnavailable())
2945 CC1Args.push_back(Elt: "-faligned-alloc-unavailable");
2946
2947 addClangCC1ASTargetOptions(Args: DriverArgs, CC1ASArgs&: CC1Args);
2948
2949 // Enable compatibility mode for NSItemProviderCompletionHandler in
2950 // Foundation/NSItemProvider.h.
2951 CC1Args.push_back(Elt: "-fcompatibility-qualified-id-block-type-checking");
2952
2953 // Give static local variables in inline functions hidden visibility when
2954 // -fvisibility-inlines-hidden is enabled.
2955 if (!DriverArgs.getLastArgNoClaim(
2956 options::OPT_fvisibility_inlines_hidden_static_local_var,
2957 options::OPT_fno_visibility_inlines_hidden_static_local_var))
2958 CC1Args.push_back(Elt: "-fvisibility-inlines-hidden-static-local-var");
2959
2960 // Earlier versions of the darwin SDK have the C standard library headers
2961 // all together in the Darwin module. That leads to module cycles with
2962 // the _Builtin_ modules. e.g. <inttypes.h> on darwin includes <stdint.h>.
2963 // The builtin <stdint.h> include-nexts <stdint.h>. When both of those
2964 // darwin headers are in the Darwin module, there's a module cycle Darwin ->
2965 // _Builtin_stdint -> Darwin (i.e. inttypes.h (darwin) -> stdint.h (builtin) ->
2966 // stdint.h (darwin)). This is fixed in later versions of the darwin SDK,
2967 // but until then, the builtin headers need to join the system modules.
2968 // i.e. when the builtin stdint.h is in the Darwin module too, the cycle
2969 // goes away. Note that -fbuiltin-headers-in-system-modules does nothing
2970 // to fix the same problem with C++ headers, and is generally fragile.
2971 if (!sdkSupportsBuiltinModules(TargetPlatform, SDKInfo))
2972 CC1Args.push_back(Elt: "-fbuiltin-headers-in-system-modules");
2973
2974 if (!DriverArgs.hasArgNoClaim(options::OPT_fdefine_target_os_macros,
2975 options::OPT_fno_define_target_os_macros))
2976 CC1Args.push_back(Elt: "-fdefine-target-os-macros");
2977}
2978
2979void Darwin::addClangCC1ASTargetOptions(
2980 const llvm::opt::ArgList &Args, llvm::opt::ArgStringList &CC1ASArgs) const {
2981 if (TargetVariantTriple) {
2982 CC1ASArgs.push_back(Elt: "-darwin-target-variant-triple");
2983 CC1ASArgs.push_back(Elt: Args.MakeArgString(Str: TargetVariantTriple->getTriple()));
2984 }
2985
2986 if (SDKInfo) {
2987 /// Pass the SDK version to the compiler when the SDK information is
2988 /// available.
2989 auto EmitTargetSDKVersionArg = [&](const VersionTuple &V) {
2990 std::string Arg;
2991 llvm::raw_string_ostream OS(Arg);
2992 OS << "-target-sdk-version=" << V;
2993 CC1ASArgs.push_back(Elt: Args.MakeArgString(Str: OS.str()));
2994 };
2995
2996 if (isTargetMacCatalyst()) {
2997 if (const auto *MacOStoMacCatalystMapping = SDKInfo->getVersionMapping(
2998 Kind: DarwinSDKInfo::OSEnvPair::macOStoMacCatalystPair())) {
2999 std::optional<VersionTuple> SDKVersion = MacOStoMacCatalystMapping->map(
3000 Key: SDKInfo->getVersion(), MinimumValue: minimumMacCatalystDeploymentTarget(),
3001 MaximumValue: std::nullopt);
3002 EmitTargetSDKVersionArg(
3003 SDKVersion ? *SDKVersion : minimumMacCatalystDeploymentTarget());
3004 }
3005 } else {
3006 EmitTargetSDKVersionArg(SDKInfo->getVersion());
3007 }
3008
3009 /// Pass the target variant SDK version to the compiler when the SDK
3010 /// information is available and is required for target variant.
3011 if (TargetVariantTriple) {
3012 if (isTargetMacCatalyst()) {
3013 std::string Arg;
3014 llvm::raw_string_ostream OS(Arg);
3015 OS << "-darwin-target-variant-sdk-version=" << SDKInfo->getVersion();
3016 CC1ASArgs.push_back(Elt: Args.MakeArgString(Str: OS.str()));
3017 } else if (const auto *MacOStoMacCatalystMapping =
3018 SDKInfo->getVersionMapping(
3019 Kind: DarwinSDKInfo::OSEnvPair::macOStoMacCatalystPair())) {
3020 if (std::optional<VersionTuple> SDKVersion =
3021 MacOStoMacCatalystMapping->map(
3022 Key: SDKInfo->getVersion(), MinimumValue: minimumMacCatalystDeploymentTarget(),
3023 MaximumValue: std::nullopt)) {
3024 std::string Arg;
3025 llvm::raw_string_ostream OS(Arg);
3026 OS << "-darwin-target-variant-sdk-version=" << *SDKVersion;
3027 CC1ASArgs.push_back(Elt: Args.MakeArgString(Str: OS.str()));
3028 }
3029 }
3030 }
3031 }
3032}
3033
3034DerivedArgList *
3035Darwin::TranslateArgs(const DerivedArgList &Args, StringRef BoundArch,
3036 Action::OffloadKind DeviceOffloadKind) const {
3037 // First get the generic Apple args, before moving onto Darwin-specific ones.
3038 DerivedArgList *DAL =
3039 MachO::TranslateArgs(Args, BoundArch, DeviceOffloadKind);
3040
3041 // If no architecture is bound, none of the translations here are relevant.
3042 if (BoundArch.empty())
3043 return DAL;
3044
3045 // Add an explicit version min argument for the deployment target. We do this
3046 // after argument translation because -Xarch_ arguments may add a version min
3047 // argument.
3048 AddDeploymentTarget(Args&: *DAL);
3049
3050 // For iOS 6, undo the translation to add -static for -mkernel/-fapple-kext.
3051 // FIXME: It would be far better to avoid inserting those -static arguments,
3052 // but we can't check the deployment target in the translation code until
3053 // it is set here.
3054 if (isTargetWatchOSBased() || isTargetDriverKit() || isTargetXROS() ||
3055 (isTargetIOSBased() && !isIPhoneOSVersionLT(V0: 6, V1: 0))) {
3056 for (ArgList::iterator it = DAL->begin(), ie = DAL->end(); it != ie; ) {
3057 Arg *A = *it;
3058 ++it;
3059 if (A->getOption().getID() != options::OPT_mkernel &&
3060 A->getOption().getID() != options::OPT_fapple_kext)
3061 continue;
3062 assert(it != ie && "unexpected argument translation");
3063 A = *it;
3064 assert(A->getOption().getID() == options::OPT_static &&
3065 "missing expected -static argument");
3066 *it = nullptr;
3067 ++it;
3068 }
3069 }
3070
3071 auto Arch = tools::darwin::getArchTypeForMachOArchName(Str: BoundArch);
3072 if ((Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb)) {
3073 if (Args.hasFlag(options::OPT_fomit_frame_pointer,
3074 options::OPT_fno_omit_frame_pointer, false))
3075 getDriver().Diag(clang::diag::warn_drv_unsupported_opt_for_target)
3076 << "-fomit-frame-pointer" << BoundArch;
3077 }
3078
3079 return DAL;
3080}
3081
3082ToolChain::UnwindTableLevel MachO::getDefaultUnwindTableLevel(const ArgList &Args) const {
3083 // Unwind tables are not emitted if -fno-exceptions is supplied (except when
3084 // targeting x86_64).
3085 if (getArch() == llvm::Triple::x86_64 ||
3086 (GetExceptionModel(Args) != llvm::ExceptionHandling::SjLj &&
3087 Args.hasFlag(options::OPT_fexceptions, options::OPT_fno_exceptions,
3088 true)))
3089 return (getArch() == llvm::Triple::aarch64 ||
3090 getArch() == llvm::Triple::aarch64_32)
3091 ? UnwindTableLevel::Synchronous
3092 : UnwindTableLevel::Asynchronous;
3093
3094 return UnwindTableLevel::None;
3095}
3096
3097bool MachO::UseDwarfDebugFlags() const {
3098 if (const char *S = ::getenv(name: "RC_DEBUG_OPTIONS"))
3099 return S[0] != '\0';
3100 return false;
3101}
3102
3103std::string MachO::GetGlobalDebugPathRemapping() const {
3104 if (const char *S = ::getenv(name: "RC_DEBUG_PREFIX_MAP"))
3105 return S;
3106 return {};
3107}
3108
3109llvm::ExceptionHandling Darwin::GetExceptionModel(const ArgList &Args) const {
3110 // Darwin uses SjLj exceptions on ARM.
3111 if (getTriple().getArch() != llvm::Triple::arm &&
3112 getTriple().getArch() != llvm::Triple::thumb)
3113 return llvm::ExceptionHandling::None;
3114
3115 // Only watchOS uses the new DWARF/Compact unwinding method.
3116 llvm::Triple Triple(ComputeLLVMTriple(Args));
3117 if (Triple.isWatchABI())
3118 return llvm::ExceptionHandling::DwarfCFI;
3119
3120 return llvm::ExceptionHandling::SjLj;
3121}
3122
3123bool Darwin::SupportsEmbeddedBitcode() const {
3124 assert(TargetInitialized && "Target not initialized!");
3125 if (isTargetIPhoneOS() && isIPhoneOSVersionLT(V0: 6, V1: 0))
3126 return false;
3127 return true;
3128}
3129
3130bool MachO::isPICDefault() const { return true; }
3131
3132bool MachO::isPIEDefault(const llvm::opt::ArgList &Args) const { return false; }
3133
3134bool MachO::isPICDefaultForced() const {
3135 return (getArch() == llvm::Triple::x86_64 ||
3136 getArch() == llvm::Triple::aarch64);
3137}
3138
3139bool MachO::SupportsProfiling() const {
3140 // Profiling instrumentation is only supported on x86.
3141 return getTriple().isX86();
3142}
3143
3144void Darwin::addMinVersionArgs(const ArgList &Args,
3145 ArgStringList &CmdArgs) const {
3146 VersionTuple TargetVersion = getTripleTargetVersion();
3147
3148 assert(!isTargetXROS() && "xrOS always uses -platform-version");
3149
3150 if (isTargetWatchOS())
3151 CmdArgs.push_back(Elt: "-watchos_version_min");
3152 else if (isTargetWatchOSSimulator())
3153 CmdArgs.push_back(Elt: "-watchos_simulator_version_min");
3154 else if (isTargetTvOS())
3155 CmdArgs.push_back(Elt: "-tvos_version_min");
3156 else if (isTargetTvOSSimulator())
3157 CmdArgs.push_back(Elt: "-tvos_simulator_version_min");
3158 else if (isTargetDriverKit())
3159 CmdArgs.push_back(Elt: "-driverkit_version_min");
3160 else if (isTargetIOSSimulator())
3161 CmdArgs.push_back(Elt: "-ios_simulator_version_min");
3162 else if (isTargetIOSBased())
3163 CmdArgs.push_back(Elt: "-iphoneos_version_min");
3164 else if (isTargetMacCatalyst())
3165 CmdArgs.push_back(Elt: "-maccatalyst_version_min");
3166 else {
3167 assert(isTargetMacOS() && "unexpected target");
3168 CmdArgs.push_back(Elt: "-macosx_version_min");
3169 }
3170
3171 VersionTuple MinTgtVers = getEffectiveTriple().getMinimumSupportedOSVersion();
3172 if (!MinTgtVers.empty() && MinTgtVers > TargetVersion)
3173 TargetVersion = MinTgtVers;
3174 CmdArgs.push_back(Elt: Args.MakeArgString(Str: TargetVersion.getAsString()));
3175 if (TargetVariantTriple) {
3176 assert(isTargetMacOSBased() && "unexpected target");
3177 VersionTuple VariantTargetVersion;
3178 if (TargetVariantTriple->isMacOSX()) {
3179 CmdArgs.push_back(Elt: "-macosx_version_min");
3180 TargetVariantTriple->getMacOSXVersion(Version&: VariantTargetVersion);
3181 } else {
3182 assert(TargetVariantTriple->isiOS() &&
3183 TargetVariantTriple->isMacCatalystEnvironment() &&
3184 "unexpected target variant triple");
3185 CmdArgs.push_back(Elt: "-maccatalyst_version_min");
3186 VariantTargetVersion = TargetVariantTriple->getiOSVersion();
3187 }
3188 VersionTuple MinTgtVers =
3189 TargetVariantTriple->getMinimumSupportedOSVersion();
3190 if (MinTgtVers.getMajor() && MinTgtVers > VariantTargetVersion)
3191 VariantTargetVersion = MinTgtVers;
3192 CmdArgs.push_back(Elt: Args.MakeArgString(Str: VariantTargetVersion.getAsString()));
3193 }
3194}
3195
3196static const char *getPlatformName(Darwin::DarwinPlatformKind Platform,
3197 Darwin::DarwinEnvironmentKind Environment) {
3198 switch (Platform) {
3199 case Darwin::MacOS:
3200 return "macos";
3201 case Darwin::IPhoneOS:
3202 if (Environment == Darwin::MacCatalyst)
3203 return "mac catalyst";
3204 return "ios";
3205 case Darwin::TvOS:
3206 return "tvos";
3207 case Darwin::WatchOS:
3208 return "watchos";
3209 case Darwin::XROS:
3210 return "xros";
3211 case Darwin::DriverKit:
3212 return "driverkit";
3213 }
3214 llvm_unreachable("invalid platform");
3215}
3216
3217void Darwin::addPlatformVersionArgs(const llvm::opt::ArgList &Args,
3218 llvm::opt::ArgStringList &CmdArgs) const {
3219 auto EmitPlatformVersionArg =
3220 [&](const VersionTuple &TV, Darwin::DarwinPlatformKind TargetPlatform,
3221 Darwin::DarwinEnvironmentKind TargetEnvironment,
3222 const llvm::Triple &TT) {
3223 // -platform_version <platform> <target_version> <sdk_version>
3224 // Both the target and SDK version support only up to 3 components.
3225 CmdArgs.push_back(Elt: "-platform_version");
3226 std::string PlatformName =
3227 getPlatformName(Platform: TargetPlatform, Environment: TargetEnvironment);
3228 if (TargetEnvironment == Darwin::Simulator)
3229 PlatformName += "-simulator";
3230 CmdArgs.push_back(Elt: Args.MakeArgString(Str: PlatformName));
3231 VersionTuple TargetVersion = TV.withoutBuild();
3232 if ((TargetPlatform == Darwin::IPhoneOS ||
3233 TargetPlatform == Darwin::TvOS) &&
3234 getTriple().getArchName() == "arm64e" &&
3235 TargetVersion.getMajor() < 14) {
3236 // arm64e slice is supported on iOS/tvOS 14+ only.
3237 TargetVersion = VersionTuple(14, 0);
3238 }
3239 VersionTuple MinTgtVers = TT.getMinimumSupportedOSVersion();
3240 if (!MinTgtVers.empty() && MinTgtVers > TargetVersion)
3241 TargetVersion = MinTgtVers;
3242 CmdArgs.push_back(Elt: Args.MakeArgString(Str: TargetVersion.getAsString()));
3243
3244 if (TargetPlatform == IPhoneOS && TargetEnvironment == MacCatalyst) {
3245 // Mac Catalyst programs must use the appropriate iOS SDK version
3246 // that corresponds to the macOS SDK version used for the compilation.
3247 std::optional<VersionTuple> iOSSDKVersion;
3248 if (SDKInfo) {
3249 if (const auto *MacOStoMacCatalystMapping =
3250 SDKInfo->getVersionMapping(
3251 Kind: DarwinSDKInfo::OSEnvPair::macOStoMacCatalystPair())) {
3252 iOSSDKVersion = MacOStoMacCatalystMapping->map(
3253 Key: SDKInfo->getVersion().withoutBuild(),
3254 MinimumValue: minimumMacCatalystDeploymentTarget(), MaximumValue: std::nullopt);
3255 }
3256 }
3257 CmdArgs.push_back(Elt: Args.MakeArgString(
3258 Str: (iOSSDKVersion ? *iOSSDKVersion
3259 : minimumMacCatalystDeploymentTarget())
3260 .getAsString()));
3261 return;
3262 }
3263
3264 if (SDKInfo) {
3265 VersionTuple SDKVersion = SDKInfo->getVersion().withoutBuild();
3266 if (!SDKVersion.getMinor())
3267 SDKVersion = VersionTuple(SDKVersion.getMajor(), 0);
3268 CmdArgs.push_back(Elt: Args.MakeArgString(Str: SDKVersion.getAsString()));
3269 } else {
3270 // Use an SDK version that's matching the deployment target if the SDK
3271 // version is missing. This is preferred over an empty SDK version
3272 // (0.0.0) as the system's runtime might expect the linked binary to
3273 // contain a valid SDK version in order for the binary to work
3274 // correctly. It's reasonable to use the deployment target version as
3275 // a proxy for the SDK version because older SDKs don't guarantee
3276 // support for deployment targets newer than the SDK versions, so that
3277 // rules out using some predetermined older SDK version, which leaves
3278 // the deployment target version as the only reasonable choice.
3279 CmdArgs.push_back(Elt: Args.MakeArgString(Str: TargetVersion.getAsString()));
3280 }
3281 };
3282 EmitPlatformVersionArg(getTripleTargetVersion(), TargetPlatform,
3283 TargetEnvironment, getEffectiveTriple());
3284 if (!TargetVariantTriple)
3285 return;
3286 Darwin::DarwinPlatformKind Platform;
3287 Darwin::DarwinEnvironmentKind Environment;
3288 VersionTuple TargetVariantVersion;
3289 if (TargetVariantTriple->isMacOSX()) {
3290 TargetVariantTriple->getMacOSXVersion(Version&: TargetVariantVersion);
3291 Platform = Darwin::MacOS;
3292 Environment = Darwin::NativeEnvironment;
3293 } else {
3294 assert(TargetVariantTriple->isiOS() &&
3295 TargetVariantTriple->isMacCatalystEnvironment() &&
3296 "unexpected target variant triple");
3297 TargetVariantVersion = TargetVariantTriple->getiOSVersion();
3298 Platform = Darwin::IPhoneOS;
3299 Environment = Darwin::MacCatalyst;
3300 }
3301 EmitPlatformVersionArg(TargetVariantVersion, Platform, Environment,
3302 *TargetVariantTriple);
3303}
3304
3305// Add additional link args for the -dynamiclib option.
3306static void addDynamicLibLinkArgs(const Darwin &D, const ArgList &Args,
3307 ArgStringList &CmdArgs) {
3308 // Derived from darwin_dylib1 spec.
3309 if (D.isTargetIPhoneOS()) {
3310 if (D.isIPhoneOSVersionLT(V0: 3, V1: 1))
3311 CmdArgs.push_back(Elt: "-ldylib1.o");
3312 return;
3313 }
3314
3315 if (!D.isTargetMacOS())
3316 return;
3317 if (D.isMacosxVersionLT(V0: 10, V1: 5))
3318 CmdArgs.push_back(Elt: "-ldylib1.o");
3319 else if (D.isMacosxVersionLT(V0: 10, V1: 6))
3320 CmdArgs.push_back(Elt: "-ldylib1.10.5.o");
3321}
3322
3323// Add additional link args for the -bundle option.
3324static void addBundleLinkArgs(const Darwin &D, const ArgList &Args,
3325 ArgStringList &CmdArgs) {
3326 if (Args.hasArg(options::OPT_static))
3327 return;
3328 // Derived from darwin_bundle1 spec.
3329 if ((D.isTargetIPhoneOS() && D.isIPhoneOSVersionLT(V0: 3, V1: 1)) ||
3330 (D.isTargetMacOS() && D.isMacosxVersionLT(V0: 10, V1: 6)))
3331 CmdArgs.push_back(Elt: "-lbundle1.o");
3332}
3333
3334// Add additional link args for the -pg option.
3335static void addPgProfilingLinkArgs(const Darwin &D, const ArgList &Args,
3336 ArgStringList &CmdArgs) {
3337 if (D.isTargetMacOS() && D.isMacosxVersionLT(V0: 10, V1: 9)) {
3338 if (Args.hasArg(options::OPT_static) || Args.hasArg(options::OPT_object) ||
3339 Args.hasArg(options::OPT_preload)) {
3340 CmdArgs.push_back(Elt: "-lgcrt0.o");
3341 } else {
3342 CmdArgs.push_back(Elt: "-lgcrt1.o");
3343
3344 // darwin_crt2 spec is empty.
3345 }
3346 // By default on OS X 10.8 and later, we don't link with a crt1.o
3347 // file and the linker knows to use _main as the entry point. But,
3348 // when compiling with -pg, we need to link with the gcrt1.o file,
3349 // so pass the -no_new_main option to tell the linker to use the
3350 // "start" symbol as the entry point.
3351 if (!D.isMacosxVersionLT(V0: 10, V1: 8))
3352 CmdArgs.push_back(Elt: "-no_new_main");
3353 } else {
3354 D.getDriver().Diag(diag::err_drv_clang_unsupported_opt_pg_darwin)
3355 << D.isTargetMacOSBased();
3356 }
3357}
3358
3359static void addDefaultCRTLinkArgs(const Darwin &D, const ArgList &Args,
3360 ArgStringList &CmdArgs) {
3361 // Derived from darwin_crt1 spec.
3362 if (D.isTargetIPhoneOS()) {
3363 if (D.getArch() == llvm::Triple::aarch64)
3364 ; // iOS does not need any crt1 files for arm64
3365 else if (D.isIPhoneOSVersionLT(V0: 3, V1: 1))
3366 CmdArgs.push_back(Elt: "-lcrt1.o");
3367 else if (D.isIPhoneOSVersionLT(V0: 6, V1: 0))
3368 CmdArgs.push_back(Elt: "-lcrt1.3.1.o");
3369 return;
3370 }
3371
3372 if (!D.isTargetMacOS())
3373 return;
3374 if (D.isMacosxVersionLT(V0: 10, V1: 5))
3375 CmdArgs.push_back(Elt: "-lcrt1.o");
3376 else if (D.isMacosxVersionLT(V0: 10, V1: 6))
3377 CmdArgs.push_back(Elt: "-lcrt1.10.5.o");
3378 else if (D.isMacosxVersionLT(V0: 10, V1: 8))
3379 CmdArgs.push_back(Elt: "-lcrt1.10.6.o");
3380 // darwin_crt2 spec is empty.
3381}
3382
3383void Darwin::addStartObjectFileArgs(const ArgList &Args,
3384 ArgStringList &CmdArgs) const {
3385 // Derived from startfile spec.
3386 if (Args.hasArg(options::OPT_dynamiclib))
3387 addDynamicLibLinkArgs(D: *this, Args, CmdArgs);
3388 else if (Args.hasArg(options::OPT_bundle))
3389 addBundleLinkArgs(D: *this, Args, CmdArgs);
3390 else if (Args.hasArg(options::OPT_pg) && SupportsProfiling())
3391 addPgProfilingLinkArgs(D: *this, Args, CmdArgs);
3392 else if (Args.hasArg(options::OPT_static) ||
3393 Args.hasArg(options::OPT_object) ||
3394 Args.hasArg(options::OPT_preload))
3395 CmdArgs.push_back(Elt: "-lcrt0.o");
3396 else
3397 addDefaultCRTLinkArgs(D: *this, Args, CmdArgs);
3398
3399 if (isTargetMacOS() && Args.hasArg(options::OPT_shared_libgcc) &&
3400 isMacosxVersionLT(10, 5)) {
3401 const char *Str = Args.MakeArgString(Str: GetFilePath(Name: "crt3.o"));
3402 CmdArgs.push_back(Elt: Str);
3403 }
3404}
3405
3406void Darwin::CheckObjCARC() const {
3407 if (isTargetIOSBased() || isTargetWatchOSBased() || isTargetXROS() ||
3408 (isTargetMacOSBased() && !isMacosxVersionLT(V0: 10, V1: 6)))
3409 return;
3410 getDriver().Diag(diag::err_arc_unsupported_on_toolchain);
3411}
3412
3413SanitizerMask Darwin::getSupportedSanitizers() const {
3414 const bool IsX86_64 = getTriple().getArch() == llvm::Triple::x86_64;
3415 const bool IsAArch64 = getTriple().getArch() == llvm::Triple::aarch64;
3416 SanitizerMask Res = ToolChain::getSupportedSanitizers();
3417 Res |= SanitizerKind::Address;
3418 Res |= SanitizerKind::PointerCompare;
3419 Res |= SanitizerKind::PointerSubtract;
3420 Res |= SanitizerKind::Leak;
3421 Res |= SanitizerKind::Fuzzer;
3422 Res |= SanitizerKind::FuzzerNoLink;
3423 Res |= SanitizerKind::ObjCCast;
3424
3425 // Prior to 10.9, macOS shipped a version of the C++ standard library without
3426 // C++11 support. The same is true of iOS prior to version 5. These OS'es are
3427 // incompatible with -fsanitize=vptr.
3428 if (!(isTargetMacOSBased() && isMacosxVersionLT(V0: 10, V1: 9)) &&
3429 !(isTargetIPhoneOS() && isIPhoneOSVersionLT(V0: 5, V1: 0)))
3430 Res |= SanitizerKind::Vptr;
3431
3432 if ((IsX86_64 || IsAArch64) &&
3433 (isTargetMacOSBased() || isTargetIOSSimulator() ||
3434 isTargetTvOSSimulator() || isTargetWatchOSSimulator())) {
3435 Res |= SanitizerKind::Thread;
3436 }
3437 return Res;
3438}
3439
3440void Darwin::printVerboseInfo(raw_ostream &OS) const {
3441 CudaInstallation->print(OS);
3442 RocmInstallation->print(OS);
3443}
3444

source code of clang/lib/Driver/ToolChains/Darwin.cpp