Mercurial > hg > CbC > CbC_llvm
view lld/MachO/Driver.cpp @ 173:0572611fdcc8 llvm10 llvm12
reorgnization done
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 11:55:54 +0900 |
parents | |
children | 2e18cbf3894f |
line wrap: on
line source
//===- Driver.cpp ---------------------------------------------------------===// // // 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 "Driver.h" #include "Config.h" #include "InputFiles.h" #include "OutputSection.h" #include "OutputSegment.h" #include "SymbolTable.h" #include "Symbols.h" #include "Target.h" #include "Writer.h" #include "lld/Common/Args.h" #include "lld/Common/Driver.h" #include "lld/Common/ErrorHandler.h" #include "lld/Common/LLVM.h" #include "lld/Common/Memory.h" #include "lld/Common/Version.h" #include "llvm/ADT/DenseSet.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringRef.h" #include "llvm/BinaryFormat/MachO.h" #include "llvm/BinaryFormat/Magic.h" #include "llvm/Object/Archive.h" #include "llvm/Option/ArgList.h" #include "llvm/Option/Option.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" using namespace llvm; using namespace llvm::MachO; using namespace llvm::sys; using namespace lld; using namespace lld::macho; Configuration *lld::macho::config; // Create prefix string literals used in Options.td #define PREFIX(NAME, VALUE) const char *NAME[] = VALUE; #include "Options.inc" #undef PREFIX // Create table mapping all options defined in Options.td static const opt::OptTable::Info optInfo[] = { #define OPTION(X1, X2, ID, KIND, GROUP, ALIAS, X7, X8, X9, X10, X11, X12) \ {X1, X2, X10, X11, OPT_##ID, opt::Option::KIND##Class, \ X9, X8, OPT_##GROUP, OPT_##ALIAS, X7, X12}, #include "Options.inc" #undef OPTION }; MachOOptTable::MachOOptTable() : OptTable(optInfo) {} opt::InputArgList MachOOptTable::parse(ArrayRef<const char *> argv) { // Make InputArgList from string vectors. unsigned missingIndex; unsigned missingCount; SmallVector<const char *, 256> vec(argv.data(), argv.data() + argv.size()); opt::InputArgList args = ParseArgs(vec, missingIndex, missingCount); if (missingCount) error(Twine(args.getArgString(missingIndex)) + ": missing argument"); for (opt::Arg *arg : args.filtered(OPT_UNKNOWN)) error("unknown argument: " + arg->getSpelling()); return args; } // This is for -lfoo. We'll look for libfoo.dylib from search paths. static Optional<std::string> findDylib(StringRef name) { for (StringRef dir : config->searchPaths) { std::string path = (dir + "/lib" + name + ".dylib").str(); if (fs::exists(path)) return path; } error("library not found for -l" + name); return None; } static TargetInfo *createTargetInfo(opt::InputArgList &args) { StringRef s = args.getLastArgValue(OPT_arch, "x86_64"); if (s != "x86_64") error("missing or unsupported -arch " + s); return createX86_64TargetInfo(); } static std::vector<StringRef> getSearchPaths(opt::InputArgList &args) { std::vector<StringRef> ret{args::getStrings(args, OPT_L)}; if (!args.hasArg(OPT_Z)) { ret.push_back("/usr/lib"); ret.push_back("/usr/local/lib"); } return ret; } static void addFile(StringRef path) { Optional<MemoryBufferRef> buffer = readFile(path); if (!buffer) return; MemoryBufferRef mbref = *buffer; switch (identify_magic(mbref.getBuffer())) { case file_magic::archive: { std::unique_ptr<object::Archive> file = CHECK( object::Archive::create(mbref), path + ": failed to parse archive"); if (!file->isEmpty() && !file->hasSymbolTable()) error(path + ": archive has no index; run ranlib to add one"); inputFiles.push_back(make<ArchiveFile>(std::move(file))); break; } case file_magic::macho_object: inputFiles.push_back(make<ObjFile>(mbref)); break; case file_magic::macho_dynamically_linked_shared_lib: inputFiles.push_back(make<DylibFile>(mbref)); break; default: error(path + ": unhandled file type"); } } static std::array<StringRef, 6> archNames{"arm", "arm64", "i386", "x86_64", "ppc", "ppc64"}; static bool isArchString(StringRef s) { static DenseSet<StringRef> archNamesSet(archNames.begin(), archNames.end()); return archNamesSet.find(s) != archNamesSet.end(); } // An order file has one entry per line, in the following format: // // <arch>:<object file>:<symbol name> // // <arch> and <object file> are optional. If not specified, then that entry // matches any symbol of that name. // // If a symbol is matched by multiple entries, then it takes the lowest-ordered // entry (the one nearest to the front of the list.) // // The file can also have line comments that start with '#'. void parseOrderFile(StringRef path) { Optional<MemoryBufferRef> buffer = readFile(path); if (!buffer) { error("Could not read order file at " + path); return; } MemoryBufferRef mbref = *buffer; size_t priority = std::numeric_limits<size_t>::max(); for (StringRef rest : args::getLines(mbref)) { StringRef arch, objectFile, symbol; std::array<StringRef, 3> fields; uint8_t fieldCount = 0; while (rest != "" && fieldCount < 3) { std::pair<StringRef, StringRef> p = getToken(rest, ": \t\n\v\f\r"); StringRef tok = p.first; rest = p.second; // Check if we have a comment if (tok == "" || tok[0] == '#') break; fields[fieldCount++] = tok; } switch (fieldCount) { case 3: arch = fields[0]; objectFile = fields[1]; symbol = fields[2]; break; case 2: (isArchString(fields[0]) ? arch : objectFile) = fields[0]; symbol = fields[1]; break; case 1: symbol = fields[0]; break; case 0: break; default: llvm_unreachable("too many fields in order file"); } if (!arch.empty()) { if (!isArchString(arch)) { error("invalid arch \"" + arch + "\" in order file: expected one of " + llvm::join(archNames, ", ")); continue; } // TODO: Update when we extend support for other archs if (arch != "x86_64") continue; } if (!objectFile.empty() && !objectFile.endswith(".o")) { error("invalid object file name \"" + objectFile + "\" in order file: should end with .o"); continue; } if (!symbol.empty()) { SymbolPriorityEntry &entry = config->priorities[symbol]; if (!objectFile.empty()) entry.objectFiles.insert(std::make_pair(objectFile, priority)); else entry.anyObjectFile = std::max(entry.anyObjectFile, priority); } --priority; } } // We expect sub-library names of the form "libfoo", which will match a dylib // with a path of .*/libfoo.dylib. static bool markSubLibrary(StringRef searchName) { for (InputFile *file : inputFiles) { if (auto *dylibFile = dyn_cast<DylibFile>(file)) { StringRef filename = path::filename(dylibFile->getName()); if (filename.consume_front(searchName) && filename == ".dylib") { dylibFile->reexport = true; return true; } } } return false; } static void handlePlatformVersion(opt::ArgList::iterator &it, const opt::ArgList::iterator &end) { // -platform_version takes 3 args, which LLVM's option library doesn't // support directly. So this explicitly handles that. // FIXME: stash skipped args for later use. for (int i = 0; i < 3; ++i) { ++it; if (it == end || (*it)->getOption().getID() != OPT_INPUT) fatal("usage: -platform_version platform min_version sdk_version"); } } bool macho::link(llvm::ArrayRef<const char *> argsArr, bool canExitEarly, raw_ostream &stdoutOS, raw_ostream &stderrOS) { lld::stdoutOS = &stdoutOS; lld::stderrOS = &stderrOS; stderrOS.enable_colors(stderrOS.has_colors()); // TODO: Set up error handler properly, e.g. the errorLimitExceededMsg MachOOptTable parser; opt::InputArgList args = parser.parse(argsArr.slice(1)); config = make<Configuration>(); symtab = make<SymbolTable>(); target = createTargetInfo(args); config->entry = symtab->addUndefined(args.getLastArgValue(OPT_e, "_main")); config->outputFile = args.getLastArgValue(OPT_o, "a.out"); config->installName = args.getLastArgValue(OPT_install_name, config->outputFile); config->searchPaths = getSearchPaths(args); config->outputType = args.hasArg(OPT_dylib) ? MH_DYLIB : MH_EXECUTE; if (args.hasArg(OPT_v)) { message(getLLDVersion()); std::vector<StringRef> &searchPaths = config->searchPaths; message("Library search paths:\n" + llvm::join(searchPaths.begin(), searchPaths.end(), "\n")); freeArena(); return !errorCount(); } for (opt::ArgList::iterator it = args.begin(), end = args.end(); it != end; ++it) { const opt::Arg *arg = *it; switch (arg->getOption().getID()) { case OPT_INPUT: addFile(arg->getValue()); break; case OPT_l: if (Optional<std::string> path = findDylib(arg->getValue())) addFile(*path); break; case OPT_platform_version: { handlePlatformVersion(it, end); // Can advance "it". break; } } } // Now that all dylibs have been loaded, search for those that should be // re-exported. for (opt::Arg *arg : args.filtered(OPT_sub_library)) { config->hasReexports = true; StringRef searchName = arg->getValue(); if (!markSubLibrary(searchName)) error("-sub_library " + searchName + " does not match a supplied dylib"); } StringRef orderFile = args.getLastArgValue(OPT_order_file); if (!orderFile.empty()) parseOrderFile(orderFile); // dyld requires us to load libSystem. Since we may run tests on non-OSX // systems which do not have libSystem, we mock it out here. // TODO: Replace this with a stub tbd file once we have TAPI support. if (StringRef(getenv("LLD_IN_TEST")) == "1" && config->outputType == MH_EXECUTE) { inputFiles.push_back(DylibFile::createLibSystemMock()); } if (config->outputType == MH_EXECUTE && !isa<Defined>(config->entry)) { error("undefined symbol: " + config->entry->getName()); return false; } createSyntheticSections(); // Initialize InputSections. for (InputFile *file : inputFiles) { for (SubsectionMap &map : file->subsections) { for (auto &p : map) { InputSection *isec = p.second; inputSections.push_back(isec); } } } // Write to an output file. writeResult(); if (canExitEarly) exitLld(errorCount() ? 1 : 0); freeArena(); return !errorCount(); }