blob: 4726d82d69c15e55d05779fe14a6ee233d9360c0 [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"
Michael J. Spencerab425d82010-11-29 18:47:54 +000018#include "llvm/Support/Errno.h"
Rafael Espindola55ab87f2013-06-17 18:38:18 +000019#include "llvm/Support/FileSystem.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000020#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencerab425d82010-11-29 18:47:54 +000021#include "llvm/Support/Path.h"
22#include "llvm/Support/Program.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000023#include "llvm/Support/ToolOutputFile.h"
24#include "llvm/Support/system_error.h"
Torok Edwina488ee0e2009-02-04 21:00:02 +000025#include <cerrno>
Nick Lewyckyfb643e42009-02-03 07:13:24 +000026#include <cstdlib>
27#include <cstring>
Nick Lewycky338d07e2009-02-22 22:15:44 +000028#include <fstream>
Nick Lewyckyfb643e42009-02-03 07:13:24 +000029#include <list>
Chandler Carruth07baed52014-01-13 08:04:33 +000030#include <plugin-api.h>
Nick Lewyckyfb643e42009-02-03 07:13:24 +000031#include <vector>
32
Michael J. Spencer06f52232011-01-20 05:43:16 +000033// Support Windows/MinGW crazyness.
34#ifdef _WIN32
35# include <io.h>
36# define lseek _lseek
37# define read _read
38#endif
39
Sylvestre Ledru53999792014-02-11 17:30:18 +000040#ifndef LDPO_PIE
41// FIXME: remove this declaration when we stop maintaining Ubuntu Quantal and
42// Precise and Debian Wheezy (binutils 2.23 is required)
43# define LDPO_PIE 3
44#endif
45
Nick Lewyckyfb643e42009-02-03 07:13:24 +000046using namespace llvm;
47
48namespace {
49 ld_plugin_status discard_message(int level, const char *format, ...) {
50 // Die loudly. Recent versions of Gold pass ld_plugin_message as the first
51 // callback in the transfer vector. This should never be called.
52 abort();
53 }
54
55 ld_plugin_add_symbols add_symbols = NULL;
56 ld_plugin_get_symbols get_symbols = NULL;
57 ld_plugin_add_input_file add_input_file = NULL;
Rafael Espindola82976402010-06-18 19:18:58 +000058 ld_plugin_add_input_library add_input_library = NULL;
Rafael Espindolaef498152010-06-23 20:20:59 +000059 ld_plugin_set_extra_library_path set_extra_library_path = NULL;
Rafael Espindolaece7c9c2011-04-07 21:11:00 +000060 ld_plugin_get_view get_view = NULL;
Nick Lewyckyfb643e42009-02-03 07:13:24 +000061 ld_plugin_message message = discard_message;
62
63 int api_version = 0;
64 int gold_version = 0;
65
66 struct claimed_file {
Nick Lewyckyfb643e42009-02-03 07:13:24 +000067 void *handle;
68 std::vector<ld_plugin_symbol> syms;
69 };
70
71 lto_codegen_model output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
Rafael Espindola8fb957e2010-06-03 21:11:20 +000072 std::string output_name = "";
Nick Lewyckyfb643e42009-02-03 07:13:24 +000073 std::list<claimed_file> Modules;
Rafael Espindola55ab87f2013-06-17 18:38:18 +000074 std::vector<std::string> Cleanup;
Rafael Espindola9ef90d52011-02-20 18:28:29 +000075 lto_code_gen_t code_gen = NULL;
Rafael Espindola282a4702013-10-31 20:51:58 +000076 StringSet<> CannotBeHidden;
Nick Lewyckyfb643e42009-02-03 07:13:24 +000077}
78
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000079namespace options {
Rafael Espindola8fb957e2010-06-03 21:11:20 +000080 enum generate_bc { BC_NO, BC_ALSO, BC_ONLY };
Dan Gohmanebb4ae02010-04-16 00:42:57 +000081 static bool generate_api_file = false;
Rafael Espindola8fb957e2010-06-03 21:11:20 +000082 static generate_bc generate_bc_file = BC_NO;
Rafael Espindolaba3398b2010-05-13 13:39:31 +000083 static std::string bc_path;
Shuxin Yang1826ae22013-08-12 21:07:31 +000084 static std::string obj_path;
Rafael Espindolaef498152010-06-23 20:20:59 +000085 static std::string extra_library_path;
Rafael Espindola4ef89f52010-08-09 21:09:46 +000086 static std::string triple;
Rafael Espindolaccab1dd2010-08-11 00:15:13 +000087 static std::string mcpu;
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000088 // Additional options to pass into the code generator.
Nick Lewycky0ac5e222010-06-03 17:10:17 +000089 // Note: This array will contain all plugin options which are not claimed
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000090 // as plugin exclusive to pass to the code generator.
Nick Lewycky0ac5e222010-06-03 17:10:17 +000091 // For example, "generate-api-file" and "as"options are for the plugin
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000092 // use only and will not be passed.
Dan Gohmanebb4ae02010-04-16 00:42:57 +000093 static std::vector<std::string> extra;
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000094
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000095 static void process_plugin_option(const char* opt_)
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000096 {
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000097 if (opt_ == NULL)
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +000098 return;
Rafael Espindolac4dca3a2010-06-07 16:45:22 +000099 llvm::StringRef opt = opt_;
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000100
Rafael Espindolac4dca3a2010-06-07 16:45:22 +0000101 if (opt == "generate-api-file") {
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000102 generate_api_file = true;
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000103 } else if (opt.startswith("mcpu=")) {
104 mcpu = opt.substr(strlen("mcpu="));
Rafael Espindolaef498152010-06-23 20:20:59 +0000105 } else if (opt.startswith("extra-library-path=")) {
106 extra_library_path = opt.substr(strlen("extra_library_path="));
Rafael Espindola148c3282010-08-10 16:32:15 +0000107 } else if (opt.startswith("mtriple=")) {
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000108 triple = opt.substr(strlen("mtriple="));
Shuxin Yang1826ae22013-08-12 21:07:31 +0000109 } else if (opt.startswith("obj-path=")) {
110 obj_path = opt.substr(strlen("obj-path="));
Rafael Espindolac4dca3a2010-06-07 16:45:22 +0000111 } else if (opt == "emit-llvm") {
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000112 generate_bc_file = BC_ONLY;
Rafael Espindolac4dca3a2010-06-07 16:45:22 +0000113 } else if (opt == "also-emit-llvm") {
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000114 generate_bc_file = BC_ALSO;
Rafael Espindolac4dca3a2010-06-07 16:45:22 +0000115 } else if (opt.startswith("also-emit-llvm=")) {
116 llvm::StringRef path = opt.substr(strlen("also-emit-llvm="));
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000117 generate_bc_file = BC_ALSO;
Nick Lewyckyca4180c2010-06-03 17:13:23 +0000118 if (!bc_path.empty()) {
Rafael Espindolaba3398b2010-05-13 13:39:31 +0000119 (*message)(LDPL_WARNING, "Path to the output IL file specified twice. "
Rafael Espindolac4dca3a2010-06-07 16:45:22 +0000120 "Discarding %s", opt_);
Rafael Espindolaba3398b2010-05-13 13:39:31 +0000121 } else {
122 bc_path = path;
123 }
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000124 } else {
125 // Save this option to pass to the code generator.
Rafael Espindolac4dca3a2010-06-07 16:45:22 +0000126 extra.push_back(opt);
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000127 }
128 }
129}
130
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000131static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
132 int *claimed);
133static ld_plugin_status all_symbols_read_hook(void);
134static ld_plugin_status cleanup_hook(void);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000135
136extern "C" ld_plugin_status onload(ld_plugin_tv *tv);
137ld_plugin_status onload(ld_plugin_tv *tv) {
138 // We're given a pointer to the first transfer vector. We read through them
139 // until we find one where tv_tag == LDPT_NULL. The REGISTER_* tagged values
140 // contain pointers to functions that we need to call to register our own
141 // hooks. The others are addresses of functions we can use to call into gold
142 // for services.
143
144 bool registeredClaimFile = false;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000145
146 for (; tv->tv_tag != LDPT_NULL; ++tv) {
147 switch (tv->tv_tag) {
148 case LDPT_API_VERSION:
149 api_version = tv->tv_u.tv_val;
150 break;
151 case LDPT_GOLD_VERSION: // major * 100 + minor
152 gold_version = tv->tv_u.tv_val;
153 break;
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000154 case LDPT_OUTPUT_NAME:
155 output_name = tv->tv_u.tv_string;
156 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000157 case LDPT_LINKER_OUTPUT:
158 switch (tv->tv_u.tv_val) {
159 case LDPO_REL: // .o
160 case LDPO_DYN: // .so
Rafael Espindola76e376d2014-02-10 20:38:38 +0000161 case LDPO_PIE: // position independent executable
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000162 output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC;
163 break;
164 case LDPO_EXEC: // .exe
165 output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
166 break;
167 default:
168 (*message)(LDPL_ERROR, "Unknown output file type %d",
169 tv->tv_u.tv_val);
170 return LDPS_ERR;
171 }
172 // TODO: add an option to disable PIC.
173 //output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC;
174 break;
175 case LDPT_OPTION:
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000176 options::process_plugin_option(tv->tv_u.tv_string);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000177 break;
178 case LDPT_REGISTER_CLAIM_FILE_HOOK: {
179 ld_plugin_register_claim_file callback;
180 callback = tv->tv_u.tv_register_claim_file;
181
182 if ((*callback)(claim_file_hook) != LDPS_OK)
183 return LDPS_ERR;
184
185 registeredClaimFile = true;
186 } break;
187 case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK: {
188 ld_plugin_register_all_symbols_read callback;
189 callback = tv->tv_u.tv_register_all_symbols_read;
190
191 if ((*callback)(all_symbols_read_hook) != LDPS_OK)
192 return LDPS_ERR;
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000193
194 code_gen = lto_codegen_create();
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000195 } break;
196 case LDPT_REGISTER_CLEANUP_HOOK: {
197 ld_plugin_register_cleanup callback;
198 callback = tv->tv_u.tv_register_cleanup;
199
200 if ((*callback)(cleanup_hook) != LDPS_OK)
201 return LDPS_ERR;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000202 } break;
203 case LDPT_ADD_SYMBOLS:
204 add_symbols = tv->tv_u.tv_add_symbols;
205 break;
Rafael Espindolacda29112013-10-03 18:29:09 +0000206 case LDPT_GET_SYMBOLS_V2:
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000207 get_symbols = tv->tv_u.tv_get_symbols;
208 break;
209 case LDPT_ADD_INPUT_FILE:
210 add_input_file = tv->tv_u.tv_add_input_file;
211 break;
Rafael Espindola82976402010-06-18 19:18:58 +0000212 case LDPT_ADD_INPUT_LIBRARY:
213 add_input_library = tv->tv_u.tv_add_input_file;
214 break;
Rafael Espindolaef498152010-06-23 20:20:59 +0000215 case LDPT_SET_EXTRA_LIBRARY_PATH:
216 set_extra_library_path = tv->tv_u.tv_set_extra_library_path;
217 break;
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000218 case LDPT_GET_VIEW:
219 get_view = tv->tv_u.tv_get_view;
220 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000221 case LDPT_MESSAGE:
222 message = tv->tv_u.tv_message;
223 break;
224 default:
225 break;
226 }
227 }
228
Rafael Espindolae08484d2009-02-18 08:30:15 +0000229 if (!registeredClaimFile) {
Rafael Espindola6add6182009-02-18 17:49:06 +0000230 (*message)(LDPL_ERROR, "register_claim_file not passed to LLVMgold.");
231 return LDPS_ERR;
232 }
Rafael Espindolae08484d2009-02-18 08:30:15 +0000233 if (!add_symbols) {
Rafael Espindola6add6182009-02-18 17:49:06 +0000234 (*message)(LDPL_ERROR, "add_symbols not passed to LLVMgold.");
235 return LDPS_ERR;
236 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000237
238 return LDPS_OK;
239}
240
241/// claim_file_hook - called by gold to see whether this file is one that
242/// our plugin can handle. We'll try to open it and register all the symbols
243/// with add_symbol if possible.
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000244static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
245 int *claimed) {
Rafael Espindola56e41f72011-02-08 22:40:47 +0000246 lto_module_t M;
Ivan Krasin5021af52011-09-12 21:47:50 +0000247 const void *view;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000248 std::unique_ptr<MemoryBuffer> buffer;
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000249 if (get_view) {
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000250 if (get_view(file->handle, &view) != LDPS_OK) {
251 (*message)(LDPL_ERROR, "Failed to get a view of %s", file->name);
252 return LDPS_ERR;
253 }
Ivan Krasin5021af52011-09-12 21:47:50 +0000254 } else {
Ivan Krasin639222d2011-09-15 23:13:00 +0000255 int64_t offset = 0;
Nick Lewycky8691c472009-02-05 04:14:23 +0000256 // Gold has found what might be IR part-way inside of a file, such as
257 // an .a archive.
Ivan Krasin5021af52011-09-12 21:47:50 +0000258 if (file->offset) {
259 offset = file->offset;
260 }
Rafael Espindola3d2ac2e2013-07-23 20:25:01 +0000261 if (error_code ec = MemoryBuffer::getOpenFileSlice(
262 file->fd, file->name, buffer, file->filesize, offset)) {
Ivan Krasin5021af52011-09-12 21:47:50 +0000263 (*message)(LDPL_ERROR, ec.message().c_str());
264 return LDPS_ERR;
265 }
266 view = buffer->getBufferStart();
Rafael Espindola56e41f72011-02-08 22:40:47 +0000267 }
Ivan Krasin5021af52011-09-12 21:47:50 +0000268
269 if (!lto_module_is_object_file_in_memory(view, file->filesize))
270 return LDPS_OK;
271
272 M = lto_module_create_from_memory(view, file->filesize);
Ivan Krasind5f2d8c2011-09-09 00:14:04 +0000273 if (!M) {
274 if (const char* msg = lto_get_error_message()) {
Ivan Krasin5021af52011-09-12 21:47:50 +0000275 (*message)(LDPL_ERROR,
276 "LLVM gold plugin has failed to create LTO module: %s",
277 msg);
Ivan Krasind5f2d8c2011-09-09 00:14:04 +0000278 return LDPS_ERR;
279 }
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000280 return LDPS_OK;
Ivan Krasind5f2d8c2011-09-09 00:14:04 +0000281 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000282
283 *claimed = 1;
284 Modules.resize(Modules.size() + 1);
285 claimed_file &cf = Modules.back();
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000286
287 if (!options::triple.empty())
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000288 lto_module_set_target_triple(M, options::triple.c_str());
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000289
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000290 cf.handle = file->handle;
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000291 unsigned sym_count = lto_module_get_num_symbols(M);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000292 cf.syms.reserve(sym_count);
293
294 for (unsigned i = 0; i != sym_count; ++i) {
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000295 lto_symbol_attributes attrs = lto_module_get_symbol_attribute(M, i);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000296 if ((attrs & LTO_SYMBOL_SCOPE_MASK) == LTO_SYMBOL_SCOPE_INTERNAL)
297 continue;
298
299 cf.syms.push_back(ld_plugin_symbol());
300 ld_plugin_symbol &sym = cf.syms.back();
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000301 sym.name = const_cast<char *>(lto_module_get_symbol_name(M, i));
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000302 sym.name = strdup(sym.name);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000303 sym.version = NULL;
304
305 int scope = attrs & LTO_SYMBOL_SCOPE_MASK;
Rafael Espindola282a4702013-10-31 20:51:58 +0000306 bool CanBeHidden = scope == LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN;
307 if (!CanBeHidden)
308 CannotBeHidden.insert(sym.name);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000309 switch (scope) {
310 case LTO_SYMBOL_SCOPE_HIDDEN:
311 sym.visibility = LDPV_HIDDEN;
312 break;
313 case LTO_SYMBOL_SCOPE_PROTECTED:
314 sym.visibility = LDPV_PROTECTED;
315 break;
316 case 0: // extern
317 case LTO_SYMBOL_SCOPE_DEFAULT:
Rafael Espindola282a4702013-10-31 20:51:58 +0000318 case LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN:
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000319 sym.visibility = LDPV_DEFAULT;
320 break;
321 default:
322 (*message)(LDPL_ERROR, "Unknown scope attribute: %d", scope);
323 return LDPS_ERR;
324 }
325
326 int definition = attrs & LTO_SYMBOL_DEFINITION_MASK;
Rafael Espindola70d80152011-02-14 22:23:49 +0000327 sym.comdat_key = NULL;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000328 switch (definition) {
329 case LTO_SYMBOL_DEFINITION_REGULAR:
330 sym.def = LDPK_DEF;
331 break;
332 case LTO_SYMBOL_DEFINITION_UNDEFINED:
333 sym.def = LDPK_UNDEF;
334 break;
335 case LTO_SYMBOL_DEFINITION_TENTATIVE:
336 sym.def = LDPK_COMMON;
337 break;
338 case LTO_SYMBOL_DEFINITION_WEAK:
Rafael Espindola70d80152011-02-14 22:23:49 +0000339 sym.comdat_key = sym.name;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000340 sym.def = LDPK_WEAKDEF;
341 break;
Rafael Espindola56548522009-04-24 16:55:21 +0000342 case LTO_SYMBOL_DEFINITION_WEAKUNDEF:
343 sym.def = LDPK_WEAKUNDEF;
344 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000345 default:
346 (*message)(LDPL_ERROR, "Unknown definition attribute: %d", definition);
347 return LDPS_ERR;
348 }
349
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000350 sym.size = 0;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000351
352 sym.resolution = LDPR_UNKNOWN;
353 }
354
355 cf.syms.reserve(cf.syms.size());
356
357 if (!cf.syms.empty()) {
358 if ((*add_symbols)(cf.handle, cf.syms.size(), &cf.syms[0]) != LDPS_OK) {
359 (*message)(LDPL_ERROR, "Unable to add symbols!");
360 return LDPS_ERR;
361 }
362 }
363
Rafael Espindolad578b692013-10-18 19:32:06 +0000364 if (code_gen) {
365 if (lto_codegen_add_module(code_gen, M)) {
366 (*message)(LDPL_ERROR, "Error linking module: %s",
367 lto_get_error_message());
368 return LDPS_ERR;
369 }
370 }
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000371
372 lto_module_dispose(M);
373
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000374 return LDPS_OK;
375}
376
Rafael Espindola282a4702013-10-31 20:51:58 +0000377static bool mustPreserve(const claimed_file &F, int i) {
378 if (F.syms[i].resolution == LDPR_PREVAILING_DEF)
379 return true;
380 if (F.syms[i].resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
381 return CannotBeHidden.count(F.syms[i].name);
382 return false;
383}
384
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000385/// all_symbols_read_hook - gold informs us that all symbols have been read.
386/// At this point, we use get_symbols to see if any of our definitions have
387/// been overridden by a native object file. Then, perform optimization and
388/// codegen.
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000389static ld_plugin_status all_symbols_read_hook(void) {
Nick Lewycky338d07e2009-02-22 22:15:44 +0000390 std::ofstream api_file;
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000391 assert(code_gen);
392
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000393 if (options::generate_api_file) {
Nick Lewycky338d07e2009-02-22 22:15:44 +0000394 api_file.open("apifile.txt", std::ofstream::out | std::ofstream::trunc);
395 if (!api_file.is_open()) {
396 (*message)(LDPL_FATAL, "Unable to open apifile.txt for writing.");
397 abort();
398 }
399 }
400
Rafael Espindola00121822010-06-03 14:45:44 +0000401 for (std::list<claimed_file>::iterator I = Modules.begin(),
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000402 E = Modules.end(); I != E; ++I) {
Nick Lewycky1fcd0f12011-07-26 08:40:36 +0000403 if (I->syms.empty())
404 continue;
Rafael Espindola00121822010-06-03 14:45:44 +0000405 (*get_symbols)(I->handle, I->syms.size(), &I->syms[0]);
406 for (unsigned i = 0, e = I->syms.size(); i != e; i++) {
Rafael Espindola282a4702013-10-31 20:51:58 +0000407 if (mustPreserve(*I, i)) {
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000408 lto_codegen_add_must_preserve_symbol(code_gen, I->syms[i].name);
Nick Lewycky338d07e2009-02-22 22:15:44 +0000409
Rafael Espindola00121822010-06-03 14:45:44 +0000410 if (options::generate_api_file)
411 api_file << I->syms[i].name << "\n";
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000412 }
413 }
Rafael Espindola77b6d012010-06-14 21:20:52 +0000414 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000415
Rafael Espindola77b6d012010-06-14 21:20:52 +0000416 if (options::generate_api_file)
417 api_file.close();
Nick Lewycky338d07e2009-02-22 22:15:44 +0000418
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000419 lto_codegen_set_pic_model(code_gen, output_type);
420 lto_codegen_set_debug_model(code_gen, LTO_DEBUG_MODEL_DWARF);
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000421 if (!options::mcpu.empty())
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000422 lto_codegen_set_cpu(code_gen, options::mcpu.c_str());
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000423
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000424 // Pass through extra options to the code generator.
425 if (!options::extra.empty()) {
426 for (std::vector<std::string>::iterator it = options::extra.begin();
427 it != options::extra.end(); ++it) {
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000428 lto_codegen_debug_options(code_gen, (*it).c_str());
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000429 }
430 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000431
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000432 if (options::generate_bc_file != options::BC_NO) {
433 std::string path;
434 if (options::generate_bc_file == options::BC_ONLY)
435 path = output_name;
436 else if (!options::bc_path.empty())
437 path = options::bc_path;
438 else
439 path = output_name + ".bc";
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000440 bool err = lto_codegen_write_merged_modules(code_gen, path.c_str());
Rafael Espindolaba3398b2010-05-13 13:39:31 +0000441 if (err)
442 (*message)(LDPL_FATAL, "Failed to write the output file.");
Rafael Espindolafb7a0b82013-10-03 00:07:30 +0000443 if (options::generate_bc_file == options::BC_ONLY) {
444 lto_codegen_dispose(code_gen);
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000445 exit(0);
Rafael Espindolafb7a0b82013-10-03 00:07:30 +0000446 }
Rafael Espindolaba3398b2010-05-13 13:39:31 +0000447 }
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000448
449 std::string ObjPath;
450 {
451 const char *Temp;
452 if (lto_codegen_compile_to_file(code_gen, &Temp)) {
453 (*message)(LDPL_ERROR, "Could not produce a combined object file\n");
454 }
455 ObjPath = Temp;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000456 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000457
Rafael Espindolad4f34d82011-02-19 21:49:57 +0000458 lto_codegen_dispose(code_gen);
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000459 for (std::list<claimed_file>::iterator I = Modules.begin(),
460 E = Modules.end(); I != E; ++I) {
461 for (unsigned i = 0; i != I->syms.size(); ++i) {
462 ld_plugin_symbol &sym = I->syms[i];
463 free(sym.name);
464 }
465 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000466
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000467 if ((*add_input_file)(ObjPath.c_str()) != LDPS_OK) {
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000468 (*message)(LDPL_ERROR, "Unable to add .o file to the link.");
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000469 (*message)(LDPL_ERROR, "File left behind in: %s", ObjPath.c_str());
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000470 return LDPS_ERR;
471 }
472
Rafael Espindolaef498152010-06-23 20:20:59 +0000473 if (!options::extra_library_path.empty() &&
474 set_extra_library_path(options::extra_library_path.c_str()) != LDPS_OK) {
475 (*message)(LDPL_ERROR, "Unable to set the extra library path.");
476 return LDPS_ERR;
477 }
478
Shuxin Yang1826ae22013-08-12 21:07:31 +0000479 if (options::obj_path.empty())
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000480 Cleanup.push_back(ObjPath);
Shuxin Yang1826ae22013-08-12 21:07:31 +0000481
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000482 return LDPS_OK;
483}
484
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000485static ld_plugin_status cleanup_hook(void) {
Rafael Espindola55ab87f2013-06-17 18:38:18 +0000486 for (int i = 0, e = Cleanup.size(); i != e; ++i) {
Shuxin Yang1826ae22013-08-12 21:07:31 +0000487 error_code EC = sys::fs::remove(Cleanup[i]);
Rafael Espindola55ab87f2013-06-17 18:38:18 +0000488 if (EC)
Shuxin Yang1826ae22013-08-12 21:07:31 +0000489 (*message)(LDPL_ERROR, "Failed to delete '%s': %s", Cleanup[i].c_str(),
Rafael Espindolad9a56082013-06-17 22:24:06 +0000490 EC.message().c_str());
Rafael Espindola55ab87f2013-06-17 18:38:18 +0000491 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000492
493 return LDPS_OK;
494}