//===-- tool.cpp ----------------------------------------------------------===// // // LDC – the LLVM D compiler // // This file is distributed under the BSD-style LDC license. See the LICENSE // file for details. // //===----------------------------------------------------------------------===// #include "driver/tool.h" #include "dmd/errors.h" #include "driver/args.h" #include "driver/cl_options.h" #include "driver/exe_path.h" #include "driver/targetmachine.h" #include "llvm/Support/ConvertUTF.h" #include "llvm/Support/FileSystem.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" #include "llvm/Support/Program.h" #ifdef _WIN32 #include #endif ////////////////////////////////////////////////////////////////////////////// namespace opts { llvm::cl::opt linker("linker", llvm::cl::ZeroOrMore, llvm::cl::desc("Linker to use"), llvm::cl::value_desc("lld-link|lld|gold|bfd|..."), llvm::cl::cat(opts::linkingCategory)); } static llvm::cl::opt gcc("gcc", llvm::cl::ZeroOrMore, llvm::cl::cat(opts::linkingCategory), llvm::cl::value_desc("gcc|clang|..."), llvm::cl::desc( "C compiler to use for linking (and external assembling). Defaults " "to the CC environment variable if set, otherwise to `cc`.")); ////////////////////////////////////////////////////////////////////////////// static std::string findProgramByName(llvm::StringRef name) { llvm::ErrorOr res = llvm::sys::findProgramByName(name); return res ? res.get() : std::string(); } ////////////////////////////////////////////////////////////////////////////// std::string getProgram(const char *name, const llvm::cl::opt *opt, const char *envVar) { std::string path; if (opt && !opt->empty()) { path = findProgramByName(opt->c_str()); } if (path.empty() && envVar) { const std::string prog = env::get(envVar); if (!prog.empty()) path = findProgramByName(prog); } if (path.empty()) { path = findProgramByName(name); } if (path.empty()) { error(Loc(), "failed to locate %s", name); fatal(); } return path; } //////////////////////////////////////////////////////////////////////////////// std::string getGcc() { return getProgram("cc", &gcc, "CC"); } //////////////////////////////////////////////////////////////////////////////// void appendTargetArgsForGcc(std::vector &args) { using llvm::Triple; const auto &triple = *global.params.targetTriple; const auto arch64 = triple.get64BitArchVariant().getArch(); const auto arch32 = triple.get32BitArchVariant().getArch(); // Only specify -m32/-m64 for architectures where the two variants actually // exist (as e.g. the GCC ARM toolchain doesn't recognize the switches). if (arch64 == Triple::UnknownArch || arch32 == Triple::UnknownArch || arch64 == Triple::aarch64 || arch64 == Triple::aarch64_be) { return; } // MIPS does not have -m32/-m64 but requires -mabi=. if (arch64 == Triple::mips64 || arch64 == Triple::mips64el) { switch (getMipsABI()) { case MipsABI::EABI: args.push_back("-mabi=eabi"); args.push_back("-march=mips32r2"); break; case MipsABI::O32: args.push_back("-mabi=32"); args.push_back("-march=mips32r2"); break; case MipsABI::N32: args.push_back("-mabi=n32"); args.push_back("-march=mips64r2"); break; case MipsABI::N64: args.push_back("-mabi=64"); args.push_back("-march=mips64r2"); break; case MipsABI::Unknown: break; } return; } args.push_back(triple.isArch64Bit() ? "-m64" : "-m32"); } ////////////////////////////////////////////////////////////////////////////// void createDirectoryForFileOrFail(llvm::StringRef fileName) { auto dir = llvm::sys::path::parent_path(fileName); if (!dir.empty() && !llvm::sys::fs::exists(dir)) { if (auto ec = llvm::sys::fs::create_directories(dir)) { error(Loc(), "failed to create path to file: %s\n%s", dir.data(), ec.message().c_str()); fatal(); } } } //////////////////////////////////////////////////////////////////////////////// std::vector getFullArgs(const char *tool, const std::vector &args, bool printVerbose) { std::vector fullArgs; fullArgs.reserve(args.size() + 2); // executeToolAndWait() appends an additional null fullArgs.push_back(tool); for (const auto &arg : args) fullArgs.push_back(arg.c_str()); // Print command line if requested if (printVerbose) { llvm::SmallString<256> singleString; for (auto arg : fullArgs) { singleString += arg; singleString += ' '; } message("%s", singleString.c_str()); } return fullArgs; } //////////////////////////////////////////////////////////////////////////////// int executeToolAndWait(const std::string &tool_, std::vector const &args, bool verbose) { const auto tool = findProgramByName(tool_); if (tool.empty()) { error(Loc(), "failed to locate %s", tool_.c_str()); return -1; } // Construct real argument list; first entry is the tool itself. auto realargs = getFullArgs(tool.c_str(), args, verbose); #if LDC_LLVM_VER >= 700 std::vector argv; argv.reserve(realargs.size()); for (auto &&arg : realargs) argv.push_back(arg); auto envVars = llvm::None; #else realargs.push_back(nullptr); // terminate with null auto argv = &realargs[0]; auto envVars = nullptr; #endif // Execute tool. std::string errstr; if (int status = llvm::sys::ExecuteAndWait(tool, argv, envVars, #if LDC_LLVM_VER >= 600 {}, #else nullptr, #endif 0, 0, &errstr)) { error(Loc(), "%s failed with status: %d", tool.c_str(), status); if (!errstr.empty()) { error(Loc(), "message: %s", errstr.c_str()); } return status; } return 0; } //////////////////////////////////////////////////////////////////////////////// #ifdef _WIN32 namespace windows { bool needsQuotes(const llvm::StringRef &arg) { return // not already quoted !(arg.size() > 1 && arg[0] == '"' && arg.back() == '"') && // empty or min 1 space or min 1 double quote (arg.empty() || arg.find(' ') != arg.npos || arg.find('"') != arg.npos); } size_t countPrecedingBackslashes(llvm::StringRef arg, size_t index) { size_t count = 0; for (ptrdiff_t i = index - 1; i >= 0; --i) { if (arg[i] != '\\') break; ++count; } return count; } std::string quoteArg(llvm::StringRef arg) { if (!needsQuotes(arg)) return arg; std::string quotedArg; quotedArg.reserve(3 + 2 * arg.size()); // worst case quotedArg.push_back('"'); const size_t argLength = arg.size(); for (size_t i = 0; i < argLength; ++i) { if (arg[i] == '"') { // Escape all preceding backslashes (if any). // Note that we *don't* need to escape runs of backslashes that don't // precede a double quote! See MSDN: // http://msdn.microsoft.com/en-us/library/17w5ykft%28v=vs.85%29.aspx quotedArg.append(countPrecedingBackslashes(arg, i), '\\'); // Escape the double quote. quotedArg.push_back('\\'); } quotedArg.push_back(arg[i]); } // Make sure our final double quote doesn't get escaped by a trailing // backslash. quotedArg.append(countPrecedingBackslashes(arg, argLength), '\\'); quotedArg.push_back('"'); return quotedArg; } int executeAndWait(const char *commandLine, DWORD creationFlags = 0) { STARTUPINFO si; ZeroMemory(&si, sizeof(si)); si.cb = sizeof(si); PROCESS_INFORMATION pi; ZeroMemory(&pi, sizeof(pi)); DWORD exitCode; llvm::SmallVector wcommandLine; if (llvm::sys::windows::UTF8ToUTF16(commandLine, wcommandLine)) return -3; wcommandLine.push_back(0); if (!CreateProcessW(nullptr, wcommandLine.data(), nullptr, nullptr, TRUE, creationFlags, nullptr, nullptr, &si, &pi)) { exitCode = -1; } else { if (WaitForSingleObject(pi.hProcess, INFINITE) != 0 || !GetExitCodeProcess(pi.hProcess, &exitCode)) exitCode = -2; CloseHandle(pi.hProcess); CloseHandle(pi.hThread); } return exitCode; } bool setupMsvcEnvironmentImpl( std::vector> &rollback) { if (env::has(L"VSINSTALLDIR") && !env::has(L"LDC_VSDIR_FORCE")) return true; llvm::SmallString<128> tmpFilePath; if (llvm::sys::fs::createTemporaryFile("ldc_dumpEnv", "", tmpFilePath)) return false; /* Run `%ComSpec% /s /c "...\dumpEnv.bat > "` to * dump the MSVC environment to the temporary file. * * cmd.exe /c treats the following string argument (the command) * in a very peculiar way if it starts with a double-quote. * By adding /s and enclosing the command in extra double-quotes * (WITHOUT additionally escaping the command), the command will * be parsed properly. */ std::string cmdExecutable = env::get("ComSpec"); if (cmdExecutable.empty()) { warning(Loc(), "'ComSpec' environment variable is not set, assuming 'cmd.exe'."); cmdExecutable = "cmd.exe"; } std::string batchFile = exe_path::prependBinDir("dumpEnv.bat"); std::string arch = global.params.targetTriple->isArch64Bit() ? "amd64" : "x86"; llvm::SmallString<512> commandLine; commandLine += quoteArg(cmdExecutable); commandLine += " /s /c \""; commandLine += "chcp 65001 && "; // => UTF-8 output encoding commandLine += quoteArg(batchFile); commandLine += ' '; commandLine += arch; commandLine += " > "; commandLine += quoteArg(tmpFilePath); commandLine += '"'; // do NOT pass down our console const DWORD procCreationFlags = CREATE_NO_WINDOW; const int exitCode = executeAndWait(commandLine.c_str(), procCreationFlags); if (exitCode != 0) { error(Loc(), "'%s' failed with status: %d", commandLine.c_str(), exitCode); llvm::sys::fs::remove(tmpFilePath); return false; } auto fileBuffer = llvm::MemoryBuffer::getFile(tmpFilePath); llvm::sys::fs::remove(tmpFilePath); if (fileBuffer.getError()) return false; const auto contents = (*fileBuffer)->getBuffer(); const auto size = contents.size(); // Parse the file. std::vector> env; size_t i = 0; // for each line while (i < size) { llvm::StringRef key, value; for (size_t j = i; j < size; ++j) { const char c = contents[j]; if (c == '=' && key.empty()) { key = contents.slice(i, j); i = j + 1; } else if (c == '\n' || c == '\r' || c == '\0') { if (!key.empty()) { value = contents.slice(i, j); } // break and continue with next line i = j + 1; break; } } if (!key.empty() && !value.empty()) env.emplace_back(key, value); } if (global.params.verbose) message("Applying environment variables:"); rollback.reserve(env.size()); bool haveVsInstallDir = false; for (const auto &pair : env) { const llvm::StringRef key = pair.first; const llvm::StringRef value = pair.second; if (global.params.verbose) { message(" %.*s=%.*s", (int)key.size(), key.data(), (int)value.size(), value.data()); } llvm::SmallVector wkey; llvm::SmallVector wvalue; llvm::sys::windows::UTF8ToUTF16(key, wkey); llvm::sys::windows::UTF8ToUTF16(value, wvalue); wkey.push_back(0); wvalue.push_back(0); // copy the original value, if set wchar_t *originalValue = _wgetenv(wkey.data()); if (originalValue) originalValue = wcsdup(originalValue); rollback.emplace_back(wkey.data(), originalValue); SetEnvironmentVariableW(wkey.data(), wvalue.data()); if (key == "VSINSTALLDIR") haveVsInstallDir = true; } return haveVsInstallDir; } bool MsvcEnvironmentScope::setup() { rollback.clear(); const bool success = setupMsvcEnvironmentImpl(rollback); if (!success) warning(Loc(), "no Visual C++ installation detected"); return success; } MsvcEnvironmentScope::~MsvcEnvironmentScope() { for (const auto &pair : rollback) { SetEnvironmentVariableW(pair.first.data(), pair.second); free(pair.second); } } } // namespace windows #endif // _WIN32