blob: 6d52f62b210021c637e5cfa94869c395cf0b0e69 [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"
Michael J. Spencerab425d82010-11-29 18:47:54 +000021#include "llvm/Support/Errno.h"
Rafael Espindola55ab87f2013-06-17 18:38:18 +000022#include "llvm/Support/FileSystem.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000023#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencerab425d82010-11-29 18:47:54 +000024#include "llvm/Support/Path.h"
25#include "llvm/Support/Program.h"
Rafael Espindola6b244b12014-06-19 21:14:13 +000026#include "llvm/Support/TargetSelect.h"
Chandler Carruth4d88a1c2012-12-04 10:44:52 +000027#include "llvm/Support/ToolOutputFile.h"
Torok Edwina488ee0e2009-02-04 21:00:02 +000028#include <cerrno>
Nick Lewyckyfb643e42009-02-03 07:13:24 +000029#include <cstdlib>
30#include <cstring>
Nick Lewycky338d07e2009-02-22 22:15:44 +000031#include <fstream>
Nick Lewyckyfb643e42009-02-03 07:13:24 +000032#include <list>
Chandler Carruth07baed52014-01-13 08:04:33 +000033#include <plugin-api.h>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000034#include <system_error>
Nick Lewyckyfb643e42009-02-03 07:13:24 +000035#include <vector>
36
Michael J. Spencer06f52232011-01-20 05:43:16 +000037// Support Windows/MinGW crazyness.
38#ifdef _WIN32
39# include <io.h>
40# define lseek _lseek
41# define read _read
42#endif
43
Sylvestre Ledru53999792014-02-11 17:30:18 +000044#ifndef LDPO_PIE
45// FIXME: remove this declaration when we stop maintaining Ubuntu Quantal and
46// Precise and Debian Wheezy (binutils 2.23 is required)
47# define LDPO_PIE 3
48#endif
49
Nick Lewyckyfb643e42009-02-03 07:13:24 +000050using namespace llvm;
51
52namespace {
Rafael Espindolabfb8b912014-06-20 01:37:35 +000053struct claimed_file {
54 void *handle;
55 std::vector<ld_plugin_symbol> syms;
56};
Nick Lewyckyfb643e42009-02-03 07:13:24 +000057}
Rafael Espindolabfb8b912014-06-20 01:37:35 +000058
59static ld_plugin_status discard_message(int level, const char *format, ...) {
60 // Die loudly. Recent versions of Gold pass ld_plugin_message as the first
61 // callback in the transfer vector. This should never be called.
62 abort();
63}
64
65static ld_plugin_add_symbols add_symbols = NULL;
66static ld_plugin_get_symbols get_symbols = NULL;
67static ld_plugin_add_input_file add_input_file = NULL;
68static ld_plugin_set_extra_library_path set_extra_library_path = NULL;
69static ld_plugin_get_view get_view = NULL;
70static ld_plugin_message message = discard_message;
71static lto_codegen_model output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
72static std::string output_name = "";
73static std::list<claimed_file> Modules;
74static std::vector<std::string> Cleanup;
75static LTOCodeGenerator *CodeGen = nullptr;
76static StringSet<> CannotBeHidden;
Rafael Espindola6b244b12014-06-19 21:14:13 +000077static llvm::TargetOptions TargetOpts;
Nick Lewyckyfb643e42009-02-03 07:13:24 +000078
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) {
Peter Collingbourne1505c0a2014-07-03 23:28:03 +0000138 InitializeAllTargetInfos();
139 InitializeAllTargets();
140 InitializeAllTargetMCs();
141 InitializeAllAsmParsers();
142 InitializeAllAsmPrinters();
143
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000144 // We're given a pointer to the first transfer vector. We read through them
145 // until we find one where tv_tag == LDPT_NULL. The REGISTER_* tagged values
146 // contain pointers to functions that we need to call to register our own
147 // hooks. The others are addresses of functions we can use to call into gold
148 // for services.
149
150 bool registeredClaimFile = false;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000151 bool RegisteredAllSymbolsRead = false;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000152
153 for (; tv->tv_tag != LDPT_NULL; ++tv) {
154 switch (tv->tv_tag) {
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000155 case LDPT_OUTPUT_NAME:
156 output_name = tv->tv_u.tv_string;
157 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000158 case LDPT_LINKER_OUTPUT:
159 switch (tv->tv_u.tv_val) {
160 case LDPO_REL: // .o
161 case LDPO_DYN: // .so
Rafael Espindola76e376d2014-02-10 20:38:38 +0000162 case LDPO_PIE: // position independent executable
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000163 output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC;
164 break;
165 case LDPO_EXEC: // .exe
166 output_type = LTO_CODEGEN_PIC_MODEL_STATIC;
167 break;
168 default:
169 (*message)(LDPL_ERROR, "Unknown output file type %d",
170 tv->tv_u.tv_val);
171 return LDPS_ERR;
172 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000173 break;
174 case LDPT_OPTION:
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000175 options::process_plugin_option(tv->tv_u.tv_string);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000176 break;
177 case LDPT_REGISTER_CLAIM_FILE_HOOK: {
178 ld_plugin_register_claim_file callback;
179 callback = tv->tv_u.tv_register_claim_file;
180
181 if ((*callback)(claim_file_hook) != LDPS_OK)
182 return LDPS_ERR;
183
184 registeredClaimFile = true;
185 } break;
186 case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK: {
187 ld_plugin_register_all_symbols_read callback;
188 callback = tv->tv_u.tv_register_all_symbols_read;
189
190 if ((*callback)(all_symbols_read_hook) != LDPS_OK)
191 return LDPS_ERR;
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000192
Rafael Espindola6b244b12014-06-19 21:14:13 +0000193 RegisteredAllSymbolsRead = true;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000194 } break;
195 case LDPT_REGISTER_CLEANUP_HOOK: {
196 ld_plugin_register_cleanup callback;
197 callback = tv->tv_u.tv_register_cleanup;
198
199 if ((*callback)(cleanup_hook) != LDPS_OK)
200 return LDPS_ERR;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000201 } break;
202 case LDPT_ADD_SYMBOLS:
203 add_symbols = tv->tv_u.tv_add_symbols;
204 break;
Rafael Espindolacda29112013-10-03 18:29:09 +0000205 case LDPT_GET_SYMBOLS_V2:
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000206 get_symbols = tv->tv_u.tv_get_symbols;
207 break;
208 case LDPT_ADD_INPUT_FILE:
209 add_input_file = tv->tv_u.tv_add_input_file;
210 break;
Rafael Espindolaef498152010-06-23 20:20:59 +0000211 case LDPT_SET_EXTRA_LIBRARY_PATH:
212 set_extra_library_path = tv->tv_u.tv_set_extra_library_path;
213 break;
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000214 case LDPT_GET_VIEW:
215 get_view = tv->tv_u.tv_get_view;
216 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000217 case LDPT_MESSAGE:
218 message = tv->tv_u.tv_message;
219 break;
220 default:
221 break;
222 }
223 }
224
Rafael Espindolae08484d2009-02-18 08:30:15 +0000225 if (!registeredClaimFile) {
Rafael Espindola6add6182009-02-18 17:49:06 +0000226 (*message)(LDPL_ERROR, "register_claim_file not passed to LLVMgold.");
227 return LDPS_ERR;
228 }
Rafael Espindolae08484d2009-02-18 08:30:15 +0000229 if (!add_symbols) {
Rafael Espindola6add6182009-02-18 17:49:06 +0000230 (*message)(LDPL_ERROR, "add_symbols not passed to LLVMgold.");
231 return LDPS_ERR;
232 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000233
Rafael Espindolaa0d30a92014-06-19 22:20:07 +0000234 if (!RegisteredAllSymbolsRead)
235 return LDPS_OK;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000236
Rafael Espindolaa0d30a92014-06-19 22:20:07 +0000237 CodeGen = new LTOCodeGenerator();
Rafael Espindola6b244b12014-06-19 21:14:13 +0000238
Rafael Espindolac273aac2014-06-19 22:54:47 +0000239 // Pass through extra options to the code generator.
240 if (!options::extra.empty()) {
241 for (std::vector<std::string>::iterator it = options::extra.begin();
242 it != options::extra.end(); ++it) {
243 CodeGen->setCodeGenDebugOptions((*it).c_str());
244 }
245 }
246
247 CodeGen->parseCodeGenDebugOptions();
Tom Roederb5081192014-06-26 20:43:27 +0000248 if (MAttrs.size()) {
249 std::string Attrs;
250 for (unsigned I = 0; I < MAttrs.size(); ++I) {
251 if (I > 0)
252 Attrs.append(",");
253 Attrs.append(MAttrs[I]);
254 }
255 CodeGen->setAttr(Attrs.c_str());
256 }
257
Rafael Espindolac273aac2014-06-19 22:54:47 +0000258 TargetOpts = InitTargetOptionsFromCodeGenFlags();
259 CodeGen->setTargetOptions(TargetOpts);
260
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000261 return LDPS_OK;
262}
263
Rafael Espindolae54d8212014-07-06 14:31:22 +0000264/// Called by gold to see whether this file is one that our plugin can handle.
265/// We'll try to open it and register all the symbols with add_symbol if
266/// possible.
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000267static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
268 int *claimed) {
Ivan Krasin5021af52011-09-12 21:47:50 +0000269 const void *view;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000270 std::unique_ptr<MemoryBuffer> buffer;
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000271 if (get_view) {
Rafael Espindolaece7c9c2011-04-07 21:11:00 +0000272 if (get_view(file->handle, &view) != LDPS_OK) {
273 (*message)(LDPL_ERROR, "Failed to get a view of %s", file->name);
274 return LDPS_ERR;
275 }
Ivan Krasin5021af52011-09-12 21:47:50 +0000276 } else {
Ivan Krasin639222d2011-09-15 23:13:00 +0000277 int64_t offset = 0;
Nick Lewycky8691c472009-02-05 04:14:23 +0000278 // Gold has found what might be IR part-way inside of a file, such as
279 // an .a archive.
Ivan Krasin5021af52011-09-12 21:47:50 +0000280 if (file->offset) {
281 offset = file->offset;
282 }
Rafael Espindola4453e42942014-06-13 03:07:50 +0000283 if (std::error_code ec = MemoryBuffer::getOpenFileSlice(
Rafael Espindola3d2ac2e2013-07-23 20:25:01 +0000284 file->fd, file->name, buffer, file->filesize, offset)) {
Ivan Krasin5021af52011-09-12 21:47:50 +0000285 (*message)(LDPL_ERROR, ec.message().c_str());
286 return LDPS_ERR;
287 }
288 view = buffer->getBufferStart();
Rafael Espindola56e41f72011-02-08 22:40:47 +0000289 }
Ivan Krasin5021af52011-09-12 21:47:50 +0000290
Rafael Espindola6b244b12014-06-19 21:14:13 +0000291 if (!LTOModule::isBitcodeFile(view, file->filesize))
Ivan Krasin5021af52011-09-12 21:47:50 +0000292 return LDPS_OK;
293
Rafael Espindola6b244b12014-06-19 21:14:13 +0000294 std::string Error;
Rafael Espindolae54d8212014-07-06 14:31:22 +0000295 LTOModule *M =
296 LTOModule::createFromBuffer(view, file->filesize, TargetOpts, Error);
Ivan Krasind5f2d8c2011-09-09 00:14:04 +0000297 if (!M) {
Rafael Espindola6b244b12014-06-19 21:14:13 +0000298 (*message)(LDPL_ERROR,
299 "LLVM gold plugin has failed to create LTO module: %s",
300 Error.c_str());
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000301 return LDPS_OK;
Ivan Krasind5f2d8c2011-09-09 00:14:04 +0000302 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000303
304 *claimed = 1;
305 Modules.resize(Modules.size() + 1);
306 claimed_file &cf = Modules.back();
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000307
308 if (!options::triple.empty())
Rafael Espindola6b244b12014-06-19 21:14:13 +0000309 M->setTargetTriple(options::triple.c_str());
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000310
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000311 cf.handle = file->handle;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000312 unsigned sym_count = M->getSymbolCount();
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000313 cf.syms.reserve(sym_count);
314
315 for (unsigned i = 0; i != sym_count; ++i) {
Rafael Espindola6b244b12014-06-19 21:14:13 +0000316 lto_symbol_attributes attrs = M->getSymbolAttributes(i);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000317 if ((attrs & LTO_SYMBOL_SCOPE_MASK) == LTO_SYMBOL_SCOPE_INTERNAL)
318 continue;
319
320 cf.syms.push_back(ld_plugin_symbol());
321 ld_plugin_symbol &sym = cf.syms.back();
Rafael Espindolab201bfc2014-06-19 22:33:23 +0000322 sym.name = strdup(M->getSymbolName(i));
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000323 sym.version = NULL;
324
325 int scope = attrs & LTO_SYMBOL_SCOPE_MASK;
Rafael Espindola282a4702013-10-31 20:51:58 +0000326 bool CanBeHidden = scope == LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN;
327 if (!CanBeHidden)
328 CannotBeHidden.insert(sym.name);
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000329 switch (scope) {
330 case LTO_SYMBOL_SCOPE_HIDDEN:
331 sym.visibility = LDPV_HIDDEN;
332 break;
333 case LTO_SYMBOL_SCOPE_PROTECTED:
334 sym.visibility = LDPV_PROTECTED;
335 break;
336 case 0: // extern
337 case LTO_SYMBOL_SCOPE_DEFAULT:
Rafael Espindola282a4702013-10-31 20:51:58 +0000338 case LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN:
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000339 sym.visibility = LDPV_DEFAULT;
340 break;
341 default:
342 (*message)(LDPL_ERROR, "Unknown scope attribute: %d", scope);
343 return LDPS_ERR;
344 }
345
346 int definition = attrs & LTO_SYMBOL_DEFINITION_MASK;
Rafael Espindola70d80152011-02-14 22:23:49 +0000347 sym.comdat_key = NULL;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000348 switch (definition) {
349 case LTO_SYMBOL_DEFINITION_REGULAR:
350 sym.def = LDPK_DEF;
351 break;
352 case LTO_SYMBOL_DEFINITION_UNDEFINED:
353 sym.def = LDPK_UNDEF;
354 break;
355 case LTO_SYMBOL_DEFINITION_TENTATIVE:
356 sym.def = LDPK_COMMON;
357 break;
358 case LTO_SYMBOL_DEFINITION_WEAK:
Rafael Espindola70d80152011-02-14 22:23:49 +0000359 sym.comdat_key = sym.name;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000360 sym.def = LDPK_WEAKDEF;
361 break;
Rafael Espindola56548522009-04-24 16:55:21 +0000362 case LTO_SYMBOL_DEFINITION_WEAKUNDEF:
363 sym.def = LDPK_WEAKUNDEF;
364 break;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000365 default:
366 (*message)(LDPL_ERROR, "Unknown definition attribute: %d", definition);
367 return LDPS_ERR;
368 }
369
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000370 sym.size = 0;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000371
372 sym.resolution = LDPR_UNKNOWN;
373 }
374
375 cf.syms.reserve(cf.syms.size());
376
377 if (!cf.syms.empty()) {
378 if ((*add_symbols)(cf.handle, cf.syms.size(), &cf.syms[0]) != LDPS_OK) {
379 (*message)(LDPL_ERROR, "Unable to add symbols!");
380 return LDPS_ERR;
381 }
382 }
383
Rafael Espindola6b244b12014-06-19 21:14:13 +0000384 if (CodeGen) {
385 std::string Error;
386 if (!CodeGen->addModule(M, Error)) {
387 (*message)(LDPL_ERROR, "Error linking module: %s", Error.c_str());
Rafael Espindolad578b692013-10-18 19:32:06 +0000388 return LDPS_ERR;
389 }
390 }
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000391
Rafael Espindola6b244b12014-06-19 21:14:13 +0000392 delete M;
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000393
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000394 return LDPS_OK;
395}
396
Rafael Espindola282a4702013-10-31 20:51:58 +0000397static bool mustPreserve(const claimed_file &F, int i) {
398 if (F.syms[i].resolution == LDPR_PREVAILING_DEF)
399 return true;
400 if (F.syms[i].resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
401 return CannotBeHidden.count(F.syms[i].name);
402 return false;
403}
404
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000405/// all_symbols_read_hook - gold informs us that all symbols have been read.
406/// At this point, we use get_symbols to see if any of our definitions have
407/// been overridden by a native object file. Then, perform optimization and
408/// codegen.
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000409static ld_plugin_status all_symbols_read_hook(void) {
Nick Lewycky338d07e2009-02-22 22:15:44 +0000410 std::ofstream api_file;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000411 assert(CodeGen);
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000412
Viktor Kutuzovfd7ddd92009-10-28 18:55:55 +0000413 if (options::generate_api_file) {
Nick Lewycky338d07e2009-02-22 22:15:44 +0000414 api_file.open("apifile.txt", std::ofstream::out | std::ofstream::trunc);
415 if (!api_file.is_open()) {
416 (*message)(LDPL_FATAL, "Unable to open apifile.txt for writing.");
417 abort();
418 }
419 }
420
Rafael Espindola00121822010-06-03 14:45:44 +0000421 for (std::list<claimed_file>::iterator I = Modules.begin(),
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000422 E = Modules.end(); I != E; ++I) {
Nick Lewycky1fcd0f12011-07-26 08:40:36 +0000423 if (I->syms.empty())
424 continue;
Rafael Espindola00121822010-06-03 14:45:44 +0000425 (*get_symbols)(I->handle, I->syms.size(), &I->syms[0]);
426 for (unsigned i = 0, e = I->syms.size(); i != e; i++) {
Rafael Espindola282a4702013-10-31 20:51:58 +0000427 if (mustPreserve(*I, i)) {
Rafael Espindola6b244b12014-06-19 21:14:13 +0000428 CodeGen->addMustPreserveSymbol(I->syms[i].name);
Nick Lewycky338d07e2009-02-22 22:15:44 +0000429
Rafael Espindola00121822010-06-03 14:45:44 +0000430 if (options::generate_api_file)
431 api_file << I->syms[i].name << "\n";
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000432 }
433 }
Rafael Espindola77b6d012010-06-14 21:20:52 +0000434 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000435
Rafael Espindola77b6d012010-06-14 21:20:52 +0000436 if (options::generate_api_file)
437 api_file.close();
Nick Lewycky338d07e2009-02-22 22:15:44 +0000438
Rafael Espindola6b244b12014-06-19 21:14:13 +0000439 CodeGen->setCodePICModel(output_type);
440 CodeGen->setDebugInfo(LTO_DEBUG_MODEL_DWARF);
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000441 if (!options::mcpu.empty())
Rafael Espindola6b244b12014-06-19 21:14:13 +0000442 CodeGen->setCpu(options::mcpu.c_str());
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000443
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000444 if (options::generate_bc_file != options::BC_NO) {
445 std::string path;
446 if (options::generate_bc_file == options::BC_ONLY)
447 path = output_name;
448 else if (!options::bc_path.empty())
449 path = options::bc_path;
450 else
451 path = output_name + ".bc";
Rafael Espindola6b244b12014-06-19 21:14:13 +0000452 std::string Error;
453 if (!CodeGen->writeMergedModules(path.c_str(), Error))
Rafael Espindolaba3398b2010-05-13 13:39:31 +0000454 (*message)(LDPL_FATAL, "Failed to write the output file.");
Rafael Espindolafb7a0b82013-10-03 00:07:30 +0000455 if (options::generate_bc_file == options::BC_ONLY) {
Rafael Espindola6b244b12014-06-19 21:14:13 +0000456 delete CodeGen;
Rafael Espindola8fb957e2010-06-03 21:11:20 +0000457 exit(0);
Rafael Espindolafb7a0b82013-10-03 00:07:30 +0000458 }
Rafael Espindolaba3398b2010-05-13 13:39:31 +0000459 }
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000460
461 std::string ObjPath;
462 {
463 const char *Temp;
Rafael Espindola6b244b12014-06-19 21:14:13 +0000464 std::string Error;
465 if (!CodeGen->compile_to_file(&Temp, /*DisableOpt*/ false, /*DisableInline*/
466 false, /*DisableGVNLoadPRE*/ false, Error))
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000467 (*message)(LDPL_ERROR, "Could not produce a combined object file\n");
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000468 ObjPath = Temp;
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000469 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000470
Rafael Espindola6b244b12014-06-19 21:14:13 +0000471 delete CodeGen;
Rafael Espindola9ef90d52011-02-20 18:28:29 +0000472 for (std::list<claimed_file>::iterator I = Modules.begin(),
473 E = Modules.end(); I != E; ++I) {
474 for (unsigned i = 0; i != I->syms.size(); ++i) {
475 ld_plugin_symbol &sym = I->syms[i];
476 free(sym.name);
477 }
478 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000479
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000480 if ((*add_input_file)(ObjPath.c_str()) != LDPS_OK) {
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000481 (*message)(LDPL_ERROR, "Unable to add .o file to the link.");
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000482 (*message)(LDPL_ERROR, "File left behind in: %s", ObjPath.c_str());
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000483 return LDPS_ERR;
484 }
485
Rafael Espindolaef498152010-06-23 20:20:59 +0000486 if (!options::extra_library_path.empty() &&
487 set_extra_library_path(options::extra_library_path.c_str()) != LDPS_OK) {
488 (*message)(LDPL_ERROR, "Unable to set the extra library path.");
489 return LDPS_ERR;
490 }
491
Shuxin Yang1826ae22013-08-12 21:07:31 +0000492 if (options::obj_path.empty())
Rafael Espindola143fc3b2013-10-16 12:47:04 +0000493 Cleanup.push_back(ObjPath);
Shuxin Yang1826ae22013-08-12 21:07:31 +0000494
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000495 return LDPS_OK;
496}
497
Dan Gohmanebb4ae02010-04-16 00:42:57 +0000498static ld_plugin_status cleanup_hook(void) {
Rafael Espindola55ab87f2013-06-17 18:38:18 +0000499 for (int i = 0, e = Cleanup.size(); i != e; ++i) {
Rafael Espindola4453e42942014-06-13 03:07:50 +0000500 std::error_code EC = sys::fs::remove(Cleanup[i]);
Rafael Espindola55ab87f2013-06-17 18:38:18 +0000501 if (EC)
Shuxin Yang1826ae22013-08-12 21:07:31 +0000502 (*message)(LDPL_ERROR, "Failed to delete '%s': %s", Cleanup[i].c_str(),
Rafael Espindolad9a56082013-06-17 22:24:06 +0000503 EC.message().c_str());
Rafael Espindola55ab87f2013-06-17 18:38:18 +0000504 }
Nick Lewyckyfb643e42009-02-03 07:13:24 +0000505
506 return LDPS_OK;
507}