blob: afea2b1401147547273a62cc1cba300082d17b52 [file] [log] [blame]
Nick Lewyckyfb643e42009-02-03 07:13:24 +00001//===-- gold-plugin.cpp - Plugin to gold for Link Time Optimization ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is a gold plugin for LLVM. It provides an LLVM implementation of the
11// interface described in http://gcc.gnu.org/wiki/whopr/driver .
12//
13//===----------------------------------------------------------------------===//
14
Dylan Noblesmith9e5b1782011-12-22 23:04:07 +000015#include "llvm/Config/config.h" // plugin-api.h requires HAVE_STDINT_H
Nick Lewyckyfb643e42009-02-03 07:13:24 +000016#include "llvm-c/lto.h"
Chandler Carruth07baed52014-01-13 08:04:33 +000017#include "llvm/ADT/StringSet.h"
Rafael Espindola6b244b12014-06-19 21:14:13 +000018#include "llvm/CodeGen/CommandFlags.h"
19#include "llvm/LTO/LTOCodeGenerator.h"
20#include "llvm/LTO/LTOModule.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000021#include "llvm/Support/MemoryBuffer.h"
Rafael Espindola6b244b12014-06-19 21:14:13 +000022#include "llvm/Support/TargetSelect.h"
Nick Lewyckyfb643e42009-02-03 07:13:24 +000023#include <list>
Chandler Carruth07baed52014-01-13 08:04:33 +000024#include <plugin-api.h>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000025#include <system_error>
Nick Lewyckyfb643e42009-02-03 07:13:24 +000026#include <vector>
27
Sylvestre Ledru53999792014-02-11 17:30:18 +000028#ifndef LDPO_PIE
29// FIXME: remove this declaration when we stop maintaining Ubuntu Quantal and
30// Precise and Debian Wheezy (binutils 2.23 is required)
31# define LDPO_PIE 3
32#endif
33
Nick Lewyckyfb643e42009-02-03 07:13:24 +000034using namespace llvm;
35
36namespace {
Rafael Espindolabfb8b912014-06-20 01:37:35 +000037struct claimed_file {
38 void *handle;
39 std::vector<ld_plugin_symbol> syms;
40};
Nick Lewyckyfb643e42009-02-03 07:13:24 +000041}
Rafael Espindolabfb8b912014-06-20 01:37:35 +000042
43static ld_plugin_status discard_message(int level, const char *format, ...) {
44 // Die loudly. Recent versions of Gold pass ld_plugin_message as the first
45 // callback in the transfer vector. This should never be called.
46 abort();
47}
48
Rafael Espindola176e6642014-07-29 21:46:05 +000049static ld_plugin_add_symbols add_symbols = nullptr;
50static ld_plugin_get_symbols get_symbols = nullptr;
51static ld_plugin_add_input_file add_input_file = nullptr;
52static ld_plugin_set_extra_library_path set_extra_library_path = nullptr;
53static ld_plugin_get_view get_view = nullptr;
Rafael Espindolabfb8b912014-06-20 01:37:35 +000054static ld_plugin_message message = discard_message;
55static lto_codegen_model output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
56static std::string output_name = "";
57static std::list<claimed_file> Modules;
58static std::vector<std::string> Cleanup;
59static LTOCodeGenerator *CodeGen = nullptr;
60static StringSet<> CannotBeHidden;
Rafael Espindola6b244b12014-06-19 21:14:13 +000061static llvm::TargetOptions TargetOpts;
Nick Lewyckyfb643e42009-02-03 07:13:24 +000062
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000063namespace options {
Rafael Espindola8fb957e2010-06-03 21:11:20 +000064 enum generate_bc { BC_NO, BC_ALSO, BC_ONLY };
Dan Gohmanebb4ae02010-04-16 00:42:57 +000065 static bool generate_api_file = false;
Rafael Espindola8fb957e2010-06-03 21:11:20 +000066 static generate_bc generate_bc_file = BC_NO;
Rafael Espindolaba3398b2010-05-13 13:39:31 +000067 static std::string bc_path;
Shuxin Yang1826ae22013-08-12 21:07:31 +000068 static std::string obj_path;
Rafael Espindolaef498152010-06-23 20:20:59 +000069 static std::string extra_library_path;
Rafael Espindola4ef89f52010-08-09 21:09:46 +000070 static std::string triple;
Rafael Espindolaccab1dd2010-08-11 00:15:13 +000071 static std::string mcpu;
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000072 // Additional options to pass into the code generator.
Nick Lewycky0ac5e222010-06-03 17:10:17 +000073 // Note: This array will contain all plugin options which are not claimed
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000074 // as plugin exclusive to pass to the code generator.
Nick Lewycky0ac5e222010-06-03 17:10:17 +000075 // For example, "generate-api-file" and "as"options are for the plugin
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000076 // use only and will not be passed.
Rafael Espindola125b9242014-07-29 19:17:44 +000077 static std::vector<const char *> extra;
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000078
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000079 static void process_plugin_option(const char* opt_)
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000080 {
Rafael Espindola176e6642014-07-29 21:46:05 +000081 if (opt_ == nullptr)
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000082 return;
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000083 llvm::StringRef opt = opt_;
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000084
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000085 if (opt == "generate-api-file") {
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000086 generate_api_file = true;
Rafael Espindolaccab1dd2010-08-11 00:15:13 +000087 } else if (opt.startswith("mcpu=")) {
88 mcpu = opt.substr(strlen("mcpu="));
Rafael Espindolaef498152010-06-23 20:20:59 +000089 } else if (opt.startswith("extra-library-path=")) {
90 extra_library_path = opt.substr(strlen("extra_library_path="));
Rafael Espindola148c3282010-08-10 16:32:15 +000091 } else if (opt.startswith("mtriple=")) {
Rafael Espindola4ef89f52010-08-09 21:09:46 +000092 triple = opt.substr(strlen("mtriple="));
Shuxin Yang1826ae22013-08-12 21:07:31 +000093 } else if (opt.startswith("obj-path=")) {
94 obj_path = opt.substr(strlen("obj-path="));
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000095 } else if (opt == "emit-llvm") {
Rafael Espindola8fb957e2010-06-03 21:11:20 +000096 generate_bc_file = BC_ONLY;
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000097 } else if (opt == "also-emit-llvm") {
Rafael Espindola8fb957e2010-06-03 21:11:20 +000098 generate_bc_file = BC_ALSO;
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000099 } else if (opt.startswith("also-emit-llvm=")) {
100 llvm::StringRef path = opt.substr(strlen("also-emit-llvm="));
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000101 generate_bc_file = BC_ALSO;
Nick Lewyckyca4180c2010-06-03 17:13:23 +0000102 if (!bc_path.empty()) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000103 message(LDPL_WARNING, "Path to the output IL file specified twice. "
104 "Discarding %s",
105 opt_);
Rafael Espindolaba3398b2010-05-13 13:39:31 +0000106 } else {
107 bc_path = path;
108 }
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000109 } else {
110 // Save this option to pass to the code generator.
Rafael Espindola125b9242014-07-29 19:17:44 +0000111 extra.push_back(opt_);
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000112 }
113 }
114}
115
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000116static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
117 int *claimed);
118static ld_plugin_status all_symbols_read_hook(void);
119static ld_plugin_status cleanup_hook(void);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000120
121extern "C" ld_plugin_status onload(ld_plugin_tv *tv);
122ld_plugin_status onload(ld_plugin_tv *tv) {
Peter Collingbourne1505c0a2014-07-03 23:28:03 +0000123 InitializeAllTargetInfos();
124 InitializeAllTargets();
125 InitializeAllTargetMCs();
126 InitializeAllAsmParsers();
127 InitializeAllAsmPrinters();
128
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000129 // We're given a pointer to the first transfer vector. We read through them
130 // until we find one where tv_tag == LDPT_NULL. The REGISTER_* tagged values
131 // contain pointers to functions that we need to call to register our own
132 // hooks. The others are addresses of functions we can use to call into gold
133 // for services.
134
135 bool registeredClaimFile = false;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000136 bool RegisteredAllSymbolsRead = false;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000137
138 for (; tv->tv_tag != LDPT_NULL; ++tv) {
139 switch (tv->tv_tag) {
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000140 case LDPT_OUTPUT_NAME:
141 output_name = tv->tv_u.tv_string;
142 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000143 case LDPT_LINKER_OUTPUT:
144 switch (tv->tv_u.tv_val) {
145 case LDPO_REL: // .o
146 case LDPO_DYN: // .so
Rafael Espindola76e376d2014-02-10 20:38:38 +0000147 case LDPO_PIE: // position independent executable
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000148 output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC;
149 break;
150 case LDPO_EXEC: // .exe
151 output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
152 break;
153 default:
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000154 message(LDPL_ERROR, "Unknown output file type %d", tv->tv_u.tv_val);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000155 return LDPS_ERR;
156 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000157 break;
158 case LDPT_OPTION:
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000159 options::process_plugin_option(tv->tv_u.tv_string);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000160 break;
161 case LDPT_REGISTER_CLAIM_FILE_HOOK: {
162 ld_plugin_register_claim_file callback;
163 callback = tv->tv_u.tv_register_claim_file;
164
Rafael Espindola54f82b72014-07-30 01:36:32 +0000165 if (callback(claim_file_hook) != LDPS_OK)
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000166 return LDPS_ERR;
167
168 registeredClaimFile = true;
169 } break;
170 case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK: {
171 ld_plugin_register_all_symbols_read callback;
172 callback = tv->tv_u.tv_register_all_symbols_read;
173
Rafael Espindola54f82b72014-07-30 01:36:32 +0000174 if (callback(all_symbols_read_hook) != LDPS_OK)
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000175 return LDPS_ERR;
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000176
Rafael Espindola6b244b12014-06-19 21:14:13 +0000177 RegisteredAllSymbolsRead = true;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000178 } break;
179 case LDPT_REGISTER_CLEANUP_HOOK: {
180 ld_plugin_register_cleanup callback;
181 callback = tv->tv_u.tv_register_cleanup;
182
Rafael Espindola54f82b72014-07-30 01:36:32 +0000183 if (callback(cleanup_hook) != LDPS_OK)
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000184 return LDPS_ERR;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000185 } break;
186 case LDPT_ADD_SYMBOLS:
187 add_symbols = tv->tv_u.tv_add_symbols;
188 break;
Rafael Espindolacda29112013-10-03 18:29:09 +0000189 case LDPT_GET_SYMBOLS_V2:
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000190 get_symbols = tv->tv_u.tv_get_symbols;
191 break;
192 case LDPT_ADD_INPUT_FILE:
193 add_input_file = tv->tv_u.tv_add_input_file;
194 break;
Rafael Espindolaef498152010-06-23 20:20:59 +0000195 case LDPT_SET_EXTRA_LIBRARY_PATH:
196 set_extra_library_path = tv->tv_u.tv_set_extra_library_path;
197 break;
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000198 case LDPT_GET_VIEW:
199 get_view = tv->tv_u.tv_get_view;
200 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000201 case LDPT_MESSAGE:
202 message = tv->tv_u.tv_message;
203 break;
204 default:
205 break;
206 }
207 }
208
Rafael Espindolae08484d2009-02-18 08:30:15 +0000209 if (!registeredClaimFile) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000210 message(LDPL_ERROR, "register_claim_file not passed to LLVMgold.");
Rafael Espindola6add6182009-02-18 17:49:06 +0000211 return LDPS_ERR;
212 }
Rafael Espindolae08484d2009-02-18 08:30:15 +0000213 if (!add_symbols) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000214 message(LDPL_ERROR, "add_symbols not passed to LLVMgold.");
Rafael Espindola6add6182009-02-18 17:49:06 +0000215 return LDPS_ERR;
216 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000217
Rafael Espindolaa0d30a92014-06-19 22:20:07 +0000218 if (!RegisteredAllSymbolsRead)
219 return LDPS_OK;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000220
Rafael Espindolaa0d30a92014-06-19 22:20:07 +0000221 CodeGen = new LTOCodeGenerator();
Rafael Espindola6b244b12014-06-19 21:14:13 +0000222
Rafael Espindolac273aac2014-06-19 22:54:47 +0000223 // Pass through extra options to the code generator.
224 if (!options::extra.empty()) {
Rafael Espindola125b9242014-07-29 19:17:44 +0000225 for (const char *Opt : options::extra)
226 CodeGen->setCodeGenDebugOptions(Opt);
Rafael Espindolac273aac2014-06-19 22:54:47 +0000227 }
228
229 CodeGen->parseCodeGenDebugOptions();
Tom Roederb5081192014-06-26 20:43:27 +0000230 if (MAttrs.size()) {
231 std::string Attrs;
232 for (unsigned I = 0; I < MAttrs.size(); ++I) {
233 if (I > 0)
234 Attrs.append(",");
235 Attrs.append(MAttrs[I]);
236 }
237 CodeGen->setAttr(Attrs.c_str());
238 }
239
Rafael Espindolac273aac2014-06-19 22:54:47 +0000240 TargetOpts = InitTargetOptionsFromCodeGenFlags();
241 CodeGen->setTargetOptions(TargetOpts);
242
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000243 return LDPS_OK;
244}
245
Rafael Espindolae54d8212014-07-06 14:31:22 +0000246/// Called by gold to see whether this file is one that our plugin can handle.
247/// We'll try to open it and register all the symbols with add_symbol if
248/// possible.
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000249static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
250 int *claimed) {
Ivan Krasin5021af52011-09-12 21:47:50 +0000251 const void *view;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000252 std::unique_ptr<MemoryBuffer> buffer;
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000253 if (get_view) {
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000254 if (get_view(file->handle, &view) != LDPS_OK) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000255 message(LDPL_ERROR, "Failed to get a view of %s", file->name);
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000256 return LDPS_ERR;
257 }
Ivan Krasin5021af52011-09-12 21:47:50 +0000258 } else {
Ivan Krasin639222d2011-09-15 23:13:00 +0000259 int64_t offset = 0;
Nick Lewycky8691c472009-02-05 04:14:23 +0000260 // Gold has found what might be IR part-way inside of a file, such as
261 // an .a archive.
Ivan Krasin5021af52011-09-12 21:47:50 +0000262 if (file->offset) {
263 offset = file->offset;
264 }
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000265 ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
266 MemoryBuffer::getOpenFileSlice(file->fd, file->name, file->filesize,
267 offset);
268 if (std::error_code EC = BufferOrErr.getError()) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000269 message(LDPL_ERROR, EC.message().c_str());
Ivan Krasin5021af52011-09-12 21:47:50 +0000270 return LDPS_ERR;
271 }
Rafael Espindolaadf21f22014-07-06 17:43:13 +0000272 buffer = std::move(BufferOrErr.get());
Ivan Krasin5021af52011-09-12 21:47:50 +0000273 view = buffer->getBufferStart();
Rafael Espindola56e41f72011-02-08 22:40:47 +0000274 }
Ivan Krasin5021af52011-09-12 21:47:50 +0000275
Rafael Espindola6b244b12014-06-19 21:14:13 +0000276 if (!LTOModule::isBitcodeFile(view, file->filesize))
Ivan Krasin5021af52011-09-12 21:47:50 +0000277 return LDPS_OK;
278
Rafael Espindola6c472e52014-07-29 20:46:19 +0000279 *claimed = 1;
280
Rafael Espindola6b244b12014-06-19 21:14:13 +0000281 std::string Error;
Rafael Espindolae54d8212014-07-06 14:31:22 +0000282 LTOModule *M =
283 LTOModule::createFromBuffer(view, file->filesize, TargetOpts, Error);
Ivan Krasind5f2d8c2011-09-09 00:14:04 +0000284 if (!M) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000285 message(LDPL_ERROR, "LLVM gold plugin has failed to create LTO module: %s",
286 Error.c_str());
Rafael Espindola6c472e52014-07-29 20:46:19 +0000287 return LDPS_ERR;
Ivan Krasind5f2d8c2011-09-09 00:14:04 +0000288 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000289
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000290 Modules.resize(Modules.size() + 1);
291 claimed_file &cf = Modules.back();
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000292
293 if (!options::triple.empty())
Rafael Espindola6b244b12014-06-19 21:14:13 +0000294 M->setTargetTriple(options::triple.c_str());
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000295
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000296 cf.handle = file->handle;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000297 unsigned sym_count = M->getSymbolCount();
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000298 cf.syms.reserve(sym_count);
299
300 for (unsigned i = 0; i != sym_count; ++i) {
Rafael Espindola6b244b12014-06-19 21:14:13 +0000301 lto_symbol_attributes attrs = M->getSymbolAttributes(i);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000302 if ((attrs & LTO_SYMBOL_SCOPE_MASK) == LTO_SYMBOL_SCOPE_INTERNAL)
303 continue;
304
305 cf.syms.push_back(ld_plugin_symbol());
306 ld_plugin_symbol &sym = cf.syms.back();
Rafael Espindolab201bfc2014-06-19 22:33:23 +0000307 sym.name = strdup(M->getSymbolName(i));
Rafael Espindola176e6642014-07-29 21:46:05 +0000308 sym.version = nullptr;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000309
310 int scope = attrs & LTO_SYMBOL_SCOPE_MASK;
Rafael Espindola282a4702013-10-31 20:51:58 +0000311 bool CanBeHidden = scope == LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN;
312 if (!CanBeHidden)
313 CannotBeHidden.insert(sym.name);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000314 switch (scope) {
315 case LTO_SYMBOL_SCOPE_HIDDEN:
316 sym.visibility = LDPV_HIDDEN;
317 break;
318 case LTO_SYMBOL_SCOPE_PROTECTED:
319 sym.visibility = LDPV_PROTECTED;
320 break;
321 case 0: // extern
322 case LTO_SYMBOL_SCOPE_DEFAULT:
Rafael Espindola282a4702013-10-31 20:51:58 +0000323 case LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN:
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000324 sym.visibility = LDPV_DEFAULT;
325 break;
326 default:
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000327 message(LDPL_ERROR, "Unknown scope attribute: %d", scope);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000328 return LDPS_ERR;
329 }
330
331 int definition = attrs & LTO_SYMBOL_DEFINITION_MASK;
Rafael Espindola176e6642014-07-29 21:46:05 +0000332 sym.comdat_key = nullptr;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000333 switch (definition) {
334 case LTO_SYMBOL_DEFINITION_REGULAR:
335 sym.def = LDPK_DEF;
336 break;
337 case LTO_SYMBOL_DEFINITION_UNDEFINED:
338 sym.def = LDPK_UNDEF;
339 break;
340 case LTO_SYMBOL_DEFINITION_TENTATIVE:
341 sym.def = LDPK_COMMON;
342 break;
343 case LTO_SYMBOL_DEFINITION_WEAK:
Rafael Espindola70d80152011-02-14 22:23:49 +0000344 sym.comdat_key = sym.name;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000345 sym.def = LDPK_WEAKDEF;
346 break;
Rafael Espindola56548522009-04-24 16:55:21 +0000347 case LTO_SYMBOL_DEFINITION_WEAKUNDEF:
348 sym.def = LDPK_WEAKUNDEF;
349 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000350 default:
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000351 message(LDPL_ERROR, "Unknown definition attribute: %d", definition);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000352 return LDPS_ERR;
353 }
354
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000355 sym.size = 0;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000356
357 sym.resolution = LDPR_UNKNOWN;
358 }
359
360 cf.syms.reserve(cf.syms.size());
361
362 if (!cf.syms.empty()) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000363 if (add_symbols(cf.handle, cf.syms.size(), &cf.syms[0]) != LDPS_OK) {
364 message(LDPL_ERROR, "Unable to add symbols!");
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000365 return LDPS_ERR;
366 }
367 }
368
Rafael Espindola6b244b12014-06-19 21:14:13 +0000369 if (CodeGen) {
370 std::string Error;
371 if (!CodeGen->addModule(M, Error)) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000372 message(LDPL_ERROR, "Error linking module: %s", Error.c_str());
Rafael Espindolad578b692013-10-18 19:32:06 +0000373 return LDPS_ERR;
374 }
375 }
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000376
Rafael Espindola6b244b12014-06-19 21:14:13 +0000377 delete M;
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000378
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000379 return LDPS_OK;
380}
381
Rafael Espindola0c544192014-07-31 19:32:04 +0000382static bool mustPreserve(ld_plugin_symbol &Sym) {
Rafael Espindolad2aac572014-07-30 01:52:40 +0000383 if (Sym.resolution == LDPR_PREVAILING_DEF)
Rafael Espindola282a4702013-10-31 20:51:58 +0000384 return true;
Rafael Espindolad2aac572014-07-30 01:52:40 +0000385 if (Sym.resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
386 return CannotBeHidden.count(Sym.name);
Rafael Espindola282a4702013-10-31 20:51:58 +0000387 return false;
388}
389
Rafael Espindolab6393292014-07-30 01:23:45 +0000390/// gold informs us that all symbols have been read. At this point, we use
391/// get_symbols to see if any of our definitions have been overridden by a
392/// native object file. Then, perform optimization and codegen.
Rafael Espindola55b32542014-08-11 19:06:54 +0000393static ld_plugin_status allSymbolsReadHook(raw_fd_ostream *apiFile) {
Rafael Espindola6b244b12014-06-19 21:14:13 +0000394 assert(CodeGen);
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000395
Rafael Espindolad2aac572014-07-30 01:52:40 +0000396 for (claimed_file &F : Modules) {
397 if (F.syms.empty())
Nick Lewycky1fcd0f12011-07-26 08:40:36 +0000398 continue;
Rafael Espindolad2aac572014-07-30 01:52:40 +0000399 get_symbols(F.handle, F.syms.size(), &F.syms[0]);
400 for (ld_plugin_symbol &Sym : F.syms) {
Rafael Espindola0c544192014-07-31 19:32:04 +0000401 if (mustPreserve(Sym)) {
Rafael Espindolad2aac572014-07-30 01:52:40 +0000402 CodeGen->addMustPreserveSymbol(Sym.name);
Nick Lewycky338d07e2009-02-22 22:15:44 +0000403
Rafael Espindola00121822010-06-03 14:45:44 +0000404 if (options::generate_api_file)
Rafael Espindola55b32542014-08-11 19:06:54 +0000405 (*apiFile) << Sym.name << "\n";
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000406 }
407 }
Rafael Espindola77b6d012010-06-14 21:20:52 +0000408 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000409
Rafael Espindola6b244b12014-06-19 21:14:13 +0000410 CodeGen->setCodePICModel(output_type);
411 CodeGen->setDebugInfo(LTO_DEBUG_MODEL_DWARF);
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000412 if (!options::mcpu.empty())
Rafael Espindola6b244b12014-06-19 21:14:13 +0000413 CodeGen->setCpu(options::mcpu.c_str());
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000414
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000415 if (options::generate_bc_file != options::BC_NO) {
416 std::string path;
417 if (options::generate_bc_file == options::BC_ONLY)
418 path = output_name;
419 else if (!options::bc_path.empty())
420 path = options::bc_path;
421 else
422 path = output_name + ".bc";
Rafael Espindola6b244b12014-06-19 21:14:13 +0000423 std::string Error;
424 if (!CodeGen->writeMergedModules(path.c_str(), Error))
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000425 message(LDPL_FATAL, "Failed to write the output file.");
Rafael Espindola55b32542014-08-11 19:06:54 +0000426 if (options::generate_bc_file == options::BC_ONLY)
427 return LDPS_OK;
Rafael Espindolaba3398b2010-05-13 13:39:31 +0000428 }
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000429
430 std::string ObjPath;
431 {
432 const char *Temp;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000433 std::string Error;
434 if (!CodeGen->compile_to_file(&Temp, /*DisableOpt*/ false, /*DisableInline*/
435 false, /*DisableGVNLoadPRE*/ false, Error))
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000436 message(LDPL_ERROR, "Could not produce a combined object file\n");
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000437 ObjPath = Temp;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000438 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000439
Rafael Espindolad2aac572014-07-30 01:52:40 +0000440 for (claimed_file &F : Modules) {
441 for (ld_plugin_symbol &Sym : F.syms)
442 free(Sym.name);
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000443 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000444
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000445 if (add_input_file(ObjPath.c_str()) != LDPS_OK) {
446 message(LDPL_ERROR, "Unable to add .o file to the link.");
447 message(LDPL_ERROR, "File left behind in: %s", ObjPath.c_str());
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000448 return LDPS_ERR;
449 }
450
Rafael Espindolaef498152010-06-23 20:20:59 +0000451 if (!options::extra_library_path.empty() &&
452 set_extra_library_path(options::extra_library_path.c_str()) != LDPS_OK) {
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000453 message(LDPL_ERROR, "Unable to set the extra library path.");
Rafael Espindolaef498152010-06-23 20:20:59 +0000454 return LDPS_ERR;
455 }
456
Shuxin Yang1826ae22013-08-12 21:07:31 +0000457 if (options::obj_path.empty())
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000458 Cleanup.push_back(ObjPath);
Shuxin Yang1826ae22013-08-12 21:07:31 +0000459
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000460 return LDPS_OK;
461}
462
Rafael Espindola55b32542014-08-11 19:06:54 +0000463static ld_plugin_status all_symbols_read_hook(void) {
464 ld_plugin_status Ret;
465 if (!options::generate_api_file) {
466 Ret = allSymbolsReadHook(nullptr);
467 } else {
468 std::string Error;
469 raw_fd_ostream apiFile("apifile.txt", Error, sys::fs::F_None);
470 if (!Error.empty())
471 message(LDPL_FATAL, "Unable to open apifile.txt for writing: %s",
472 Error.c_str());
473 Ret = allSymbolsReadHook(&apiFile);
474 }
475
476 delete CodeGen;
477
478 if (options::generate_bc_file == options::BC_ONLY)
479 exit(0);
480
481 return Ret;
482}
483
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000484static ld_plugin_status cleanup_hook(void) {
Rafael Espindolad2aac572014-07-30 01:52:40 +0000485 for (std::string &Name : Cleanup) {
486 std::error_code EC = sys::fs::remove(Name);
Rafael Espindola55ab87f2013-06-17 18:38:18 +0000487 if (EC)
Rafael Espindolad2aac572014-07-30 01:52:40 +0000488 message(LDPL_ERROR, "Failed to delete '%s': %s", Name.c_str(),
Rafael Espindola5ad21fa2014-07-30 00:38:58 +0000489 EC.message().c_str());
Rafael Espindola55ab87f2013-06-17 18:38:18 +0000490 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000491
492 return LDPS_OK;
493}