2009-02-03 07:13:24 +00:00
|
|
|
//===-- gold-plugin.cpp - Plugin to gold for Link Time Optimization ------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This is a gold plugin for LLVM. It provides an LLVM implementation of the
|
|
|
|
// interface described in http://gcc.gnu.org/wiki/whopr/driver .
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-12-22 23:04:07 +00:00
|
|
|
#include "llvm/Config/config.h" // plugin-api.h requires HAVE_STDINT_H
|
2009-02-03 07:13:24 +00:00
|
|
|
#include "llvm-c/lto.h"
|
2014-01-13 08:04:33 +00:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2014-06-19 21:14:13 +00:00
|
|
|
#include "llvm/CodeGen/CommandFlags.h"
|
|
|
|
#include "llvm/LTO/LTOCodeGenerator.h"
|
|
|
|
#include "llvm/LTO/LTOModule.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2014-06-19 21:14:13 +00:00
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2009-02-03 07:13:24 +00:00
|
|
|
#include <list>
|
2014-01-13 08:04:33 +00:00
|
|
|
#include <plugin-api.h>
|
2014-06-12 17:38:55 +00:00
|
|
|
#include <system_error>
|
2009-02-03 07:13:24 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2014-02-11 17:30:18 +00:00
|
|
|
#ifndef LDPO_PIE
|
|
|
|
// FIXME: remove this declaration when we stop maintaining Ubuntu Quantal and
|
|
|
|
// Precise and Debian Wheezy (binutils 2.23 is required)
|
|
|
|
# define LDPO_PIE 3
|
|
|
|
#endif
|
|
|
|
|
2009-02-03 07:13:24 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
2014-06-20 01:37:35 +00:00
|
|
|
struct claimed_file {
|
|
|
|
void *handle;
|
|
|
|
std::vector<ld_plugin_symbol> syms;
|
|
|
|
};
|
|
|
|
}
|
2009-02-03 07:13:24 +00:00
|
|
|
|
2014-06-20 01:37:35 +00:00
|
|
|
static ld_plugin_status discard_message(int level, const char *format, ...) {
|
|
|
|
// Die loudly. Recent versions of Gold pass ld_plugin_message as the first
|
|
|
|
// callback in the transfer vector. This should never be called.
|
|
|
|
abort();
|
2009-02-03 07:13:24 +00:00
|
|
|
}
|
2014-06-20 01:37:35 +00:00
|
|
|
|
2014-07-29 21:46:05 +00:00
|
|
|
static ld_plugin_add_symbols add_symbols = nullptr;
|
|
|
|
static ld_plugin_get_symbols get_symbols = nullptr;
|
|
|
|
static ld_plugin_add_input_file add_input_file = nullptr;
|
|
|
|
static ld_plugin_set_extra_library_path set_extra_library_path = nullptr;
|
|
|
|
static ld_plugin_get_view get_view = nullptr;
|
2014-06-20 01:37:35 +00:00
|
|
|
static ld_plugin_message message = discard_message;
|
|
|
|
static lto_codegen_model output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
|
|
|
|
static std::string output_name = "";
|
|
|
|
static std::list<claimed_file> Modules;
|
|
|
|
static std::vector<std::string> Cleanup;
|
|
|
|
static LTOCodeGenerator *CodeGen = nullptr;
|
|
|
|
static StringSet<> CannotBeHidden;
|
2014-06-19 21:14:13 +00:00
|
|
|
static llvm::TargetOptions TargetOpts;
|
2009-02-03 07:13:24 +00:00
|
|
|
|
2009-10-28 18:55:55 +00:00
|
|
|
namespace options {
|
2010-06-03 21:11:20 +00:00
|
|
|
enum generate_bc { BC_NO, BC_ALSO, BC_ONLY };
|
2010-04-16 00:42:57 +00:00
|
|
|
static bool generate_api_file = false;
|
2010-06-03 21:11:20 +00:00
|
|
|
static generate_bc generate_bc_file = BC_NO;
|
2010-05-13 13:39:31 +00:00
|
|
|
static std::string bc_path;
|
2013-08-12 21:07:31 +00:00
|
|
|
static std::string obj_path;
|
2010-06-23 20:20:59 +00:00
|
|
|
static std::string extra_library_path;
|
2010-08-09 21:09:46 +00:00
|
|
|
static std::string triple;
|
2010-08-11 00:15:13 +00:00
|
|
|
static std::string mcpu;
|
2009-10-28 18:55:55 +00:00
|
|
|
// Additional options to pass into the code generator.
|
2010-06-03 17:10:17 +00:00
|
|
|
// Note: This array will contain all plugin options which are not claimed
|
2009-10-28 18:55:55 +00:00
|
|
|
// as plugin exclusive to pass to the code generator.
|
2010-06-03 17:10:17 +00:00
|
|
|
// For example, "generate-api-file" and "as"options are for the plugin
|
2009-10-28 18:55:55 +00:00
|
|
|
// use only and will not be passed.
|
2014-07-29 19:17:44 +00:00
|
|
|
static std::vector<const char *> extra;
|
2009-10-28 18:55:55 +00:00
|
|
|
|
2010-06-07 16:45:22 +00:00
|
|
|
static void process_plugin_option(const char* opt_)
|
2009-10-28 18:55:55 +00:00
|
|
|
{
|
2014-07-29 21:46:05 +00:00
|
|
|
if (opt_ == nullptr)
|
2009-10-28 18:55:55 +00:00
|
|
|
return;
|
2010-06-07 16:45:22 +00:00
|
|
|
llvm::StringRef opt = opt_;
|
2009-10-28 18:55:55 +00:00
|
|
|
|
2010-06-07 16:45:22 +00:00
|
|
|
if (opt == "generate-api-file") {
|
2009-10-28 18:55:55 +00:00
|
|
|
generate_api_file = true;
|
2010-08-11 00:15:13 +00:00
|
|
|
} else if (opt.startswith("mcpu=")) {
|
|
|
|
mcpu = opt.substr(strlen("mcpu="));
|
2010-06-23 20:20:59 +00:00
|
|
|
} else if (opt.startswith("extra-library-path=")) {
|
|
|
|
extra_library_path = opt.substr(strlen("extra_library_path="));
|
2010-08-10 16:32:15 +00:00
|
|
|
} else if (opt.startswith("mtriple=")) {
|
2010-08-09 21:09:46 +00:00
|
|
|
triple = opt.substr(strlen("mtriple="));
|
2013-08-12 21:07:31 +00:00
|
|
|
} else if (opt.startswith("obj-path=")) {
|
|
|
|
obj_path = opt.substr(strlen("obj-path="));
|
2010-06-07 16:45:22 +00:00
|
|
|
} else if (opt == "emit-llvm") {
|
2010-06-03 21:11:20 +00:00
|
|
|
generate_bc_file = BC_ONLY;
|
2010-06-07 16:45:22 +00:00
|
|
|
} else if (opt == "also-emit-llvm") {
|
2010-06-03 21:11:20 +00:00
|
|
|
generate_bc_file = BC_ALSO;
|
2010-06-07 16:45:22 +00:00
|
|
|
} else if (opt.startswith("also-emit-llvm=")) {
|
|
|
|
llvm::StringRef path = opt.substr(strlen("also-emit-llvm="));
|
2010-06-03 21:11:20 +00:00
|
|
|
generate_bc_file = BC_ALSO;
|
2010-06-03 17:13:23 +00:00
|
|
|
if (!bc_path.empty()) {
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_WARNING, "Path to the output IL file specified twice. "
|
|
|
|
"Discarding %s",
|
|
|
|
opt_);
|
2010-05-13 13:39:31 +00:00
|
|
|
} else {
|
|
|
|
bc_path = path;
|
|
|
|
}
|
2009-10-28 18:55:55 +00:00
|
|
|
} else {
|
|
|
|
// Save this option to pass to the code generator.
|
2014-07-29 19:17:44 +00:00
|
|
|
extra.push_back(opt_);
|
2009-10-28 18:55:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-16 00:42:57 +00:00
|
|
|
static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
|
|
|
|
int *claimed);
|
|
|
|
static ld_plugin_status all_symbols_read_hook(void);
|
|
|
|
static ld_plugin_status cleanup_hook(void);
|
2009-02-03 07:13:24 +00:00
|
|
|
|
|
|
|
extern "C" ld_plugin_status onload(ld_plugin_tv *tv);
|
|
|
|
ld_plugin_status onload(ld_plugin_tv *tv) {
|
2014-07-03 23:28:03 +00:00
|
|
|
InitializeAllTargetInfos();
|
|
|
|
InitializeAllTargets();
|
|
|
|
InitializeAllTargetMCs();
|
|
|
|
InitializeAllAsmParsers();
|
|
|
|
InitializeAllAsmPrinters();
|
|
|
|
|
2009-02-03 07:13:24 +00:00
|
|
|
// We're given a pointer to the first transfer vector. We read through them
|
|
|
|
// until we find one where tv_tag == LDPT_NULL. The REGISTER_* tagged values
|
|
|
|
// contain pointers to functions that we need to call to register our own
|
|
|
|
// hooks. The others are addresses of functions we can use to call into gold
|
|
|
|
// for services.
|
|
|
|
|
|
|
|
bool registeredClaimFile = false;
|
2014-06-19 21:14:13 +00:00
|
|
|
bool RegisteredAllSymbolsRead = false;
|
2009-02-03 07:13:24 +00:00
|
|
|
|
|
|
|
for (; tv->tv_tag != LDPT_NULL; ++tv) {
|
|
|
|
switch (tv->tv_tag) {
|
2010-06-03 21:11:20 +00:00
|
|
|
case LDPT_OUTPUT_NAME:
|
|
|
|
output_name = tv->tv_u.tv_string;
|
|
|
|
break;
|
2009-02-03 07:13:24 +00:00
|
|
|
case LDPT_LINKER_OUTPUT:
|
|
|
|
switch (tv->tv_u.tv_val) {
|
|
|
|
case LDPO_REL: // .o
|
|
|
|
case LDPO_DYN: // .so
|
2014-02-10 20:38:38 +00:00
|
|
|
case LDPO_PIE: // position independent executable
|
2009-02-03 07:13:24 +00:00
|
|
|
output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC;
|
|
|
|
break;
|
|
|
|
case LDPO_EXEC: // .exe
|
|
|
|
output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
|
|
|
|
break;
|
|
|
|
default:
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "Unknown output file type %d", tv->tv_u.tv_val);
|
2009-02-03 07:13:24 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LDPT_OPTION:
|
2009-10-28 18:55:55 +00:00
|
|
|
options::process_plugin_option(tv->tv_u.tv_string);
|
2009-02-03 07:13:24 +00:00
|
|
|
break;
|
|
|
|
case LDPT_REGISTER_CLAIM_FILE_HOOK: {
|
|
|
|
ld_plugin_register_claim_file callback;
|
|
|
|
callback = tv->tv_u.tv_register_claim_file;
|
|
|
|
|
|
|
|
if ((*callback)(claim_file_hook) != LDPS_OK)
|
|
|
|
return LDPS_ERR;
|
|
|
|
|
|
|
|
registeredClaimFile = true;
|
|
|
|
} break;
|
|
|
|
case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK: {
|
|
|
|
ld_plugin_register_all_symbols_read callback;
|
|
|
|
callback = tv->tv_u.tv_register_all_symbols_read;
|
|
|
|
|
|
|
|
if ((*callback)(all_symbols_read_hook) != LDPS_OK)
|
|
|
|
return LDPS_ERR;
|
2011-02-20 18:28:29 +00:00
|
|
|
|
2014-06-19 21:14:13 +00:00
|
|
|
RegisteredAllSymbolsRead = true;
|
2009-02-03 07:13:24 +00:00
|
|
|
} break;
|
|
|
|
case LDPT_REGISTER_CLEANUP_HOOK: {
|
|
|
|
ld_plugin_register_cleanup callback;
|
|
|
|
callback = tv->tv_u.tv_register_cleanup;
|
|
|
|
|
|
|
|
if ((*callback)(cleanup_hook) != LDPS_OK)
|
|
|
|
return LDPS_ERR;
|
|
|
|
} break;
|
|
|
|
case LDPT_ADD_SYMBOLS:
|
|
|
|
add_symbols = tv->tv_u.tv_add_symbols;
|
|
|
|
break;
|
2013-10-03 18:29:09 +00:00
|
|
|
case LDPT_GET_SYMBOLS_V2:
|
2009-02-03 07:13:24 +00:00
|
|
|
get_symbols = tv->tv_u.tv_get_symbols;
|
|
|
|
break;
|
|
|
|
case LDPT_ADD_INPUT_FILE:
|
|
|
|
add_input_file = tv->tv_u.tv_add_input_file;
|
|
|
|
break;
|
2010-06-23 20:20:59 +00:00
|
|
|
case LDPT_SET_EXTRA_LIBRARY_PATH:
|
|
|
|
set_extra_library_path = tv->tv_u.tv_set_extra_library_path;
|
|
|
|
break;
|
2011-04-07 21:11:00 +00:00
|
|
|
case LDPT_GET_VIEW:
|
|
|
|
get_view = tv->tv_u.tv_get_view;
|
|
|
|
break;
|
2009-02-03 07:13:24 +00:00
|
|
|
case LDPT_MESSAGE:
|
|
|
|
message = tv->tv_u.tv_message;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-18 08:30:15 +00:00
|
|
|
if (!registeredClaimFile) {
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "register_claim_file not passed to LLVMgold.");
|
2009-02-18 17:49:06 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
2009-02-18 08:30:15 +00:00
|
|
|
if (!add_symbols) {
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "add_symbols not passed to LLVMgold.");
|
2009-02-18 17:49:06 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
2009-02-03 07:13:24 +00:00
|
|
|
|
2014-06-19 22:20:07 +00:00
|
|
|
if (!RegisteredAllSymbolsRead)
|
|
|
|
return LDPS_OK;
|
2014-06-19 21:14:13 +00:00
|
|
|
|
2014-06-19 22:20:07 +00:00
|
|
|
CodeGen = new LTOCodeGenerator();
|
2014-06-19 21:14:13 +00:00
|
|
|
|
2014-06-19 22:54:47 +00:00
|
|
|
// Pass through extra options to the code generator.
|
|
|
|
if (!options::extra.empty()) {
|
2014-07-29 19:17:44 +00:00
|
|
|
for (const char *Opt : options::extra)
|
|
|
|
CodeGen->setCodeGenDebugOptions(Opt);
|
2014-06-19 22:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CodeGen->parseCodeGenDebugOptions();
|
2014-06-26 20:43:27 +00:00
|
|
|
if (MAttrs.size()) {
|
|
|
|
std::string Attrs;
|
|
|
|
for (unsigned I = 0; I < MAttrs.size(); ++I) {
|
|
|
|
if (I > 0)
|
|
|
|
Attrs.append(",");
|
|
|
|
Attrs.append(MAttrs[I]);
|
|
|
|
}
|
|
|
|
CodeGen->setAttr(Attrs.c_str());
|
|
|
|
}
|
|
|
|
|
2014-06-19 22:54:47 +00:00
|
|
|
TargetOpts = InitTargetOptionsFromCodeGenFlags();
|
|
|
|
CodeGen->setTargetOptions(TargetOpts);
|
|
|
|
|
2009-02-03 07:13:24 +00:00
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
2014-07-06 14:31:22 +00:00
|
|
|
/// Called by gold to see whether this file is one that our plugin can handle.
|
|
|
|
/// We'll try to open it and register all the symbols with add_symbol if
|
|
|
|
/// possible.
|
2010-04-16 00:42:57 +00:00
|
|
|
static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
|
|
|
|
int *claimed) {
|
2011-09-12 21:47:50 +00:00
|
|
|
const void *view;
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> buffer;
|
2011-04-07 21:11:00 +00:00
|
|
|
if (get_view) {
|
|
|
|
if (get_view(file->handle, &view) != LDPS_OK) {
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "Failed to get a view of %s", file->name);
|
2011-04-07 21:11:00 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
2011-09-12 21:47:50 +00:00
|
|
|
} else {
|
2011-09-15 23:13:00 +00:00
|
|
|
int64_t offset = 0;
|
2009-02-05 04:14:23 +00:00
|
|
|
// Gold has found what might be IR part-way inside of a file, such as
|
|
|
|
// an .a archive.
|
2011-09-12 21:47:50 +00:00
|
|
|
if (file->offset) {
|
|
|
|
offset = file->offset;
|
|
|
|
}
|
2014-07-06 17:43:13 +00:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getOpenFileSlice(file->fd, file->name, file->filesize,
|
|
|
|
offset);
|
|
|
|
if (std::error_code EC = BufferOrErr.getError()) {
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, EC.message().c_str());
|
2011-09-12 21:47:50 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
2014-07-06 17:43:13 +00:00
|
|
|
buffer = std::move(BufferOrErr.get());
|
2011-09-12 21:47:50 +00:00
|
|
|
view = buffer->getBufferStart();
|
2011-02-08 22:40:47 +00:00
|
|
|
}
|
2011-09-12 21:47:50 +00:00
|
|
|
|
2014-06-19 21:14:13 +00:00
|
|
|
if (!LTOModule::isBitcodeFile(view, file->filesize))
|
2011-09-12 21:47:50 +00:00
|
|
|
return LDPS_OK;
|
|
|
|
|
2014-07-29 20:46:19 +00:00
|
|
|
*claimed = 1;
|
|
|
|
|
2014-06-19 21:14:13 +00:00
|
|
|
std::string Error;
|
2014-07-06 14:31:22 +00:00
|
|
|
LTOModule *M =
|
|
|
|
LTOModule::createFromBuffer(view, file->filesize, TargetOpts, Error);
|
2011-09-09 00:14:04 +00:00
|
|
|
if (!M) {
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "LLVM gold plugin has failed to create LTO module: %s",
|
|
|
|
Error.c_str());
|
2014-07-29 20:46:19 +00:00
|
|
|
return LDPS_ERR;
|
2011-09-09 00:14:04 +00:00
|
|
|
}
|
2009-02-03 07:13:24 +00:00
|
|
|
|
|
|
|
Modules.resize(Modules.size() + 1);
|
|
|
|
claimed_file &cf = Modules.back();
|
2010-08-09 21:09:46 +00:00
|
|
|
|
|
|
|
if (!options::triple.empty())
|
2014-06-19 21:14:13 +00:00
|
|
|
M->setTargetTriple(options::triple.c_str());
|
2010-08-09 21:09:46 +00:00
|
|
|
|
2009-02-03 07:13:24 +00:00
|
|
|
cf.handle = file->handle;
|
2014-06-19 21:14:13 +00:00
|
|
|
unsigned sym_count = M->getSymbolCount();
|
2009-02-03 07:13:24 +00:00
|
|
|
cf.syms.reserve(sym_count);
|
|
|
|
|
|
|
|
for (unsigned i = 0; i != sym_count; ++i) {
|
2014-06-19 21:14:13 +00:00
|
|
|
lto_symbol_attributes attrs = M->getSymbolAttributes(i);
|
2009-02-03 07:13:24 +00:00
|
|
|
if ((attrs & LTO_SYMBOL_SCOPE_MASK) == LTO_SYMBOL_SCOPE_INTERNAL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
cf.syms.push_back(ld_plugin_symbol());
|
|
|
|
ld_plugin_symbol &sym = cf.syms.back();
|
2014-06-19 22:33:23 +00:00
|
|
|
sym.name = strdup(M->getSymbolName(i));
|
2014-07-29 21:46:05 +00:00
|
|
|
sym.version = nullptr;
|
2009-02-03 07:13:24 +00:00
|
|
|
|
|
|
|
int scope = attrs & LTO_SYMBOL_SCOPE_MASK;
|
2013-10-31 20:51:58 +00:00
|
|
|
bool CanBeHidden = scope == LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN;
|
|
|
|
if (!CanBeHidden)
|
|
|
|
CannotBeHidden.insert(sym.name);
|
2009-02-03 07:13:24 +00:00
|
|
|
switch (scope) {
|
|
|
|
case LTO_SYMBOL_SCOPE_HIDDEN:
|
|
|
|
sym.visibility = LDPV_HIDDEN;
|
|
|
|
break;
|
|
|
|
case LTO_SYMBOL_SCOPE_PROTECTED:
|
|
|
|
sym.visibility = LDPV_PROTECTED;
|
|
|
|
break;
|
|
|
|
case 0: // extern
|
|
|
|
case LTO_SYMBOL_SCOPE_DEFAULT:
|
2013-10-31 20:51:58 +00:00
|
|
|
case LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN:
|
2009-02-03 07:13:24 +00:00
|
|
|
sym.visibility = LDPV_DEFAULT;
|
|
|
|
break;
|
|
|
|
default:
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "Unknown scope attribute: %d", scope);
|
2009-02-03 07:13:24 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
int definition = attrs & LTO_SYMBOL_DEFINITION_MASK;
|
2014-07-29 21:46:05 +00:00
|
|
|
sym.comdat_key = nullptr;
|
2009-02-03 07:13:24 +00:00
|
|
|
switch (definition) {
|
|
|
|
case LTO_SYMBOL_DEFINITION_REGULAR:
|
|
|
|
sym.def = LDPK_DEF;
|
|
|
|
break;
|
|
|
|
case LTO_SYMBOL_DEFINITION_UNDEFINED:
|
|
|
|
sym.def = LDPK_UNDEF;
|
|
|
|
break;
|
|
|
|
case LTO_SYMBOL_DEFINITION_TENTATIVE:
|
|
|
|
sym.def = LDPK_COMMON;
|
|
|
|
break;
|
|
|
|
case LTO_SYMBOL_DEFINITION_WEAK:
|
2011-02-14 22:23:49 +00:00
|
|
|
sym.comdat_key = sym.name;
|
2009-02-03 07:13:24 +00:00
|
|
|
sym.def = LDPK_WEAKDEF;
|
|
|
|
break;
|
2009-04-24 16:55:21 +00:00
|
|
|
case LTO_SYMBOL_DEFINITION_WEAKUNDEF:
|
|
|
|
sym.def = LDPK_WEAKUNDEF;
|
|
|
|
break;
|
2009-02-03 07:13:24 +00:00
|
|
|
default:
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "Unknown definition attribute: %d", definition);
|
2009-02-03 07:13:24 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
sym.size = 0;
|
|
|
|
|
|
|
|
sym.resolution = LDPR_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
cf.syms.reserve(cf.syms.size());
|
|
|
|
|
|
|
|
if (!cf.syms.empty()) {
|
2014-07-30 00:38:58 +00:00
|
|
|
if (add_symbols(cf.handle, cf.syms.size(), &cf.syms[0]) != LDPS_OK) {
|
|
|
|
message(LDPL_ERROR, "Unable to add symbols!");
|
2009-02-03 07:13:24 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-19 21:14:13 +00:00
|
|
|
if (CodeGen) {
|
|
|
|
std::string Error;
|
|
|
|
if (!CodeGen->addModule(M, Error)) {
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "Error linking module: %s", Error.c_str());
|
2013-10-18 19:32:06 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
|
|
|
}
|
2011-02-20 18:28:29 +00:00
|
|
|
|
2014-06-19 21:14:13 +00:00
|
|
|
delete M;
|
2011-02-20 18:28:29 +00:00
|
|
|
|
2009-02-03 07:13:24 +00:00
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
2013-10-31 20:51:58 +00:00
|
|
|
static bool mustPreserve(const claimed_file &F, int i) {
|
|
|
|
if (F.syms[i].resolution == LDPR_PREVAILING_DEF)
|
|
|
|
return true;
|
|
|
|
if (F.syms[i].resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
|
|
|
|
return CannotBeHidden.count(F.syms[i].name);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-03 07:13:24 +00:00
|
|
|
/// all_symbols_read_hook - gold informs us that all symbols have been read.
|
|
|
|
/// At this point, we use get_symbols to see if any of our definitions have
|
|
|
|
/// been overridden by a native object file. Then, perform optimization and
|
|
|
|
/// codegen.
|
2010-04-16 00:42:57 +00:00
|
|
|
static ld_plugin_status all_symbols_read_hook(void) {
|
2014-07-07 20:34:51 +00:00
|
|
|
// FIXME: raw_fd_ostream should be able to represent an unopened file.
|
|
|
|
std::unique_ptr<raw_fd_ostream> api_file;
|
|
|
|
|
2014-06-19 21:14:13 +00:00
|
|
|
assert(CodeGen);
|
2011-02-20 18:28:29 +00:00
|
|
|
|
2009-10-28 18:55:55 +00:00
|
|
|
if (options::generate_api_file) {
|
2014-07-07 20:34:51 +00:00
|
|
|
std::string Error;
|
|
|
|
api_file.reset(new raw_fd_ostream("apifile.txt", Error, sys::fs::F_None));
|
|
|
|
if (!Error.empty())
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_FATAL, "Unable to open apifile.txt for writing: %s",
|
|
|
|
Error.c_str());
|
2009-02-22 22:15:44 +00:00
|
|
|
}
|
|
|
|
|
2010-06-03 14:45:44 +00:00
|
|
|
for (std::list<claimed_file>::iterator I = Modules.begin(),
|
2009-02-03 07:13:24 +00:00
|
|
|
E = Modules.end(); I != E; ++I) {
|
2011-07-26 08:40:36 +00:00
|
|
|
if (I->syms.empty())
|
|
|
|
continue;
|
2014-07-30 00:38:58 +00:00
|
|
|
get_symbols(I->handle, I->syms.size(), &I->syms[0]);
|
2010-06-03 14:45:44 +00:00
|
|
|
for (unsigned i = 0, e = I->syms.size(); i != e; i++) {
|
2013-10-31 20:51:58 +00:00
|
|
|
if (mustPreserve(*I, i)) {
|
2014-06-19 21:14:13 +00:00
|
|
|
CodeGen->addMustPreserveSymbol(I->syms[i].name);
|
2010-06-03 14:45:44 +00:00
|
|
|
|
|
|
|
if (options::generate_api_file)
|
2014-07-07 20:34:51 +00:00
|
|
|
(*api_file) << I->syms[i].name << "\n";
|
2009-02-03 07:13:24 +00:00
|
|
|
}
|
|
|
|
}
|
2010-06-14 21:20:52 +00:00
|
|
|
}
|
2009-02-03 07:13:24 +00:00
|
|
|
|
2014-06-19 21:14:13 +00:00
|
|
|
CodeGen->setCodePICModel(output_type);
|
|
|
|
CodeGen->setDebugInfo(LTO_DEBUG_MODEL_DWARF);
|
2010-08-11 00:15:13 +00:00
|
|
|
if (!options::mcpu.empty())
|
2014-06-19 21:14:13 +00:00
|
|
|
CodeGen->setCpu(options::mcpu.c_str());
|
2010-08-11 00:15:13 +00:00
|
|
|
|
2010-06-03 21:11:20 +00:00
|
|
|
if (options::generate_bc_file != options::BC_NO) {
|
|
|
|
std::string path;
|
|
|
|
if (options::generate_bc_file == options::BC_ONLY)
|
|
|
|
path = output_name;
|
|
|
|
else if (!options::bc_path.empty())
|
|
|
|
path = options::bc_path;
|
|
|
|
else
|
|
|
|
path = output_name + ".bc";
|
2014-06-19 21:14:13 +00:00
|
|
|
std::string Error;
|
|
|
|
if (!CodeGen->writeMergedModules(path.c_str(), Error))
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_FATAL, "Failed to write the output file.");
|
2013-10-03 00:07:30 +00:00
|
|
|
if (options::generate_bc_file == options::BC_ONLY) {
|
2014-06-19 21:14:13 +00:00
|
|
|
delete CodeGen;
|
2010-06-03 21:11:20 +00:00
|
|
|
exit(0);
|
2013-10-03 00:07:30 +00:00
|
|
|
}
|
2010-05-13 13:39:31 +00:00
|
|
|
}
|
2013-10-16 12:47:04 +00:00
|
|
|
|
|
|
|
std::string ObjPath;
|
|
|
|
{
|
|
|
|
const char *Temp;
|
2014-06-19 21:14:13 +00:00
|
|
|
std::string Error;
|
|
|
|
if (!CodeGen->compile_to_file(&Temp, /*DisableOpt*/ false, /*DisableInline*/
|
|
|
|
false, /*DisableGVNLoadPRE*/ false, Error))
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "Could not produce a combined object file\n");
|
2013-10-16 12:47:04 +00:00
|
|
|
ObjPath = Temp;
|
2010-08-20 16:59:15 +00:00
|
|
|
}
|
2009-02-03 07:13:24 +00:00
|
|
|
|
2014-06-19 21:14:13 +00:00
|
|
|
delete CodeGen;
|
2011-02-20 18:28:29 +00:00
|
|
|
for (std::list<claimed_file>::iterator I = Modules.begin(),
|
|
|
|
E = Modules.end(); I != E; ++I) {
|
|
|
|
for (unsigned i = 0; i != I->syms.size(); ++i) {
|
|
|
|
ld_plugin_symbol &sym = I->syms[i];
|
|
|
|
free(sym.name);
|
|
|
|
}
|
|
|
|
}
|
2009-02-03 07:13:24 +00:00
|
|
|
|
2014-07-30 00:38:58 +00:00
|
|
|
if (add_input_file(ObjPath.c_str()) != LDPS_OK) {
|
|
|
|
message(LDPL_ERROR, "Unable to add .o file to the link.");
|
|
|
|
message(LDPL_ERROR, "File left behind in: %s", ObjPath.c_str());
|
2009-02-03 07:13:24 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
|
|
|
|
2010-06-23 20:20:59 +00:00
|
|
|
if (!options::extra_library_path.empty() &&
|
|
|
|
set_extra_library_path(options::extra_library_path.c_str()) != LDPS_OK) {
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "Unable to set the extra library path.");
|
2010-06-23 20:20:59 +00:00
|
|
|
return LDPS_ERR;
|
|
|
|
}
|
|
|
|
|
2013-08-12 21:07:31 +00:00
|
|
|
if (options::obj_path.empty())
|
2013-10-16 12:47:04 +00:00
|
|
|
Cleanup.push_back(ObjPath);
|
2013-08-12 21:07:31 +00:00
|
|
|
|
2009-02-03 07:13:24 +00:00
|
|
|
return LDPS_OK;
|
|
|
|
}
|
|
|
|
|
2010-04-16 00:42:57 +00:00
|
|
|
static ld_plugin_status cleanup_hook(void) {
|
2013-06-17 18:38:18 +00:00
|
|
|
for (int i = 0, e = Cleanup.size(); i != e; ++i) {
|
2014-06-13 03:07:50 +00:00
|
|
|
std::error_code EC = sys::fs::remove(Cleanup[i]);
|
2013-06-17 18:38:18 +00:00
|
|
|
if (EC)
|
2014-07-30 00:38:58 +00:00
|
|
|
message(LDPL_ERROR, "Failed to delete '%s': %s", Cleanup[i].c_str(),
|
|
|
|
EC.message().c_str());
|
2013-06-17 18:38:18 +00:00
|
|
|
}
|
2009-02-03 07:13:24 +00:00
|
|
|
|
|
|
|
return LDPS_OK;
|
|
|
|
}
|