| //===-- Clang.cpp - Clang+LLVM ToolChain Implementations --------*- C++ -*-===// |
| // |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| // |
| //===----------------------------------------------------------------------===// |
| |
| #include "Clang.h" |
| #include "AMDGPU.h" |
| #include "Arch/AArch64.h" |
| #include "Arch/ARM.h" |
| #include "Arch/M68k.h" |
| #include "Arch/Mips.h" |
| #include "Arch/PPC.h" |
| #include "Arch/RISCV.h" |
| #include "Arch/Sparc.h" |
| #include "Arch/SystemZ.h" |
| #include "Arch/VE.h" |
| #include "Arch/X86.h" |
| #include "CommonArgs.h" |
| #include "Hexagon.h" |
| #include "MSP430.h" |
| #include "PS4CPU.h" |
| #include "clang/Basic/CLWarnings.h" |
| #include "clang/Basic/CharInfo.h" |
| #include "clang/Basic/CodeGenOptions.h" |
| #include "clang/Basic/LangOptions.h" |
| #include "clang/Basic/ObjCRuntime.h" |
| #include "clang/Basic/Version.h" |
| #include "clang/Driver/Distro.h" |
| #include "clang/Driver/DriverDiagnostic.h" |
| #include "clang/Driver/InputInfo.h" |
| #include "clang/Driver/Options.h" |
| #include "clang/Driver/SanitizerArgs.h" |
| #include "clang/Driver/XRayArgs.h" |
| #include "llvm/ADT/StringExtras.h" |
| #include "llvm/Config/llvm-config.h" |
| #include "llvm/Option/ArgList.h" |
| #include "llvm/Support/CodeGen.h" |
| #include "llvm/Support/Compiler.h" |
| #include "llvm/Support/Compression.h" |
| #include "llvm/Support/FileSystem.h" |
| #include "llvm/Support/Host.h" |
| #include "llvm/Support/Path.h" |
| #include "llvm/Support/Process.h" |
| #include "llvm/Support/TargetParser.h" |
| #include "llvm/Support/YAMLParser.h" |
| |
| using namespace clang::driver; |
| using namespace clang::driver::tools; |
| using namespace clang; |
| using namespace llvm::opt; |
| |
| static void CheckPreprocessingOptions(const Driver &D, const ArgList &Args) { |
| if (Arg *A = Args.getLastArg(clang::driver::options::OPT_C, options::OPT_CC, |
| options::OPT_fminimize_whitespace, |
| options::OPT_fno_minimize_whitespace)) { |
| if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_P) && |
| !Args.hasArg(options::OPT__SLASH_EP) && !D.CCCIsCPP()) { |
| D.Diag(clang::diag::err_drv_argument_only_allowed_with) |
| << A->getBaseArg().getAsString(Args) |
| << (D.IsCLMode() ? "/E, /P or /EP" : "-E"); |
| } |
| } |
| } |
| |
| static void CheckCodeGenerationOptions(const Driver &D, const ArgList &Args) { |
| // In gcc, only ARM checks this, but it seems reasonable to check universally. |
| if (Args.hasArg(options::OPT_static)) |
| if (const Arg *A = |
| Args.getLastArg(options::OPT_dynamic, options::OPT_mdynamic_no_pic)) |
| D.Diag(diag::err_drv_argument_not_allowed_with) << A->getAsString(Args) |
| << "-static"; |
| } |
| |
| // Add backslashes to escape spaces and other backslashes. |
| // This is used for the space-separated argument list specified with |
| // the -dwarf-debug-flags option. |
| static void EscapeSpacesAndBackslashes(const char *Arg, |
| SmallVectorImpl<char> &Res) { |
| for (; *Arg; ++Arg) { |
| switch (*Arg) { |
| default: |
| break; |
| case ' ': |
| case '\\': |
| Res.push_back('\\'); |
| break; |
| } |
| Res.push_back(*Arg); |
| } |
| } |
| |
| // Quote target names for inclusion in GNU Make dependency files. |
| // Only the characters '$', '#', ' ', '\t' are quoted. |
| static void QuoteTarget(StringRef Target, SmallVectorImpl<char> &Res) { |
| for (unsigned i = 0, e = Target.size(); i != e; ++i) { |
| switch (Target[i]) { |
| case ' ': |
| case '\t': |
| // Escape the preceding backslashes |
| for (int j = i - 1; j >= 0 && Target[j] == '\\'; --j) |
| Res.push_back('\\'); |
| |
| // Escape the space/tab |
| Res.push_back('\\'); |
| break; |
| case '$': |
| Res.push_back('$'); |
| break; |
| case '#': |
| Res.push_back('\\'); |
| break; |
| default: |
| break; |
| } |
| |
| Res.push_back(Target[i]); |
| } |
| } |
| |
| /// Apply \a Work on the current tool chain \a RegularToolChain and any other |
| /// offloading tool chain that is associated with the current action \a JA. |
| static void |
| forAllAssociatedToolChains(Compilation &C, const JobAction &JA, |
| const ToolChain &RegularToolChain, |
| llvm::function_ref<void(const ToolChain &)> Work) { |
| // Apply Work on the current/regular tool chain. |
| Work(RegularToolChain); |
| |
| // Apply Work on all the offloading tool chains associated with the current |
| // action. |
| if (JA.isHostOffloading(Action::OFK_Cuda)) |
| Work(*C.getSingleOffloadToolChain<Action::OFK_Cuda>()); |
| else if (JA.isDeviceOffloading(Action::OFK_Cuda)) |
| Work(*C.getSingleOffloadToolChain<Action::OFK_Host>()); |
| else if (JA.isHostOffloading(Action::OFK_HIP)) |
| Work(*C.getSingleOffloadToolChain<Action::OFK_HIP>()); |
| else if (JA.isDeviceOffloading(Action::OFK_HIP)) |
| Work(*C.getSingleOffloadToolChain<Action::OFK_Host>()); |
| |
| if (JA.isHostOffloading(Action::OFK_OpenMP)) { |
| auto TCs = C.getOffloadToolChains<Action::OFK_OpenMP>(); |
| for (auto II = TCs.first, IE = TCs.second; II != IE; ++II) |
| Work(*II->second); |
| } else if (JA.isDeviceOffloading(Action::OFK_OpenMP)) |
| Work(*C.getSingleOffloadToolChain<Action::OFK_Host>()); |
| |
| // |
| // TODO: Add support for other offloading programming models here. |
| // |
| } |
| |
| /// This is a helper function for validating the optional refinement step |
| /// parameter in reciprocal argument strings. Return false if there is an error |
| /// parsing the refinement step. Otherwise, return true and set the Position |
| /// of the refinement step in the input string. |
| static bool getRefinementStep(StringRef In, const Driver &D, |
| const Arg &A, size_t &Position) { |
| const char RefinementStepToken = ':'; |
| Position = In.find(RefinementStepToken); |
| if (Position != StringRef::npos) { |
| StringRef Option = A.getOption().getName(); |
| StringRef RefStep = In.substr(Position + 1); |
| // Allow exactly one numeric character for the additional refinement |
| // step parameter. This is reasonable for all currently-supported |
| // operations and architectures because we would expect that a larger value |
| // of refinement steps would cause the estimate "optimization" to |
| // under-perform the native operation. Also, if the estimate does not |
| // converge quickly, it probably will not ever converge, so further |
| // refinement steps will not produce a better answer. |
| if (RefStep.size() != 1) { |
| D.Diag(diag::err_drv_invalid_value) << Option << RefStep; |
| return false; |
| } |
| char RefStepChar = RefStep[0]; |
| if (RefStepChar < '0' || RefStepChar > '9') { |
| D.Diag(diag::err_drv_invalid_value) << Option << RefStep; |
| return false; |
| } |
| } |
| return true; |
| } |
| |
| /// The -mrecip flag requires processing of many optional parameters. |
| static void ParseMRecip(const Driver &D, const ArgList &Args, |
| ArgStringList &OutStrings) { |
| StringRef DisabledPrefixIn = "!"; |
| StringRef DisabledPrefixOut = "!"; |
| StringRef EnabledPrefixOut = ""; |
| StringRef Out = "-mrecip="; |
| |
| Arg *A = Args.getLastArg(options::OPT_mrecip, options::OPT_mrecip_EQ); |
| if (!A) |
| return; |
| |
| unsigned NumOptions = A->getNumValues(); |
| if (NumOptions == 0) { |
| // No option is the same as "all". |
| OutStrings.push_back(Args.MakeArgString(Out + "all")); |
| return; |
| } |
| |
| // Pass through "all", "none", or "default" with an optional refinement step. |
| if (NumOptions == 1) { |
| StringRef Val = A->getValue(0); |
| size_t RefStepLoc; |
| if (!getRefinementStep(Val, D, *A, RefStepLoc)) |
| return; |
| StringRef ValBase = Val.slice(0, RefStepLoc); |
| if (ValBase == "all" || ValBase == "none" || ValBase == "default") { |
| OutStrings.push_back(Args.MakeArgString(Out + Val)); |
| return; |
| } |
| } |
| |
| // Each reciprocal type may be enabled or disabled individually. |
| // Check each input value for validity, concatenate them all back together, |
| // and pass through. |
| |
| llvm::StringMap<bool> OptionStrings; |
| OptionStrings.insert(std::make_pair("divd", false)); |
| OptionStrings.insert(std::make_pair("divf", false)); |
| OptionStrings.insert(std::make_pair("vec-divd", false)); |
| OptionStrings.insert(std::make_pair("vec-divf", false)); |
| OptionStrings.insert(std::make_pair("sqrtd", false)); |
| OptionStrings.insert(std::make_pair("sqrtf", false)); |
| OptionStrings.insert(std::make_pair("vec-sqrtd", false)); |
| OptionStrings.insert(std::make_pair("vec-sqrtf", false)); |
| |
| for (unsigned i = 0; i != NumOptions; ++i) { |
| StringRef Val = A->getValue(i); |
| |
| bool IsDisabled = Val.startswith(DisabledPrefixIn); |
| // Ignore the disablement token for string matching. |
| if (IsDisabled) |
| Val = Val.substr(1); |
| |
| size_t RefStep; |
| if (!getRefinementStep(Val, D, *A, RefStep)) |
| return; |
| |
| StringRef ValBase = Val.slice(0, RefStep); |
| llvm::StringMap<bool>::iterator OptionIter = OptionStrings.find(ValBase); |
| if (OptionIter == OptionStrings.end()) { |
| // Try again specifying float suffix. |
| OptionIter = OptionStrings.find(ValBase.str() + 'f'); |
| if (OptionIter == OptionStrings.end()) { |
| // The input name did not match any known option string. |
| D.Diag(diag::err_drv_unknown_argument) << Val; |
| return; |
| } |
| // The option was specified without a float or double suffix. |
| // Make sure that the double entry was not already specified. |
| // The float entry will be checked below. |
| if (OptionStrings[ValBase.str() + 'd']) { |
| D.Diag(diag::err_drv_invalid_value) << A->getOption().getName() << Val; |
| return; |
| } |
| } |
| |
| if (OptionIter->second == true) { |
| // Duplicate option specified. |
| D.Diag(diag::err_drv_invalid_value) << A->getOption().getName() << Val; |
| return; |
| } |
| |
| // Mark the matched option as found. Do not allow duplicate specifiers. |
| OptionIter->second = true; |
| |
| // If the precision was not specified, also mark the double entry as found. |
| if (ValBase.back() != 'f' && ValBase.back() != 'd') |
| OptionStrings[ValBase.str() + 'd'] = true; |
| |
| // Build the output string. |
| StringRef Prefix = IsDisabled ? DisabledPrefixOut : EnabledPrefixOut; |
| Out = Args.MakeArgString(Out + Prefix + Val); |
| if (i != NumOptions - 1) |
| Out = Args.MakeArgString(Out + ","); |
| } |
| |
| OutStrings.push_back(Args.MakeArgString(Out)); |
| } |
| |
| /// The -mprefer-vector-width option accepts either a positive integer |
| /// or the string "none". |
| static void ParseMPreferVectorWidth(const Driver &D, const ArgList &Args, |
| ArgStringList &CmdArgs) { |
| Arg *A = Args.getLastArg(options::OPT_mprefer_vector_width_EQ); |
| if (!A) |
| return; |
| |
| StringRef Value = A->getValue(); |
| if (Value == "none") { |
| CmdArgs.push_back("-mprefer-vector-width=none"); |
| } else { |
| unsigned Width; |
| if (Value.getAsInteger(10, Width)) { |
| D.Diag(diag::err_drv_invalid_value) << A->getOption().getName() << Value; |
| return; |
| } |
| CmdArgs.push_back(Args.MakeArgString("-mprefer-vector-width=" + Value)); |
| } |
| } |
| |
| static void getWebAssemblyTargetFeatures(const ArgList &Args, |
| std::vector<StringRef> &Features) { |
| handleTargetFeaturesGroup(Args, Features, options::OPT_m_wasm_Features_Group); |
| } |
| |
| static void getTargetFeatures(const Driver &D, const llvm::Triple &Triple, |
| const ArgList &Args, ArgStringList &CmdArgs, |
| bool ForAS, bool IsAux = false) { |
| std::vector<StringRef> Features; |
| switch (Triple.getArch()) { |
| default: |
| break; |
| case llvm::Triple::mips: |
| case llvm::Triple::mipsel: |
| case llvm::Triple::mips64: |
| case llvm::Triple::mips64el: |
| mips::getMIPSTargetFeatures(D, Triple, Args, Features); |
| break; |
| |
| case llvm::Triple::arm: |
| case llvm::Triple::armeb: |
| case llvm::Triple::thumb: |
| case llvm::Triple::thumbeb: |
| arm::getARMTargetFeatures(D, Triple, Args, CmdArgs, Features, ForAS); |
| break; |
| |
| case llvm::Triple::ppc: |
| case llvm::Triple::ppcle: |
| case llvm::Triple::ppc64: |
| case llvm::Triple::ppc64le: |
| ppc::getPPCTargetFeatures(D, Triple, Args, Features); |
| break; |
| case llvm::Triple::riscv32: |
| case llvm::Triple::riscv64: |
| riscv::getRISCVTargetFeatures(D, Triple, Args, Features); |
| break; |
| case llvm::Triple::systemz: |
| systemz::getSystemZTargetFeatures(D, Args, Features); |
| break; |
| case llvm::Triple::aarch64: |
| case llvm::Triple::aarch64_32: |
| case llvm::Triple::aarch64_be: |
| aarch64::getAArch64TargetFeatures(D, Triple, Args, Features, ForAS); |
| break; |
| case llvm::Triple::x86: |
| case llvm::Triple::x86_64: |
| x86::getX86TargetFeatures(D, Triple, Args, Features); |
| break; |
| case llvm::Triple::hexagon: |
| hexagon::getHexagonTargetFeatures(D, Args, Features); |
| break; |
| case llvm::Triple::wasm32: |
| case llvm::Triple::wasm64: |
| getWebAssemblyTargetFeatures(Args, Features); |
| break; |
| case llvm::Triple::sparc: |
| case llvm::Triple::sparcel: |
| case llvm::Triple::sparcv9: |
| sparc::getSparcTargetFeatures(D, Args, Features); |
| break; |
| case llvm::Triple::r600: |
| case llvm::Triple::amdgcn: |
| amdgpu::getAMDGPUTargetFeatures(D, Triple, Args, Features); |
| break; |
| case llvm::Triple::m68k: |
| m68k::getM68kTargetFeatures(D, Triple, Args, Features); |
| break; |
| case llvm::Triple::msp430: |
| msp430::getMSP430TargetFeatures(D, Args, Features); |
| break; |
| case llvm::Triple::ve: |
| ve::getVETargetFeatures(D, Args, Features); |
| break; |
| } |
| |
| for (auto Feature : unifyTargetFeatures(Features)) { |
| CmdArgs.push_back(IsAux ? "-aux-target-feature" : "-target-feature"); |
| CmdArgs.push_back(Feature.data()); |
| } |
| } |
| |
| static bool |
| shouldUseExceptionTablesForObjCExceptions(const ObjCRuntime &runtime, |
| const llvm::Triple &Triple) { |
| // We use the zero-cost exception tables for Objective-C if the non-fragile |
| // ABI is enabled or when compiling for x86_64 and ARM on Snow Leopard and |
| // later. |
| if (runtime.isNonFragile()) |
| return true; |
| |
| if (!Triple.isMacOSX()) |
| return false; |
| |
| return (!Triple.isMacOSXVersionLT(10, 5) && |
| (Triple.getArch() == llvm::Triple::x86_64 || |
| Triple.getArch() == llvm::Triple::arm)); |
| } |
| |
| /// Adds exception related arguments to the driver command arguments. There's a |
| /// main flag, -fexceptions and also language specific flags to enable/disable |
| /// C++ and Objective-C exceptions. This makes it possible to for example |
| /// disable C++ exceptions but enable Objective-C exceptions. |
| static bool addExceptionArgs(const ArgList &Args, types::ID InputType, |
| const ToolChain &TC, bool KernelOrKext, |
| const ObjCRuntime &objcRuntime, |
| ArgStringList &CmdArgs) { |
| const llvm::Triple &Triple = TC.getTriple(); |
| |
| if (KernelOrKext) { |
| // -mkernel and -fapple-kext imply no exceptions, so claim exception related |
| // arguments now to avoid warnings about unused arguments. |
| Args.ClaimAllArgs(options::OPT_fexceptions); |
| Args.ClaimAllArgs(options::OPT_fno_exceptions); |
| Args.ClaimAllArgs(options::OPT_fobjc_exceptions); |
| Args.ClaimAllArgs(options::OPT_fno_objc_exceptions); |
| Args.ClaimAllArgs(options::OPT_fcxx_exceptions); |
| Args.ClaimAllArgs(options::OPT_fno_cxx_exceptions); |
| Args.ClaimAllArgs(options::OPT_fasync_exceptions); |
| Args.ClaimAllArgs(options::OPT_fno_async_exceptions); |
| return false; |
| } |
| |
| // See if the user explicitly enabled exceptions. |
| bool EH = Args.hasFlag(options::OPT_fexceptions, options::OPT_fno_exceptions, |
| false); |
| |
| bool EHa = Args.hasFlag(options::OPT_fasync_exceptions, |
| options::OPT_fno_async_exceptions, false); |
| if (EHa) { |
| CmdArgs.push_back("-fasync-exceptions"); |
| EH = true; |
| } |
| |
| // Obj-C exceptions are enabled by default, regardless of -fexceptions. This |
| // is not necessarily sensible, but follows GCC. |
| if (types::isObjC(InputType) && |
| Args.hasFlag(options::OPT_fobjc_exceptions, |
| options::OPT_fno_objc_exceptions, true)) { |
| CmdArgs.push_back("-fobjc-exceptions"); |
| |
| EH |= shouldUseExceptionTablesForObjCExceptions(objcRuntime, Triple); |
| } |
| |
| if (types::isCXX(InputType)) { |
| // Disable C++ EH by default on XCore and PS4. |
| bool CXXExceptionsEnabled = |
| Triple.getArch() != llvm::Triple::xcore && !Triple.isPS4CPU(); |
| Arg *ExceptionArg = Args.getLastArg( |
| options::OPT_fcxx_exceptions, options::OPT_fno_cxx_exceptions, |
| options::OPT_fexceptions, options::OPT_fno_exceptions); |
| if (ExceptionArg) |
| CXXExceptionsEnabled = |
| ExceptionArg->getOption().matches(options::OPT_fcxx_exceptions) || |
| ExceptionArg->getOption().matches(options::OPT_fexceptions); |
| |
| if (CXXExceptionsEnabled) { |
| CmdArgs.push_back("-fcxx-exceptions"); |
| |
| EH = true; |
| } |
| } |
| |
| // OPT_fignore_exceptions means exception could still be thrown, |
| // but no clean up or catch would happen in current module. |
| // So we do not set EH to false. |
| Args.AddLastArg(CmdArgs, options::OPT_fignore_exceptions); |
| |
| if (EH) |
| CmdArgs.push_back("-fexceptions"); |
| return EH; |
| } |
| |
| static bool ShouldEnableAutolink(const ArgList &Args, const ToolChain &TC, |
| const JobAction &JA) { |
| bool Default = true; |
| if (TC.getTriple().isOSDarwin()) { |
| // The native darwin assembler doesn't support the linker_option directives, |
| // so we disable them if we think the .s file will be passed to it. |
| Default = TC.useIntegratedAs(); |
| } |
| // The linker_option directives are intended for host compilation. |
| if (JA.isDeviceOffloading(Action::OFK_Cuda) || |
| JA.isDeviceOffloading(Action::OFK_HIP)) |
| Default = false; |
| return Args.hasFlag(options::OPT_fautolink, options::OPT_fno_autolink, |
| Default); |
| } |
| |
| // Convert an arg of the form "-gN" or "-ggdbN" or one of their aliases |
| // to the corresponding DebugInfoKind. |
| static codegenoptions::DebugInfoKind DebugLevelToInfoKind(const Arg &A) { |
| assert(A.getOption().matches(options::OPT_gN_Group) && |
| "Not a -g option that specifies a debug-info level"); |
| if (A.getOption().matches(options::OPT_g0) || |
| A.getOption().matches(options::OPT_ggdb0)) |
| return codegenoptions::NoDebugInfo; |
| if (A.getOption().matches(options::OPT_gline_tables_only) || |
| A.getOption().matches(options::OPT_ggdb1)) |
| return codegenoptions::DebugLineTablesOnly; |
| if (A.getOption().matches(options::OPT_gline_directives_only)) |
| return codegenoptions::DebugDirectivesOnly; |
| return codegenoptions::DebugInfoConstructor; |
| } |
| |
| static bool mustUseNonLeafFramePointerForTarget(const llvm::Triple &Triple) { |
| switch (Triple.getArch()){ |
| default: |
| return false; |
| case llvm::Triple::arm: |
| case llvm::Triple::thumb: |
| // ARM Darwin targets require a frame pointer to be always present to aid |
| // offline debugging via backtraces. |
| return Triple.isOSDarwin(); |
| } |
| } |
| |
| static bool useFramePointerForTargetByDefault(const ArgList &Args, |
| const llvm::Triple &Triple) { |
| if (Args.hasArg(options::OPT_pg) && !Args.hasArg(options::OPT_mfentry)) |
| return true; |
| |
| switch (Triple.getArch()) { |
| case llvm::Triple::xcore: |
| case llvm::Triple::wasm32: |
| case llvm::Triple::wasm64: |
| case llvm::Triple::msp430: |
| // XCore never wants frame pointers, regardless of OS. |
| // WebAssembly never wants frame pointers. |
| return false; |
| case llvm::Triple::ppc: |
| case llvm::Triple::ppcle: |
| case llvm::Triple::ppc64: |
| case llvm::Triple::ppc64le: |
| case llvm::Triple::riscv32: |
| case llvm::Triple::riscv64: |
| case llvm::Triple::amdgcn: |
| case llvm::Triple::r600: |
| return !areOptimizationsEnabled(Args); |
| default: |
| break; |
| } |
| |
| if (Triple.isOSNetBSD()) { |
| return !areOptimizationsEnabled(Args); |
| } |
| |
| if (Triple.isOSLinux() || Triple.getOS() == llvm::Triple::CloudABI || |
| Triple.isOSHurd()) { |
| switch (Triple.getArch()) { |
| // Don't use a frame pointer on linux if optimizing for certain targets. |
| case llvm::Triple::arm: |
| case llvm::Triple::armeb: |
| case llvm::Triple::thumb: |
| case llvm::Triple::thumbeb: |
| if (Triple.isAndroid()) |
| return true; |
| LLVM_FALLTHROUGH; |
| case llvm::Triple::mips64: |
| case llvm::Triple::mips64el: |
| case llvm::Triple::mips: |
| case llvm::Triple::mipsel: |
| case llvm::Triple::systemz: |
| case llvm::Triple::x86: |
| case llvm::Triple::x86_64: |
| return !areOptimizationsEnabled(Args); |
| default: |
| return true; |
| } |
| } |
| |
| if (Triple.isOSWindows()) { |
| switch (Triple.getArch()) { |
| case llvm::Triple::x86: |
| return !areOptimizationsEnabled(Args); |
| case llvm::Triple::x86_64: |
| return Triple.isOSBinFormatMachO(); |
| case llvm::Triple::arm: |
| case llvm::Triple::thumb: |
| // Windows on ARM builds with FPO disabled to aid fast stack walking |
| return true; |
| default: |
| // All other supported Windows ISAs use xdata unwind information, so frame |
| // pointers are not generally useful. |
| return false; |
| } |
| } |
| |
| return true; |
| } |
| |
| static CodeGenOptions::FramePointerKind |
| getFramePointerKind(const ArgList &Args, const llvm::Triple &Triple) { |
| // We have 4 states: |
| // |
| // 00) leaf retained, non-leaf retained |
| // 01) leaf retained, non-leaf omitted (this is invalid) |
| // 10) leaf omitted, non-leaf retained |
| // (what -momit-leaf-frame-pointer was designed for) |
| // 11) leaf omitted, non-leaf omitted |
| // |
| // "omit" options taking precedence over "no-omit" options is the only way |
| // to make 3 valid states representable |
| Arg *A = Args.getLastArg(options::OPT_fomit_frame_pointer, |
| options::OPT_fno_omit_frame_pointer); |
| bool OmitFP = A && A->getOption().matches(options::OPT_fomit_frame_pointer); |
| bool NoOmitFP = |
| A && A->getOption().matches(options::OPT_fno_omit_frame_pointer); |
| bool OmitLeafFP = Args.hasFlag(options::OPT_momit_leaf_frame_pointer, |
| options::OPT_mno_omit_leaf_frame_pointer, |
| Triple.isAArch64() || Triple.isPS4CPU() || |
| Triple.isVE()); |
| if (NoOmitFP || mustUseNonLeafFramePointerForTarget(Triple) || |
| (!OmitFP && useFramePointerForTargetByDefault(Args, Triple))) { |
| if (OmitLeafFP) |
| return CodeGenOptions::FramePointerKind::NonLeaf; |
| return CodeGenOptions::FramePointerKind::All; |
| } |
| return CodeGenOptions::FramePointerKind::None; |
| } |
| |
| /// Add a CC1 option to specify the debug compilation directory. |
| static void addDebugCompDirArg(const ArgList &Args, ArgStringList &CmdArgs, |
| const llvm::vfs::FileSystem &VFS) { |
| if (Arg *A = Args.getLastArg(options::OPT_ffile_compilation_dir_EQ, |
| options::OPT_fdebug_compilation_dir_EQ)) { |
| if (A->getOption().matches(options::OPT_ffile_compilation_dir_EQ)) |
| CmdArgs.push_back(Args.MakeArgString(Twine("-fdebug-compilation-dir=") + |
| A->getValue())); |
| else |
| A->render(Args, CmdArgs); |
| } else if (llvm::ErrorOr<std::string> CWD = |
| VFS.getCurrentWorkingDirectory()) { |
| CmdArgs.push_back(Args.MakeArgString("-fdebug-compilation-dir=" + *CWD)); |
| } |
| } |
| |
| /// Add a CC1 and CC1AS option to specify the debug file path prefix map. |
| static void addDebugPrefixMapArg(const Driver &D, const ArgList &Args, ArgStringList &CmdArgs) { |
| for (const Arg *A : Args.filtered(options::OPT_ffile_prefix_map_EQ, |
| options::OPT_fdebug_prefix_map_EQ)) { |
| StringRef Map = A->getValue(); |
| if (!Map.contains('=')) |
| D.Diag(diag::err_drv_invalid_argument_to_option) |
| << Map << A->getOption().getName(); |
| else |
| CmdArgs.push_back(Args.MakeArgString("-fdebug-prefix-map=" + Map)); |
| A->claim(); |
| } |
| } |
| |
| /// Add a CC1 and CC1AS option to specify the macro file path prefix map. |
| static void addMacroPrefixMapArg(const Driver &D, const ArgList &Args, |
| ArgStringList &CmdArgs) { |
| for (const Arg *A : Args.filtered(options::OPT_ffile_prefix_map_EQ, |
| options::OPT_fmacro_prefix_map_EQ)) { |
| StringRef Map = A->getValue(); |
| if (!Map.contains('=')) |
| D.Diag(diag::err_drv_invalid_argument_to_option) |
| << Map << A->getOption().getName(); |
| else |
| CmdArgs.push_back(Args.MakeArgString("-fmacro-prefix-map=" + Map)); |
| A->claim(); |
| } |
| } |
| |
| /// Add a CC1 and CC1AS option to specify the coverage file path prefix map. |
| static void addCoveragePrefixMapArg(const Driver &D, const ArgList &Args, |
| ArgStringList &CmdArgs) { |
| for (const Arg *A : Args.filtered(options::OPT_ffile_prefix_map_EQ, |
| options::OPT_fcoverage_prefix_map_EQ)) { |
| StringRef Map = A->getValue(); |
| if (!Map.contains('=')) |
| D.Diag(diag::err_drv_invalid_argument_to_option) |
| << Map << A->getOption().getName(); |
| else |
| CmdArgs.push_back(Args.MakeArgString("-fcoverage-prefix-map=" + Map)); |
| A->claim(); |
| } |
| } |
| |
| /// Vectorize at all optimization levels greater than 1 except for -Oz. |
| /// For -Oz the loop vectorizer is disabled, while the slp vectorizer is |
| /// enabled. |
| static bool shouldEnableVectorizerAtOLevel(const ArgList &Args, bool isSlpVec) { |
| if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { |
| if (A->getOption().matches(options::OPT_O4) || |
| A->getOption().matches(options::OPT_Ofast)) |
| return true; |
| |
| if (A->getOption().matches(options::OPT_O0)) |
| return false; |
| |
| assert(A->getOption().matches(options::OPT_O) && "Must have a -O flag"); |
| |
| // Vectorize -Os. |
| StringRef S(A->getValue()); |
| if (S == "s") |
| return true; |
| |
| // Don't vectorize -Oz, unless it's the slp vectorizer. |
| if (S == "z") |
| return isSlpVec; |
| |
| unsigned OptLevel = 0; |
| if (S.getAsInteger(10, OptLevel)) |
| return false; |
| |
| return OptLevel > 1; |
| } |
| |
| return false; |
| } |
| |
| /// Add -x lang to \p CmdArgs for \p Input. |
| static void addDashXForInput(const ArgList &Args, const InputInfo &Input, |
| ArgStringList &CmdArgs) { |
| // When using -verify-pch, we don't want to provide the type |
| // 'precompiled-header' if it was inferred from the file extension |
| if (Args.hasArg(options::OPT_verify_pch) && Input.getType() == types::TY_PCH) |
| return; |
| |
| CmdArgs.push_back("-x"); |
| if (Args.hasArg(options::OPT_rewrite_objc)) |
| CmdArgs.push_back(types::getTypeName(types::TY_PP_ObjCXX)); |
| else { |
| // Map the driver type to the frontend type. This is mostly an identity |
| // mapping, except that the distinction between module interface units |
| // and other source files does not exist at the frontend layer. |
| const char *ClangType; |
| switch (Input.getType()) { |
| case types::TY_CXXModule: |
| ClangType = "c++"; |
| break; |
| case types::TY_PP_CXXModule: |
| ClangType = "c++-cpp-output"; |
| break; |
| default: |
| ClangType = types::getTypeName(Input.getType()); |
| break; |
| } |
| CmdArgs.push_back(ClangType); |
| } |
| } |
| |
| static void addPGOAndCoverageFlags(const ToolChain &TC, Compilation &C, |
| const Driver &D, const InputInfo &Output, |
| const ArgList &Args, SanitizerArgs &SanArgs, |
| ArgStringList &CmdArgs) { |
| |
| auto *PGOGenerateArg = Args.getLastArg(options::OPT_fprofile_generate, |
| options::OPT_fprofile_generate_EQ, |
| options::OPT_fno_profile_generate); |
| if (PGOGenerateArg && |
| PGOGenerateArg->getOption().matches(options::OPT_fno_profile_generate)) |
| PGOGenerateArg = nullptr; |
| |
| auto *CSPGOGenerateArg = Args.getLastArg(options::OPT_fcs_profile_generate, |
| options::OPT_fcs_profile_generate_EQ, |
| options::OPT_fno_profile_generate); |
| if (CSPGOGenerateArg && |
| CSPGOGenerateArg->getOption().matches(options::OPT_fno_profile_generate)) |
| CSPGOGenerateArg = nullptr; |
| |
| auto *ProfileGenerateArg = Args.getLastArg( |
| options::OPT_fprofile_instr_generate, |
| options::OPT_fprofile_instr_generate_EQ, |
| options::OPT_fno_profile_instr_generate); |
| if (ProfileGenerateArg && |
| ProfileGenerateArg->getOption().matches( |
| options::OPT_fno_profile_instr_generate)) |
| ProfileGenerateArg = nullptr; |
| |
| if (PGOGenerateArg && ProfileGenerateArg) |
| D.Diag(diag::err_drv_argument_not_allowed_with) |
| << PGOGenerateArg->getSpelling() << ProfileGenerateArg->getSpelling(); |
| |
| auto *ProfileUseArg = getLastProfileUseArg(Args); |
| |
| if (PGOGenerateArg && ProfileUseArg) |
| D.Diag(diag::err_drv_argument_not_allowed_with) |
| << ProfileUseArg->getSpelling() << PGOGenerateArg->getSpelling(); |
| |
| if (ProfileGenerateArg && ProfileUseArg) |
| D.Diag(diag::err_drv_argument_not_allowed_with) |
| << ProfileGenerateArg->getSpelling() << ProfileUseArg->getSpelling(); |
| |
| if (CSPGOGenerateArg && PGOGenerateArg) { |
| D.Diag(diag::err_drv_argument_not_allowed_with) |
| << CSPGOGenerateArg->getSpelling() << PGOGenerateArg->getSpelling(); |
| PGOGenerateArg = nullptr; |
| } |
| |
| if (TC.getTriple().isOSAIX()) { |
| if (ProfileGenerateArg) |
| D.Diag(diag::err_drv_unsupported_opt_for_target) |
| << ProfileGenerateArg->getSpelling() << TC.getTriple().str(); |
| if (Arg *ProfileSampleUseArg = getLastProfileSampleUseArg(Args)) |
| D.Diag(diag::err_drv_unsupported_opt_for_target) |
| << ProfileSampleUseArg->getSpelling() << TC.getTriple().str(); |
| } |
| |
| if (ProfileGenerateArg) { |
| if (ProfileGenerateArg->getOption().matches( |
| options::OPT_fprofile_instr_generate_EQ)) |
| CmdArgs.push_back(Args.MakeArgString(Twine("-fprofile-instrument-path=") + |
| ProfileGenerateArg->getValue())); |
| // The default is to use Clang Instrumentation. |
| CmdArgs.push_back("-fprofile-instrument=clang"); |
| if (TC.getTriple().isWindowsMSVCEnvironment()) { |
| // Add dependent lib for clang_rt.profile |
| CmdArgs.push_back(Args.MakeArgString( |
| "--dependent-lib=" + TC.getCompilerRTBasename(Args, "profile"))); |
| } |
| } |
| |
| Arg *PGOGenArg = nullptr; |
| if (PGOGenerateArg) { |
| assert(!CSPGOGenerateArg); |
| PGOGenArg = PGOGenerateArg; |
| CmdArgs.push_back("-fprofile-instrument=llvm"); |
| } |
| if (CSPGOGenerateArg) { |
| assert(!PGOGenerateArg); |
| PGOGenArg = CSPGOGenerateArg; |
| CmdArgs.push_back("-fprofile-instrument=csllvm"); |
| } |
| if (PGOGenArg) { |
| if (TC.getTriple().isWindowsMSVCEnvironment()) { |
| // Add dependent lib for clang_rt.profile |
| CmdArgs.push_back(Args.MakeArgString( |
| "--dependent-lib=" + TC.getCompilerRTBasename(Args, "profile"))); |
| } |
| if (PGOGenArg->getOption().matches( |
| PGOGenerateArg ? options::OPT_fprofile_generate_EQ |
| : options::OPT_fcs_profile_generate_EQ)) { |
| SmallString<128> Path(PGOGenArg->getValue()); |
| llvm::sys::path::append(Path, "default_%m.profraw"); |
| CmdArgs.push_back( |
| Args.MakeArgString(Twine("-fprofile-instrument-path=") + Path)); |
| } |
| } |
| |
| if (ProfileUseArg) { |
| if (ProfileUseArg->getOption().matches(options::OPT_fprofile_instr_use_EQ)) |
| CmdArgs.push_back(Args.MakeArgString( |
| Twine("-fprofile-instrument-use-path=") + ProfileUseArg->getValue())); |
| else if ((ProfileUseArg->getOption().matches( |
| options::OPT_fprofile_use_EQ) || |
| ProfileUseArg->getOption().matches( |
| options::OPT_fprofile_instr_use))) { |
| SmallString<128> Path( |
| ProfileUseArg->getNumValues() == 0 ? "" : ProfileUseArg->getValue()); |
| if (Path.empty() || llvm::sys::fs::is_directory(Path)) |
| llvm::sys::path::append(Path, "default.profdata"); |
| CmdArgs.push_back( |
| Args.MakeArgString(Twine("-fprofile-instrument-use-path=") + Path)); |
| } |
| } |
| |
| bool EmitCovNotes = Args.hasFlag(options::OPT_ftest_coverage, |
| options::OPT_fno_test_coverage, false) || |
| Args.hasArg(options::OPT_coverage); |
| bool EmitCovData = TC.needsGCovInstrumentation(Args); |
| if (EmitCovNotes) |
| CmdArgs.push_back("-ftest-coverage"); |
| if (EmitCovData) |
| CmdArgs.push_back("-fprofile-arcs"); |
| |
| if (Args.hasFlag(options::OPT_fcoverage_mapping, |
| options::OPT_fno_coverage_mapping, false)) { |
| if (!ProfileGenerateArg) |
| D.Diag(clang::diag::err_drv_argument_only_allowed_with) |
| << "-fcoverage-mapping" |
| << "-fprofile-instr-generate"; |
| |
| CmdArgs.push_back("-fcoverage-mapping"); |
| } |
| |
| if (Arg *A = Args.getLastArg(options::OPT_ffile_compilation_dir_EQ, |
| options::OPT_fcoverage_compilation_dir_EQ)) { |
| if (A->getOption().matches(options::OPT_ffile_compilation_dir_EQ)) |
| CmdArgs.push_back(Args.MakeArgString( |
| Twine("-fcoverage-compilation-dir=") + A->getValue())); |
| else |
| A->render(Args, CmdArgs); |
| } else if (llvm::ErrorOr<std::string> CWD = |
| D.getVFS().getCurrentWorkingDirectory()) { |
| CmdArgs.push_back(Args.MakeArgString("-fcoverage-compilation-dir=" + *CWD)); |
| } |
| |
| if (Args.hasArg(options::OPT_fprofile_exclude_files_EQ)) { |
| auto *Arg = Args.getLastArg(options::OPT_fprofile_exclude_files_EQ); |
| if (!Args.hasArg(options::OPT_coverage)) |
| D.Diag(clang::diag::err_drv_argument_only_allowed_with) |
| << "-fprofile-exclude-files=" |
| << "--coverage"; |
| |
| StringRef v = Arg->getValue(); |
| CmdArgs.push_back( |
| Args.MakeArgString(Twine("-fprofile-exclude-files=" + v))); |
| } |
| |
| if (Args.hasArg(options::OPT_fprofile_filter_files_EQ)) { |
| auto *Arg = Args.getLastArg(options::OPT_fprofile_filter_files_EQ); |
| if (!Args.hasArg(options::OPT_coverage)) |
| D.Diag(clang::diag::err_drv_argument_only_allowed_with) |
| << "-fprofile-filter-files=" |
| << "--coverage"; |
| |
| StringRef v = Arg->getValue(); |
| CmdArgs.push_back(Args.MakeArgString(Twine("-fprofile-filter-files=" + v))); |
| } |
| |
| if (const auto *A = Args.getLastArg(options::OPT_fprofile_update_EQ)) { |
| StringRef Val = A->getValue(); |
| if (Val == "atomic" || Val == "prefer-atomic") |
| CmdArgs.push_back("-fprofile-update=atomic"); |
| else if (Val != "single") |
| D.Diag(diag::err_drv_unsupported_option_argument) |
| << A->getOption().getName() << Val; |
| } else if (SanArgs.needsTsanRt()) { |
| CmdArgs.push_back("-fprofile-update=atomic"); |
| } |
| |
| // Leave -fprofile-dir= an unused argument unless .gcda emission is |
| // enabled. To be polite, with '-fprofile-arcs -fno-profile-arcs' consider |
| // the flag used. There is no -fno-profile-dir, so the user has no |
| // targeted way to suppress the warning. |
| Arg *FProfileDir = nullptr; |
| if (Args.hasArg(options::OPT_fprofile_arcs) || |
| Args.hasArg(options::OPT_coverage)) |
| FProfileDir = Args.getLastArg(options::OPT_fprofile_dir); |
| |
| // Put the .gcno and .gcda files (if needed) next to the object file or |
| // bitcode file in the case of LTO. |
| // FIXME: There should be a simpler way to find the object file for this |
| // input, and this code probably does the wrong thing for commands that |
| // compile and link all at once. |
| if ((Args.hasArg(options::OPT_c) || Args.hasArg(options::OPT_S)) && |
| (EmitCovNotes || EmitCovData) && Output.isFilename()) { |
| SmallString<128> OutputFilename; |
| if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT__SLASH_Fo)) |
| OutputFilename = FinalOutput->getValue(); |
| else if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o)) |
| OutputFilename = FinalOutput->getValue(); |
| else |
| OutputFilename = llvm::sys::path::filename(Output.getBaseInput()); |
| SmallString<128> CoverageFilename = OutputFilename; |
| if (llvm::sys::path::is_relative(CoverageFilename)) |
| (void)D.getVFS().makeAbsolute(CoverageFilename); |
| llvm::sys::path::replace_extension(CoverageFilename, "gcno"); |
| |
| CmdArgs.push_back("-coverage-notes-file"); |
| CmdArgs.push_back(Args.MakeArgString(CoverageFilename)); |
| |
| if (EmitCovData) { |
| if (FProfileDir) { |
| CoverageFilename = FProfileDir->getValue(); |
| llvm::sys::path::append(CoverageFilename, OutputFilename); |
| } |
| llvm::sys::path::replace_extension(CoverageFilename, "gcda"); |
| CmdArgs.push_back("-coverage-data-file"); |
| CmdArgs.push_back(Args.MakeArgString(CoverageFilename)); |
| } |
| } |
| } |
| |
| /// Check whether the given input tree contains any compilation actions. |
| static bool ContainsCompileAction(const Action *A) { |
| if (isa<CompileJobAction>(A) || isa<BackendJobAction>(A)) |
| return true; |
| |
| for (const auto &AI : A->inputs()) |
| if (ContainsCompileAction(AI)) |
| return true; |
| |
| return false; |
| } |
| |
| /// Check if -relax-all should be passed to the internal assembler. |
| /// This is done by default when compiling non-assembler source with -O0. |
| static bool UseRelaxAll(Compilation &C, const ArgList &Args) { |
| bool RelaxDefault = true; |
| |
| if (Arg *A = Args.getLastArg(options::OPT_O_Group)) |
| RelaxDefault = A->getOption().matches(options::OPT_O0); |
| |
| if (RelaxDefault) { |
| RelaxDefault = false; |
| for (const auto &Act : C.getActions()) { |
| if (ContainsCompileAction(Act)) { |
| RelaxDefault = true; |
| break; |
| } |
| } |
| } |
| |
| return Args.hasFlag(options::OPT_mrelax_all, options::OPT_mno_relax_all, |
| RelaxDefault); |
| } |
| |
| // Extract the integer N from a string spelled "-dwarf-N", returning 0 |
| // on mismatch. The StringRef input (rather than an Arg) allows |
| // for use by the "-Xassembler" option parser. |
| static unsigned DwarfVersionNum(StringRef ArgValue) { |
| return llvm::StringSwitch<unsigned>(ArgValue) |
| .Case("-gdwarf-2", 2) |
| .Case("-gdwarf-3", 3) |
| .Case("-gdwarf-4", 4) |
| .Case("-gdwarf-5", 5) |
| .Default(0); |
| } |
| |
| // Find a DWARF format version option. |
| // This function is a complementary for DwarfVersionNum(). |
| static const Arg *getDwarfNArg(const ArgList &Args) { |
| return Args.getLastArg(options::OPT_gdwarf_2, options::OPT_gdwarf_3, |
| options::OPT_gdwarf_4, options::OPT_gdwarf_5, |
| options::OPT_gdwarf); |
| } |
| |
| static void RenderDebugEnablingArgs(const ArgList &Args, ArgStringList &CmdArgs, |
| codegenoptions::DebugInfoKind DebugInfoKind, |
| unsigned DwarfVersion, |
| llvm::DebuggerKind DebuggerTuning) { |
| switch (DebugInfoKind) { |
| case codegenoptions::DebugDirectivesOnly: |
| CmdArgs.push_back("-debug-info-kind=line-directives-only"); |
| break; |
| case codegenoptions::DebugLineTablesOnly: |
| CmdArgs.push_back("-debug-info-kind=line-tables-only"); |
| break; |
| case codegenoptions::DebugInfoConstructor: |
| CmdArgs.push_back("-debug-info-kind=constructor"); |
| break; |
| case codegenoptions::LimitedDebugInfo: |
| CmdArgs.push_back("-debug-info-kind=limited"); |
| break; |
| case codegenoptions::FullDebugInfo: |
| CmdArgs.push_back("-debug-info-kind=standalone"); |
| break; |
| case codegenoptions::UnusedTypeInfo: |
| CmdArgs.push_back("-debug-info-kind=unused-types"); |
| break; |
| default: |
| break; |
| } |
| if (DwarfVersion > 0) |
| CmdArgs.push_back( |
| Args.MakeArgString("-dwarf-version=" + Twine(DwarfVersion))); |
| switch (DebuggerTuning) { |
| case llvm::DebuggerKind::GDB: |
| CmdArgs.push_back("-debugger-tuning=gdb"); |
| break; |
| case llvm::DebuggerKind::LLDB: |
| CmdArgs.push_back("-debugger-tuning=lldb"); |
| break; |
| case llvm::DebuggerKind::SCE: |
| CmdArgs.push_back("-debugger-tuning=sce"); |
| break; |
| case llvm::DebuggerKind::DBX: |
| CmdArgs.push_back("-debugger-tuning=dbx"); |
| break; |
| default: |
| break; |
| } |
| } |
| |
| static bool checkDebugInfoOption(const Arg *A, const ArgList &Args, |
| const Driver &D, const ToolChain &TC) { |
| assert(A && "Expected non-nullptr argument."); |
| if (TC.supportsDebugInfoOption(A)) |
| return true; |
| D.Diag(diag::warn_drv_unsupported_debug_info_opt_for_target) |
| << A->getAsString(Args) << TC.getTripleString(); |
| return false; |
| } |
| |
| static void RenderDebugInfoCompressionArgs(const ArgList &Args, |
| ArgStringList &CmdArgs, |
| const Driver &D, |
| const ToolChain &TC) { |
| const Arg *A = Args.getLastArg(options::OPT_gz_EQ); |
| if (!A) |
| return; |
| if (checkDebugInfoOption(A, Args, D, TC)) { |
| StringRef Value = A->getValue(); |
| if (Value == "none") { |
| CmdArgs.push_back("--compress-debug-sections=none"); |
| } else if (Value == "zlib" || Value == "zlib-gnu") { |
| if (llvm::zlib::isAvailable()) { |
| CmdArgs.push_back( |
| Args.MakeArgString("--compress-debug-sections=" + Twine(Value))); |
| } else { |
| D.Diag(diag::warn_debug_compression_unavailable); |
| } |
| } else { |
| D.Diag(diag::err_drv_unsupported_option_argument) |
| << A->getOption().getName() << Value; |
| } |
| } |
| } |
| |
| static const char *RelocationModelName(llvm::Reloc::Model Model) { |
| switch (Model) { |
| case llvm::Reloc::Static: |
| return "static"; |
| case llvm::Reloc::PIC_: |
| return "pic"; |
| case llvm::Reloc::DynamicNoPIC: |
| return "dynamic-no-pic"; |
| case llvm::Reloc::ROPI: |
| return "ropi"; |
| case llvm::Reloc::RWPI: |
| return "rwpi"; |
| case llvm::Reloc::ROPI_RWPI: |
| return "ropi-rwpi"; |
| } |
| llvm_unreachable("Unknown Reloc::Model kind"); |
| } |
| static void handleAMDGPUCodeObjectVersionOptions(const Driver &D, |
| const ArgList &Args, |
| ArgStringList &CmdArgs) { |
| // If no version was requested by the user, use the default value from the |
| // back end. This is consistent with the value returned from |
| // getAMDGPUCodeObjectVersion. This lets clang emit IR for amdgpu without |
| // requiring the corresponding llvm to have the AMDGPU target enabled, |
| // provided the user (e.g. front end tests) can use the default. |
| if (haveAMDGPUCodeObjectVersionArgument(D, Args)) { |
| unsigned CodeObjVer = getAMDGPUCodeObjectVersion(D, Args); |
| CmdArgs.insert(CmdArgs.begin() + 1, |
| Args.MakeArgString(Twine("--amdhsa-code-object-version=") + |
| Twine(CodeObjVer))); |
| CmdArgs.insert(CmdArgs.begin() + 1, "-mllvm"); |
| } |
| } |
| |
| void Clang::AddPreprocessingOptions(Compilation &C, const JobAction &JA, |
| const Driver &D, const ArgList &Args, |
| ArgStringList &CmdArgs, |
| const InputInfo &Output, |
| const InputInfoList &Inputs) const { |
| const bool IsIAMCU = getToolChain().getTriple().isOSIAMCU(); |
| |
| CheckPreprocessingOptions(D, Args); |
| |
| Args.AddLastArg(CmdArgs, options::OPT_C); |
| Args.AddLastArg(CmdArgs, options::OPT_CC); |
| |
| // Handle dependency file generation. |
| Arg *ArgM = Args.getLastArg(options::OPT_MM); |
| if (!ArgM) |
| ArgM = Args.getLastArg(options::OPT_M); |
| Arg *ArgMD = Args.getLastArg(options::OPT_MMD); |
| if (!ArgMD) |
| ArgMD = Args.getLastArg(options::OPT_MD); |
| |
| // -M and -MM imply -w. |
| if (ArgM) |
| CmdArgs.push_back("-w"); |
| else |
| ArgM = ArgMD; |
| |
| if (ArgM) { |
| // Determine the output location. |
| const char *DepFile; |
| if (Arg *MF = Args.getLastArg(options::OPT_MF)) { |
| DepFile = MF->getValue(); |
| C.addFailureResultFile(DepFile, &JA); |
| } else if (Output.getType() == types::TY_Dependencies) { |
| DepFile = Output.getFilename(); |
| } else if (!ArgMD) { |
| DepFile = "-"; |
| } else { |
| DepFile = getDependencyFileName(Args, Inputs); |
| C.addFailureResultFile(DepFile, &JA); |
| } |
| CmdArgs.push_back("-dependency-file"); |
| CmdArgs.push_back(DepFile); |
| |
| bool HasTarget = false; |
| for (const Arg *A : Args.filtered(options::OPT_MT, options::OPT_MQ)) { |
| HasTarget = true; |
| A->claim(); |
| if (A->getOption().matches(options::OPT_MT)) { |
| A->render(Args, CmdArgs); |
| } else { |
| CmdArgs.push_back("-MT"); |
| SmallString<128> Quoted; |
| QuoteTarget(A->getValue(), Quoted); |
| CmdArgs.push_back(Args.MakeArgString(Quoted)); |
| } |
| } |
| |
| // Add a default target if one wasn't specified. |
| if (!HasTarget) { |
| const char *DepTarget; |
| |
| // If user provided -o, that is the dependency target, except |
| // when we are only generating a dependency file. |
| Arg *OutputOpt = Args.getLastArg(options::OPT_o); |
| if (OutputOpt && Output.getType() != types::TY_Dependencies) { |
| DepTarget = OutputOpt->getValue(); |
| } else { |
| // Otherwise derive from the base input. |
| // |
| // FIXME: This should use the computed output file location. |
| SmallString<128> P(Inputs[0].getBaseInput()); |
| llvm::sys::path::replace_extension(P, "o"); |
| DepTarget = Args.MakeArgString(llvm::sys::path::filename(P)); |
| } |
| |
| CmdArgs.push_back("-MT"); |
| SmallString<128> Quoted; |
| QuoteTarget(DepTarget, Quoted); |
| CmdArgs.push_back(Args.MakeArgString(Quoted)); |
| } |
| |
| if (ArgM->getOption().matches(options::OPT_M) || |
| ArgM->getOption().matches(options::OPT_MD)) |
| CmdArgs.push_back("-sys-header-deps"); |
| if ((isa<PrecompileJobAction>(JA) && |
| !Args.hasArg(options::OPT_fno_module_file_deps)) || |
| Args.hasArg(options::OPT_fmodule_file_deps)) |
| CmdArgs.push_back("-module-file-deps"); |
| } |
| |
| if (Args.hasArg(options::OPT_MG)) { |
| if (!ArgM || ArgM->getOption().matches(options::OPT_MD) || |
| ArgM->getOption().matches(options::OPT_MMD)) |
| D.Diag(diag::err_drv_mg_requires_m_or_mm); |
| CmdArgs.push_back("-MG"); |
| } |
| |
| Args.AddLastArg(CmdArgs, options::OPT_MP); |
| Args.AddLastArg(CmdArgs, options::OPT_MV); |
| |
| // Add offload include arguments specific for CUDA/HIP. This must happen |
| // before we -I or -include anything else, because we must pick up the |
| // CUDA/HIP headers from the particular CUDA/ROCm installation, rather than |
| // from e.g. /usr/local/include. |
| if (JA.isOffloading(Action::OFK_Cuda)) |
| getToolChain().AddCudaIncludeArgs(Args, CmdArgs); |
| if (JA.isOffloading(Action::OFK_HIP)) |
| getToolChain().AddHIPIncludeArgs(Args, CmdArgs); |
| |
| // If we are offloading to a target via OpenMP we need to include the |
| // openmp_wrappers folder which contains alternative system headers. |
| if (JA.isDeviceOffloading(Action::OFK_OpenMP) && |
| (getToolChain().getTriple().isNVPTX() || |
| getToolChain().getTriple().isAMDGCN())) { |
| if (!Args.hasArg(options::OPT_nobuiltininc)) { |
| // Add openmp_wrappers/* to our system include path. This lets us wrap |
| // standard library headers. |
| SmallString<128> P(D.ResourceDir); |
| llvm::sys::path::append(P, "include"); |
| llvm::sys::path::append(P, "openmp_wrappers"); |
| CmdArgs.push_back("-internal-isystem"); |
| CmdArgs.push_back(Args.MakeArgString(P)); |
| } |
| |
| CmdArgs.push_back("-include"); |
| CmdArgs.push_back("__clang_openmp_device_functions.h"); |
| } |
| |
| // Add -i* options, and automatically translate to |
| // -include-pch/-include-pth for transparent PCH support. It's |
| // wonky, but we include looking for .gch so we can support seamless |
| // replacement into a build system already set up to be generating |
| // .gch files. |
| |
| if (getToolChain().getDriver().IsCLMode()) { |
| const Arg *YcArg = Args.getLastArg(options::OPT__SLASH_Yc); |
| const Arg *YuArg = Args.getLastArg(options::OPT__SLASH_Yu); |
| if (YcArg && JA.getKind() >= Action::PrecompileJobClass && |
| JA.getKind() <= Action::AssembleJobClass) { |
| CmdArgs.push_back(Args.MakeArgString("-building-pch-with-obj")); |
| // -fpch-instantiate-templates is the default when creating |
| // precomp using /Yc |
| if (Args.hasFlag(options::OPT_fpch_instantiate_templates, |
| options::OPT_fno_pch_instantiate_templates, true)) |
| CmdArgs.push_back(Args.MakeArgString("-fpch-instantiate-templates")); |
| } |
| if (YcArg || YuArg) { |
| StringRef ThroughHeader = YcArg ? YcArg->getValue() : YuArg->getValue(); |
| if (!isa<PrecompileJobAction>(JA)) { |
| CmdArgs.push_back("-include-pch"); |
| CmdArgs.push_back(Args.MakeArgString(D.GetClPchPath( |
| C, !ThroughHeader.empty() |
| ? ThroughHeader |
| : llvm::sys::path::filename(Inputs[0].getBaseInput())))); |
| } |
| |
| if (ThroughHeader.empty()) { |
| CmdArgs.push_back(Args.MakeArgString( |
| Twine("-pch-through-hdrstop-") + (YcArg ? "create" : "use"))); |
| } else { |
| CmdArgs.push_back( |
| Args.MakeArgString(Twine("-pch-through-header=") + ThroughHeader)); |
| } |
| } |
| } |
| |
| bool RenderedImplicitInclude = false; |
| for (const Arg *A : Args.filtered(options::OPT_clang_i_Group)) { |
| if (A->getOption().matches(options::OPT_include)) { |
| // Handling of gcc-style gch precompiled headers. |
| bool IsFirstImplicitInclude = !RenderedImplicitInclude; |
| RenderedImplicitInclude = true; |
| |
| bool FoundPCH = false; |
| SmallString<128> P(A->getValue()); |
| // We want the files to have a name like foo.h.pch. Add a dummy extension |
| // so that replace_extension does the right thing. |
| P += ".dummy"; |
| llvm::sys::path::replace_extension(P, "pch"); |
| if (llvm::sys::fs::exists(P)) |
| FoundPCH = true; |
| |
| if (!FoundPCH) { |
| llvm::sys::path::replace_extension(P, "gch"); |
| if (llvm::sys::fs::exists(P)) { |
| FoundPCH = true; |
| } |
| } |
| |
| if (FoundPCH) { |
| if (IsFirstImplicitInclude) { |
| A->claim(); |
| CmdArgs.push_back("-include-pch"); |
| CmdArgs.push_back(Args.MakeArgString(P)); |
| continue; |
| } else { |
| // Ignore the PCH if not first on command line and emit warning. |
| D.Diag(diag::warn_drv_pch_not_first_include) << P |
| << A->getAsString(Args); |
| } |
| } |
| } else if (A->getOption().matches(options::OPT_isystem_after)) { |
| // Handling of paths which must come late. These entries are handled by |
| // the toolchain itself after the resource dir is inserted in the right |
| // search order. |
| // Do not claim the argument so that the use of the argument does not |
| // silently go unnoticed on toolchains which do not honour the option. |
| continue; |
| } else if (A->getOption().matches(options::OPT_stdlibxx_isystem)) { |
| // Translated to -internal-isystem by the driver, no need to pass to cc1. |
| continue; |
| } |
| |
| // Not translated, render as usual. |
| A->claim(); |
| A->render(Args, CmdArgs); |
| } |
| |
| Args.AddAllArgs(CmdArgs, |
| {options::OPT_D, options::OPT_U, options::OPT_I_Group, |
| options::OPT_F, options::OPT_index_header_map}); |
| |
| // Add -Wp, and -Xpreprocessor if using the preprocessor. |
| |
| // FIXME: There is a very unfortunate problem here, some troubled |
| // souls abuse -Wp, to pass preprocessor options in gcc syntax. To |
| // really support that we would have to parse and then translate |
| // those options. :( |
| Args.AddAllArgValues(CmdArgs, options::OPT_Wp_COMMA, |
| options::OPT_Xpreprocessor); |
| |
| // -I- is a deprecated GCC feature, reject it. |
| if (Arg *A = Args.getLastArg(options::OPT_I_)) |
| D.Diag(diag::err_drv_I_dash_not_supported) << A->getAsString(Args); |
| |
| // If we have a --sysroot, and don't have an explicit -isysroot flag, add an |
| // -isysroot to the CC1 invocation. |
| StringRef sysroot = C.getSysRoot(); |
| if (sysroot != "") { |
| if (!Args.hasArg(options::OPT_isysroot)) { |
| CmdArgs.push_back("-isysroot"); |
| CmdArgs.push_back(C.getArgs().MakeArgString(sysroot)); |
| } |
| } |
| |
| // Parse additional include paths from environment variables. |
| // FIXME: We should probably sink the logic for handling these from the |
| // frontend into the driver. It will allow deleting 4 otherwise unused flags. |
| // CPATH - included following the user specified includes (but prior to |
| // builtin and standard includes). |
| addDirectoryList(Args, CmdArgs, "-I", "CPATH"); |
| // C_INCLUDE_PATH - system includes enabled when compiling C. |
| addDirectoryList(Args, CmdArgs, "-c-isystem", "C_INCLUDE_PATH"); |
| // CPLUS_INCLUDE_PATH - system includes enabled when compiling C++. |
| addDirectoryList(Args, CmdArgs, "-cxx-isystem", "CPLUS_INCLUDE_PATH"); |
| // OBJC_INCLUDE_PATH - system includes enabled when compiling ObjC. |
| addDirectoryList(Args, CmdArgs, "-objc-isystem", "OBJC_INCLUDE_PATH"); |
| // OBJCPLUS_INCLUDE_PATH - system includes enabled when compiling ObjC++. |
| addDirectoryList(Args, CmdArgs, "-objcxx-isystem", "OBJCPLUS_INCLUDE_PATH"); |
| |
| // While adding the include arguments, we also attempt to retrieve the |
| // arguments of related offloading toolchains or arguments that are specific |
| // of an offloading programming model. |
| |
| // Add C++ include arguments, if needed. |
| if (types::isCXX(Inputs[0].getType())) { |
| bool HasStdlibxxIsystem = Args.hasArg(options::OPT_stdlibxx_isystem); |
| forAllAssociatedToolChains( |
| C, JA, getToolChain(), |
| [&Args, &CmdArgs, HasStdlibxxIsystem](const ToolChain &TC) { |
| HasStdlibxxIsystem ? TC.AddClangCXXStdlibIsystemArgs(Args, CmdArgs) |
| : TC.AddClangCXXStdlibIncludeArgs(Args, CmdArgs); |
| }); |
| } |
| |
| // Add system include arguments for all targets but IAMCU. |
| if (!IsIAMCU) |
| forAllAssociatedToolChains(C, JA, getToolChain(), |
| [&Args, &CmdArgs](const ToolChain &TC) { |
| TC.AddClangSystemIncludeArgs(Args, CmdArgs); |
| }); |
| else { |
| // For IAMCU add special include arguments. |
| getToolChain().AddIAMCUIncludeArgs(Args, CmdArgs); |
| } |
| |
| addMacroPrefixMapArg(D, Args, CmdArgs); |
| addCoveragePrefixMapArg(D, Args, CmdArgs); |
| } |
| |
| // FIXME: Move to target hook. |
| static bool isSignedCharDefault(const llvm::Triple &Triple) { |
| switch (Triple.getArch()) { |
| default: |
| return true; |
| |
| case llvm::Triple::aarch64: |
| case llvm::Triple::aarch64_32: |
| case llvm::Triple::aarch64_be: |
| case llvm::Triple::arm: |
| case llvm::Triple::armeb: |
| case llvm::Triple::thumb: |
| case llvm::Triple::thumbeb: |
| if (Triple.isOSDarwin() || Triple.isOSWindows()) |
| return true; |
| return false; |
| |
| case llvm::Triple::ppc: |
| case llvm::Triple::ppc64: |
| if (Triple.isOSDarwin()) |
| return true; |
| return false; |
| |
| case llvm::Triple::hexagon: |
| case llvm::Triple::ppcle: |
| case llvm::Triple::ppc64le: |
| case llvm::Triple::riscv32: |
| case llvm::Triple::riscv64: |
| case llvm::Triple::systemz: |
| case llvm::Triple::xcore: |
| return false; |
| } |
| } |
| |
| static bool hasMultipleInvocations(const llvm::Triple &Triple, |
| const ArgList &Args) { |
| // Supported only on Darwin where we invoke the compiler multiple times |
| // followed by an invocation to lipo. |
| if (!Triple.isOSDarwin()) |
| return false; |
| // If more than one "-arch <arch>" is specified, we're targeting multiple |
| // architectures resulting in a fat binary. |
| return Args.getAllArgValues(options::OPT_arch).size() > 1; |
| } |
| |
| static bool checkRemarksOptions(const Driver &D, const ArgList &Args, |
| const llvm::Triple &Triple) { |
| // When enabling remarks, we need to error if: |
| // * The remark file is specified but we're targeting multiple architectures, |
| // which means more than one remark file is being generated. |
| bool hasMultipleInvocations = ::hasMultipleInvocations(Triple, Args); |
| bool hasExplicitOutputFile = |
| Args.getLastArg(options::OPT_foptimization_record_file_EQ); |
| if (hasMultipleInvocations && hasExplicitOutputFile) { |
| D.Diag(diag::err_drv_invalid_output_with_multiple_archs) |
| << "-foptimization-record-file"; |
| return false; |
| } |
| return true; |
| } |
| |
| static void renderRemarksOptions(const ArgList &Args, ArgStringList &CmdArgs, |
| const llvm::Triple &Triple, |
| const InputInfo &Input, |
| const InputInfo &Output, const JobAction &JA) { |
| StringRef Format = "yaml"; |
| if (const Arg *A = Args.getLastArg(options::OPT_fsave_optimization_record_EQ)) |
| Format = A->getValue(); |
| |
| CmdArgs.push_back("-opt-record-file"); |
| |
| const Arg *A = Args.getLastArg(options::OPT_foptimization_record_file_EQ); |
| if (A) { |
| CmdArgs.push_back(A->getValue()); |
| } else { |
| bool hasMultipleArchs = |
| Triple.isOSDarwin() && // Only supported on Darwin platforms. |
| Args.getAllArgValues(options::OPT_arch).size() > 1; |
| |
| SmallString<128> F; |
| |
| if (Args.hasArg(options::OPT_c) || Args.hasArg(options::OPT_S)) { |
| if (Arg *FinalOutput = Args.getLastArg(options::OPT_o)) |
| F = FinalOutput->getValue(); |
| } else { |
| if (Format != "yaml" && // For YAML, keep the original behavior. |
| Triple.isOSDarwin() && // Enable this only on darwin, since it's the only platform supporting .dSYM bundles. |
| Output.isFilename()) |
| F = Output.getFilename(); |
| } |
| |
| if (F.empty()) { |
| // Use the input filename. |
| F = llvm::sys::path::stem(Input.getBaseInput()); |
| |
| // If we're compiling for an offload architecture (i.e. a CUDA device), |
| // we need to make the file name for the device compilation different |
| // from the host compilation. |
| if (!JA.isDeviceOffloading(Action::OFK_None) && |
| !JA.isDeviceOffloading(Action::OFK_Host)) { |
| llvm::sys::path::replace_extension(F, ""); |
| F += Action::GetOffloadingFileNamePrefix(JA.getOffloadingDeviceKind(), |
| Triple.normalize()); |
| F += "-"; |
| F += JA.getOffloadingArch(); |
| } |
| } |
| |
| // If we're having more than one "-arch", we should name the files |
| // differently so that every cc1 invocation writes to a different file. |
| // We're doing that by appending "-<arch>" with "<arch>" being the arch |
| // name from the triple. |
| if (hasMultipleArchs) { |
| // First, remember the extension. |
| SmallString<64> OldExtension = llvm::sys::path::extension(F); |
| // then, remove it. |
| llvm::sys::path::replace_extension(F, ""); |
| // attach -<arch> to it. |
| F += "-"; |
| F += Triple.getArchName(); |
| // put back the extension. |
| llvm::sys::path::replace_extension(F, OldExtension); |
| } |
| |
| SmallString<32> Extension; |
| Extension += "opt."; |
| Extension += Format; |
| |
| llvm::sys::path::replace_extension(F, Extension); |
| CmdArgs.push_back(Args.MakeArgString(F)); |
| } |
| |
| if (const Arg *A = |
| Args.getLastArg(options::OPT_foptimization_record_passes_EQ)) { |
| CmdArgs.push_back("-opt-record-passes"); |
| CmdArgs.push_back(A->getValue()); |
| } |
| |
| if (!Format.empty()) { |
| CmdArgs.push_back("-opt-record-format"); |
| CmdArgs.push_back(Format.data()); |
| } |
| } |
| |
| void AddAAPCSVolatileBitfieldArgs(const ArgList &Args, ArgStringList &CmdArgs) { |
| if (!Args.hasFlag(options::OPT_faapcs_bitfield_width, |
| options::OPT_fno_aapcs_bitfield_width, true)) |
| CmdArgs.push_back("-fno-aapcs-bitfield-width"); |
| |
| if (Args.getLastArg(options::OPT_ForceAAPCSBitfieldLoad)) |
| CmdArgs.push_back("-faapcs-bitfield-load"); |
| } |
| |
| namespace { |
| void RenderARMABI(const Driver &D, const llvm::Triple &Triple, |
| const ArgList &Args, ArgStringList &CmdArgs) { |
| // Select the ABI to use. |
| // FIXME: Support -meabi. |
| // FIXME: Parts of this are duplicated in the backend, unify this somehow. |
| const char *ABIName = nullptr; |
| if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ)) { |
| ABIName = A->getValue(); |
| } else { |
| std::string CPU = getCPUName(D, Args, Triple, /*FromAs*/ false); |
| ABIName = llvm::ARM::computeDefaultTargetABI(Triple, CPU).data(); |
| } |
| |
| CmdArgs.push_back("-target-abi"); |
| CmdArgs.push_back(ABIName); |
| } |
| } |
| |
| void Clang::AddARMTargetArgs(const llvm::Triple &Triple, const ArgList &Args, |
| ArgStringList &CmdArgs, bool KernelOrKext) const { |
| RenderARMABI(getToolChain().getDriver(), Triple, Args, CmdArgs); |
| |
| // Determine floating point ABI from the options & target defaults. |
| arm::FloatABI ABI = arm::getARMFloatABI(getToolChain(), Args); |
| if (ABI == arm::FloatABI::Soft) { |
| // Floating point operations and argument passing are soft. |
| // FIXME: This changes CPP defines, we need -target-soft-float. |
| CmdArgs.push_back("-msoft-float"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("soft"); |
| } else if (ABI == arm::FloatABI::SoftFP) { |
| // Floating point operations are hard, but argument passing is soft. |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("soft"); |
| } else { |
| // Floating point operations and argument passing are hard. |
| assert(ABI == arm::FloatABI::Hard && "Invalid float abi!"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("hard"); |
| } |
| |
| // Forward the -mglobal-merge option for explicit control over the pass. |
| if (Arg *A = Args.getLastArg(options::OPT_mglobal_merge, |
| options::OPT_mno_global_merge)) { |
| CmdArgs.push_back("-mllvm"); |
| if (A->getOption().matches(options::OPT_mno_global_merge)) |
| CmdArgs.push_back("-arm-global-merge=false"); |
| else |
| CmdArgs.push_back("-arm-global-merge=true"); |
| } |
| |
| if (!Args.hasFlag(options::OPT_mimplicit_float, |
| options::OPT_mno_implicit_float, true)) |
| CmdArgs.push_back("-no-implicit-float"); |
| |
| if (Args.getLastArg(options::OPT_mcmse)) |
| CmdArgs.push_back("-mcmse"); |
| |
| AddAAPCSVolatileBitfieldArgs(Args, CmdArgs); |
| } |
| |
| void Clang::RenderTargetOptions(const llvm::Triple &EffectiveTriple, |
| const ArgList &Args, bool KernelOrKext, |
| ArgStringList &CmdArgs) const { |
| const ToolChain &TC = getToolChain(); |
| |
| // Add the target features |
| getTargetFeatures(TC.getDriver(), EffectiveTriple, Args, CmdArgs, false); |
| |
| // Add target specific flags. |
| switch (TC.getArch()) { |
| default: |
| break; |
| |
| case llvm::Triple::arm: |
| case llvm::Triple::armeb: |
| case llvm::Triple::thumb: |
| case llvm::Triple::thumbeb: |
| // Use the effective triple, which takes into account the deployment target. |
| AddARMTargetArgs(EffectiveTriple, Args, CmdArgs, KernelOrKext); |
| CmdArgs.push_back("-fallow-half-arguments-and-returns"); |
| break; |
| |
| case llvm::Triple::aarch64: |
| case llvm::Triple::aarch64_32: |
| case llvm::Triple::aarch64_be: |
| AddAArch64TargetArgs(Args, CmdArgs); |
| CmdArgs.push_back("-fallow-half-arguments-and-returns"); |
| break; |
| |
| case llvm::Triple::mips: |
| case llvm::Triple::mipsel: |
| case llvm::Triple::mips64: |
| case llvm::Triple::mips64el: |
| AddMIPSTargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::ppc: |
| case llvm::Triple::ppcle: |
| case llvm::Triple::ppc64: |
| case llvm::Triple::ppc64le: |
| AddPPCTargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::riscv32: |
| case llvm::Triple::riscv64: |
| AddRISCVTargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::sparc: |
| case llvm::Triple::sparcel: |
| case llvm::Triple::sparcv9: |
| AddSparcTargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::systemz: |
| AddSystemZTargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::x86: |
| case llvm::Triple::x86_64: |
| AddX86TargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::lanai: |
| AddLanaiTargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::hexagon: |
| AddHexagonTargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::wasm32: |
| case llvm::Triple::wasm64: |
| AddWebAssemblyTargetArgs(Args, CmdArgs); |
| break; |
| |
| case llvm::Triple::ve: |
| AddVETargetArgs(Args, CmdArgs); |
| break; |
| } |
| } |
| |
| namespace { |
| void RenderAArch64ABI(const llvm::Triple &Triple, const ArgList &Args, |
| ArgStringList &CmdArgs) { |
| const char *ABIName = nullptr; |
| if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ)) |
| ABIName = A->getValue(); |
| else if (Triple.isOSDarwin()) |
| ABIName = "darwinpcs"; |
| else |
| ABIName = "aapcs"; |
| |
| CmdArgs.push_back("-target-abi"); |
| CmdArgs.push_back(ABIName); |
| } |
| } |
| |
| void Clang::AddAArch64TargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| const llvm::Triple &Triple = getToolChain().getEffectiveTriple(); |
| |
| if (!Args.hasFlag(options::OPT_mred_zone, options::OPT_mno_red_zone, true) || |
| Args.hasArg(options::OPT_mkernel) || |
| Args.hasArg(options::OPT_fapple_kext)) |
| CmdArgs.push_back("-disable-red-zone"); |
| |
| if (!Args.hasFlag(options::OPT_mimplicit_float, |
| options::OPT_mno_implicit_float, true)) |
| CmdArgs.push_back("-no-implicit-float"); |
| |
| RenderAArch64ABI(Triple, Args, CmdArgs); |
| |
| if (Arg *A = Args.getLastArg(options::OPT_mfix_cortex_a53_835769, |
| options::OPT_mno_fix_cortex_a53_835769)) { |
| CmdArgs.push_back("-mllvm"); |
| if (A->getOption().matches(options::OPT_mfix_cortex_a53_835769)) |
| CmdArgs.push_back("-aarch64-fix-cortex-a53-835769=1"); |
| else |
| CmdArgs.push_back("-aarch64-fix-cortex-a53-835769=0"); |
| } else if (Triple.isAndroid()) { |
| // Enabled A53 errata (835769) workaround by default on android |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back("-aarch64-fix-cortex-a53-835769=1"); |
| } |
| |
| // Forward the -mglobal-merge option for explicit control over the pass. |
| if (Arg *A = Args.getLastArg(options::OPT_mglobal_merge, |
| options::OPT_mno_global_merge)) { |
| CmdArgs.push_back("-mllvm"); |
| if (A->getOption().matches(options::OPT_mno_global_merge)) |
| CmdArgs.push_back("-aarch64-enable-global-merge=false"); |
| else |
| CmdArgs.push_back("-aarch64-enable-global-merge=true"); |
| } |
| |
| // Enable/disable return address signing and indirect branch targets. |
| if (Arg *A = Args.getLastArg(options::OPT_msign_return_address_EQ, |
| options::OPT_mbranch_protection_EQ)) { |
| |
| const Driver &D = getToolChain().getDriver(); |
| |
| StringRef Scope, Key; |
| bool IndirectBranches; |
| |
| if (A->getOption().matches(options::OPT_msign_return_address_EQ)) { |
| Scope = A->getValue(); |
| if (!Scope.equals("none") && !Scope.equals("non-leaf") && |
| !Scope.equals("all")) |
| D.Diag(diag::err_invalid_branch_protection) |
| << Scope << A->getAsString(Args); |
| Key = "a_key"; |
| IndirectBranches = false; |
| } else { |
| StringRef Err; |
| llvm::AArch64::ParsedBranchProtection PBP; |
| if (!llvm::AArch64::parseBranchProtection(A->getValue(), PBP, Err)) |
| D.Diag(diag::err_invalid_branch_protection) |
| << Err << A->getAsString(Args); |
| Scope = PBP.Scope; |
| Key = PBP.Key; |
| IndirectBranches = PBP.BranchTargetEnforcement; |
| } |
| |
| CmdArgs.push_back( |
| Args.MakeArgString(Twine("-msign-return-address=") + Scope)); |
| CmdArgs.push_back( |
| Args.MakeArgString(Twine("-msign-return-address-key=") + Key)); |
| if (IndirectBranches) |
| CmdArgs.push_back("-mbranch-target-enforce"); |
| } |
| |
| // Handle -msve_vector_bits=<bits> |
| if (Arg *A = Args.getLastArg(options::OPT_msve_vector_bits_EQ)) { |
| StringRef Val = A->getValue(); |
| const Driver &D = getToolChain().getDriver(); |
| if (Val.equals("128") || Val.equals("256") || Val.equals("512") || |
| Val.equals("1024") || Val.equals("2048") || Val.equals("128+") || |
| Val.equals("256+") || Val.equals("512+") || Val.equals("1024+") || |
| Val.equals("2048+")) { |
| unsigned Bits = 0; |
| if (Val.endswith("+")) |
| Val = Val.substr(0, Val.size() - 1); |
| else { |
| bool Invalid = Val.getAsInteger(10, Bits); (void)Invalid; |
| assert(!Invalid && "Failed to parse value"); |
| CmdArgs.push_back( |
| Args.MakeArgString("-mvscale-max=" + llvm::Twine(Bits / 128))); |
| } |
| |
| bool Invalid = Val.getAsInteger(10, Bits); (void)Invalid; |
| assert(!Invalid && "Failed to parse value"); |
| CmdArgs.push_back( |
| Args.MakeArgString("-mvscale-min=" + llvm::Twine(Bits / 128))); |
| // Silently drop requests for vector-length agnostic code as it's implied. |
| } else if (!Val.equals("scalable")) |
| // Handle the unsupported values passed to msve-vector-bits. |
| D.Diag(diag::err_drv_unsupported_option_argument) |
| << A->getOption().getName() << Val; |
| } |
| |
| AddAAPCSVolatileBitfieldArgs(Args, CmdArgs); |
| |
| if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_mtune_EQ)) { |
| StringRef Name = A->getValue(); |
| |
| std::string TuneCPU; |
| if (Name == "native") |
| TuneCPU = std::string(llvm::sys::getHostCPUName()); |
| else |
| TuneCPU = std::string(Name); |
| |
| if (!TuneCPU.empty()) { |
| CmdArgs.push_back("-tune-cpu"); |
| CmdArgs.push_back(Args.MakeArgString(TuneCPU)); |
| } |
| } |
| } |
| |
| void Clang::AddMIPSTargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| const Driver &D = getToolChain().getDriver(); |
| StringRef CPUName; |
| StringRef ABIName; |
| const llvm::Triple &Triple = getToolChain().getTriple(); |
| mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName); |
| |
| CmdArgs.push_back("-target-abi"); |
| CmdArgs.push_back(ABIName.data()); |
| |
| mips::FloatABI ABI = mips::getMipsFloatABI(D, Args, Triple); |
| if (ABI == mips::FloatABI::Soft) { |
| // Floating point operations and argument passing are soft. |
| CmdArgs.push_back("-msoft-float"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("soft"); |
| } else { |
| // Floating point operations and argument passing are hard. |
| assert(ABI == mips::FloatABI::Hard && "Invalid float abi!"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("hard"); |
| } |
| |
| if (Arg *A = Args.getLastArg(options::OPT_mldc1_sdc1, |
| options::OPT_mno_ldc1_sdc1)) { |
| if (A->getOption().matches(options::OPT_mno_ldc1_sdc1)) { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back("-mno-ldc1-sdc1"); |
| } |
| } |
| |
| if (Arg *A = Args.getLastArg(options::OPT_mcheck_zero_division, |
| options::OPT_mno_check_zero_division)) { |
| if (A->getOption().matches(options::OPT_mno_check_zero_division)) { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back("-mno-check-zero-division"); |
| } |
| } |
| |
| if (Arg *A = Args.getLastArg(options::OPT_G)) { |
| StringRef v = A->getValue(); |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back(Args.MakeArgString("-mips-ssection-threshold=" + v)); |
| A->claim(); |
| } |
| |
| Arg *GPOpt = Args.getLastArg(options::OPT_mgpopt, options::OPT_mno_gpopt); |
| Arg *ABICalls = |
| Args.getLastArg(options::OPT_mabicalls, options::OPT_mno_abicalls); |
| |
| // -mabicalls is the default for many MIPS environments, even with -fno-pic. |
| // -mgpopt is the default for static, -fno-pic environments but these two |
| // options conflict. We want to be certain that -mno-abicalls -mgpopt is |
| // the only case where -mllvm -mgpopt is passed. |
| // NOTE: We need a warning here or in the backend to warn when -mgpopt is |
| // passed explicitly when compiling something with -mabicalls |
| // (implictly) in affect. Currently the warning is in the backend. |
| // |
| // When the ABI in use is N64, we also need to determine the PIC mode that |
| // is in use, as -fno-pic for N64 implies -mno-abicalls. |
| bool NoABICalls = |
| ABICalls && ABICalls->getOption().matches(options::OPT_mno_abicalls); |
| |
| llvm::Reloc::Model RelocationModel; |
| unsigned PICLevel; |
| bool IsPIE; |
| std::tie(RelocationModel, PICLevel, IsPIE) = |
| ParsePICArgs(getToolChain(), Args); |
| |
| NoABICalls = NoABICalls || |
| (RelocationModel == llvm::Reloc::Static && ABIName == "n64"); |
| |
| bool WantGPOpt = GPOpt && GPOpt->getOption().matches(options::OPT_mgpopt); |
| // We quietly ignore -mno-gpopt as the backend defaults to -mno-gpopt. |
| if (NoABICalls && (!GPOpt || WantGPOpt)) { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back("-mgpopt"); |
| |
| Arg *LocalSData = Args.getLastArg(options::OPT_mlocal_sdata, |
| options::OPT_mno_local_sdata); |
| Arg *ExternSData = Args.getLastArg(options::OPT_mextern_sdata, |
| options::OPT_mno_extern_sdata); |
| Arg *EmbeddedData = Args.getLastArg(options::OPT_membedded_data, |
| options::OPT_mno_embedded_data); |
| if (LocalSData) { |
| CmdArgs.push_back("-mllvm"); |
| if (LocalSData->getOption().matches(options::OPT_mlocal_sdata)) { |
| CmdArgs.push_back("-mlocal-sdata=1"); |
| } else { |
| CmdArgs.push_back("-mlocal-sdata=0"); |
| } |
| LocalSData->claim(); |
| } |
| |
| if (ExternSData) { |
| CmdArgs.push_back("-mllvm"); |
| if (ExternSData->getOption().matches(options::OPT_mextern_sdata)) { |
| CmdArgs.push_back("-mextern-sdata=1"); |
| } else { |
| CmdArgs.push_back("-mextern-sdata=0"); |
| } |
| ExternSData->claim(); |
| } |
| |
| if (EmbeddedData) { |
| CmdArgs.push_back("-mllvm"); |
| if (EmbeddedData->getOption().matches(options::OPT_membedded_data)) { |
| CmdArgs.push_back("-membedded-data=1"); |
| } else { |
| CmdArgs.push_back("-membedded-data=0"); |
| } |
| EmbeddedData->claim(); |
| } |
| |
| } else if ((!ABICalls || (!NoABICalls && ABICalls)) && WantGPOpt) |
| D.Diag(diag::warn_drv_unsupported_gpopt) << (ABICalls ? 0 : 1); |
| |
| if (GPOpt) |
| GPOpt->claim(); |
| |
| if (Arg *A = Args.getLastArg(options::OPT_mcompact_branches_EQ)) { |
| StringRef Val = StringRef(A->getValue()); |
| if (mips::hasCompactBranches(CPUName)) { |
| if (Val == "never" || Val == "always" || Val == "optimal") { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back(Args.MakeArgString("-mips-compact-branches=" + Val)); |
| } else |
| D.Diag(diag::err_drv_unsupported_option_argument) |
| << A->getOption().getName() << Val; |
| } else |
| D.Diag(diag::warn_target_unsupported_compact_branches) << CPUName; |
| } |
| |
| if (Arg *A = Args.getLastArg(options::OPT_mrelax_pic_calls, |
| options::OPT_mno_relax_pic_calls)) { |
| if (A->getOption().matches(options::OPT_mno_relax_pic_calls)) { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back("-mips-jalr-reloc=0"); |
| } |
| } |
| } |
| |
| void Clang::AddPPCTargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| // Select the ABI to use. |
| const char *ABIName = nullptr; |
| const llvm::Triple &T = getToolChain().getTriple(); |
| if (T.isOSBinFormatELF()) { |
| switch (getToolChain().getArch()) { |
| case llvm::Triple::ppc64: { |
| if ((T.isOSFreeBSD() && T.getOSMajorVersion() >= 13) || |
| T.isOSOpenBSD() || T.isMusl()) |
| ABIName = "elfv2"; |
| else |
| ABIName = "elfv1"; |
| break; |
| } |
| case llvm::Triple::ppc64le: |
| ABIName = "elfv2"; |
| break; |
| default: |
| break; |
| } |
| } |
| |
| bool IEEELongDouble = false; |
| for (const Arg *A : Args.filtered(options::OPT_mabi_EQ)) { |
| StringRef V = A->getValue(); |
| if (V == "ieeelongdouble") |
| IEEELongDouble = true; |
| else if (V == "ibmlongdouble") |
| IEEELongDouble = false; |
| else if (V != "altivec") |
| // The ppc64 linux abis are all "altivec" abis by default. Accept and ignore |
| // the option if given as we don't have backend support for any targets |
| // that don't use the altivec abi. |
| ABIName = A->getValue(); |
| } |
| if (IEEELongDouble) |
| CmdArgs.push_back("-mabi=ieeelongdouble"); |
| |
| ppc::FloatABI FloatABI = |
| ppc::getPPCFloatABI(getToolChain().getDriver(), Args); |
| |
| if (FloatABI == ppc::FloatABI::Soft) { |
| // Floating point operations and argument passing are soft. |
| CmdArgs.push_back("-msoft-float"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("soft"); |
| } else { |
| // Floating point operations and argument passing are hard. |
| assert(FloatABI == ppc::FloatABI::Hard && "Invalid float abi!"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("hard"); |
| } |
| |
| if (ABIName) { |
| CmdArgs.push_back("-target-abi"); |
| CmdArgs.push_back(ABIName); |
| } |
| } |
| |
| static void SetRISCVSmallDataLimit(const ToolChain &TC, const ArgList &Args, |
| ArgStringList &CmdArgs) { |
| const Driver &D = TC.getDriver(); |
| const llvm::Triple &Triple = TC.getTriple(); |
| // Default small data limitation is eight. |
| const char *SmallDataLimit = "8"; |
| // Get small data limitation. |
| if (Args.getLastArg(options::OPT_shared, options::OPT_fpic, |
| options::OPT_fPIC)) { |
| // Not support linker relaxation for PIC. |
| SmallDataLimit = "0"; |
| if (Args.hasArg(options::OPT_G)) { |
| D.Diag(diag::warn_drv_unsupported_sdata); |
| } |
| } else if (Args.getLastArgValue(options::OPT_mcmodel_EQ) |
| .equals_insensitive("large") && |
| (Triple.getArch() == llvm::Triple::riscv64)) { |
| // Not support linker relaxation for RV64 with large code model. |
| SmallDataLimit = "0"; |
| if (Args.hasArg(options::OPT_G)) { |
| D.Diag(diag::warn_drv_unsupported_sdata); |
| } |
| } else if (Arg *A = Args.getLastArg(options::OPT_G)) { |
| SmallDataLimit = A->getValue(); |
| } |
| // Forward the -msmall-data-limit= option. |
| CmdArgs.push_back("-msmall-data-limit"); |
| CmdArgs.push_back(SmallDataLimit); |
| } |
| |
| void Clang::AddRISCVTargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| const llvm::Triple &Triple = getToolChain().getTriple(); |
| StringRef ABIName = riscv::getRISCVABI(Args, Triple); |
| |
| CmdArgs.push_back("-target-abi"); |
| CmdArgs.push_back(ABIName.data()); |
| |
| SetRISCVSmallDataLimit(getToolChain(), Args, CmdArgs); |
| |
| std::string TuneCPU; |
| |
| if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_mtune_EQ)) { |
| StringRef Name = A->getValue(); |
| |
| Name = llvm::RISCV::resolveTuneCPUAlias(Name, Triple.isArch64Bit()); |
| TuneCPU = std::string(Name); |
| } |
| |
| if (!TuneCPU.empty()) { |
| CmdArgs.push_back("-tune-cpu"); |
| CmdArgs.push_back(Args.MakeArgString(TuneCPU)); |
| } |
| } |
| |
| void Clang::AddSparcTargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| sparc::FloatABI FloatABI = |
| sparc::getSparcFloatABI(getToolChain().getDriver(), Args); |
| |
| if (FloatABI == sparc::FloatABI::Soft) { |
| // Floating point operations and argument passing are soft. |
| CmdArgs.push_back("-msoft-float"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("soft"); |
| } else { |
| // Floating point operations and argument passing are hard. |
| assert(FloatABI == sparc::FloatABI::Hard && "Invalid float abi!"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("hard"); |
| } |
| } |
| |
| void Clang::AddSystemZTargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| bool HasBackchain = Args.hasFlag(options::OPT_mbackchain, |
| options::OPT_mno_backchain, false); |
| bool HasPackedStack = Args.hasFlag(options::OPT_mpacked_stack, |
| options::OPT_mno_packed_stack, false); |
| systemz::FloatABI FloatABI = |
| systemz::getSystemZFloatABI(getToolChain().getDriver(), Args); |
| bool HasSoftFloat = (FloatABI == systemz::FloatABI::Soft); |
| if (HasBackchain && HasPackedStack && !HasSoftFloat) { |
| const Driver &D = getToolChain().getDriver(); |
| D.Diag(diag::err_drv_unsupported_opt) |
| << "-mpacked-stack -mbackchain -mhard-float"; |
| } |
| if (HasBackchain) |
| CmdArgs.push_back("-mbackchain"); |
| if (HasPackedStack) |
| CmdArgs.push_back("-mpacked-stack"); |
| if (HasSoftFloat) { |
| // Floating point operations and argument passing are soft. |
| CmdArgs.push_back("-msoft-float"); |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("soft"); |
| } |
| } |
| |
| void Clang::AddX86TargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| const Driver &D = getToolChain().getDriver(); |
| addX86AlignBranchArgs(D, Args, CmdArgs, /*IsLTO=*/false); |
| |
| if (!Args.hasFlag(options::OPT_mred_zone, options::OPT_mno_red_zone, true) || |
| Args.hasArg(options::OPT_mkernel) || |
| Args.hasArg(options::OPT_fapple_kext)) |
| CmdArgs.push_back("-disable-red-zone"); |
| |
| if (!Args.hasFlag(options::OPT_mtls_direct_seg_refs, |
| options::OPT_mno_tls_direct_seg_refs, true)) |
| CmdArgs.push_back("-mno-tls-direct-seg-refs"); |
| |
| // Default to avoid implicit floating-point for kernel/kext code, but allow |
| // that to be overridden with -mno-soft-float. |
| bool NoImplicitFloat = (Args.hasArg(options::OPT_mkernel) || |
| Args.hasArg(options::OPT_fapple_kext)); |
| if (Arg *A = Args.getLastArg( |
| options::OPT_msoft_float, options::OPT_mno_soft_float, |
| options::OPT_mimplicit_float, options::OPT_mno_implicit_float)) { |
| const Option &O = A->getOption(); |
| NoImplicitFloat = (O.matches(options::OPT_mno_implicit_float) || |
| O.matches(options::OPT_msoft_float)); |
| } |
| if (NoImplicitFloat) |
| CmdArgs.push_back("-no-implicit-float"); |
| |
| if (Arg *A = Args.getLastArg(options::OPT_masm_EQ)) { |
| StringRef Value = A->getValue(); |
| if (Value == "intel" || Value == "att") { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back(Args.MakeArgString("-x86-asm-syntax=" + Value)); |
| CmdArgs.push_back(Args.MakeArgString("-inline-asm=" + Value)); |
| } else { |
| D.Diag(diag::err_drv_unsupported_option_argument) |
| << A->getOption().getName() << Value; |
| } |
| } else if (D.IsCLMode()) { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back("-x86-asm-syntax=intel"); |
| } |
| |
| if (Arg *A = Args.getLastArg(options::OPT_mskip_rax_setup, |
| options::OPT_mno_skip_rax_setup)) |
| if (A->getOption().matches(options::OPT_mskip_rax_setup)) |
| CmdArgs.push_back(Args.MakeArgString("-mskip-rax-setup")); |
| |
| // Set flags to support MCU ABI. |
| if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false)) { |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("soft"); |
| CmdArgs.push_back("-mstack-alignment=4"); |
| } |
| |
| // Handle -mtune. |
| |
| // Default to "generic" unless -march is present or targetting the PS4. |
| std::string TuneCPU; |
| if (!Args.hasArg(clang::driver::options::OPT_march_EQ) && |
| !getToolChain().getTriple().isPS4CPU()) |
| TuneCPU = "generic"; |
| |
| // Override based on -mtune. |
| if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_mtune_EQ)) { |
| StringRef Name = A->getValue(); |
| |
| if (Name == "native") { |
| Name = llvm::sys::getHostCPUName(); |
| if (!Name.empty()) |
| TuneCPU = std::string(Name); |
| } else |
| TuneCPU = std::string(Name); |
| } |
| |
| if (!TuneCPU.empty()) { |
| CmdArgs.push_back("-tune-cpu"); |
| CmdArgs.push_back(Args.MakeArgString(TuneCPU)); |
| } |
| } |
| |
| void Clang::AddHexagonTargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| CmdArgs.push_back("-mqdsp6-compat"); |
| CmdArgs.push_back("-Wreturn-type"); |
| |
| if (auto G = toolchains::HexagonToolChain::getSmallDataThreshold(Args)) { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back(Args.MakeArgString("-hexagon-small-data-threshold=" + |
| Twine(G.getValue()))); |
| } |
| |
| if (!Args.hasArg(options::OPT_fno_short_enums)) |
| CmdArgs.push_back("-fshort-enums"); |
| if (Args.getLastArg(options::OPT_mieee_rnd_near)) { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back("-enable-hexagon-ieee-rnd-near"); |
| } |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back("-machine-sink-split=0"); |
| } |
| |
| void Clang::AddLanaiTargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) { |
| StringRef CPUName = A->getValue(); |
| |
| CmdArgs.push_back("-target-cpu"); |
| CmdArgs.push_back(Args.MakeArgString(CPUName)); |
| } |
| if (Arg *A = Args.getLastArg(options::OPT_mregparm_EQ)) { |
| StringRef Value = A->getValue(); |
| // Only support mregparm=4 to support old usage. Report error for all other |
| // cases. |
| int Mregparm; |
| if (Value.getAsInteger(10, Mregparm)) { |
| if (Mregparm != 4) { |
| getToolChain().getDriver().Diag( |
| diag::err_drv_unsupported_option_argument) |
| << A->getOption().getName() << Value; |
| } |
| } |
| } |
| } |
| |
| void Clang::AddWebAssemblyTargetArgs(const ArgList &Args, |
| ArgStringList &CmdArgs) const { |
| // Default to "hidden" visibility. |
| if (!Args.hasArg(options::OPT_fvisibility_EQ, |
| options::OPT_fvisibility_ms_compat)) { |
| CmdArgs.push_back("-fvisibility"); |
| CmdArgs.push_back("hidden"); |
| } |
| } |
| |
| void Clang::AddVETargetArgs(const ArgList &Args, ArgStringList &CmdArgs) const { |
| // Floating point operations and argument passing are hard. |
| CmdArgs.push_back("-mfloat-abi"); |
| CmdArgs.push_back("hard"); |
| } |
| |
| void Clang::DumpCompilationDatabase(Compilation &C, StringRef Filename, |
| StringRef Target, const InputInfo &Output, |
| const InputInfo &Input, const ArgList &Args) const { |
| // If this is a dry run, do not create the compilation database file. |
| if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) |
| return; |
| |
| using llvm::yaml::escape; |
| const Driver &D = getToolChain().getDriver(); |
| |
| if (!CompilationDatabase) { |
| std::error_code EC; |
| auto File = std::make_unique<llvm::raw_fd_ostream>( |
| Filename, EC, llvm::sys::fs::OF_TextWithCRLF); |
| if (EC) { |
| D.Diag(clang::diag::err_drv_compilationdatabase) << Filename |
| << EC.message(); |
| return; |
| } |
| CompilationDatabase = std::move(File); |
| } |
| auto &CDB = *CompilationDatabase; |
| auto CWD = D.getVFS().getCurrentWorkingDirectory(); |
| if (!CWD) |
| CWD = "."; |
| CDB << "{ \"directory\": \"" << escape(*CWD) << "\""; |
| CDB << ", \"file\": \"" << escape(Input.getFilename()) << "\""; |
| CDB << ", \"output\": \"" << escape(Output.getFilename()) << "\""; |
| CDB << ", \"arguments\": [\"" << escape(D.ClangExecutable) << "\""; |
| SmallString<128> Buf; |
| Buf = "-x"; |
| Buf += types::getTypeName(Input.getType()); |
| CDB << ", \"" << escape(Buf) << "\""; |
| if (!D.SysRoot.empty() && !Args.hasArg(options::OPT__sysroot_EQ)) { |
| Buf = "--sysroot="; |
| Buf += D.SysRoot; |
| CDB << ", \"" << escape(Buf) << "\""; |
| } |
| CDB << ", \"" << escape(Input.getFilename()) << "\""; |
| for (auto &A: Args) { |
| auto &O = A->getOption(); |
| // Skip language selection, which is positional. |
| if (O.getID() == options::OPT_x) |
| continue; |
| // Skip writing dependency output and the compilation database itself. |
| if (O.getGroup().isValid() && O.getGroup().getID() == options::OPT_M_Group) |
| continue; |
| if (O.getID() == options::OPT_gen_cdb_fragment_path) |
| continue; |
| // Skip inputs. |
| if (O.getKind() == Option::InputClass) |
| continue; |
| // All other arguments are quoted and appended. |
| ArgStringList ASL; |
| A->render(Args, ASL); |
| for (auto &it: ASL) |
| CDB << ", \"" << escape(it) << "\""; |
| } |
| Buf = "--target="; |
| Buf += Target; |
| CDB << ", \"" << escape(Buf) << "\"]},\n"; |
| } |
| |
| void Clang::DumpCompilationDatabaseFragmentToDir( |
| StringRef Dir, Compilation &C, StringRef Target, const InputInfo &Output, |
| const InputInfo &Input, const llvm::opt::ArgList &Args) const { |
| // If this is a dry run, do not create the compilation database file. |
| if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) |
| return; |
| |
| if (CompilationDatabase) |
| DumpCompilationDatabase(C, "", Target, Output, Input, Args); |
| |
| SmallString<256> Path = Dir; |
| const auto &Driver = C.getDriver(); |
| Driver.getVFS().makeAbsolute(Path); |
| auto Err = llvm::sys::fs::create_directory(Path, /*IgnoreExisting=*/true); |
| if (Err) { |
| Driver.Diag(diag::err_drv_compilationdatabase) << Dir << Err.message(); |
| return; |
| } |
| |
| llvm::sys::path::append( |
| Path, |
| Twine(llvm::sys::path::filename(Input.getFilename())) + ".%%%%.json"); |
| int FD; |
| SmallString<256> TempPath; |
| Err = llvm::sys::fs::createUniqueFile(Path, FD, TempPath, |
| llvm::sys::fs::OF_Text); |
| if (Err) { |
| Driver.Diag(diag::err_drv_compilationdatabase) << Path << Err.message(); |
| return; |
| } |
| CompilationDatabase = |
| std::make_unique<llvm::raw_fd_ostream>(FD, /*shouldClose=*/true); |
| DumpCompilationDatabase(C, "", Target, Output, Input, Args); |
| } |
| |
| static bool CheckARMImplicitITArg(StringRef Value) { |
| return Value == "always" || Value == "never" || Value == "arm" || |
| Value == "thumb"; |
| } |
| |
| static void AddARMImplicitITArgs(const ArgList &Args, ArgStringList &CmdArgs, |
| StringRef Value) { |
| CmdArgs.push_back("-mllvm"); |
| CmdArgs.push_back(Args.MakeArgString("-arm-implicit-it=" + Value)); |
| } |
| |
| static void CollectArgsForIntegratedAssembler(Compilation &C, |
| const ArgList &Args, |
| ArgStringList &CmdArgs, |
| const Driver &D) { |
| if (UseRelaxAll(C, Args)) |
| CmdArgs.push_back("-mrelax-all"); |
| |
| // Only default to -mincremental-linker-compatible if we think we are |
| // targeting the MSVC linker. |
| bool DefaultIncrementalLinkerCompatible = |
| C.getDefaultToolChain().getTriple().isWindowsMSVCEnvironment(); |
| if (Args.hasFlag(options::OPT_mincremental_linker_compatible, |
| options::OPT_mno_incremental_linker_compatible, |
| DefaultIncrementalLinkerCompatible)) |
| CmdArgs.push_back("-mincremental-linker-compatible"); |
| |
| // If you add more args here, also add them to the block below that |
| // starts with "// If CollectArgsForIntegratedAssembler() isn't called below". |
| |
| // When passing -I arguments to the assembler we sometimes need to |
| // unconditionally take the next argument. For example, when parsing |
| // '-Wa,-I -Wa,foo' we need to accept the -Wa,foo arg after seeing the |
| // -Wa,-I arg and when parsing '-Wa,-I,foo' we need to accept the 'foo' |
| // arg after parsing the '-I' arg. |
| bool TakeNextArg = false; |
| |
| bool UseRelaxRelocations = C.getDefaultToolChain().useRelaxRelocations(); |
| bool UseNoExecStack = false; |
| const char *MipsTargetFeature = nullptr; |
| StringRef ImplicitIt; |
| for (const Arg *A : |
| Args.filtered(options::OPT_Wa_COMMA, options::OPT_Xassembler, |
| options::OPT_mimplicit_it_EQ)) { |
| A->claim(); |
| |
| if (A->getOption().getID() == options::OPT_mimplicit_it_EQ) { |
| switch (C.getDefaultToolChain().getArch()) { |
| case llvm::Triple::arm: |
| case llvm::Triple::armeb: |
| case llvm::Triple::thumb: |
| case llvm::Triple::thumbeb: |
| // Only store the value; the last value set takes effect. |
| ImplicitIt = A->getValue(); |
| if (!CheckARMImplicitITArg(ImplicitIt)) |
| D.Diag(diag::err_drv_unsupported_option_argument) |
| << A->getOption().getName() << ImplicitIt; |
| continue; |
| default: |
| break; |
| } |
| } |
| |
| for (StringRef Value : A->getValues()) { |
| if (TakeNextArg) { |
| CmdArgs.push_back(Value.data()); |
| TakeNextArg = false; |
| continue; |
| } |
| |
| if (C.getDefaultToolChain().getTriple().isOSBinFormatCOFF() && |
| Value == "-mbig-obj") |
| continue; // LLVM handles bigobj automatically |
| |
| switch (C.getDefaultToolChain().getArch()) { |
| default: |
| break; |
| case llvm::Triple::thumb: |
| case llvm::Triple::thumbeb: |
| case llvm::Triple::arm: |
| case llvm::Triple::armeb: |
| if (Value.startswith("-mimplicit-it=")) { |
| // Only store the value; the last value set takes effect. |
| ImplicitIt = Value.split("=").second; |
| if (CheckARMImplicitITArg(ImplicitIt)) |
| continue; |
| } |
| if (Value == "-mthumb") |
| // -mthumb has already been processed in ComputeLLVMTriple() |
| // recognize but skip over here. |
| continue; |
| break; |
| case llvm::Triple::mips: |
| case llvm::Triple::mipsel: |
| case llvm::Triple::mips64: |
| case llvm::Triple::mips64el: |
| if (Value == "--trap") { |
| CmdArgs.push_back("-target-feature"); |
| CmdArgs.push_back("+use-tcc-in-div"); |
| continue; |
| } |
| if (Value == "--break") { |
| CmdArgs.push_back("-target-feature"); |
| CmdArgs.push_back("-use-tcc-in-div"); |
| continue; |
| } |
| if (Value.startswith("-msoft-float")) { |
| CmdArgs.push_back("-target-feature"); |
| CmdArgs.push_back("+soft-float"); |
| continue; |
| } |
| if (Value.startswith("-mhard-float")) { |
| CmdArgs.push_back("-target-feature"); |
| CmdArgs.push_back("-soft-float"); |
| continue; |
| } |
| |
| MipsTargetFeature = llvm::StringSwitch<const char *>(Value) |
| .Case("-mips1", "+mips1") |
| .Case("-mips2", "+mips2") |
| .Case("-mips3", "+mips3") |
| .Case("-mips4", "+mips4") |
| .Case("-mips5", "+mips5") |
| .Case("-mips32", "+mips32") |
| .Case("-mips32r2", "+mips32r2") |
| .Case("-mips32r3", "+mips32r3") |
| .Case("-mips32r5", "+mips32r5") |
| .Case("-mips32r6", "+mips32r6") |
| .Case("-mips64", "+mips64") |
| .Case("-mips64r2", "+mips64r2") |
| .Case("-mips64r3", "+mips64r3") |
| .Case("-mips64r5", "+mips64r5") |
| .Case("-mips64r6", "+mips64r6") |
| .Default(nullptr); |
| if (MipsTargetFeature) |
| continue; |
| } |
| |
| if (Value == "-force_cpusubtype_ALL") { |
| // Do nothing, this is the default and we don't support anything else. |
| } else if (Value == "-L") { |
| CmdArgs.push_back("-msave-temp-labels"); |
| } else if (Value == "--fatal-warnings") { |
| CmdArgs.push_back("-massembler-fatal-warnings"); |
| } else if (Value == "--no-warn" || Value == "-W") { |
| CmdArgs.push_back("-massembler-no-warn"); |
| } else if (Value == "--noexecstack") { |
| UseNoExecStack = true; |
| } else if (Value.startswith("-compress-debug-sections") || |
| Value.startswith("--compress-debug-sections") || |
| Value == "-nocompress-debug-sections" || |
| Value == "--nocompress-debug-sections") { |
| CmdArgs.push_back(Value.data()); |
| } else if (Value == "-mrelax-relocations=yes" || |
| Value == "--mrelax-relocations=yes") { |
| UseRelaxRelocations = true; |
| } else if (Value == "-mrelax-relocations=no" || |
| Value == "--mrelax-relocations=no") { |
| UseRelaxRelocations = false; |
| } else if (Value.startswith("-I")) { |
| CmdArgs.push_back(Value.data()); |
| // We need to consume the next argument if the current arg is a plain |
| // -I. The next arg will be the include directory. |
| if (Value == "-I") |
| TakeNextArg = true; |
| } else if (Value.startswith("-gdwarf-")) { |
| // "-gdwarf-N" options are not cc1as options. |
| unsigned DwarfVersion = DwarfVersionNum(Value); |
| if (DwarfVersion == 0) { // Send it onward, and let cc1as complain. |
| CmdArgs.push_back(Value.data()); |
| } else { |
| RenderDebugEnablingArgs(Args, CmdArgs, |
| codegenoptions::DebugInfoConstructor, |
| DwarfVersion, llvm::DebuggerKind::Default); |
| } |
| } else |