| 1 | //===--- OptionUtils.cpp - Utilities for command line arguments -----------===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "clang/Options/OptionUtils.h" |
| 10 | #include "clang/Basic/Diagnostic.h" |
| 11 | #include "clang/Basic/DiagnosticDriver.h" |
| 12 | #include "clang/Basic/Version.h" |
| 13 | #include "clang/Config/config.h" |
| 14 | #include "clang/Options/Options.h" |
| 15 | #include "llvm/Option/ArgList.h" |
| 16 | #include "llvm/Support/FileSystem.h" |
| 17 | #include "llvm/Support/Path.h" |
| 18 | |
| 19 | using namespace clang; |
| 20 | using namespace llvm::opt; |
| 21 | |
| 22 | namespace { |
| 23 | template <typename IntTy> |
| 24 | IntTy getLastArgIntValueImpl(const ArgList &Args, OptSpecifier Id, |
| 25 | IntTy Default, DiagnosticsEngine *Diags, |
| 26 | unsigned Base) { |
| 27 | IntTy Res = Default; |
| 28 | if (Arg *A = Args.getLastArg(Ids: Id)) { |
| 29 | if (StringRef(A->getValue()).getAsInteger(Base, Res)) { |
| 30 | if (Diags) |
| 31 | Diags->Report(DiagID: diag::err_drv_invalid_int_value) |
| 32 | << A->getAsString(Args) << A->getValue(); |
| 33 | } |
| 34 | } |
| 35 | return Res; |
| 36 | } |
| 37 | } // namespace |
| 38 | |
| 39 | int clang::getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default, |
| 40 | DiagnosticsEngine *Diags, unsigned Base) { |
| 41 | return getLastArgIntValueImpl<int>(Args, Id, Default, Diags, Base); |
| 42 | } |
| 43 | |
| 44 | uint64_t clang::getLastArgUInt64Value(const ArgList &Args, OptSpecifier Id, |
| 45 | uint64_t Default, |
| 46 | DiagnosticsEngine *Diags, unsigned Base) { |
| 47 | return getLastArgIntValueImpl<uint64_t>(Args, Id, Default, Diags, Base); |
| 48 | } |
| 49 | |
| 50 | StringRef clang::parseMPreferVectorWidthOption(clang::DiagnosticsEngine &Diags, |
| 51 | const llvm::opt::ArgList &Args) { |
| 52 | const Arg *A = Args.getLastArg(Ids: options::OPT_mprefer_vector_width_EQ); |
| 53 | if (!A) |
| 54 | return "" ; |
| 55 | |
| 56 | StringRef Value = A->getValue(); |
| 57 | unsigned Width LLVM_ATTRIBUTE_UNINITIALIZED; |
| 58 | |
| 59 | // Only "none" and Integer values are accepted by |
| 60 | // -mprefer-vector-width=<value>. |
| 61 | if (Value != "none" && Value.getAsInteger(Radix: 10, Result&: Width)) { |
| 62 | Diags.Report(DiagID: clang::diag::err_drv_invalid_value) |
| 63 | << A->getOption().getName() << Value; |
| 64 | return "" ; |
| 65 | } |
| 66 | |
| 67 | return Value; |
| 68 | } |
| 69 | |
| 70 | // This is a helper function for validating the optional refinement step |
| 71 | // parameter in reciprocal argument strings. Return false if there is an error |
| 72 | // parsing the refinement step. Otherwise, return true and set the Position |
| 73 | // of the refinement step in the input string. |
| 74 | static bool getRefinementStep(StringRef In, clang::DiagnosticsEngine &Diags, |
| 75 | const Arg &A, size_t &Position) { |
| 76 | const char RefinementStepToken = ':'; |
| 77 | Position = In.find(C: RefinementStepToken); |
| 78 | if (Position != StringRef::npos) { |
| 79 | StringRef Option = A.getOption().getName(); |
| 80 | StringRef RefStep = In.substr(Start: Position + 1); |
| 81 | // Allow exactly one numeric character for the additional refinement |
| 82 | // step parameter. This is reasonable for all currently-supported |
| 83 | // operations and architectures because we would expect that a larger value |
| 84 | // of refinement steps would cause the estimate "optimization" to |
| 85 | // under-perform the native operation. Also, if the estimate does not |
| 86 | // converge quickly, it probably will not ever converge, so further |
| 87 | // refinement steps will not produce a better answer. |
| 88 | if (RefStep.size() != 1) { |
| 89 | Diags.Report(DiagID: diag::err_drv_invalid_value) << Option << RefStep; |
| 90 | return false; |
| 91 | } |
| 92 | char RefStepChar = RefStep[0]; |
| 93 | if (RefStepChar < '0' || RefStepChar > '9') { |
| 94 | Diags.Report(DiagID: diag::err_drv_invalid_value) << Option << RefStep; |
| 95 | return false; |
| 96 | } |
| 97 | } |
| 98 | return true; |
| 99 | } |
| 100 | |
| 101 | StringRef clang::parseMRecipOption(clang::DiagnosticsEngine &Diags, |
| 102 | const ArgList &Args) { |
| 103 | StringRef DisabledPrefixIn = "!" ; |
| 104 | StringRef DisabledPrefixOut = "!" ; |
| 105 | StringRef EnabledPrefixOut = "" ; |
| 106 | StringRef Out = "" ; |
| 107 | |
| 108 | const Arg *A = Args.getLastArg(Ids: options::OPT_mrecip, Ids: options::OPT_mrecip_EQ); |
| 109 | if (!A) |
| 110 | return "" ; |
| 111 | |
| 112 | const unsigned NumOptions = A->getNumValues(); |
| 113 | if (NumOptions == 0) { |
| 114 | // No option is the same as "all". |
| 115 | return "all" ; |
| 116 | } |
| 117 | |
| 118 | // Pass through "all", "none", or "default" with an optional refinement step. |
| 119 | if (NumOptions == 1) { |
| 120 | StringRef Val = A->getValue(N: 0); |
| 121 | size_t RefStepLoc; |
| 122 | if (!getRefinementStep(In: Val, Diags, A: *A, Position&: RefStepLoc)) |
| 123 | return "" ; |
| 124 | StringRef ValBase = Val.slice(Start: 0, End: RefStepLoc); |
| 125 | if (ValBase == "all" || ValBase == "none" || ValBase == "default" ) { |
| 126 | return Val; |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | // Each reciprocal type may be enabled or disabled individually. |
| 131 | // Check each input value for validity, concatenate them all back together, |
| 132 | // and pass through. |
| 133 | |
| 134 | llvm::StringMap<bool> OptionStrings; |
| 135 | OptionStrings.insert(KV: std::make_pair(x: "divd" , y: false)); |
| 136 | OptionStrings.insert(KV: std::make_pair(x: "divf" , y: false)); |
| 137 | OptionStrings.insert(KV: std::make_pair(x: "divh" , y: false)); |
| 138 | OptionStrings.insert(KV: std::make_pair(x: "vec-divd" , y: false)); |
| 139 | OptionStrings.insert(KV: std::make_pair(x: "vec-divf" , y: false)); |
| 140 | OptionStrings.insert(KV: std::make_pair(x: "vec-divh" , y: false)); |
| 141 | OptionStrings.insert(KV: std::make_pair(x: "sqrtd" , y: false)); |
| 142 | OptionStrings.insert(KV: std::make_pair(x: "sqrtf" , y: false)); |
| 143 | OptionStrings.insert(KV: std::make_pair(x: "sqrth" , y: false)); |
| 144 | OptionStrings.insert(KV: std::make_pair(x: "vec-sqrtd" , y: false)); |
| 145 | OptionStrings.insert(KV: std::make_pair(x: "vec-sqrtf" , y: false)); |
| 146 | OptionStrings.insert(KV: std::make_pair(x: "vec-sqrth" , y: false)); |
| 147 | |
| 148 | for (unsigned i = 0; i != NumOptions; ++i) { |
| 149 | StringRef Val = A->getValue(N: i); |
| 150 | |
| 151 | bool IsDisabled = Val.starts_with(Prefix: DisabledPrefixIn); |
| 152 | // Ignore the disablement token for string matching. |
| 153 | if (IsDisabled) |
| 154 | Val = Val.substr(Start: 1); |
| 155 | |
| 156 | size_t RefStep; |
| 157 | if (!getRefinementStep(In: Val, Diags, A: *A, Position&: RefStep)) |
| 158 | return "" ; |
| 159 | |
| 160 | StringRef ValBase = Val.slice(Start: 0, End: RefStep); |
| 161 | llvm::StringMap<bool>::iterator OptionIter = OptionStrings.find(Key: ValBase); |
| 162 | if (OptionIter == OptionStrings.end()) { |
| 163 | // Try again specifying float suffix. |
| 164 | OptionIter = OptionStrings.find(Key: ValBase.str() + 'f'); |
| 165 | if (OptionIter == OptionStrings.end()) { |
| 166 | // The input name did not match any known option string. |
| 167 | Diags.Report(DiagID: diag::err_drv_unknown_argument) << Val; |
| 168 | return "" ; |
| 169 | } |
| 170 | // The option was specified without a half or float or double suffix. |
| 171 | // Make sure that the double or half entry was not already specified. |
| 172 | // The float entry will be checked below. |
| 173 | if (OptionStrings[ValBase.str() + 'd'] || |
| 174 | OptionStrings[ValBase.str() + 'h']) { |
| 175 | Diags.Report(DiagID: diag::err_drv_invalid_value) |
| 176 | << A->getOption().getName() << Val; |
| 177 | return "" ; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | if (OptionIter->second == true) { |
| 182 | // Duplicate option specified. |
| 183 | Diags.Report(DiagID: diag::err_drv_invalid_value) |
| 184 | << A->getOption().getName() << Val; |
| 185 | return "" ; |
| 186 | } |
| 187 | |
| 188 | // Mark the matched option as found. Do not allow duplicate specifiers. |
| 189 | OptionIter->second = true; |
| 190 | |
| 191 | // If the precision was not specified, also mark the double and half entry |
| 192 | // as found. |
| 193 | if (ValBase.back() != 'f' && ValBase.back() != 'd' && |
| 194 | ValBase.back() != 'h') { |
| 195 | OptionStrings[ValBase.str() + 'd'] = true; |
| 196 | OptionStrings[ValBase.str() + 'h'] = true; |
| 197 | } |
| 198 | |
| 199 | // Build the output string. |
| 200 | StringRef Prefix = IsDisabled ? DisabledPrefixOut : EnabledPrefixOut; |
| 201 | Out = Args.MakeArgString(Str: Out + Prefix + Val); |
| 202 | if (i != NumOptions - 1) |
| 203 | Out = Args.MakeArgString(Str: Out + "," ); |
| 204 | } |
| 205 | |
| 206 | return Out; |
| 207 | } |
| 208 | |
| 209 | std::string clang::GetResourcesPath(StringRef BinaryPath) { |
| 210 | // Since the resource directory is embedded in the module hash, it's important |
| 211 | // that all places that need it call this function, so that they get the |
| 212 | // exact same string ("a/../b/" and "b/" get different hashes, for example). |
| 213 | |
| 214 | // Dir is bin/ or lib/, depending on where BinaryPath is. |
| 215 | StringRef Dir = llvm::sys::path::parent_path(path: BinaryPath); |
| 216 | SmallString<128> P(Dir); |
| 217 | |
| 218 | StringRef ConfiguredResourceDir(CLANG_RESOURCE_DIR); |
| 219 | if (!ConfiguredResourceDir.empty()) { |
| 220 | // FIXME: We should fix the behavior of llvm::sys::path::append so we don't |
| 221 | // need to check for absolute paths here. |
| 222 | if (llvm::sys::path::is_absolute(path: ConfiguredResourceDir)) |
| 223 | P = ConfiguredResourceDir; |
| 224 | else |
| 225 | llvm::sys::path::append(path&: P, a: ConfiguredResourceDir); |
| 226 | } else { |
| 227 | // On Windows, libclang.dll is in bin/. |
| 228 | // On non-Windows, libclang.so/.dylib is in lib/. |
| 229 | // With a static-library build of libclang, LibClangPath will contain the |
| 230 | // path of the embedding binary, which for LLVM binaries will be in bin/. |
| 231 | // ../lib gets us to lib/ in both cases. |
| 232 | P = llvm::sys::path::parent_path(path: Dir); |
| 233 | // This search path is also created in the COFF driver of lld, so any |
| 234 | // changes here also needs to happen in lld/COFF/Driver.cpp |
| 235 | llvm::sys::path::append(path&: P, CLANG_INSTALL_LIBDIR_BASENAME, b: "clang" , |
| 236 | CLANG_VERSION_MAJOR_STRING); |
| 237 | } |
| 238 | |
| 239 | return std::string(P); |
| 240 | } |
| 241 | |
| 242 | std::string clang::GetResourcesPath(const char *Argv0, void *MainAddr) { |
| 243 | const std::string ClangExecutable = |
| 244 | llvm::sys::fs::getMainExecutable(argv0: Argv0, MainExecAddr: MainAddr); |
| 245 | return GetResourcesPath(BinaryPath: ClangExecutable); |
| 246 | } |
| 247 | |