blob: 78d7bf4b3dc7129d1e1003a4345572d3ea31b809 [file] [log] [blame]
David L. Jonesf561aba2017-03-08 01:02:16 +00001//===--- Darwin.cpp - Darwin Tool and ToolChain Implementations -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "Darwin.h"
11#include "Arch/ARM.h"
12#include "CommonArgs.h"
Akira Hatanaka3e40c302017-07-19 17:17:50 +000013#include "clang/Basic/AlignedAllocation.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000014#include "clang/Basic/ObjCRuntime.h"
15#include "clang/Basic/VirtualFileSystem.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/Support/Path.h"
24#include "llvm/Support/ScopedPrinter.h"
25#include "llvm/Support/TargetParser.h"
26#include <cstdlib> // ::getenv
27
28using namespace clang::driver;
29using namespace clang::driver::tools;
30using namespace clang::driver::toolchains;
31using namespace clang;
32using namespace llvm::opt;
33
34llvm::Triple::ArchType darwin::getArchTypeForMachOArchName(StringRef Str) {
35 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
36 // archs which Darwin doesn't use.
37
38 // The matching this routine does is fairly pointless, since it is neither the
39 // complete architecture list, nor a reasonable subset. The problem is that
40 // historically the driver driver accepts this and also ties its -march=
41 // handling to the architecture name, so we need to be careful before removing
42 // support for it.
43
44 // This code must be kept in sync with Clang's Darwin specific argument
45 // translation.
46
47 return llvm::StringSwitch<llvm::Triple::ArchType>(Str)
48 .Cases("ppc", "ppc601", "ppc603", "ppc604", "ppc604e", llvm::Triple::ppc)
49 .Cases("ppc750", "ppc7400", "ppc7450", "ppc970", llvm::Triple::ppc)
50 .Case("ppc64", llvm::Triple::ppc64)
51 .Cases("i386", "i486", "i486SX", "i586", "i686", llvm::Triple::x86)
52 .Cases("pentium", "pentpro", "pentIIm3", "pentIIm5", "pentium4",
53 llvm::Triple::x86)
54 .Cases("x86_64", "x86_64h", llvm::Triple::x86_64)
55 // This is derived from the driver driver.
56 .Cases("arm", "armv4t", "armv5", "armv6", "armv6m", llvm::Triple::arm)
57 .Cases("armv7", "armv7em", "armv7k", "armv7m", llvm::Triple::arm)
58 .Cases("armv7s", "xscale", llvm::Triple::arm)
59 .Case("arm64", llvm::Triple::aarch64)
60 .Case("r600", llvm::Triple::r600)
61 .Case("amdgcn", llvm::Triple::amdgcn)
62 .Case("nvptx", llvm::Triple::nvptx)
63 .Case("nvptx64", llvm::Triple::nvptx64)
64 .Case("amdil", llvm::Triple::amdil)
65 .Case("spir", llvm::Triple::spir)
66 .Default(llvm::Triple::UnknownArch);
67}
68
69void darwin::setTripleTypeForMachOArchName(llvm::Triple &T, StringRef Str) {
70 const llvm::Triple::ArchType Arch = getArchTypeForMachOArchName(Str);
Florian Hahnef5bbd62017-07-27 16:28:39 +000071 llvm::ARM::ArchKind ArchKind = llvm::ARM::parseArch(Str);
David L. Jonesf561aba2017-03-08 01:02:16 +000072 T.setArch(Arch);
73
74 if (Str == "x86_64h")
75 T.setArchName(Str);
Florian Hahnef5bbd62017-07-27 16:28:39 +000076 else if (ArchKind == llvm::ARM::ArchKind::ARMV6M ||
77 ArchKind == llvm::ARM::ArchKind::ARMV7M ||
78 ArchKind == llvm::ARM::ArchKind::ARMV7EM) {
David L. Jonesf561aba2017-03-08 01:02:16 +000079 T.setOS(llvm::Triple::UnknownOS);
80 T.setObjectFormat(llvm::Triple::MachO);
81 }
82}
83
84void darwin::Assembler::ConstructJob(Compilation &C, const JobAction &JA,
85 const InputInfo &Output,
86 const InputInfoList &Inputs,
87 const ArgList &Args,
88 const char *LinkingOutput) const {
89 ArgStringList CmdArgs;
90
91 assert(Inputs.size() == 1 && "Unexpected number of inputs.");
92 const InputInfo &Input = Inputs[0];
93
94 // Determine the original source input.
95 const Action *SourceAction = &JA;
96 while (SourceAction->getKind() != Action::InputClass) {
97 assert(!SourceAction->getInputs().empty() && "unexpected root action!");
98 SourceAction = SourceAction->getInputs()[0];
99 }
100
101 // If -fno-integrated-as is used add -Q to the darwin assember driver to make
102 // sure it runs its system assembler not clang's integrated assembler.
103 // Applicable to darwin11+ and Xcode 4+. darwin<10 lacked integrated-as.
104 // FIXME: at run-time detect assembler capabilities or rely on version
105 // information forwarded by -target-assembler-version.
106 if (Args.hasArg(options::OPT_fno_integrated_as)) {
107 const llvm::Triple &T(getToolChain().getTriple());
108 if (!(T.isMacOSX() && T.isMacOSXVersionLT(10, 7)))
109 CmdArgs.push_back("-Q");
110 }
111
112 // Forward -g, assuming we are dealing with an actual assembly file.
113 if (SourceAction->getType() == types::TY_Asm ||
114 SourceAction->getType() == types::TY_PP_Asm) {
115 if (Args.hasArg(options::OPT_gstabs))
116 CmdArgs.push_back("--gstabs");
117 else if (Args.hasArg(options::OPT_g_Group))
118 CmdArgs.push_back("-g");
119 }
120
121 // Derived from asm spec.
122 AddMachOArch(Args, CmdArgs);
123
124 // Use -force_cpusubtype_ALL on x86 by default.
125 if (getToolChain().getArch() == llvm::Triple::x86 ||
126 getToolChain().getArch() == llvm::Triple::x86_64 ||
127 Args.hasArg(options::OPT_force__cpusubtype__ALL))
128 CmdArgs.push_back("-force_cpusubtype_ALL");
129
130 if (getToolChain().getArch() != llvm::Triple::x86_64 &&
131 (((Args.hasArg(options::OPT_mkernel) ||
132 Args.hasArg(options::OPT_fapple_kext)) &&
133 getMachOToolChain().isKernelStatic()) ||
134 Args.hasArg(options::OPT_static)))
135 CmdArgs.push_back("-static");
136
137 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler);
138
139 assert(Output.isFilename() && "Unexpected lipo output.");
140 CmdArgs.push_back("-o");
141 CmdArgs.push_back(Output.getFilename());
142
143 assert(Input.isFilename() && "Invalid input.");
144 CmdArgs.push_back(Input.getFilename());
145
146 // asm_final spec is empty.
147
148 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("as"));
149 C.addCommand(llvm::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
150}
151
152void darwin::MachOTool::anchor() {}
153
154void darwin::MachOTool::AddMachOArch(const ArgList &Args,
155 ArgStringList &CmdArgs) const {
156 StringRef ArchName = getMachOToolChain().getMachOArchName(Args);
157
158 // Derived from darwin_arch spec.
159 CmdArgs.push_back("-arch");
160 CmdArgs.push_back(Args.MakeArgString(ArchName));
161
162 // FIXME: Is this needed anymore?
163 if (ArchName == "arm")
164 CmdArgs.push_back("-force_cpusubtype_ALL");
165}
166
167bool darwin::Linker::NeedsTempPath(const InputInfoList &Inputs) const {
168 // We only need to generate a temp path for LTO if we aren't compiling object
169 // files. When compiling source files, we run 'dsymutil' after linking. We
170 // don't run 'dsymutil' when compiling object files.
171 for (const auto &Input : Inputs)
172 if (Input.getType() != types::TY_Object)
173 return true;
174
175 return false;
176}
177
178/// \brief Pass -no_deduplicate to ld64 under certain conditions:
179///
180/// - Either -O0 or -O1 is explicitly specified
181/// - No -O option is specified *and* this is a compile+link (implicit -O0)
182///
183/// Also do *not* add -no_deduplicate when no -O option is specified and this
184/// is just a link (we can't imply -O0)
185static bool shouldLinkerNotDedup(bool IsLinkerOnlyAction, const ArgList &Args) {
186 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
187 if (A->getOption().matches(options::OPT_O0))
188 return true;
189 if (A->getOption().matches(options::OPT_O))
190 return llvm::StringSwitch<bool>(A->getValue())
191 .Case("1", true)
192 .Default(false);
193 return false; // OPT_Ofast & OPT_O4
194 }
195
196 if (!IsLinkerOnlyAction) // Implicit -O0 for compile+linker only.
197 return true;
198 return false;
199}
200
201void darwin::Linker::AddLinkArgs(Compilation &C, const ArgList &Args,
202 ArgStringList &CmdArgs,
203 const InputInfoList &Inputs) const {
204 const Driver &D = getToolChain().getDriver();
205 const toolchains::MachO &MachOTC = getMachOToolChain();
206
207 unsigned Version[5] = {0, 0, 0, 0, 0};
208 if (Arg *A = Args.getLastArg(options::OPT_mlinker_version_EQ)) {
209 if (!Driver::GetReleaseVersion(A->getValue(), Version))
210 D.Diag(diag::err_drv_invalid_version_number) << A->getAsString(Args);
211 }
212
213 // Newer linkers support -demangle. Pass it if supported and not disabled by
214 // the user.
215 if (Version[0] >= 100 && !Args.hasArg(options::OPT_Z_Xlinker__no_demangle))
216 CmdArgs.push_back("-demangle");
217
218 if (Args.hasArg(options::OPT_rdynamic) && Version[0] >= 137)
219 CmdArgs.push_back("-export_dynamic");
220
221 // If we are using App Extension restrictions, pass a flag to the linker
222 // telling it that the compiled code has been audited.
223 if (Args.hasFlag(options::OPT_fapplication_extension,
224 options::OPT_fno_application_extension, false))
225 CmdArgs.push_back("-application_extension");
226
227 if (D.isUsingLTO()) {
228 // If we are using LTO, then automatically create a temporary file path for
229 // the linker to use, so that it's lifetime will extend past a possible
230 // dsymutil step.
231 if (Version[0] >= 116 && NeedsTempPath(Inputs)) {
232 const char *TmpPath = C.getArgs().MakeArgString(
233 D.GetTemporaryPath("cc", types::getTypeTempSuffix(types::TY_Object)));
234 C.addTempFile(TmpPath);
235 CmdArgs.push_back("-object_path_lto");
236 CmdArgs.push_back(TmpPath);
237 }
238 }
239
240 // Use -lto_library option to specify the libLTO.dylib path. Try to find
241 // it in clang installed libraries. ld64 will only look at this argument
242 // when it actually uses LTO, so libLTO.dylib only needs to exist at link
243 // time if ld64 decides that it needs to use LTO.
244 // Since this is passed unconditionally, ld64 will never look for libLTO.dylib
245 // next to it. That's ok since ld64 using a libLTO.dylib not matching the
246 // clang version won't work anyways.
247 if (Version[0] >= 133) {
248 // Search for libLTO in <InstalledDir>/../lib/libLTO.dylib
249 StringRef P = llvm::sys::path::parent_path(D.Dir);
250 SmallString<128> LibLTOPath(P);
251 llvm::sys::path::append(LibLTOPath, "lib");
252 llvm::sys::path::append(LibLTOPath, "libLTO.dylib");
253 CmdArgs.push_back("-lto_library");
254 CmdArgs.push_back(C.getArgs().MakeArgString(LibLTOPath));
255 }
256
257 // ld64 version 262 and above run the deduplicate pass by default.
258 if (Version[0] >= 262 && shouldLinkerNotDedup(C.getJobs().empty(), Args))
259 CmdArgs.push_back("-no_deduplicate");
260
261 // Derived from the "link" spec.
262 Args.AddAllArgs(CmdArgs, options::OPT_static);
263 if (!Args.hasArg(options::OPT_static))
264 CmdArgs.push_back("-dynamic");
265 if (Args.hasArg(options::OPT_fgnu_runtime)) {
266 // FIXME: gcc replaces -lobjc in forward args with -lobjc-gnu
267 // here. How do we wish to handle such things?
268 }
269
270 if (!Args.hasArg(options::OPT_dynamiclib)) {
271 AddMachOArch(Args, CmdArgs);
272 // FIXME: Why do this only on this path?
273 Args.AddLastArg(CmdArgs, options::OPT_force__cpusubtype__ALL);
274
275 Args.AddLastArg(CmdArgs, options::OPT_bundle);
276 Args.AddAllArgs(CmdArgs, options::OPT_bundle__loader);
277 Args.AddAllArgs(CmdArgs, options::OPT_client__name);
278
279 Arg *A;
280 if ((A = Args.getLastArg(options::OPT_compatibility__version)) ||
281 (A = Args.getLastArg(options::OPT_current__version)) ||
282 (A = Args.getLastArg(options::OPT_install__name)))
283 D.Diag(diag::err_drv_argument_only_allowed_with) << A->getAsString(Args)
284 << "-dynamiclib";
285
286 Args.AddLastArg(CmdArgs, options::OPT_force__flat__namespace);
287 Args.AddLastArg(CmdArgs, options::OPT_keep__private__externs);
288 Args.AddLastArg(CmdArgs, options::OPT_private__bundle);
289 } else {
290 CmdArgs.push_back("-dylib");
291
292 Arg *A;
293 if ((A = Args.getLastArg(options::OPT_bundle)) ||
294 (A = Args.getLastArg(options::OPT_bundle__loader)) ||
295 (A = Args.getLastArg(options::OPT_client__name)) ||
296 (A = Args.getLastArg(options::OPT_force__flat__namespace)) ||
297 (A = Args.getLastArg(options::OPT_keep__private__externs)) ||
298 (A = Args.getLastArg(options::OPT_private__bundle)))
299 D.Diag(diag::err_drv_argument_not_allowed_with) << A->getAsString(Args)
300 << "-dynamiclib";
301
302 Args.AddAllArgsTranslated(CmdArgs, options::OPT_compatibility__version,
303 "-dylib_compatibility_version");
304 Args.AddAllArgsTranslated(CmdArgs, options::OPT_current__version,
305 "-dylib_current_version");
306
307 AddMachOArch(Args, CmdArgs);
308
309 Args.AddAllArgsTranslated(CmdArgs, options::OPT_install__name,
310 "-dylib_install_name");
311 }
312
313 Args.AddLastArg(CmdArgs, options::OPT_all__load);
314 Args.AddAllArgs(CmdArgs, options::OPT_allowable__client);
315 Args.AddLastArg(CmdArgs, options::OPT_bind__at__load);
316 if (MachOTC.isTargetIOSBased())
317 Args.AddLastArg(CmdArgs, options::OPT_arch__errors__fatal);
318 Args.AddLastArg(CmdArgs, options::OPT_dead__strip);
319 Args.AddLastArg(CmdArgs, options::OPT_no__dead__strip__inits__and__terms);
320 Args.AddAllArgs(CmdArgs, options::OPT_dylib__file);
321 Args.AddLastArg(CmdArgs, options::OPT_dynamic);
322 Args.AddAllArgs(CmdArgs, options::OPT_exported__symbols__list);
323 Args.AddLastArg(CmdArgs, options::OPT_flat__namespace);
324 Args.AddAllArgs(CmdArgs, options::OPT_force__load);
325 Args.AddAllArgs(CmdArgs, options::OPT_headerpad__max__install__names);
326 Args.AddAllArgs(CmdArgs, options::OPT_image__base);
327 Args.AddAllArgs(CmdArgs, options::OPT_init);
328
329 // Add the deployment target.
330 MachOTC.addMinVersionArgs(Args, CmdArgs);
331
332 Args.AddLastArg(CmdArgs, options::OPT_nomultidefs);
333 Args.AddLastArg(CmdArgs, options::OPT_multi__module);
334 Args.AddLastArg(CmdArgs, options::OPT_single__module);
335 Args.AddAllArgs(CmdArgs, options::OPT_multiply__defined);
336 Args.AddAllArgs(CmdArgs, options::OPT_multiply__defined__unused);
337
338 if (const Arg *A =
339 Args.getLastArg(options::OPT_fpie, options::OPT_fPIE,
340 options::OPT_fno_pie, options::OPT_fno_PIE)) {
341 if (A->getOption().matches(options::OPT_fpie) ||
342 A->getOption().matches(options::OPT_fPIE))
343 CmdArgs.push_back("-pie");
344 else
345 CmdArgs.push_back("-no_pie");
346 }
347
348 // for embed-bitcode, use -bitcode_bundle in linker command
349 if (C.getDriver().embedBitcodeEnabled()) {
350 // Check if the toolchain supports bitcode build flow.
351 if (MachOTC.SupportsEmbeddedBitcode()) {
352 CmdArgs.push_back("-bitcode_bundle");
353 if (C.getDriver().embedBitcodeMarkerOnly() && Version[0] >= 278) {
354 CmdArgs.push_back("-bitcode_process_mode");
355 CmdArgs.push_back("marker");
356 }
357 } else
358 D.Diag(diag::err_drv_bitcode_unsupported_on_toolchain);
359 }
360
361 Args.AddLastArg(CmdArgs, options::OPT_prebind);
362 Args.AddLastArg(CmdArgs, options::OPT_noprebind);
363 Args.AddLastArg(CmdArgs, options::OPT_nofixprebinding);
364 Args.AddLastArg(CmdArgs, options::OPT_prebind__all__twolevel__modules);
365 Args.AddLastArg(CmdArgs, options::OPT_read__only__relocs);
366 Args.AddAllArgs(CmdArgs, options::OPT_sectcreate);
367 Args.AddAllArgs(CmdArgs, options::OPT_sectorder);
368 Args.AddAllArgs(CmdArgs, options::OPT_seg1addr);
369 Args.AddAllArgs(CmdArgs, options::OPT_segprot);
370 Args.AddAllArgs(CmdArgs, options::OPT_segaddr);
371 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__only__addr);
372 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__write__addr);
373 Args.AddAllArgs(CmdArgs, options::OPT_seg__addr__table);
374 Args.AddAllArgs(CmdArgs, options::OPT_seg__addr__table__filename);
375 Args.AddAllArgs(CmdArgs, options::OPT_sub__library);
376 Args.AddAllArgs(CmdArgs, options::OPT_sub__umbrella);
377
378 // Give --sysroot= preference, over the Apple specific behavior to also use
379 // --isysroot as the syslibroot.
380 StringRef sysroot = C.getSysRoot();
381 if (sysroot != "") {
382 CmdArgs.push_back("-syslibroot");
383 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
384 } else if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
385 CmdArgs.push_back("-syslibroot");
386 CmdArgs.push_back(A->getValue());
387 }
388
389 Args.AddLastArg(CmdArgs, options::OPT_twolevel__namespace);
390 Args.AddLastArg(CmdArgs, options::OPT_twolevel__namespace__hints);
391 Args.AddAllArgs(CmdArgs, options::OPT_umbrella);
392 Args.AddAllArgs(CmdArgs, options::OPT_undefined);
393 Args.AddAllArgs(CmdArgs, options::OPT_unexported__symbols__list);
394 Args.AddAllArgs(CmdArgs, options::OPT_weak__reference__mismatches);
395 Args.AddLastArg(CmdArgs, options::OPT_X_Flag);
396 Args.AddAllArgs(CmdArgs, options::OPT_y);
397 Args.AddLastArg(CmdArgs, options::OPT_w);
398 Args.AddAllArgs(CmdArgs, options::OPT_pagezero__size);
399 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__);
400 Args.AddLastArg(CmdArgs, options::OPT_seglinkedit);
401 Args.AddLastArg(CmdArgs, options::OPT_noseglinkedit);
402 Args.AddAllArgs(CmdArgs, options::OPT_sectalign);
403 Args.AddAllArgs(CmdArgs, options::OPT_sectobjectsymbols);
404 Args.AddAllArgs(CmdArgs, options::OPT_segcreate);
405 Args.AddLastArg(CmdArgs, options::OPT_whyload);
406 Args.AddLastArg(CmdArgs, options::OPT_whatsloaded);
407 Args.AddAllArgs(CmdArgs, options::OPT_dylinker__install__name);
408 Args.AddLastArg(CmdArgs, options::OPT_dylinker);
409 Args.AddLastArg(CmdArgs, options::OPT_Mach);
410}
411
412/// \brief Determine whether we are linking the ObjC runtime.
413static bool isObjCRuntimeLinked(const ArgList &Args) {
414 if (isObjCAutoRefCount(Args)) {
415 Args.ClaimAllArgs(options::OPT_fobjc_link_runtime);
416 return true;
417 }
418 return Args.hasArg(options::OPT_fobjc_link_runtime);
419}
420
421void darwin::Linker::ConstructJob(Compilation &C, const JobAction &JA,
422 const InputInfo &Output,
423 const InputInfoList &Inputs,
424 const ArgList &Args,
425 const char *LinkingOutput) const {
426 assert(Output.getType() == types::TY_Image && "Invalid linker output type.");
427
428 // If the number of arguments surpasses the system limits, we will encode the
429 // input files in a separate file, shortening the command line. To this end,
430 // build a list of input file names that can be passed via a file with the
431 // -filelist linker option.
432 llvm::opt::ArgStringList InputFileList;
433
434 // The logic here is derived from gcc's behavior; most of which
435 // comes from specs (starting with link_command). Consult gcc for
436 // more information.
437 ArgStringList CmdArgs;
438
439 /// Hack(tm) to ignore linking errors when we are doing ARC migration.
440 if (Args.hasArg(options::OPT_ccc_arcmt_check,
441 options::OPT_ccc_arcmt_migrate)) {
442 for (const auto &Arg : Args)
443 Arg->claim();
444 const char *Exec =
445 Args.MakeArgString(getToolChain().GetProgramPath("touch"));
446 CmdArgs.push_back(Output.getFilename());
447 C.addCommand(llvm::make_unique<Command>(JA, *this, Exec, CmdArgs, None));
448 return;
449 }
450
451 // I'm not sure why this particular decomposition exists in gcc, but
452 // we follow suite for ease of comparison.
453 AddLinkArgs(C, Args, CmdArgs, Inputs);
454
455 // For LTO, pass the name of the optimization record file.
456 if (Args.hasFlag(options::OPT_fsave_optimization_record,
457 options::OPT_fno_save_optimization_record, false)) {
458 CmdArgs.push_back("-mllvm");
459 CmdArgs.push_back("-lto-pass-remarks-output");
460 CmdArgs.push_back("-mllvm");
461
462 SmallString<128> F;
463 F = Output.getFilename();
464 F += ".opt.yaml";
465 CmdArgs.push_back(Args.MakeArgString(F));
466
467 if (getLastProfileUseArg(Args)) {
468 CmdArgs.push_back("-mllvm");
469 CmdArgs.push_back("-lto-pass-remarks-with-hotness");
470 }
471 }
472
473 // It seems that the 'e' option is completely ignored for dynamic executables
474 // (the default), and with static executables, the last one wins, as expected.
475 Args.AddAllArgs(CmdArgs, {options::OPT_d_Flag, options::OPT_s, options::OPT_t,
476 options::OPT_Z_Flag, options::OPT_u_Group,
477 options::OPT_e, options::OPT_r});
478
479 // Forward -ObjC when either -ObjC or -ObjC++ is used, to force loading
480 // members of static archive libraries which implement Objective-C classes or
481 // categories.
482 if (Args.hasArg(options::OPT_ObjC) || Args.hasArg(options::OPT_ObjCXX))
483 CmdArgs.push_back("-ObjC");
484
485 CmdArgs.push_back("-o");
486 CmdArgs.push_back(Output.getFilename());
487
488 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles))
489 getMachOToolChain().addStartObjectFileArgs(Args, CmdArgs);
490
491 // SafeStack requires its own runtime libraries
492 // These libraries should be linked first, to make sure the
493 // __safestack_init constructor executes before everything else
494 if (getToolChain().getSanitizerArgs().needsSafeStackRt()) {
495 getMachOToolChain().AddLinkRuntimeLib(Args, CmdArgs,
496 "libclang_rt.safestack_osx.a",
Vedant Kumar796a13f2017-09-12 19:15:31 +0000497 toolchains::Darwin::RLO_AlwaysLink);
David L. Jonesf561aba2017-03-08 01:02:16 +0000498 }
499
500 Args.AddAllArgs(CmdArgs, options::OPT_L);
501
502 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs, JA);
503 // Build the input file for -filelist (list of linker input files) in case we
504 // need it later
505 for (const auto &II : Inputs) {
506 if (!II.isFilename()) {
507 // This is a linker input argument.
508 // We cannot mix input arguments and file names in a -filelist input, thus
509 // we prematurely stop our list (remaining files shall be passed as
510 // arguments).
511 if (InputFileList.size() > 0)
512 break;
513
514 continue;
515 }
516
517 InputFileList.push_back(II.getFilename());
518 }
519
520 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs))
521 addOpenMPRuntime(CmdArgs, getToolChain(), Args);
522
523 if (isObjCRuntimeLinked(Args) &&
524 !Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) {
525 // We use arclite library for both ARC and subscripting support.
526 getMachOToolChain().AddLinkARCArgs(Args, CmdArgs);
527
528 CmdArgs.push_back("-framework");
529 CmdArgs.push_back("Foundation");
530 // Link libobj.
531 CmdArgs.push_back("-lobjc");
532 }
533
534 if (LinkingOutput) {
535 CmdArgs.push_back("-arch_multiple");
536 CmdArgs.push_back("-final_output");
537 CmdArgs.push_back(LinkingOutput);
538 }
539
540 if (Args.hasArg(options::OPT_fnested_functions))
541 CmdArgs.push_back("-allow_stack_execute");
542
543 getMachOToolChain().addProfileRTLibs(Args, CmdArgs);
544
545 if (unsigned Parallelism =
546 getLTOParallelism(Args, getToolChain().getDriver())) {
547 CmdArgs.push_back("-mllvm");
548 CmdArgs.push_back(
549 Args.MakeArgString(Twine("-threads=") + llvm::to_string(Parallelism)));
550 }
551
Nico Weber0ee47d92017-07-25 18:02:57 +0000552 if (getToolChain().ShouldLinkCXXStdlib(Args))
553 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +0000554 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) {
David L. Jonesf561aba2017-03-08 01:02:16 +0000555 // link_ssp spec is empty.
556
557 // Let the tool chain choose which runtime library to link.
558 getMachOToolChain().AddLinkRuntimeLibArgs(Args, CmdArgs);
559
560 // No need to do anything for pthreads. Claim argument to avoid warning.
561 Args.ClaimAllArgs(options::OPT_pthread);
562 Args.ClaimAllArgs(options::OPT_pthreads);
563 }
564
565 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) {
566 // endfile_spec is empty.
567 }
568
569 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
570 Args.AddAllArgs(CmdArgs, options::OPT_F);
571
572 // -iframework should be forwarded as -F.
573 for (const Arg *A : Args.filtered(options::OPT_iframework))
574 CmdArgs.push_back(Args.MakeArgString(std::string("-F") + A->getValue()));
575
576 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) {
577 if (Arg *A = Args.getLastArg(options::OPT_fveclib)) {
578 if (A->getValue() == StringRef("Accelerate")) {
579 CmdArgs.push_back("-framework");
580 CmdArgs.push_back("Accelerate");
581 }
582 }
583 }
584
585 const char *Exec = Args.MakeArgString(getToolChain().GetLinkerPath());
586 std::unique_ptr<Command> Cmd =
587 llvm::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs);
588 Cmd->setInputFileList(std::move(InputFileList));
589 C.addCommand(std::move(Cmd));
590}
591
592void darwin::Lipo::ConstructJob(Compilation &C, const JobAction &JA,
593 const InputInfo &Output,
594 const InputInfoList &Inputs,
595 const ArgList &Args,
596 const char *LinkingOutput) const {
597 ArgStringList CmdArgs;
598
599 CmdArgs.push_back("-create");
600 assert(Output.isFilename() && "Unexpected lipo output.");
601
602 CmdArgs.push_back("-output");
603 CmdArgs.push_back(Output.getFilename());
604
605 for (const auto &II : Inputs) {
606 assert(II.isFilename() && "Unexpected lipo input.");
607 CmdArgs.push_back(II.getFilename());
608 }
609
610 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("lipo"));
611 C.addCommand(llvm::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
612}
613
614void darwin::Dsymutil::ConstructJob(Compilation &C, const JobAction &JA,
615 const InputInfo &Output,
616 const InputInfoList &Inputs,
617 const ArgList &Args,
618 const char *LinkingOutput) const {
619 ArgStringList CmdArgs;
620
621 CmdArgs.push_back("-o");
622 CmdArgs.push_back(Output.getFilename());
623
624 assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
625 const InputInfo &Input = Inputs[0];
626 assert(Input.isFilename() && "Unexpected dsymutil input.");
627 CmdArgs.push_back(Input.getFilename());
628
629 const char *Exec =
630 Args.MakeArgString(getToolChain().GetProgramPath("dsymutil"));
631 C.addCommand(llvm::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
632}
633
634void darwin::VerifyDebug::ConstructJob(Compilation &C, const JobAction &JA,
635 const InputInfo &Output,
636 const InputInfoList &Inputs,
637 const ArgList &Args,
638 const char *LinkingOutput) const {
639 ArgStringList CmdArgs;
640 CmdArgs.push_back("--verify");
641 CmdArgs.push_back("--debug-info");
642 CmdArgs.push_back("--eh-frame");
643 CmdArgs.push_back("--quiet");
644
645 assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
646 const InputInfo &Input = Inputs[0];
647 assert(Input.isFilename() && "Unexpected verify input");
648
649 // Grabbing the output of the earlier dsymutil run.
650 CmdArgs.push_back(Input.getFilename());
651
652 const char *Exec =
653 Args.MakeArgString(getToolChain().GetProgramPath("dwarfdump"));
654 C.addCommand(llvm::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
655}
656
657MachO::MachO(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
658 : ToolChain(D, Triple, Args) {
659 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
660 getProgramPaths().push_back(getDriver().getInstalledDir());
661 if (getDriver().getInstalledDir() != getDriver().Dir)
662 getProgramPaths().push_back(getDriver().Dir);
663}
664
665/// Darwin - Darwin tool chain for i386 and x86_64.
666Darwin::Darwin(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
667 : MachO(D, Triple, Args), TargetInitialized(false),
668 CudaInstallation(D, Triple, Args) {}
669
670types::ID MachO::LookupTypeForExtension(StringRef Ext) const {
671 types::ID Ty = types::lookupTypeForExtension(Ext);
672
673 // Darwin always preprocesses assembly files (unless -x is used explicitly).
674 if (Ty == types::TY_PP_Asm)
675 return types::TY_Asm;
676
677 return Ty;
678}
679
680bool MachO::HasNativeLLVMSupport() const { return true; }
681
682ToolChain::CXXStdlibType Darwin::GetDefaultCXXStdlibType() const {
683 // Default to use libc++ on OS X 10.9+ and iOS 7+.
684 if ((isTargetMacOS() && !isMacosxVersionLT(10, 9)) ||
685 (isTargetIOSBased() && !isIPhoneOSVersionLT(7, 0)) ||
686 isTargetWatchOSBased())
687 return ToolChain::CST_Libcxx;
688
689 return ToolChain::CST_Libstdcxx;
690}
691
692/// Darwin provides an ARC runtime starting in MacOS X 10.7 and iOS 5.0.
693ObjCRuntime Darwin::getDefaultObjCRuntime(bool isNonFragile) const {
694 if (isTargetWatchOSBased())
695 return ObjCRuntime(ObjCRuntime::WatchOS, TargetVersion);
696 if (isTargetIOSBased())
697 return ObjCRuntime(ObjCRuntime::iOS, TargetVersion);
698 if (isNonFragile)
699 return ObjCRuntime(ObjCRuntime::MacOSX, TargetVersion);
700 return ObjCRuntime(ObjCRuntime::FragileMacOSX, TargetVersion);
701}
702
703/// Darwin provides a blocks runtime starting in MacOS X 10.6 and iOS 3.2.
704bool Darwin::hasBlocksRuntime() const {
705 if (isTargetWatchOSBased())
706 return true;
707 else if (isTargetIOSBased())
708 return !isIPhoneOSVersionLT(3, 2);
709 else {
710 assert(isTargetMacOS() && "unexpected darwin target");
711 return !isMacosxVersionLT(10, 6);
712 }
713}
714
715void Darwin::AddCudaIncludeArgs(const ArgList &DriverArgs,
716 ArgStringList &CC1Args) const {
717 CudaInstallation.AddCudaIncludeArgs(DriverArgs, CC1Args);
718}
719
720// This is just a MachO name translation routine and there's no
721// way to join this into ARMTargetParser without breaking all
722// other assumptions. Maybe MachO should consider standardising
723// their nomenclature.
724static const char *ArmMachOArchName(StringRef Arch) {
725 return llvm::StringSwitch<const char *>(Arch)
726 .Case("armv6k", "armv6")
727 .Case("armv6m", "armv6m")
728 .Case("armv5tej", "armv5")
729 .Case("xscale", "xscale")
730 .Case("armv4t", "armv4t")
731 .Case("armv7", "armv7")
732 .Cases("armv7a", "armv7-a", "armv7")
733 .Cases("armv7r", "armv7-r", "armv7")
734 .Cases("armv7em", "armv7e-m", "armv7em")
735 .Cases("armv7k", "armv7-k", "armv7k")
736 .Cases("armv7m", "armv7-m", "armv7m")
737 .Cases("armv7s", "armv7-s", "armv7s")
738 .Default(nullptr);
739}
740
741static const char *ArmMachOArchNameCPU(StringRef CPU) {
Florian Hahnef5bbd62017-07-27 16:28:39 +0000742 llvm::ARM::ArchKind ArchKind = llvm::ARM::parseCPUArch(CPU);
743 if (ArchKind == llvm::ARM::ArchKind::INVALID)
David L. Jonesf561aba2017-03-08 01:02:16 +0000744 return nullptr;
745 StringRef Arch = llvm::ARM::getArchName(ArchKind);
746
747 // FIXME: Make sure this MachO triple mangling is really necessary.
748 // ARMv5* normalises to ARMv5.
749 if (Arch.startswith("armv5"))
750 Arch = Arch.substr(0, 5);
751 // ARMv6*, except ARMv6M, normalises to ARMv6.
752 else if (Arch.startswith("armv6") && !Arch.endswith("6m"))
753 Arch = Arch.substr(0, 5);
754 // ARMv7A normalises to ARMv7.
755 else if (Arch.endswith("v7a"))
756 Arch = Arch.substr(0, 5);
757 return Arch.data();
758}
759
760StringRef MachO::getMachOArchName(const ArgList &Args) const {
761 switch (getTriple().getArch()) {
762 default:
763 return getDefaultUniversalArchName();
764
765 case llvm::Triple::aarch64:
766 return "arm64";
767
768 case llvm::Triple::thumb:
769 case llvm::Triple::arm:
770 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ))
771 if (const char *Arch = ArmMachOArchName(A->getValue()))
772 return Arch;
773
774 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
775 if (const char *Arch = ArmMachOArchNameCPU(A->getValue()))
776 return Arch;
777
778 return "arm";
779 }
780}
781
782Darwin::~Darwin() {}
783
784MachO::~MachO() {}
785
786std::string Darwin::ComputeEffectiveClangTriple(const ArgList &Args,
787 types::ID InputType) const {
788 llvm::Triple Triple(ComputeLLVMTriple(Args, InputType));
789
790 // If the target isn't initialized (e.g., an unknown Darwin platform, return
791 // the default triple).
792 if (!isTargetInitialized())
793 return Triple.getTriple();
794
795 SmallString<16> Str;
796 if (isTargetWatchOSBased())
797 Str += "watchos";
798 else if (isTargetTvOSBased())
799 Str += "tvos";
800 else if (isTargetIOSBased())
801 Str += "ios";
802 else
803 Str += "macosx";
804 Str += getTargetVersion().getAsString();
805 Triple.setOSName(Str);
806
807 return Triple.getTriple();
808}
809
810Tool *MachO::getTool(Action::ActionClass AC) const {
811 switch (AC) {
812 case Action::LipoJobClass:
813 if (!Lipo)
814 Lipo.reset(new tools::darwin::Lipo(*this));
815 return Lipo.get();
816 case Action::DsymutilJobClass:
817 if (!Dsymutil)
818 Dsymutil.reset(new tools::darwin::Dsymutil(*this));
819 return Dsymutil.get();
820 case Action::VerifyDebugInfoJobClass:
821 if (!VerifyDebug)
822 VerifyDebug.reset(new tools::darwin::VerifyDebug(*this));
823 return VerifyDebug.get();
824 default:
825 return ToolChain::getTool(AC);
826 }
827}
828
829Tool *MachO::buildLinker() const { return new tools::darwin::Linker(*this); }
830
831Tool *MachO::buildAssembler() const {
832 return new tools::darwin::Assembler(*this);
833}
834
835DarwinClang::DarwinClang(const Driver &D, const llvm::Triple &Triple,
836 const ArgList &Args)
837 : Darwin(D, Triple, Args) {}
838
839void DarwinClang::addClangWarningOptions(ArgStringList &CC1Args) const {
840 // For modern targets, promote certain warnings to errors.
841 if (isTargetWatchOSBased() || getTriple().isArch64Bit()) {
842 // Always enable -Wdeprecated-objc-isa-usage and promote it
843 // to an error.
844 CC1Args.push_back("-Wdeprecated-objc-isa-usage");
845 CC1Args.push_back("-Werror=deprecated-objc-isa-usage");
846
847 // For iOS and watchOS, also error about implicit function declarations,
848 // as that can impact calling conventions.
849 if (!isTargetMacOS())
850 CC1Args.push_back("-Werror=implicit-function-declaration");
851 }
852}
853
854void DarwinClang::AddLinkARCArgs(const ArgList &Args,
855 ArgStringList &CmdArgs) const {
856 // Avoid linking compatibility stubs on i386 mac.
857 if (isTargetMacOS() && getArch() == llvm::Triple::x86)
858 return;
859
860 ObjCRuntime runtime = getDefaultObjCRuntime(/*nonfragile*/ true);
861
862 if ((runtime.hasNativeARC() || !isObjCAutoRefCount(Args)) &&
863 runtime.hasSubscripting())
864 return;
865
866 CmdArgs.push_back("-force_load");
867 SmallString<128> P(getDriver().ClangExecutable);
868 llvm::sys::path::remove_filename(P); // 'clang'
869 llvm::sys::path::remove_filename(P); // 'bin'
870 llvm::sys::path::append(P, "lib", "arc", "libarclite_");
871 // Mash in the platform.
872 if (isTargetWatchOSSimulator())
873 P += "watchsimulator";
874 else if (isTargetWatchOS())
875 P += "watchos";
876 else if (isTargetTvOSSimulator())
877 P += "appletvsimulator";
878 else if (isTargetTvOS())
879 P += "appletvos";
880 else if (isTargetIOSSimulator())
881 P += "iphonesimulator";
882 else if (isTargetIPhoneOS())
883 P += "iphoneos";
884 else
885 P += "macosx";
886 P += ".a";
887
888 CmdArgs.push_back(Args.MakeArgString(P));
889}
890
891unsigned DarwinClang::GetDefaultDwarfVersion() const {
892 // Default to use DWARF 2 on OS X 10.10 / iOS 8 and lower.
893 if ((isTargetMacOS() && isMacosxVersionLT(10, 11)) ||
894 (isTargetIOSBased() && isIPhoneOSVersionLT(9)))
895 return 2;
896 return 4;
897}
898
899void MachO::AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
Vedant Kumar796a13f2017-09-12 19:15:31 +0000900 StringRef DarwinLibName,
901 RuntimeLinkOptions Opts) const {
David L. Jonesf561aba2017-03-08 01:02:16 +0000902 SmallString<128> Dir(getDriver().ResourceDir);
Vedant Kumar796a13f2017-09-12 19:15:31 +0000903 llvm::sys::path::append(
904 Dir, "lib", (Opts & RLO_IsEmbedded) ? "macho_embedded" : "darwin");
David L. Jonesf561aba2017-03-08 01:02:16 +0000905
906 SmallString<128> P(Dir);
907 llvm::sys::path::append(P, DarwinLibName);
908
909 // For now, allow missing resource libraries to support developers who may
910 // not have compiler-rt checked out or integrated into their build (unless
911 // we explicitly force linking with this library).
Vedant Kumar796a13f2017-09-12 19:15:31 +0000912 if ((Opts & RLO_AlwaysLink) || getVFS().exists(P)) {
913 const char *LibArg = Args.MakeArgString(P);
914 if (Opts & RLO_FirstLink)
915 CmdArgs.insert(CmdArgs.begin(), LibArg);
916 else
917 CmdArgs.push_back(LibArg);
918 }
David L. Jonesf561aba2017-03-08 01:02:16 +0000919
920 // Adding the rpaths might negatively interact when other rpaths are involved,
921 // so we should make sure we add the rpaths last, after all user-specified
922 // rpaths. This is currently true from this place, but we need to be
923 // careful if this function is ever called before user's rpaths are emitted.
Vedant Kumar796a13f2017-09-12 19:15:31 +0000924 if (Opts & RLO_AddRPath) {
David L. Jonesf561aba2017-03-08 01:02:16 +0000925 assert(DarwinLibName.endswith(".dylib") && "must be a dynamic library");
926
927 // Add @executable_path to rpath to support having the dylib copied with
928 // the executable.
929 CmdArgs.push_back("-rpath");
930 CmdArgs.push_back("@executable_path");
931
932 // Add the path to the resource dir to rpath to support using the dylib
933 // from the default location without copying.
934 CmdArgs.push_back("-rpath");
935 CmdArgs.push_back(Args.MakeArgString(Dir));
936 }
937}
938
939StringRef Darwin::getPlatformFamily() const {
940 switch (TargetPlatform) {
941 case DarwinPlatformKind::MacOS:
942 return "MacOSX";
943 case DarwinPlatformKind::IPhoneOS:
944 case DarwinPlatformKind::IPhoneOSSimulator:
945 return "iPhone";
946 case DarwinPlatformKind::TvOS:
947 case DarwinPlatformKind::TvOSSimulator:
948 return "AppleTV";
949 case DarwinPlatformKind::WatchOS:
950 case DarwinPlatformKind::WatchOSSimulator:
951 return "Watch";
952 }
953 llvm_unreachable("Unsupported platform");
954}
955
956StringRef Darwin::getSDKName(StringRef isysroot) {
957 // Assume SDK has path: SOME_PATH/SDKs/PlatformXX.YY.sdk
958 llvm::sys::path::const_iterator SDKDir;
959 auto BeginSDK = llvm::sys::path::begin(isysroot);
960 auto EndSDK = llvm::sys::path::end(isysroot);
961 for (auto IT = BeginSDK; IT != EndSDK; ++IT) {
962 StringRef SDK = *IT;
963 if (SDK.endswith(".sdk"))
964 return SDK.slice(0, SDK.size() - 4);
965 }
966 return "";
967}
968
969StringRef Darwin::getOSLibraryNameSuffix() const {
970 switch(TargetPlatform) {
971 case DarwinPlatformKind::MacOS:
972 return "osx";
973 case DarwinPlatformKind::IPhoneOS:
974 return "ios";
975 case DarwinPlatformKind::IPhoneOSSimulator:
976 return "iossim";
977 case DarwinPlatformKind::TvOS:
978 return "tvos";
979 case DarwinPlatformKind::TvOSSimulator:
980 return "tvossim";
981 case DarwinPlatformKind::WatchOS:
982 return "watchos";
983 case DarwinPlatformKind::WatchOSSimulator:
984 return "watchossim";
985 }
986 llvm_unreachable("Unsupported platform");
987}
988
989void Darwin::addProfileRTLibs(const ArgList &Args,
990 ArgStringList &CmdArgs) const {
991 if (!needsProfileRT(Args)) return;
992
Vedant Kumar796a13f2017-09-12 19:15:31 +0000993 AddLinkRuntimeLib(
994 Args, CmdArgs,
995 (Twine("libclang_rt.profile_") + getOSLibraryNameSuffix() + ".a").str(),
996 RuntimeLinkOptions(RLO_AlwaysLink | RLO_FirstLink));
David L. Jonesf561aba2017-03-08 01:02:16 +0000997}
998
999void DarwinClang::AddLinkSanitizerLibArgs(const ArgList &Args,
1000 ArgStringList &CmdArgs,
George Karpenkov9f6f74c2017-08-21 23:25:19 +00001001 StringRef Sanitizer,
1002 bool Shared) const {
Vedant Kumar796a13f2017-09-12 19:15:31 +00001003 auto RLO = RuntimeLinkOptions(RLO_AlwaysLink | (Shared ? RLO_AddRPath : 0U));
1004 AddLinkRuntimeLib(Args, CmdArgs,
1005 (Twine("libclang_rt.") + Sanitizer + "_" +
1006 getOSLibraryNameSuffix() +
1007 (Shared ? "_dynamic.dylib" : ".a"))
1008 .str(),
1009 RLO);
David L. Jonesf561aba2017-03-08 01:02:16 +00001010}
1011
1012ToolChain::RuntimeLibType DarwinClang::GetRuntimeLibType(
1013 const ArgList &Args) const {
1014 if (Arg* A = Args.getLastArg(options::OPT_rtlib_EQ)) {
1015 StringRef Value = A->getValue();
1016 if (Value != "compiler-rt")
1017 getDriver().Diag(clang::diag::err_drv_unsupported_rtlib_for_platform)
1018 << Value << "darwin";
1019 }
1020
1021 return ToolChain::RLT_CompilerRT;
1022}
1023
1024void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
1025 ArgStringList &CmdArgs) const {
1026 // Call once to ensure diagnostic is printed if wrong value was specified
1027 GetRuntimeLibType(Args);
1028
1029 // Darwin doesn't support real static executables, don't link any runtime
1030 // libraries with -static.
1031 if (Args.hasArg(options::OPT_static) ||
1032 Args.hasArg(options::OPT_fapple_kext) ||
1033 Args.hasArg(options::OPT_mkernel))
1034 return;
1035
1036 // Reject -static-libgcc for now, we can deal with this when and if someone
1037 // cares. This is useful in situations where someone wants to statically link
1038 // something like libstdc++, and needs its runtime support routines.
1039 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
1040 getDriver().Diag(diag::err_drv_unsupported_opt) << A->getAsString(Args);
1041 return;
1042 }
1043
1044 const SanitizerArgs &Sanitize = getSanitizerArgs();
1045 if (Sanitize.needsAsanRt())
1046 AddLinkSanitizerLibArgs(Args, CmdArgs, "asan");
Francis Ricci8e63e542017-04-20 21:11:51 +00001047 if (Sanitize.needsLsanRt())
1048 AddLinkSanitizerLibArgs(Args, CmdArgs, "lsan");
David L. Jonesf561aba2017-03-08 01:02:16 +00001049 if (Sanitize.needsUbsanRt())
Vedant Kumarf56f77f2017-09-11 21:37:06 +00001050 AddLinkSanitizerLibArgs(Args, CmdArgs,
1051 Sanitize.requiresMinimalRuntime() ? "ubsan_minimal"
Vedant Kumar358d6422017-10-07 01:42:09 +00001052 : "ubsan",
1053 Sanitize.needsSharedRt());
David L. Jonesf561aba2017-03-08 01:02:16 +00001054 if (Sanitize.needsTsanRt())
1055 AddLinkSanitizerLibArgs(Args, CmdArgs, "tsan");
George Karpenkov9f6f74c2017-08-21 23:25:19 +00001056 if (Sanitize.needsFuzzer() && !Args.hasArg(options::OPT_dynamiclib)) {
1057 AddLinkSanitizerLibArgs(Args, CmdArgs, "fuzzer", /*shared=*/false);
1058
1059 // Libfuzzer is written in C++ and requires libcxx.
1060 AddCXXStdlibLibArgs(Args, CmdArgs);
1061 }
David L. Jonesf561aba2017-03-08 01:02:16 +00001062 if (Sanitize.needsStatsRt()) {
1063 StringRef OS = isTargetMacOS() ? "osx" : "iossim";
1064 AddLinkRuntimeLib(Args, CmdArgs,
1065 (Twine("libclang_rt.stats_client_") + OS + ".a").str(),
Vedant Kumar796a13f2017-09-12 19:15:31 +00001066 RLO_AlwaysLink);
David L. Jonesf561aba2017-03-08 01:02:16 +00001067 AddLinkSanitizerLibArgs(Args, CmdArgs, "stats");
1068 }
1069 if (Sanitize.needsEsanRt())
1070 AddLinkSanitizerLibArgs(Args, CmdArgs, "esan");
1071
1072 // Otherwise link libSystem, then the dynamic runtime library, and finally any
1073 // target specific static runtime library.
1074 CmdArgs.push_back("-lSystem");
1075
1076 // Select the dynamic runtime library and the target specific static library.
1077 if (isTargetWatchOSBased()) {
1078 // We currently always need a static runtime library for watchOS.
1079 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.watchos.a");
1080 } else if (isTargetTvOSBased()) {
1081 // We currently always need a static runtime library for tvOS.
1082 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.tvos.a");
1083 } else if (isTargetIOSBased()) {
1084 // If we are compiling as iOS / simulator, don't attempt to link libgcc_s.1,
1085 // it never went into the SDK.
1086 // Linking against libgcc_s.1 isn't needed for iOS 5.0+
1087 if (isIPhoneOSVersionLT(5, 0) && !isTargetIOSSimulator() &&
1088 getTriple().getArch() != llvm::Triple::aarch64)
1089 CmdArgs.push_back("-lgcc_s.1");
1090
1091 // We currently always need a static runtime library for iOS.
1092 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.ios.a");
1093 } else {
1094 assert(isTargetMacOS() && "unexpected non MacOS platform");
1095 // The dynamic runtime library was merged with libSystem for 10.6 and
1096 // beyond; only 10.4 and 10.5 need an additional runtime library.
1097 if (isMacosxVersionLT(10, 5))
1098 CmdArgs.push_back("-lgcc_s.10.4");
1099 else if (isMacosxVersionLT(10, 6))
1100 CmdArgs.push_back("-lgcc_s.10.5");
1101
1102 // Originally for OS X, we thought we would only need a static runtime
1103 // library when targeting 10.4, to provide versions of the static functions
1104 // which were omitted from 10.4.dylib. This led to the creation of the 10.4
1105 // builtins library.
1106 //
1107 // Unfortunately, that turned out to not be true, because Darwin system
1108 // headers can still use eprintf on i386, and it is not exported from
1109 // libSystem. Therefore, we still must provide a runtime library just for
1110 // the tiny tiny handful of projects that *might* use that symbol.
1111 //
1112 // Then over time, we figured out it was useful to add more things to the
1113 // runtime so we created libclang_rt.osx.a to provide new functions when
1114 // deploying to old OS builds, and for a long time we had both eprintf and
1115 // osx builtin libraries. Which just seems excessive. So with PR 28855, we
1116 // are removing the eprintf library and expecting eprintf to be provided by
1117 // the OS X builtins library.
1118 if (isMacosxVersionLT(10, 5))
1119 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.10.4.a");
1120 else
1121 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.osx.a");
1122 }
1123}
1124
Alex Lorenzb249c9b2017-07-07 10:41:19 +00001125/// Returns the most appropriate macOS target version for the current process.
1126///
1127/// If the macOS SDK version is the same or earlier than the system version,
1128/// then the SDK version is returned. Otherwise the system version is returned.
1129static std::string getSystemOrSDKMacOSVersion(StringRef MacOSSDKVersion) {
1130 unsigned Major, Minor, Micro;
1131 llvm::Triple SystemTriple(llvm::sys::getProcessTriple());
1132 if (!SystemTriple.isMacOSX())
1133 return MacOSSDKVersion;
1134 SystemTriple.getMacOSXVersion(Major, Minor, Micro);
1135 VersionTuple SystemVersion(Major, Minor, Micro);
1136 bool HadExtra;
1137 if (!Driver::GetReleaseVersion(MacOSSDKVersion, Major, Minor, Micro,
1138 HadExtra))
1139 return MacOSSDKVersion;
1140 VersionTuple SDKVersion(Major, Minor, Micro);
1141 if (SDKVersion > SystemVersion)
1142 return SystemVersion.getAsString();
1143 return MacOSSDKVersion;
1144}
1145
David L. Jonesf561aba2017-03-08 01:02:16 +00001146void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
1147 const OptTable &Opts = getDriver().getOpts();
1148
1149 // Support allowing the SDKROOT environment variable used by xcrun and other
1150 // Xcode tools to define the default sysroot, by making it the default for
1151 // isysroot.
1152 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
1153 // Warn if the path does not exist.
1154 if (!getVFS().exists(A->getValue()))
1155 getDriver().Diag(clang::diag::warn_missing_sysroot) << A->getValue();
1156 } else {
1157 if (char *env = ::getenv("SDKROOT")) {
1158 // We only use this value as the default if it is an absolute path,
1159 // exists, and it is not the root path.
1160 if (llvm::sys::path::is_absolute(env) && getVFS().exists(env) &&
1161 StringRef(env) != "/") {
1162 Args.append(Args.MakeSeparateArg(
1163 nullptr, Opts.getOption(options::OPT_isysroot), env));
1164 }
1165 }
1166 }
1167
1168 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ);
Akira Hatanakaf86ded22017-03-15 18:04:13 +00001169 Arg *iOSVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ,
1170 options::OPT_mios_simulator_version_min_EQ);
1171 Arg *TvOSVersion =
1172 Args.getLastArg(options::OPT_mtvos_version_min_EQ,
1173 options::OPT_mtvos_simulator_version_min_EQ);
1174 Arg *WatchOSVersion =
1175 Args.getLastArg(options::OPT_mwatchos_version_min_EQ,
1176 options::OPT_mwatchos_simulator_version_min_EQ);
1177
Akira Hatanakadc9d8fb2017-07-01 00:57:52 +00001178 unsigned Major, Minor, Micro;
1179 bool HadExtra;
1180
Akira Hatanaka4a94d8d2017-07-31 22:19:34 +00001181 // The iOS deployment target that is explicitly specified via a command line
1182 // option or an environment variable.
1183 std::string ExplicitIOSDeploymentTargetStr;
1184
1185 if (iOSVersion)
1186 ExplicitIOSDeploymentTargetStr = iOSVersion->getAsString(Args);
Akira Hatanakadc9d8fb2017-07-01 00:57:52 +00001187
Akira Hatanakaf86ded22017-03-15 18:04:13 +00001188 // Add a macro to differentiate between m(iphone|tv|watch)os-version-min=X.Y and
1189 // -m(iphone|tv|watch)simulator-version-min=X.Y.
1190 if (Args.hasArg(options::OPT_mios_simulator_version_min_EQ) ||
1191 Args.hasArg(options::OPT_mtvos_simulator_version_min_EQ) ||
1192 Args.hasArg(options::OPT_mwatchos_simulator_version_min_EQ))
1193 Args.append(Args.MakeSeparateArg(nullptr, Opts.getOption(options::OPT_D),
1194 " __APPLE_EMBEDDED_SIMULATOR__=1"));
David L. Jonesf561aba2017-03-08 01:02:16 +00001195
1196 if (OSXVersion && (iOSVersion || TvOSVersion || WatchOSVersion)) {
1197 getDriver().Diag(diag::err_drv_argument_not_allowed_with)
1198 << OSXVersion->getAsString(Args)
1199 << (iOSVersion ? iOSVersion :
1200 TvOSVersion ? TvOSVersion : WatchOSVersion)->getAsString(Args);
1201 iOSVersion = TvOSVersion = WatchOSVersion = nullptr;
1202 } else if (iOSVersion && (TvOSVersion || WatchOSVersion)) {
1203 getDriver().Diag(diag::err_drv_argument_not_allowed_with)
1204 << iOSVersion->getAsString(Args)
1205 << (TvOSVersion ? TvOSVersion : WatchOSVersion)->getAsString(Args);
1206 TvOSVersion = WatchOSVersion = nullptr;
1207 } else if (TvOSVersion && WatchOSVersion) {
1208 getDriver().Diag(diag::err_drv_argument_not_allowed_with)
1209 << TvOSVersion->getAsString(Args)
1210 << WatchOSVersion->getAsString(Args);
1211 WatchOSVersion = nullptr;
1212 } else if (!OSXVersion && !iOSVersion && !TvOSVersion && !WatchOSVersion) {
1213 // If no deployment target was specified on the command line, check for
1214 // environment defines.
1215 std::string OSXTarget;
1216 std::string iOSTarget;
1217 std::string TvOSTarget;
1218 std::string WatchOSTarget;
1219
1220 if (char *env = ::getenv("MACOSX_DEPLOYMENT_TARGET"))
1221 OSXTarget = env;
1222 if (char *env = ::getenv("IPHONEOS_DEPLOYMENT_TARGET"))
1223 iOSTarget = env;
1224 if (char *env = ::getenv("TVOS_DEPLOYMENT_TARGET"))
1225 TvOSTarget = env;
1226 if (char *env = ::getenv("WATCHOS_DEPLOYMENT_TARGET"))
1227 WatchOSTarget = env;
1228
Akira Hatanaka4a94d8d2017-07-31 22:19:34 +00001229 if (!iOSTarget.empty())
1230 ExplicitIOSDeploymentTargetStr =
1231 std::string("IPHONEOS_DEPLOYMENT_TARGET=") + iOSTarget;
Akira Hatanakadc9d8fb2017-07-01 00:57:52 +00001232
David L. Jonesf561aba2017-03-08 01:02:16 +00001233 // If there is no command-line argument to specify the Target version and
1234 // no environment variable defined, see if we can set the default based
1235 // on -isysroot.
1236 if (OSXTarget.empty() && iOSTarget.empty() && WatchOSTarget.empty() &&
1237 TvOSTarget.empty() && Args.hasArg(options::OPT_isysroot)) {
1238 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
1239 StringRef isysroot = A->getValue();
1240 StringRef SDK = getSDKName(isysroot);
1241 if (SDK.size() > 0) {
1242 // Slice the version number out.
1243 // Version number is between the first and the last number.
1244 size_t StartVer = SDK.find_first_of("0123456789");
1245 size_t EndVer = SDK.find_last_of("0123456789");
1246 if (StartVer != StringRef::npos && EndVer > StartVer) {
1247 StringRef Version = SDK.slice(StartVer, EndVer + 1);
1248 if (SDK.startswith("iPhoneOS") ||
1249 SDK.startswith("iPhoneSimulator"))
1250 iOSTarget = Version;
1251 else if (SDK.startswith("MacOSX"))
Alex Lorenzb249c9b2017-07-07 10:41:19 +00001252 OSXTarget = getSystemOrSDKMacOSVersion(Version);
David L. Jonesf561aba2017-03-08 01:02:16 +00001253 else if (SDK.startswith("WatchOS") ||
1254 SDK.startswith("WatchSimulator"))
1255 WatchOSTarget = Version;
1256 else if (SDK.startswith("AppleTVOS") ||
1257 SDK.startswith("AppleTVSimulator"))
1258 TvOSTarget = Version;
1259 }
1260 }
1261 }
1262 }
1263
Akira Hatanaka136ec492017-07-14 00:21:32 +00001264 // If no OS targets have been specified, try to guess platform from -target
1265 // or arch name and compute the version from the triple.
David L. Jonesf561aba2017-03-08 01:02:16 +00001266 if (OSXTarget.empty() && iOSTarget.empty() && TvOSTarget.empty() &&
1267 WatchOSTarget.empty()) {
Akira Hatanaka136ec492017-07-14 00:21:32 +00001268 llvm::Triple::OSType OSTy = llvm::Triple::UnknownOS;
1269
1270 // Set the OSTy based on -target if -arch isn't present.
1271 if (Args.hasArg(options::OPT_target) && !Args.hasArg(options::OPT_arch)) {
1272 OSTy = getTriple().getOS();
1273 } else {
1274 StringRef MachOArchName = getMachOArchName(Args);
1275 if (MachOArchName == "armv7" || MachOArchName == "armv7s" ||
1276 MachOArchName == "arm64")
1277 OSTy = llvm::Triple::IOS;
1278 else if (MachOArchName == "armv7k")
1279 OSTy = llvm::Triple::WatchOS;
1280 else if (MachOArchName != "armv6m" && MachOArchName != "armv7m" &&
1281 MachOArchName != "armv7em")
1282 OSTy = llvm::Triple::MacOSX;
1283 }
1284
1285
1286 if (OSTy != llvm::Triple::UnknownOS) {
1287 unsigned Major, Minor, Micro;
1288 std::string *OSTarget;
1289
1290 switch (OSTy) {
1291 case llvm::Triple::Darwin:
1292 case llvm::Triple::MacOSX:
1293 if (!getTriple().getMacOSXVersion(Major, Minor, Micro))
1294 getDriver().Diag(diag::err_drv_invalid_darwin_version)
1295 << getTriple().getOSName();
1296 OSTarget = &OSXTarget;
1297 break;
1298 case llvm::Triple::IOS:
1299 getTriple().getiOSVersion(Major, Minor, Micro);
1300 OSTarget = &iOSTarget;
1301 break;
1302 case llvm::Triple::TvOS:
1303 getTriple().getOSVersion(Major, Minor, Micro);
1304 OSTarget = &TvOSTarget;
1305 break;
1306 case llvm::Triple::WatchOS:
1307 getTriple().getWatchOSVersion(Major, Minor, Micro);
1308 OSTarget = &WatchOSTarget;
1309 break;
1310 default:
1311 llvm_unreachable("Unexpected OS type");
1312 break;
David L. Jonesf561aba2017-03-08 01:02:16 +00001313 }
Akira Hatanaka136ec492017-07-14 00:21:32 +00001314
1315 llvm::raw_string_ostream(*OSTarget) << Major << '.' << Minor << '.'
David L. Jonesf561aba2017-03-08 01:02:16 +00001316 << Micro;
1317 }
1318 }
1319
1320 // Do not allow conflicts with the watchOS target.
1321 if (!WatchOSTarget.empty() && (!iOSTarget.empty() || !TvOSTarget.empty())) {
1322 getDriver().Diag(diag::err_drv_conflicting_deployment_targets)
1323 << "WATCHOS_DEPLOYMENT_TARGET"
1324 << (!iOSTarget.empty() ? "IPHONEOS_DEPLOYMENT_TARGET" :
1325 "TVOS_DEPLOYMENT_TARGET");
1326 }
1327
1328 // Do not allow conflicts with the tvOS target.
1329 if (!TvOSTarget.empty() && !iOSTarget.empty()) {
1330 getDriver().Diag(diag::err_drv_conflicting_deployment_targets)
1331 << "TVOS_DEPLOYMENT_TARGET"
1332 << "IPHONEOS_DEPLOYMENT_TARGET";
1333 }
1334
1335 // Allow conflicts among OSX and iOS for historical reasons, but choose the
1336 // default platform.
1337 if (!OSXTarget.empty() && (!iOSTarget.empty() ||
1338 !WatchOSTarget.empty() ||
1339 !TvOSTarget.empty())) {
1340 if (getTriple().getArch() == llvm::Triple::arm ||
1341 getTriple().getArch() == llvm::Triple::aarch64 ||
1342 getTriple().getArch() == llvm::Triple::thumb)
1343 OSXTarget = "";
1344 else
1345 iOSTarget = WatchOSTarget = TvOSTarget = "";
1346 }
1347
1348 if (!OSXTarget.empty()) {
1349 const Option O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
1350 OSXVersion = Args.MakeJoinedArg(nullptr, O, OSXTarget);
1351 Args.append(OSXVersion);
1352 } else if (!iOSTarget.empty()) {
1353 const Option O = Opts.getOption(options::OPT_miphoneos_version_min_EQ);
1354 iOSVersion = Args.MakeJoinedArg(nullptr, O, iOSTarget);
1355 Args.append(iOSVersion);
1356 } else if (!TvOSTarget.empty()) {
1357 const Option O = Opts.getOption(options::OPT_mtvos_version_min_EQ);
1358 TvOSVersion = Args.MakeJoinedArg(nullptr, O, TvOSTarget);
1359 Args.append(TvOSVersion);
1360 } else if (!WatchOSTarget.empty()) {
1361 const Option O = Opts.getOption(options::OPT_mwatchos_version_min_EQ);
1362 WatchOSVersion = Args.MakeJoinedArg(nullptr, O, WatchOSTarget);
1363 Args.append(WatchOSVersion);
1364 }
1365 }
1366
1367 DarwinPlatformKind Platform;
1368 if (OSXVersion)
1369 Platform = MacOS;
1370 else if (iOSVersion)
1371 Platform = IPhoneOS;
1372 else if (TvOSVersion)
1373 Platform = TvOS;
1374 else if (WatchOSVersion)
1375 Platform = WatchOS;
1376 else
1377 llvm_unreachable("Unable to infer Darwin variant");
1378
1379 // Set the tool chain target information.
David L. Jonesf561aba2017-03-08 01:02:16 +00001380 if (Platform == MacOS) {
1381 assert((!iOSVersion && !TvOSVersion && !WatchOSVersion) &&
1382 "Unknown target platform!");
1383 if (!Driver::GetReleaseVersion(OSXVersion->getValue(), Major, Minor, Micro,
1384 HadExtra) ||
1385 HadExtra || Major != 10 || Minor >= 100 || Micro >= 100)
1386 getDriver().Diag(diag::err_drv_invalid_version_number)
1387 << OSXVersion->getAsString(Args);
1388 } else if (Platform == IPhoneOS) {
1389 assert(iOSVersion && "Unknown target platform!");
1390 if (!Driver::GetReleaseVersion(iOSVersion->getValue(), Major, Minor, Micro,
1391 HadExtra) ||
1392 HadExtra || Major >= 100 || Minor >= 100 || Micro >= 100)
1393 getDriver().Diag(diag::err_drv_invalid_version_number)
1394 << iOSVersion->getAsString(Args);
Akira Hatanaka4a94d8d2017-07-31 22:19:34 +00001395 // For 32-bit targets, the deployment target for iOS has to be earlier than
1396 // iOS 11.
1397 if (getTriple().isArch32Bit() && Major >= 11) {
1398 // If the deployment target is explicitly specified, print a diagnostic.
1399 if (!ExplicitIOSDeploymentTargetStr.empty()) {
1400 getDriver().Diag(diag::warn_invalid_ios_deployment_target)
1401 << ExplicitIOSDeploymentTargetStr;
1402 // Otherwise, set it to 10.99.99.
1403 } else {
1404 Major = 10;
1405 Minor = 99;
1406 Micro = 99;
1407 }
1408 }
David L. Jonesf561aba2017-03-08 01:02:16 +00001409 } else if (Platform == TvOS) {
1410 if (!Driver::GetReleaseVersion(TvOSVersion->getValue(), Major, Minor,
1411 Micro, HadExtra) || HadExtra ||
1412 Major >= 100 || Minor >= 100 || Micro >= 100)
1413 getDriver().Diag(diag::err_drv_invalid_version_number)
1414 << TvOSVersion->getAsString(Args);
1415 } else if (Platform == WatchOS) {
1416 if (!Driver::GetReleaseVersion(WatchOSVersion->getValue(), Major, Minor,
1417 Micro, HadExtra) || HadExtra ||
1418 Major >= 10 || Minor >= 100 || Micro >= 100)
1419 getDriver().Diag(diag::err_drv_invalid_version_number)
1420 << WatchOSVersion->getAsString(Args);
1421 } else
1422 llvm_unreachable("unknown kind of Darwin platform");
1423
1424 // Recognize iOS targets with an x86 architecture as the iOS simulator.
1425 if (iOSVersion && (getTriple().getArch() == llvm::Triple::x86 ||
1426 getTriple().getArch() == llvm::Triple::x86_64))
1427 Platform = IPhoneOSSimulator;
1428 if (TvOSVersion && (getTriple().getArch() == llvm::Triple::x86 ||
1429 getTriple().getArch() == llvm::Triple::x86_64))
1430 Platform = TvOSSimulator;
1431 if (WatchOSVersion && (getTriple().getArch() == llvm::Triple::x86 ||
1432 getTriple().getArch() == llvm::Triple::x86_64))
1433 Platform = WatchOSSimulator;
1434
1435 setTarget(Platform, Major, Minor, Micro);
1436
1437 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
1438 StringRef SDK = getSDKName(A->getValue());
1439 if (SDK.size() > 0) {
1440 size_t StartVer = SDK.find_first_of("0123456789");
1441 StringRef SDKName = SDK.slice(0, StartVer);
1442 if (!SDKName.startswith(getPlatformFamily()))
1443 getDriver().Diag(diag::warn_incompatible_sysroot)
1444 << SDKName << getPlatformFamily();
1445 }
1446 }
1447}
1448
1449void DarwinClang::AddCXXStdlibLibArgs(const ArgList &Args,
1450 ArgStringList &CmdArgs) const {
1451 CXXStdlibType Type = GetCXXStdlibType(Args);
1452
1453 switch (Type) {
1454 case ToolChain::CST_Libcxx:
1455 CmdArgs.push_back("-lc++");
1456 break;
1457
1458 case ToolChain::CST_Libstdcxx:
1459 // Unfortunately, -lstdc++ doesn't always exist in the standard search path;
1460 // it was previously found in the gcc lib dir. However, for all the Darwin
1461 // platforms we care about it was -lstdc++.6, so we search for that
1462 // explicitly if we can't see an obvious -lstdc++ candidate.
1463
1464 // Check in the sysroot first.
1465 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
1466 SmallString<128> P(A->getValue());
1467 llvm::sys::path::append(P, "usr", "lib", "libstdc++.dylib");
1468
1469 if (!getVFS().exists(P)) {
1470 llvm::sys::path::remove_filename(P);
1471 llvm::sys::path::append(P, "libstdc++.6.dylib");
1472 if (getVFS().exists(P)) {
1473 CmdArgs.push_back(Args.MakeArgString(P));
1474 return;
1475 }
1476 }
1477 }
1478
1479 // Otherwise, look in the root.
1480 // FIXME: This should be removed someday when we don't have to care about
1481 // 10.6 and earlier, where /usr/lib/libstdc++.dylib does not exist.
1482 if (!getVFS().exists("/usr/lib/libstdc++.dylib") &&
1483 getVFS().exists("/usr/lib/libstdc++.6.dylib")) {
1484 CmdArgs.push_back("/usr/lib/libstdc++.6.dylib");
1485 return;
1486 }
1487
1488 // Otherwise, let the linker search.
1489 CmdArgs.push_back("-lstdc++");
1490 break;
1491 }
1492}
1493
1494void DarwinClang::AddCCKextLibArgs(const ArgList &Args,
1495 ArgStringList &CmdArgs) const {
1496 // For Darwin platforms, use the compiler-rt-based support library
1497 // instead of the gcc-provided one (which is also incidentally
1498 // only present in the gcc lib dir, which makes it hard to find).
1499
1500 SmallString<128> P(getDriver().ResourceDir);
1501 llvm::sys::path::append(P, "lib", "darwin");
1502
1503 // Use the newer cc_kext for iOS ARM after 6.0.
1504 if (isTargetWatchOS()) {
1505 llvm::sys::path::append(P, "libclang_rt.cc_kext_watchos.a");
1506 } else if (isTargetTvOS()) {
1507 llvm::sys::path::append(P, "libclang_rt.cc_kext_tvos.a");
1508 } else if (isTargetIPhoneOS()) {
1509 llvm::sys::path::append(P, "libclang_rt.cc_kext_ios.a");
1510 } else {
1511 llvm::sys::path::append(P, "libclang_rt.cc_kext.a");
1512 }
1513
1514 // For now, allow missing resource libraries to support developers who may
1515 // not have compiler-rt checked out or integrated into their build.
1516 if (getVFS().exists(P))
1517 CmdArgs.push_back(Args.MakeArgString(P));
1518}
1519
1520DerivedArgList *MachO::TranslateArgs(const DerivedArgList &Args,
1521 StringRef BoundArch,
1522 Action::OffloadKind) const {
1523 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
1524 const OptTable &Opts = getDriver().getOpts();
1525
1526 // FIXME: We really want to get out of the tool chain level argument
1527 // translation business, as it makes the driver functionality much
1528 // more opaque. For now, we follow gcc closely solely for the
1529 // purpose of easily achieving feature parity & testability. Once we
1530 // have something that works, we should reevaluate each translation
1531 // and try to push it down into tool specific logic.
1532
1533 for (Arg *A : Args) {
1534 if (A->getOption().matches(options::OPT_Xarch__)) {
1535 // Skip this argument unless the architecture matches either the toolchain
1536 // triple arch, or the arch being bound.
1537 llvm::Triple::ArchType XarchArch =
1538 tools::darwin::getArchTypeForMachOArchName(A->getValue(0));
1539 if (!(XarchArch == getArch() ||
1540 (!BoundArch.empty() &&
1541 XarchArch ==
1542 tools::darwin::getArchTypeForMachOArchName(BoundArch))))
1543 continue;
1544
1545 Arg *OriginalArg = A;
1546 unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(1));
1547 unsigned Prev = Index;
1548 std::unique_ptr<Arg> XarchArg(Opts.ParseOneArg(Args, Index));
1549
1550 // If the argument parsing failed or more than one argument was
1551 // consumed, the -Xarch_ argument's parameter tried to consume
1552 // extra arguments. Emit an error and ignore.
1553 //
1554 // We also want to disallow any options which would alter the
1555 // driver behavior; that isn't going to work in our model. We
1556 // use isDriverOption() as an approximation, although things
1557 // like -O4 are going to slip through.
1558 if (!XarchArg || Index > Prev + 1) {
1559 getDriver().Diag(diag::err_drv_invalid_Xarch_argument_with_args)
1560 << A->getAsString(Args);
1561 continue;
1562 } else if (XarchArg->getOption().hasFlag(options::DriverOption)) {
1563 getDriver().Diag(diag::err_drv_invalid_Xarch_argument_isdriver)
1564 << A->getAsString(Args);
1565 continue;
1566 }
1567
1568 XarchArg->setBaseArg(A);
1569
1570 A = XarchArg.release();
1571 DAL->AddSynthesizedArg(A);
1572
1573 // Linker input arguments require custom handling. The problem is that we
1574 // have already constructed the phase actions, so we can not treat them as
1575 // "input arguments".
1576 if (A->getOption().hasFlag(options::LinkerInput)) {
1577 // Convert the argument into individual Zlinker_input_args.
1578 for (const char *Value : A->getValues()) {
1579 DAL->AddSeparateArg(
1580 OriginalArg, Opts.getOption(options::OPT_Zlinker_input), Value);
1581 }
1582 continue;
1583 }
1584 }
1585
1586 // Sob. These is strictly gcc compatible for the time being. Apple
1587 // gcc translates options twice, which means that self-expanding
1588 // options add duplicates.
1589 switch ((options::ID)A->getOption().getID()) {
1590 default:
1591 DAL->append(A);
1592 break;
1593
1594 case options::OPT_mkernel:
1595 case options::OPT_fapple_kext:
1596 DAL->append(A);
1597 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
1598 break;
1599
1600 case options::OPT_dependency_file:
1601 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF), A->getValue());
1602 break;
1603
1604 case options::OPT_gfull:
1605 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
1606 DAL->AddFlagArg(
1607 A, Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols));
1608 break;
1609
1610 case options::OPT_gused:
1611 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
1612 DAL->AddFlagArg(
1613 A, Opts.getOption(options::OPT_feliminate_unused_debug_symbols));
1614 break;
1615
1616 case options::OPT_shared:
1617 DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib));
1618 break;
1619
1620 case options::OPT_fconstant_cfstrings:
1621 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings));
1622 break;
1623
1624 case options::OPT_fno_constant_cfstrings:
1625 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings));
1626 break;
1627
1628 case options::OPT_Wnonportable_cfstrings:
1629 DAL->AddFlagArg(A,
1630 Opts.getOption(options::OPT_mwarn_nonportable_cfstrings));
1631 break;
1632
1633 case options::OPT_Wno_nonportable_cfstrings:
1634 DAL->AddFlagArg(
1635 A, Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings));
1636 break;
1637
1638 case options::OPT_fpascal_strings:
1639 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mpascal_strings));
1640 break;
1641
1642 case options::OPT_fno_pascal_strings:
1643 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_pascal_strings));
1644 break;
1645 }
1646 }
1647
1648 if (getTriple().getArch() == llvm::Triple::x86 ||
1649 getTriple().getArch() == llvm::Triple::x86_64)
1650 if (!Args.hasArgNoClaim(options::OPT_mtune_EQ))
1651 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_mtune_EQ),
1652 "core2");
1653
1654 // Add the arch options based on the particular spelling of -arch, to match
1655 // how the driver driver works.
1656 if (!BoundArch.empty()) {
1657 StringRef Name = BoundArch;
1658 const Option MCpu = Opts.getOption(options::OPT_mcpu_EQ);
1659 const Option MArch = Opts.getOption(clang::driver::options::OPT_march_EQ);
1660
1661 // This code must be kept in sync with LLVM's getArchTypeForDarwinArch,
1662 // which defines the list of which architectures we accept.
1663 if (Name == "ppc")
1664 ;
1665 else if (Name == "ppc601")
1666 DAL->AddJoinedArg(nullptr, MCpu, "601");
1667 else if (Name == "ppc603")
1668 DAL->AddJoinedArg(nullptr, MCpu, "603");
1669 else if (Name == "ppc604")
1670 DAL->AddJoinedArg(nullptr, MCpu, "604");
1671 else if (Name == "ppc604e")
1672 DAL->AddJoinedArg(nullptr, MCpu, "604e");
1673 else if (Name == "ppc750")
1674 DAL->AddJoinedArg(nullptr, MCpu, "750");
1675 else if (Name == "ppc7400")
1676 DAL->AddJoinedArg(nullptr, MCpu, "7400");
1677 else if (Name == "ppc7450")
1678 DAL->AddJoinedArg(nullptr, MCpu, "7450");
1679 else if (Name == "ppc970")
1680 DAL->AddJoinedArg(nullptr, MCpu, "970");
1681
1682 else if (Name == "ppc64" || Name == "ppc64le")
1683 DAL->AddFlagArg(nullptr, Opts.getOption(options::OPT_m64));
1684
1685 else if (Name == "i386")
1686 ;
1687 else if (Name == "i486")
1688 DAL->AddJoinedArg(nullptr, MArch, "i486");
1689 else if (Name == "i586")
1690 DAL->AddJoinedArg(nullptr, MArch, "i586");
1691 else if (Name == "i686")
1692 DAL->AddJoinedArg(nullptr, MArch, "i686");
1693 else if (Name == "pentium")
1694 DAL->AddJoinedArg(nullptr, MArch, "pentium");
1695 else if (Name == "pentium2")
1696 DAL->AddJoinedArg(nullptr, MArch, "pentium2");
1697 else if (Name == "pentpro")
1698 DAL->AddJoinedArg(nullptr, MArch, "pentiumpro");
1699 else if (Name == "pentIIm3")
1700 DAL->AddJoinedArg(nullptr, MArch, "pentium2");
1701
1702 else if (Name == "x86_64")
1703 DAL->AddFlagArg(nullptr, Opts.getOption(options::OPT_m64));
1704 else if (Name == "x86_64h") {
1705 DAL->AddFlagArg(nullptr, Opts.getOption(options::OPT_m64));
1706 DAL->AddJoinedArg(nullptr, MArch, "x86_64h");
1707 }
1708
1709 else if (Name == "arm")
1710 DAL->AddJoinedArg(nullptr, MArch, "armv4t");
1711 else if (Name == "armv4t")
1712 DAL->AddJoinedArg(nullptr, MArch, "armv4t");
1713 else if (Name == "armv5")
1714 DAL->AddJoinedArg(nullptr, MArch, "armv5tej");
1715 else if (Name == "xscale")
1716 DAL->AddJoinedArg(nullptr, MArch, "xscale");
1717 else if (Name == "armv6")
1718 DAL->AddJoinedArg(nullptr, MArch, "armv6k");
1719 else if (Name == "armv6m")
1720 DAL->AddJoinedArg(nullptr, MArch, "armv6m");
1721 else if (Name == "armv7")
1722 DAL->AddJoinedArg(nullptr, MArch, "armv7a");
1723 else if (Name == "armv7em")
1724 DAL->AddJoinedArg(nullptr, MArch, "armv7em");
1725 else if (Name == "armv7k")
1726 DAL->AddJoinedArg(nullptr, MArch, "armv7k");
1727 else if (Name == "armv7m")
1728 DAL->AddJoinedArg(nullptr, MArch, "armv7m");
1729 else if (Name == "armv7s")
1730 DAL->AddJoinedArg(nullptr, MArch, "armv7s");
1731 }
1732
1733 return DAL;
1734}
1735
1736void MachO::AddLinkRuntimeLibArgs(const ArgList &Args,
1737 ArgStringList &CmdArgs) const {
1738 // Embedded targets are simple at the moment, not supporting sanitizers and
1739 // with different libraries for each member of the product { static, PIC } x
1740 // { hard-float, soft-float }
1741 llvm::SmallString<32> CompilerRT = StringRef("libclang_rt.");
1742 CompilerRT +=
1743 (tools::arm::getARMFloatABI(*this, Args) == tools::arm::FloatABI::Hard)
1744 ? "hard"
1745 : "soft";
1746 CompilerRT += Args.hasArg(options::OPT_fPIC) ? "_pic.a" : "_static.a";
1747
Vedant Kumar796a13f2017-09-12 19:15:31 +00001748 AddLinkRuntimeLib(Args, CmdArgs, CompilerRT, RLO_IsEmbedded);
David L. Jonesf561aba2017-03-08 01:02:16 +00001749}
1750
Akira Hatanakacae83f72017-06-29 18:48:40 +00001751bool Darwin::isAlignedAllocationUnavailable() const {
Akira Hatanaka3e40c302017-07-19 17:17:50 +00001752 llvm::Triple::OSType OS;
1753
Akira Hatanakacae83f72017-06-29 18:48:40 +00001754 switch (TargetPlatform) {
1755 case MacOS: // Earlier than 10.13.
Akira Hatanaka3e40c302017-07-19 17:17:50 +00001756 OS = llvm::Triple::MacOSX;
1757 break;
Akira Hatanakacae83f72017-06-29 18:48:40 +00001758 case IPhoneOS:
1759 case IPhoneOSSimulator:
Akira Hatanaka3e40c302017-07-19 17:17:50 +00001760 OS = llvm::Triple::IOS;
1761 break;
Akira Hatanakacae83f72017-06-29 18:48:40 +00001762 case TvOS:
1763 case TvOSSimulator: // Earlier than 11.0.
Akira Hatanaka3e40c302017-07-19 17:17:50 +00001764 OS = llvm::Triple::TvOS;
1765 break;
Akira Hatanakacae83f72017-06-29 18:48:40 +00001766 case WatchOS:
1767 case WatchOSSimulator: // Earlier than 4.0.
Akira Hatanaka3e40c302017-07-19 17:17:50 +00001768 OS = llvm::Triple::WatchOS;
1769 break;
Akira Hatanakacae83f72017-06-29 18:48:40 +00001770 }
Akira Hatanaka3e40c302017-07-19 17:17:50 +00001771
1772 return TargetVersion < alignedAllocMinVersion(OS);
Akira Hatanakacae83f72017-06-29 18:48:40 +00001773}
1774
1775void Darwin::addClangTargetOptions(const llvm::opt::ArgList &DriverArgs,
Gheorghe-Teodor Berceaf0f29602017-07-06 16:22:21 +00001776 llvm::opt::ArgStringList &CC1Args,
1777 Action::OffloadKind DeviceOffloadKind) const {
Akira Hatanakacae83f72017-06-29 18:48:40 +00001778 if (isAlignedAllocationUnavailable())
1779 CC1Args.push_back("-faligned-alloc-unavailable");
1780}
1781
David L. Jonesf561aba2017-03-08 01:02:16 +00001782DerivedArgList *
1783Darwin::TranslateArgs(const DerivedArgList &Args, StringRef BoundArch,
1784 Action::OffloadKind DeviceOffloadKind) const {
1785 // First get the generic Apple args, before moving onto Darwin-specific ones.
1786 DerivedArgList *DAL =
1787 MachO::TranslateArgs(Args, BoundArch, DeviceOffloadKind);
1788 const OptTable &Opts = getDriver().getOpts();
1789
1790 // If no architecture is bound, none of the translations here are relevant.
1791 if (BoundArch.empty())
1792 return DAL;
1793
1794 // Add an explicit version min argument for the deployment target. We do this
1795 // after argument translation because -Xarch_ arguments may add a version min
1796 // argument.
1797 AddDeploymentTarget(*DAL);
1798
1799 // For iOS 6, undo the translation to add -static for -mkernel/-fapple-kext.
1800 // FIXME: It would be far better to avoid inserting those -static arguments,
1801 // but we can't check the deployment target in the translation code until
1802 // it is set here.
1803 if (isTargetWatchOSBased() ||
1804 (isTargetIOSBased() && !isIPhoneOSVersionLT(6, 0))) {
1805 for (ArgList::iterator it = DAL->begin(), ie = DAL->end(); it != ie; ) {
1806 Arg *A = *it;
1807 ++it;
1808 if (A->getOption().getID() != options::OPT_mkernel &&
1809 A->getOption().getID() != options::OPT_fapple_kext)
1810 continue;
1811 assert(it != ie && "unexpected argument translation");
1812 A = *it;
1813 assert(A->getOption().getID() == options::OPT_static &&
1814 "missing expected -static argument");
Richard Smithac65f642017-04-12 23:21:25 +00001815 *it = nullptr;
1816 ++it;
David L. Jonesf561aba2017-03-08 01:02:16 +00001817 }
1818 }
1819
1820 if (!Args.getLastArg(options::OPT_stdlib_EQ) &&
1821 GetCXXStdlibType(Args) == ToolChain::CST_Libcxx)
1822 DAL->AddJoinedArg(nullptr, Opts.getOption(options::OPT_stdlib_EQ),
1823 "libc++");
1824
1825 // Validate the C++ standard library choice.
1826 CXXStdlibType Type = GetCXXStdlibType(*DAL);
1827 if (Type == ToolChain::CST_Libcxx) {
1828 // Check whether the target provides libc++.
1829 StringRef where;
1830
1831 // Complain about targeting iOS < 5.0 in any way.
1832 if (isTargetIOSBased() && isIPhoneOSVersionLT(5, 0))
1833 where = "iOS 5.0";
1834
1835 if (where != StringRef()) {
1836 getDriver().Diag(clang::diag::err_drv_invalid_libcxx_deployment) << where;
1837 }
1838 }
1839
1840 auto Arch = tools::darwin::getArchTypeForMachOArchName(BoundArch);
1841 if ((Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb)) {
1842 if (Args.hasFlag(options::OPT_fomit_frame_pointer,
1843 options::OPT_fno_omit_frame_pointer, false))
1844 getDriver().Diag(clang::diag::warn_drv_unsupported_opt_for_target)
1845 << "-fomit-frame-pointer" << BoundArch;
1846 }
1847
1848 return DAL;
1849}
1850
Akira Hatanakab72e35a2017-08-03 23:55:42 +00001851bool MachO::IsUnwindTablesDefault(const ArgList &Args) const {
Akira Hatanakaa423cb42017-08-21 22:46:46 +00001852 // Unwind tables are not emitted if -fno-exceptions is supplied (except when
1853 // targeting x86_64).
1854 return getArch() == llvm::Triple::x86_64 ||
1855 (!UseSjLjExceptions(Args) &&
1856 Args.hasFlag(options::OPT_fexceptions, options::OPT_fno_exceptions,
1857 true));
David L. Jonesf561aba2017-03-08 01:02:16 +00001858}
1859
1860bool MachO::UseDwarfDebugFlags() const {
1861 if (const char *S = ::getenv("RC_DEBUG_OPTIONS"))
1862 return S[0] != '\0';
1863 return false;
1864}
1865
1866bool Darwin::UseSjLjExceptions(const ArgList &Args) const {
1867 // Darwin uses SjLj exceptions on ARM.
1868 if (getTriple().getArch() != llvm::Triple::arm &&
1869 getTriple().getArch() != llvm::Triple::thumb)
1870 return false;
1871
1872 // Only watchOS uses the new DWARF/Compact unwinding method.
1873 llvm::Triple Triple(ComputeLLVMTriple(Args));
1874 return !Triple.isWatchABI();
1875}
1876
1877bool Darwin::SupportsEmbeddedBitcode() const {
1878 assert(TargetInitialized && "Target not initialized!");
1879 if (isTargetIPhoneOS() && isIPhoneOSVersionLT(6, 0))
1880 return false;
1881 return true;
1882}
1883
1884bool MachO::isPICDefault() const { return true; }
1885
1886bool MachO::isPIEDefault() const { return false; }
1887
1888bool MachO::isPICDefaultForced() const {
1889 return (getArch() == llvm::Triple::x86_64 ||
1890 getArch() == llvm::Triple::aarch64);
1891}
1892
1893bool MachO::SupportsProfiling() const {
1894 // Profiling instrumentation is only supported on x86.
1895 return getArch() == llvm::Triple::x86 || getArch() == llvm::Triple::x86_64;
1896}
1897
1898void Darwin::addMinVersionArgs(const ArgList &Args,
1899 ArgStringList &CmdArgs) const {
1900 VersionTuple TargetVersion = getTargetVersion();
1901
1902 if (isTargetWatchOS())
1903 CmdArgs.push_back("-watchos_version_min");
1904 else if (isTargetWatchOSSimulator())
1905 CmdArgs.push_back("-watchos_simulator_version_min");
1906 else if (isTargetTvOS())
1907 CmdArgs.push_back("-tvos_version_min");
1908 else if (isTargetTvOSSimulator())
1909 CmdArgs.push_back("-tvos_simulator_version_min");
1910 else if (isTargetIOSSimulator())
1911 CmdArgs.push_back("-ios_simulator_version_min");
1912 else if (isTargetIOSBased())
1913 CmdArgs.push_back("-iphoneos_version_min");
1914 else {
1915 assert(isTargetMacOS() && "unexpected target");
1916 CmdArgs.push_back("-macosx_version_min");
1917 }
1918
1919 CmdArgs.push_back(Args.MakeArgString(TargetVersion.getAsString()));
1920}
1921
1922void Darwin::addStartObjectFileArgs(const ArgList &Args,
1923 ArgStringList &CmdArgs) const {
1924 // Derived from startfile spec.
1925 if (Args.hasArg(options::OPT_dynamiclib)) {
1926 // Derived from darwin_dylib1 spec.
1927 if (isTargetWatchOSBased()) {
1928 ; // watchOS does not need dylib1.o.
1929 } else if (isTargetIOSSimulator()) {
1930 ; // iOS simulator does not need dylib1.o.
1931 } else if (isTargetIPhoneOS()) {
1932 if (isIPhoneOSVersionLT(3, 1))
1933 CmdArgs.push_back("-ldylib1.o");
1934 } else {
1935 if (isMacosxVersionLT(10, 5))
1936 CmdArgs.push_back("-ldylib1.o");
1937 else if (isMacosxVersionLT(10, 6))
1938 CmdArgs.push_back("-ldylib1.10.5.o");
1939 }
1940 } else {
1941 if (Args.hasArg(options::OPT_bundle)) {
1942 if (!Args.hasArg(options::OPT_static)) {
1943 // Derived from darwin_bundle1 spec.
1944 if (isTargetWatchOSBased()) {
1945 ; // watchOS does not need bundle1.o.
1946 } else if (isTargetIOSSimulator()) {
1947 ; // iOS simulator does not need bundle1.o.
1948 } else if (isTargetIPhoneOS()) {
1949 if (isIPhoneOSVersionLT(3, 1))
1950 CmdArgs.push_back("-lbundle1.o");
1951 } else {
1952 if (isMacosxVersionLT(10, 6))
1953 CmdArgs.push_back("-lbundle1.o");
1954 }
1955 }
1956 } else {
1957 if (Args.hasArg(options::OPT_pg) && SupportsProfiling()) {
1958 if (Args.hasArg(options::OPT_static) ||
1959 Args.hasArg(options::OPT_object) ||
1960 Args.hasArg(options::OPT_preload)) {
1961 CmdArgs.push_back("-lgcrt0.o");
1962 } else {
1963 CmdArgs.push_back("-lgcrt1.o");
1964
1965 // darwin_crt2 spec is empty.
1966 }
1967 // By default on OS X 10.8 and later, we don't link with a crt1.o
1968 // file and the linker knows to use _main as the entry point. But,
1969 // when compiling with -pg, we need to link with the gcrt1.o file,
1970 // so pass the -no_new_main option to tell the linker to use the
1971 // "start" symbol as the entry point.
1972 if (isTargetMacOS() && !isMacosxVersionLT(10, 8))
1973 CmdArgs.push_back("-no_new_main");
1974 } else {
1975 if (Args.hasArg(options::OPT_static) ||
1976 Args.hasArg(options::OPT_object) ||
1977 Args.hasArg(options::OPT_preload)) {
1978 CmdArgs.push_back("-lcrt0.o");
1979 } else {
1980 // Derived from darwin_crt1 spec.
1981 if (isTargetWatchOSBased()) {
1982 ; // watchOS does not need crt1.o.
1983 } else if (isTargetIOSSimulator()) {
1984 ; // iOS simulator does not need crt1.o.
1985 } else if (isTargetIPhoneOS()) {
1986 if (getArch() == llvm::Triple::aarch64)
1987 ; // iOS does not need any crt1 files for arm64
1988 else if (isIPhoneOSVersionLT(3, 1))
1989 CmdArgs.push_back("-lcrt1.o");
1990 else if (isIPhoneOSVersionLT(6, 0))
1991 CmdArgs.push_back("-lcrt1.3.1.o");
1992 } else {
1993 if (isMacosxVersionLT(10, 5))
1994 CmdArgs.push_back("-lcrt1.o");
1995 else if (isMacosxVersionLT(10, 6))
1996 CmdArgs.push_back("-lcrt1.10.5.o");
1997 else if (isMacosxVersionLT(10, 8))
1998 CmdArgs.push_back("-lcrt1.10.6.o");
1999
2000 // darwin_crt2 spec is empty.
2001 }
2002 }
2003 }
2004 }
2005 }
2006
2007 if (!isTargetIPhoneOS() && Args.hasArg(options::OPT_shared_libgcc) &&
2008 !isTargetWatchOS() &&
2009 isMacosxVersionLT(10, 5)) {
2010 const char *Str = Args.MakeArgString(GetFilePath("crt3.o"));
2011 CmdArgs.push_back(Str);
2012 }
2013}
2014
2015bool Darwin::SupportsObjCGC() const { return isTargetMacOS(); }
2016
2017void Darwin::CheckObjCARC() const {
2018 if (isTargetIOSBased() || isTargetWatchOSBased() ||
2019 (isTargetMacOS() && !isMacosxVersionLT(10, 6)))
2020 return;
2021 getDriver().Diag(diag::err_arc_unsupported_on_toolchain);
2022}
2023
2024SanitizerMask Darwin::getSupportedSanitizers() const {
2025 const bool IsX86_64 = getTriple().getArch() == llvm::Triple::x86_64;
2026 SanitizerMask Res = ToolChain::getSupportedSanitizers();
2027 Res |= SanitizerKind::Address;
Francis Ricci8e63e542017-04-20 21:11:51 +00002028 Res |= SanitizerKind::Leak;
George Karpenkovf2fc5b02017-04-24 18:23:24 +00002029 Res |= SanitizerKind::Fuzzer;
George Karpenkov33613f62017-08-11 17:22:58 +00002030 Res |= SanitizerKind::FuzzerNoLink;
Vedant Kumard8ab8c22017-09-13 00:04:36 +00002031 Res |= SanitizerKind::Function;
David L. Jonesf561aba2017-03-08 01:02:16 +00002032 if (isTargetMacOS()) {
2033 if (!isMacosxVersionLT(10, 9))
2034 Res |= SanitizerKind::Vptr;
2035 Res |= SanitizerKind::SafeStack;
2036 if (IsX86_64)
2037 Res |= SanitizerKind::Thread;
2038 } else if (isTargetIOSSimulator() || isTargetTvOSSimulator()) {
2039 if (IsX86_64)
2040 Res |= SanitizerKind::Thread;
2041 }
2042 return Res;
2043}
2044
2045void Darwin::printVerboseInfo(raw_ostream &OS) const {
2046 CudaInstallation.print(OS);
2047}