Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 1 | //===-- 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 Noblesmith | 9e5b178 | 2011-12-22 23:04:07 +0000 | [diff] [blame] | 15 | #include "llvm/Config/config.h" // plugin-api.h requires HAVE_STDINT_H |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseSet.h" |
Chandler Carruth | 07baed5 | 2014-01-13 08:04:33 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/StringSet.h" |
Chandler Carruth | 62d4215 | 2015-01-15 02:16:27 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/TargetLibraryInfo.h" |
NAKAMURA Takumi | b0a5283 | 2015-02-02 05:47:30 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/TargetTransformInfo.h" |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 20 | #include "llvm/Bitcode/ReaderWriter.h" |
| 21 | #include "llvm/CodeGen/Analysis.h" |
Rafael Espindola | 6b244b1 | 2014-06-19 21:14:13 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/CommandFlags.h" |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 23 | #include "llvm/IR/AutoUpgrade.h" |
Rafael Espindola | 890db27 | 2014-09-09 20:08:22 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Constants.h" |
Rafael Espindola | d0b23be | 2015-01-10 00:07:30 +0000 | [diff] [blame] | 25 | #include "llvm/IR/DiagnosticInfo.h" |
| 26 | #include "llvm/IR/DiagnosticPrinter.h" |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 27 | #include "llvm/IR/LLVMContext.h" |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 28 | #include "llvm/IR/LegacyPassManager.h" |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Module.h" |
| 30 | #include "llvm/IR/Verifier.h" |
| 31 | #include "llvm/Linker/Linker.h" |
| 32 | #include "llvm/MC/SubtargetFeature.h" |
| 33 | #include "llvm/Object/IRObjectFile.h" |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 34 | #include "llvm/Support/FormattedStream.h" |
| 35 | #include "llvm/Support/Host.h" |
Rafael Espindola | 947bdb6 | 2014-11-25 20:52:49 +0000 | [diff] [blame] | 36 | #include "llvm/Support/ManagedStatic.h" |
Chandler Carruth | 4d88a1c | 2012-12-04 10:44:52 +0000 | [diff] [blame] | 37 | #include "llvm/Support/MemoryBuffer.h" |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 38 | #include "llvm/Support/TargetRegistry.h" |
Rafael Espindola | 6b244b1 | 2014-06-19 21:14:13 +0000 | [diff] [blame] | 39 | #include "llvm/Support/TargetSelect.h" |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 40 | #include "llvm/Transforms/IPO.h" |
| 41 | #include "llvm/Transforms/IPO/PassManagerBuilder.h" |
| 42 | #include "llvm/Transforms/Utils/GlobalStatus.h" |
| 43 | #include "llvm/Transforms/Utils/ModuleUtils.h" |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 44 | #include "llvm/Transforms/Utils/ValueMapper.h" |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 45 | #include <list> |
Chandler Carruth | 07baed5 | 2014-01-13 08:04:33 +0000 | [diff] [blame] | 46 | #include <plugin-api.h> |
Rafael Espindola | a6e9c3e | 2014-06-12 17:38:55 +0000 | [diff] [blame] | 47 | #include <system_error> |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 48 | #include <vector> |
| 49 | |
Sylvestre Ledru | 5399979 | 2014-02-11 17:30:18 +0000 | [diff] [blame] | 50 | #ifndef LDPO_PIE |
| 51 | // FIXME: remove this declaration when we stop maintaining Ubuntu Quantal and |
| 52 | // Precise and Debian Wheezy (binutils 2.23 is required) |
| 53 | # define LDPO_PIE 3 |
| 54 | #endif |
| 55 | |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 56 | using namespace llvm; |
| 57 | |
| 58 | namespace { |
Rafael Espindola | bfb8b91 | 2014-06-20 01:37:35 +0000 | [diff] [blame] | 59 | struct claimed_file { |
| 60 | void *handle; |
| 61 | std::vector<ld_plugin_symbol> syms; |
| 62 | }; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 63 | } |
Rafael Espindola | bfb8b91 | 2014-06-20 01:37:35 +0000 | [diff] [blame] | 64 | |
| 65 | static ld_plugin_status discard_message(int level, const char *format, ...) { |
| 66 | // Die loudly. Recent versions of Gold pass ld_plugin_message as the first |
| 67 | // callback in the transfer vector. This should never be called. |
| 68 | abort(); |
| 69 | } |
| 70 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 71 | static ld_plugin_get_input_file get_input_file = nullptr; |
| 72 | static ld_plugin_release_input_file release_input_file = nullptr; |
Rafael Espindola | 176e664 | 2014-07-29 21:46:05 +0000 | [diff] [blame] | 73 | static ld_plugin_add_symbols add_symbols = nullptr; |
| 74 | static ld_plugin_get_symbols get_symbols = nullptr; |
| 75 | static ld_plugin_add_input_file add_input_file = nullptr; |
| 76 | static ld_plugin_set_extra_library_path set_extra_library_path = nullptr; |
| 77 | static ld_plugin_get_view get_view = nullptr; |
Rafael Espindola | bfb8b91 | 2014-06-20 01:37:35 +0000 | [diff] [blame] | 78 | static ld_plugin_message message = discard_message; |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 79 | static Reloc::Model RelocationModel = Reloc::Default; |
Rafael Espindola | bfb8b91 | 2014-06-20 01:37:35 +0000 | [diff] [blame] | 80 | static std::string output_name = ""; |
| 81 | static std::list<claimed_file> Modules; |
| 82 | static std::vector<std::string> Cleanup; |
Rafael Espindola | 6b244b1 | 2014-06-19 21:14:13 +0000 | [diff] [blame] | 83 | static llvm::TargetOptions TargetOpts; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 84 | |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 85 | namespace options { |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 86 | enum OutputType { |
| 87 | OT_NORMAL, |
| 88 | OT_DISABLE, |
| 89 | OT_BC_ONLY, |
| 90 | OT_SAVE_TEMPS |
| 91 | }; |
Dan Gohman | ebb4ae0 | 2010-04-16 00:42:57 +0000 | [diff] [blame] | 92 | static bool generate_api_file = false; |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 93 | static OutputType TheOutputType = OT_NORMAL; |
Shuxin Yang | 1826ae2 | 2013-08-12 21:07:31 +0000 | [diff] [blame] | 94 | static std::string obj_path; |
Rafael Espindola | ef49815 | 2010-06-23 20:20:59 +0000 | [diff] [blame] | 95 | static std::string extra_library_path; |
Rafael Espindola | 4ef89f5 | 2010-08-09 21:09:46 +0000 | [diff] [blame] | 96 | static std::string triple; |
Rafael Espindola | ccab1dd | 2010-08-11 00:15:13 +0000 | [diff] [blame] | 97 | static std::string mcpu; |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 98 | // Additional options to pass into the code generator. |
Nick Lewycky | 0ac5e22 | 2010-06-03 17:10:17 +0000 | [diff] [blame] | 99 | // Note: This array will contain all plugin options which are not claimed |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 100 | // as plugin exclusive to pass to the code generator. |
Nick Lewycky | 0ac5e22 | 2010-06-03 17:10:17 +0000 | [diff] [blame] | 101 | // For example, "generate-api-file" and "as"options are for the plugin |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 102 | // use only and will not be passed. |
Rafael Espindola | 125b924 | 2014-07-29 19:17:44 +0000 | [diff] [blame] | 103 | static std::vector<const char *> extra; |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 104 | |
Rafael Espindola | c4dca3a | 2010-06-07 16:45:22 +0000 | [diff] [blame] | 105 | static void process_plugin_option(const char* opt_) |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 106 | { |
Rafael Espindola | 176e664 | 2014-07-29 21:46:05 +0000 | [diff] [blame] | 107 | if (opt_ == nullptr) |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 108 | return; |
Rafael Espindola | c4dca3a | 2010-06-07 16:45:22 +0000 | [diff] [blame] | 109 | llvm::StringRef opt = opt_; |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 110 | |
Rafael Espindola | c4dca3a | 2010-06-07 16:45:22 +0000 | [diff] [blame] | 111 | if (opt == "generate-api-file") { |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 112 | generate_api_file = true; |
Rafael Espindola | ccab1dd | 2010-08-11 00:15:13 +0000 | [diff] [blame] | 113 | } else if (opt.startswith("mcpu=")) { |
| 114 | mcpu = opt.substr(strlen("mcpu=")); |
Rafael Espindola | ef49815 | 2010-06-23 20:20:59 +0000 | [diff] [blame] | 115 | } else if (opt.startswith("extra-library-path=")) { |
| 116 | extra_library_path = opt.substr(strlen("extra_library_path=")); |
Rafael Espindola | 148c328 | 2010-08-10 16:32:15 +0000 | [diff] [blame] | 117 | } else if (opt.startswith("mtriple=")) { |
Rafael Espindola | 4ef89f5 | 2010-08-09 21:09:46 +0000 | [diff] [blame] | 118 | triple = opt.substr(strlen("mtriple=")); |
Shuxin Yang | 1826ae2 | 2013-08-12 21:07:31 +0000 | [diff] [blame] | 119 | } else if (opt.startswith("obj-path=")) { |
| 120 | obj_path = opt.substr(strlen("obj-path=")); |
Rafael Espindola | c4dca3a | 2010-06-07 16:45:22 +0000 | [diff] [blame] | 121 | } else if (opt == "emit-llvm") { |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 122 | TheOutputType = OT_BC_ONLY; |
Rafael Espindola | 4a3b6cf | 2014-10-29 23:54:45 +0000 | [diff] [blame] | 123 | } else if (opt == "save-temps") { |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 124 | TheOutputType = OT_SAVE_TEMPS; |
| 125 | } else if (opt == "disable-output") { |
| 126 | TheOutputType = OT_DISABLE; |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 127 | } else { |
| 128 | // Save this option to pass to the code generator. |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 129 | // ParseCommandLineOptions() expects argv[0] to be program name. Lazily |
| 130 | // add that. |
| 131 | if (extra.empty()) |
| 132 | extra.push_back("LLVMgold"); |
| 133 | |
Rafael Espindola | 125b924 | 2014-07-29 19:17:44 +0000 | [diff] [blame] | 134 | extra.push_back(opt_); |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 135 | } |
| 136 | } |
| 137 | } |
| 138 | |
Dan Gohman | ebb4ae0 | 2010-04-16 00:42:57 +0000 | [diff] [blame] | 139 | static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file, |
| 140 | int *claimed); |
| 141 | static ld_plugin_status all_symbols_read_hook(void); |
| 142 | static ld_plugin_status cleanup_hook(void); |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 143 | |
| 144 | extern "C" ld_plugin_status onload(ld_plugin_tv *tv); |
| 145 | ld_plugin_status onload(ld_plugin_tv *tv) { |
Peter Collingbourne | 1505c0a | 2014-07-03 23:28:03 +0000 | [diff] [blame] | 146 | InitializeAllTargetInfos(); |
| 147 | InitializeAllTargets(); |
| 148 | InitializeAllTargetMCs(); |
| 149 | InitializeAllAsmParsers(); |
| 150 | InitializeAllAsmPrinters(); |
| 151 | |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 152 | // We're given a pointer to the first transfer vector. We read through them |
| 153 | // until we find one where tv_tag == LDPT_NULL. The REGISTER_* tagged values |
| 154 | // contain pointers to functions that we need to call to register our own |
| 155 | // hooks. The others are addresses of functions we can use to call into gold |
| 156 | // for services. |
| 157 | |
| 158 | bool registeredClaimFile = false; |
Rafael Espindola | 6b244b1 | 2014-06-19 21:14:13 +0000 | [diff] [blame] | 159 | bool RegisteredAllSymbolsRead = false; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 160 | |
| 161 | for (; tv->tv_tag != LDPT_NULL; ++tv) { |
| 162 | switch (tv->tv_tag) { |
Rafael Espindola | 8fb957e | 2010-06-03 21:11:20 +0000 | [diff] [blame] | 163 | case LDPT_OUTPUT_NAME: |
| 164 | output_name = tv->tv_u.tv_string; |
| 165 | break; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 166 | case LDPT_LINKER_OUTPUT: |
| 167 | switch (tv->tv_u.tv_val) { |
| 168 | case LDPO_REL: // .o |
| 169 | case LDPO_DYN: // .so |
Rafael Espindola | 76e376d | 2014-02-10 20:38:38 +0000 | [diff] [blame] | 170 | case LDPO_PIE: // position independent executable |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 171 | RelocationModel = Reloc::PIC_; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 172 | break; |
| 173 | case LDPO_EXEC: // .exe |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 174 | RelocationModel = Reloc::Static; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 175 | break; |
| 176 | default: |
Rafael Espindola | 5ad21fa | 2014-07-30 00:38:58 +0000 | [diff] [blame] | 177 | message(LDPL_ERROR, "Unknown output file type %d", tv->tv_u.tv_val); |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 178 | return LDPS_ERR; |
| 179 | } |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 180 | break; |
| 181 | case LDPT_OPTION: |
Viktor Kutuzov | fd7ddd9 | 2009-10-28 18:55:55 +0000 | [diff] [blame] | 182 | options::process_plugin_option(tv->tv_u.tv_string); |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 183 | break; |
| 184 | case LDPT_REGISTER_CLAIM_FILE_HOOK: { |
| 185 | ld_plugin_register_claim_file callback; |
| 186 | callback = tv->tv_u.tv_register_claim_file; |
| 187 | |
Rafael Espindola | 54f82b7 | 2014-07-30 01:36:32 +0000 | [diff] [blame] | 188 | if (callback(claim_file_hook) != LDPS_OK) |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 189 | return LDPS_ERR; |
| 190 | |
| 191 | registeredClaimFile = true; |
| 192 | } break; |
| 193 | case LDPT_REGISTER_ALL_SYMBOLS_READ_HOOK: { |
| 194 | ld_plugin_register_all_symbols_read callback; |
| 195 | callback = tv->tv_u.tv_register_all_symbols_read; |
| 196 | |
Rafael Espindola | 54f82b7 | 2014-07-30 01:36:32 +0000 | [diff] [blame] | 197 | if (callback(all_symbols_read_hook) != LDPS_OK) |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 198 | return LDPS_ERR; |
Rafael Espindola | 9ef90d5 | 2011-02-20 18:28:29 +0000 | [diff] [blame] | 199 | |
Rafael Espindola | 6b244b1 | 2014-06-19 21:14:13 +0000 | [diff] [blame] | 200 | RegisteredAllSymbolsRead = true; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 201 | } break; |
| 202 | case LDPT_REGISTER_CLEANUP_HOOK: { |
| 203 | ld_plugin_register_cleanup callback; |
| 204 | callback = tv->tv_u.tv_register_cleanup; |
| 205 | |
Rafael Espindola | 54f82b7 | 2014-07-30 01:36:32 +0000 | [diff] [blame] | 206 | if (callback(cleanup_hook) != LDPS_OK) |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 207 | return LDPS_ERR; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 208 | } break; |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 209 | case LDPT_GET_INPUT_FILE: |
| 210 | get_input_file = tv->tv_u.tv_get_input_file; |
| 211 | break; |
| 212 | case LDPT_RELEASE_INPUT_FILE: |
| 213 | release_input_file = tv->tv_u.tv_release_input_file; |
| 214 | break; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 215 | case LDPT_ADD_SYMBOLS: |
| 216 | add_symbols = tv->tv_u.tv_add_symbols; |
| 217 | break; |
Rafael Espindola | cda2911 | 2013-10-03 18:29:09 +0000 | [diff] [blame] | 218 | case LDPT_GET_SYMBOLS_V2: |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 219 | get_symbols = tv->tv_u.tv_get_symbols; |
| 220 | break; |
| 221 | case LDPT_ADD_INPUT_FILE: |
| 222 | add_input_file = tv->tv_u.tv_add_input_file; |
| 223 | break; |
Rafael Espindola | ef49815 | 2010-06-23 20:20:59 +0000 | [diff] [blame] | 224 | case LDPT_SET_EXTRA_LIBRARY_PATH: |
| 225 | set_extra_library_path = tv->tv_u.tv_set_extra_library_path; |
| 226 | break; |
Rafael Espindola | ece7c9c | 2011-04-07 21:11:00 +0000 | [diff] [blame] | 227 | case LDPT_GET_VIEW: |
| 228 | get_view = tv->tv_u.tv_get_view; |
| 229 | break; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 230 | case LDPT_MESSAGE: |
| 231 | message = tv->tv_u.tv_message; |
| 232 | break; |
| 233 | default: |
| 234 | break; |
| 235 | } |
| 236 | } |
| 237 | |
Rafael Espindola | e08484d | 2009-02-18 08:30:15 +0000 | [diff] [blame] | 238 | if (!registeredClaimFile) { |
Rafael Espindola | 5ad21fa | 2014-07-30 00:38:58 +0000 | [diff] [blame] | 239 | message(LDPL_ERROR, "register_claim_file not passed to LLVMgold."); |
Rafael Espindola | 6add618 | 2009-02-18 17:49:06 +0000 | [diff] [blame] | 240 | return LDPS_ERR; |
| 241 | } |
Rafael Espindola | e08484d | 2009-02-18 08:30:15 +0000 | [diff] [blame] | 242 | if (!add_symbols) { |
Rafael Espindola | 5ad21fa | 2014-07-30 00:38:58 +0000 | [diff] [blame] | 243 | message(LDPL_ERROR, "add_symbols not passed to LLVMgold."); |
Rafael Espindola | 6add618 | 2009-02-18 17:49:06 +0000 | [diff] [blame] | 244 | return LDPS_ERR; |
| 245 | } |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 246 | |
Rafael Espindola | a0d30a9 | 2014-06-19 22:20:07 +0000 | [diff] [blame] | 247 | if (!RegisteredAllSymbolsRead) |
| 248 | return LDPS_OK; |
Rafael Espindola | 6b244b1 | 2014-06-19 21:14:13 +0000 | [diff] [blame] | 249 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 250 | if (!get_input_file) { |
| 251 | message(LDPL_ERROR, "get_input_file not passed to LLVMgold."); |
| 252 | return LDPS_ERR; |
Rafael Espindola | c273aac | 2014-06-19 22:54:47 +0000 | [diff] [blame] | 253 | } |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 254 | if (!release_input_file) { |
| 255 | message(LDPL_ERROR, "relesase_input_file not passed to LLVMgold."); |
| 256 | return LDPS_ERR; |
Tom Roeder | b508119 | 2014-06-26 20:43:27 +0000 | [diff] [blame] | 257 | } |
| 258 | |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 259 | return LDPS_OK; |
| 260 | } |
| 261 | |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 262 | static const GlobalObject *getBaseObject(const GlobalValue &GV) { |
| 263 | if (auto *GA = dyn_cast<GlobalAlias>(&GV)) |
| 264 | return GA->getBaseObject(); |
| 265 | return cast<GlobalObject>(&GV); |
| 266 | } |
| 267 | |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 268 | static bool shouldSkip(uint32_t Symflags) { |
| 269 | if (!(Symflags & object::BasicSymbolRef::SF_Global)) |
| 270 | return true; |
| 271 | if (Symflags & object::BasicSymbolRef::SF_FormatSpecific) |
| 272 | return true; |
| 273 | return false; |
| 274 | } |
| 275 | |
Rafael Espindola | d0b23be | 2015-01-10 00:07:30 +0000 | [diff] [blame] | 276 | static void diagnosticHandler(const DiagnosticInfo &DI, void *Context) { |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 277 | if (const auto *BDI = dyn_cast<BitcodeDiagnosticInfo>(&DI)) { |
| 278 | std::error_code EC = BDI->getError(); |
| 279 | if (EC == BitcodeError::InvalidBitcodeSignature) |
| 280 | return; |
| 281 | } |
Rafael Espindola | d0b23be | 2015-01-10 00:07:30 +0000 | [diff] [blame] | 282 | |
| 283 | std::string ErrStorage; |
| 284 | { |
| 285 | raw_string_ostream OS(ErrStorage); |
| 286 | DiagnosticPrinterRawOStream DP(OS); |
| 287 | DI.print(DP); |
| 288 | } |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 289 | ld_plugin_level Level; |
| 290 | switch (DI.getSeverity()) { |
| 291 | case DS_Error: |
| 292 | message(LDPL_FATAL, "LLVM gold plugin has failed to create LTO module: %s", |
| 293 | ErrStorage.c_str()); |
| 294 | llvm_unreachable("Fatal doesn't return."); |
| 295 | case DS_Warning: |
| 296 | Level = LDPL_WARNING; |
| 297 | break; |
| 298 | case DS_Note: |
Rafael Espindola | f3f1854 | 2015-03-04 18:51:45 +0000 | [diff] [blame] | 299 | case DS_Remark: |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 300 | Level = LDPL_INFO; |
| 301 | break; |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 302 | } |
| 303 | message(Level, "LLVM gold plugin: %s", ErrStorage.c_str()); |
Rafael Espindola | d0b23be | 2015-01-10 00:07:30 +0000 | [diff] [blame] | 304 | } |
| 305 | |
Rafael Espindola | e54d821 | 2014-07-06 14:31:22 +0000 | [diff] [blame] | 306 | /// Called by gold to see whether this file is one that our plugin can handle. |
| 307 | /// We'll try to open it and register all the symbols with add_symbol if |
| 308 | /// possible. |
Dan Gohman | ebb4ae0 | 2010-04-16 00:42:57 +0000 | [diff] [blame] | 309 | static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file, |
| 310 | int *claimed) { |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 311 | LLVMContext Context; |
Rafael Espindola | eeec8e6 | 2014-08-27 20:25:55 +0000 | [diff] [blame] | 312 | MemoryBufferRef BufferRef; |
| 313 | std::unique_ptr<MemoryBuffer> Buffer; |
Rafael Espindola | ece7c9c | 2011-04-07 21:11:00 +0000 | [diff] [blame] | 314 | if (get_view) { |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 315 | const void *view; |
Rafael Espindola | ece7c9c | 2011-04-07 21:11:00 +0000 | [diff] [blame] | 316 | if (get_view(file->handle, &view) != LDPS_OK) { |
Rafael Espindola | 5ad21fa | 2014-07-30 00:38:58 +0000 | [diff] [blame] | 317 | message(LDPL_ERROR, "Failed to get a view of %s", file->name); |
Rafael Espindola | ece7c9c | 2011-04-07 21:11:00 +0000 | [diff] [blame] | 318 | return LDPS_ERR; |
| 319 | } |
Rafael Espindola | b0fc4cf | 2014-10-22 02:23:31 +0000 | [diff] [blame] | 320 | BufferRef = MemoryBufferRef(StringRef((const char *)view, file->filesize), ""); |
Ivan Krasin | 5021af5 | 2011-09-12 21:47:50 +0000 | [diff] [blame] | 321 | } else { |
Ivan Krasin | 639222d | 2011-09-15 23:13:00 +0000 | [diff] [blame] | 322 | int64_t offset = 0; |
Nick Lewycky | 8691c47 | 2009-02-05 04:14:23 +0000 | [diff] [blame] | 323 | // Gold has found what might be IR part-way inside of a file, such as |
| 324 | // an .a archive. |
Ivan Krasin | 5021af5 | 2011-09-12 21:47:50 +0000 | [diff] [blame] | 325 | if (file->offset) { |
| 326 | offset = file->offset; |
| 327 | } |
Rafael Espindola | adf21f2 | 2014-07-06 17:43:13 +0000 | [diff] [blame] | 328 | ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr = |
| 329 | MemoryBuffer::getOpenFileSlice(file->fd, file->name, file->filesize, |
| 330 | offset); |
| 331 | if (std::error_code EC = BufferOrErr.getError()) { |
Rafael Espindola | 5ad21fa | 2014-07-30 00:38:58 +0000 | [diff] [blame] | 332 | message(LDPL_ERROR, EC.message().c_str()); |
Ivan Krasin | 5021af5 | 2011-09-12 21:47:50 +0000 | [diff] [blame] | 333 | return LDPS_ERR; |
| 334 | } |
Rafael Espindola | eeec8e6 | 2014-08-27 20:25:55 +0000 | [diff] [blame] | 335 | Buffer = std::move(BufferOrErr.get()); |
| 336 | BufferRef = Buffer->getMemBufferRef(); |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 337 | } |
Ivan Krasin | 5021af5 | 2011-09-12 21:47:50 +0000 | [diff] [blame] | 338 | |
Rafael Espindola | d0b23be | 2015-01-10 00:07:30 +0000 | [diff] [blame] | 339 | Context.setDiagnosticHandler(diagnosticHandler); |
David Blaikie | 10a27df | 2014-09-03 17:59:23 +0000 | [diff] [blame] | 340 | ErrorOr<std::unique_ptr<object::IRObjectFile>> ObjOrErr = |
Rafael Espindola | 5dec7ea | 2014-12-09 20:36:13 +0000 | [diff] [blame] | 341 | object::IRObjectFile::create(BufferRef, Context); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 342 | std::error_code EC = ObjOrErr.getError(); |
Rafael Espindola | d0b23be | 2015-01-10 00:07:30 +0000 | [diff] [blame] | 343 | if (EC == object::object_error::invalid_file_type || |
Peter Collingbourne | 10039c0 | 2014-09-18 21:28:49 +0000 | [diff] [blame] | 344 | EC == object::object_error::bitcode_section_not_found) |
Ivan Krasin | 5021af5 | 2011-09-12 21:47:50 +0000 | [diff] [blame] | 345 | return LDPS_OK; |
| 346 | |
Rafael Espindola | 6c472e5 | 2014-07-29 20:46:19 +0000 | [diff] [blame] | 347 | *claimed = 1; |
| 348 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 349 | if (EC) { |
Rafael Espindola | 5ad21fa | 2014-07-30 00:38:58 +0000 | [diff] [blame] | 350 | message(LDPL_ERROR, "LLVM gold plugin has failed to create LTO module: %s", |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 351 | EC.message().c_str()); |
Rafael Espindola | 6c472e5 | 2014-07-29 20:46:19 +0000 | [diff] [blame] | 352 | return LDPS_ERR; |
Ivan Krasin | d5f2d8c | 2011-09-09 00:14:04 +0000 | [diff] [blame] | 353 | } |
David Blaikie | 10a27df | 2014-09-03 17:59:23 +0000 | [diff] [blame] | 354 | std::unique_ptr<object::IRObjectFile> Obj = std::move(*ObjOrErr); |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 355 | |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 356 | Modules.resize(Modules.size() + 1); |
| 357 | claimed_file &cf = Modules.back(); |
Rafael Espindola | 4ef89f5 | 2010-08-09 21:09:46 +0000 | [diff] [blame] | 358 | |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 359 | cf.handle = file->handle; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 360 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 361 | for (auto &Sym : Obj->symbols()) { |
| 362 | uint32_t Symflags = Sym.getFlags(); |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 363 | if (shouldSkip(Symflags)) |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 364 | continue; |
| 365 | |
| 366 | cf.syms.push_back(ld_plugin_symbol()); |
| 367 | ld_plugin_symbol &sym = cf.syms.back(); |
Rafael Espindola | 176e664 | 2014-07-29 21:46:05 +0000 | [diff] [blame] | 368 | sym.version = nullptr; |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 369 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 370 | SmallString<64> Name; |
| 371 | { |
| 372 | raw_svector_ostream OS(Name); |
| 373 | Sym.printName(OS); |
| 374 | } |
| 375 | sym.name = strdup(Name.c_str()); |
| 376 | |
| 377 | const GlobalValue *GV = Obj->getSymbolGV(Sym.getRawDataRefImpl()); |
| 378 | |
| 379 | sym.visibility = LDPV_DEFAULT; |
| 380 | if (GV) { |
| 381 | switch (GV->getVisibility()) { |
| 382 | case GlobalValue::DefaultVisibility: |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 383 | sym.visibility = LDPV_DEFAULT; |
| 384 | break; |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 385 | case GlobalValue::HiddenVisibility: |
| 386 | sym.visibility = LDPV_HIDDEN; |
| 387 | break; |
| 388 | case GlobalValue::ProtectedVisibility: |
| 389 | sym.visibility = LDPV_PROTECTED; |
| 390 | break; |
| 391 | } |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 394 | if (Symflags & object::BasicSymbolRef::SF_Undefined) { |
| 395 | sym.def = LDPK_UNDEF; |
| 396 | if (GV && GV->hasExternalWeakLinkage()) |
Rafael Espindola | 5654852 | 2009-04-24 16:55:21 +0000 | [diff] [blame] | 397 | sym.def = LDPK_WEAKUNDEF; |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 398 | } else { |
| 399 | sym.def = LDPK_DEF; |
| 400 | if (GV) { |
| 401 | assert(!GV->hasExternalWeakLinkage() && |
| 402 | !GV->hasAvailableExternallyLinkage() && "Not a declaration!"); |
| 403 | if (GV->hasCommonLinkage()) |
| 404 | sym.def = LDPK_COMMON; |
| 405 | else if (GV->isWeakForLinker()) |
| 406 | sym.def = LDPK_WEAKDEF; |
| 407 | } |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 408 | } |
| 409 | |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 410 | sym.size = 0; |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 411 | sym.comdat_key = nullptr; |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 412 | if (GV) { |
| 413 | const GlobalObject *Base = getBaseObject(*GV); |
| 414 | if (!Base) |
| 415 | message(LDPL_FATAL, "Unable to determine comdat of alias!"); |
| 416 | const Comdat *C = Base->getComdat(); |
| 417 | if (C) |
| 418 | sym.comdat_key = strdup(C->getName().str().c_str()); |
| 419 | else if (Base->hasWeakLinkage() || Base->hasLinkOnceLinkage()) |
| 420 | sym.comdat_key = strdup(sym.name); |
| 421 | } |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 422 | |
| 423 | sym.resolution = LDPR_UNKNOWN; |
| 424 | } |
| 425 | |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 426 | if (!cf.syms.empty()) { |
Rafael Espindola | 5ad21fa | 2014-07-30 00:38:58 +0000 | [diff] [blame] | 427 | if (add_symbols(cf.handle, cf.syms.size(), &cf.syms[0]) != LDPS_OK) { |
| 428 | message(LDPL_ERROR, "Unable to add symbols!"); |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 429 | return LDPS_ERR; |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | return LDPS_OK; |
| 434 | } |
| 435 | |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 436 | static void keepGlobalValue(GlobalValue &GV, |
| 437 | std::vector<GlobalAlias *> &KeptAliases) { |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 438 | assert(!GV.hasLocalLinkage()); |
| 439 | |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 440 | if (auto *GA = dyn_cast<GlobalAlias>(&GV)) |
| 441 | KeptAliases.push_back(GA); |
| 442 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 443 | switch (GV.getLinkage()) { |
| 444 | default: |
| 445 | break; |
| 446 | case GlobalValue::LinkOnceAnyLinkage: |
| 447 | GV.setLinkage(GlobalValue::WeakAnyLinkage); |
| 448 | break; |
| 449 | case GlobalValue::LinkOnceODRLinkage: |
| 450 | GV.setLinkage(GlobalValue::WeakODRLinkage); |
| 451 | break; |
| 452 | } |
| 453 | |
| 454 | assert(!GV.isDiscardableIfUnused()); |
| 455 | } |
| 456 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 457 | static void internalize(GlobalValue &GV) { |
Rafael Espindola | d4bcefc | 2014-10-24 18:13:04 +0000 | [diff] [blame] | 458 | if (GV.isDeclarationForLinker()) |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 459 | return; // We get here if there is a matching asm definition. |
| 460 | if (!GV.hasLocalLinkage()) |
| 461 | GV.setLinkage(GlobalValue::InternalLinkage); |
| 462 | } |
| 463 | |
| 464 | static void drop(GlobalValue &GV) { |
| 465 | if (auto *F = dyn_cast<Function>(&GV)) { |
| 466 | F->deleteBody(); |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 467 | F->setComdat(nullptr); // Should deleteBody do this? |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 468 | return; |
| 469 | } |
| 470 | |
| 471 | if (auto *Var = dyn_cast<GlobalVariable>(&GV)) { |
| 472 | Var->setInitializer(nullptr); |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 473 | Var->setLinkage( |
| 474 | GlobalValue::ExternalLinkage); // Should setInitializer do this? |
| 475 | Var->setComdat(nullptr); // and this? |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 476 | return; |
| 477 | } |
| 478 | |
| 479 | auto &Alias = cast<GlobalAlias>(GV); |
| 480 | Module &M = *Alias.getParent(); |
| 481 | PointerType &Ty = *cast<PointerType>(Alias.getType()); |
| 482 | GlobalValue::LinkageTypes L = Alias.getLinkage(); |
| 483 | auto *Var = |
| 484 | new GlobalVariable(M, Ty.getElementType(), /*isConstant*/ false, L, |
| 485 | /*Initializer*/ nullptr); |
| 486 | Var->takeName(&Alias); |
| 487 | Alias.replaceAllUsesWith(Var); |
Rafael Espindola | 71143ed | 2014-09-10 19:39:41 +0000 | [diff] [blame] | 488 | Alias.eraseFromParent(); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | static const char *getResolutionName(ld_plugin_symbol_resolution R) { |
| 492 | switch (R) { |
| 493 | case LDPR_UNKNOWN: |
| 494 | return "UNKNOWN"; |
| 495 | case LDPR_UNDEF: |
| 496 | return "UNDEF"; |
| 497 | case LDPR_PREVAILING_DEF: |
| 498 | return "PREVAILING_DEF"; |
| 499 | case LDPR_PREVAILING_DEF_IRONLY: |
| 500 | return "PREVAILING_DEF_IRONLY"; |
| 501 | case LDPR_PREEMPTED_REG: |
| 502 | return "PREEMPTED_REG"; |
| 503 | case LDPR_PREEMPTED_IR: |
| 504 | return "PREEMPTED_IR"; |
| 505 | case LDPR_RESOLVED_IR: |
| 506 | return "RESOLVED_IR"; |
| 507 | case LDPR_RESOLVED_EXEC: |
| 508 | return "RESOLVED_EXEC"; |
| 509 | case LDPR_RESOLVED_DYN: |
| 510 | return "RESOLVED_DYN"; |
| 511 | case LDPR_PREVAILING_DEF_IRONLY_EXP: |
| 512 | return "PREVAILING_DEF_IRONLY_EXP"; |
| 513 | } |
Rafael Espindola | 2754dbb | 2014-10-10 00:48:13 +0000 | [diff] [blame] | 514 | llvm_unreachable("Unknown resolution"); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 517 | namespace { |
| 518 | class LocalValueMaterializer : public ValueMaterializer { |
| 519 | DenseSet<GlobalValue *> &Dropped; |
Rafael Espindola | 4d47f7f | 2014-12-10 00:09:35 +0000 | [diff] [blame] | 520 | DenseMap<GlobalObject *, GlobalObject *> LocalVersions; |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 521 | |
| 522 | public: |
| 523 | LocalValueMaterializer(DenseSet<GlobalValue *> &Dropped) : Dropped(Dropped) {} |
| 524 | Value *materializeValueFor(Value *V) override; |
| 525 | }; |
| 526 | } |
| 527 | |
| 528 | Value *LocalValueMaterializer::materializeValueFor(Value *V) { |
Rafael Espindola | 4d47f7f | 2014-12-10 00:09:35 +0000 | [diff] [blame] | 529 | auto *GO = dyn_cast<GlobalObject>(V); |
| 530 | if (!GO) |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 531 | return nullptr; |
Rafael Espindola | 4d47f7f | 2014-12-10 00:09:35 +0000 | [diff] [blame] | 532 | |
| 533 | auto I = LocalVersions.find(GO); |
| 534 | if (I != LocalVersions.end()) |
| 535 | return I->second; |
| 536 | |
| 537 | if (!Dropped.count(GO)) |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 538 | return nullptr; |
Rafael Espindola | 4d47f7f | 2014-12-10 00:09:35 +0000 | [diff] [blame] | 539 | |
| 540 | Module &M = *GO->getParent(); |
| 541 | GlobalValue::LinkageTypes L = GO->getLinkage(); |
| 542 | GlobalObject *Declaration; |
| 543 | if (auto *F = dyn_cast<Function>(GO)) { |
| 544 | Declaration = Function::Create(F->getFunctionType(), L, "", &M); |
| 545 | } else { |
| 546 | auto *Var = cast<GlobalVariable>(GO); |
| 547 | Declaration = new GlobalVariable(M, Var->getType()->getElementType(), |
| 548 | Var->isConstant(), L, |
| 549 | /*Initializer*/ nullptr); |
| 550 | } |
| 551 | Declaration->takeName(GO); |
| 552 | Declaration->copyAttributesFrom(GO); |
| 553 | |
| 554 | GO->setLinkage(GlobalValue::InternalLinkage); |
| 555 | GO->setName(Declaration->getName()); |
| 556 | Dropped.erase(GO); |
| 557 | GO->replaceAllUsesWith(Declaration); |
| 558 | |
| 559 | LocalVersions[Declaration] = GO; |
| 560 | |
| 561 | return GO; |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | static Constant *mapConstantToLocalCopy(Constant *C, ValueToValueMapTy &VM, |
| 565 | LocalValueMaterializer *Materializer) { |
| 566 | return MapValue(C, VM, RF_IgnoreMissingEntries, nullptr, Materializer); |
| 567 | } |
| 568 | |
Rafael Espindola | 538c9a8 | 2014-12-23 18:18:37 +0000 | [diff] [blame] | 569 | static void freeSymName(ld_plugin_symbol &Sym) { |
| 570 | free(Sym.name); |
| 571 | free(Sym.comdat_key); |
| 572 | Sym.name = nullptr; |
| 573 | Sym.comdat_key = nullptr; |
| 574 | } |
| 575 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 576 | static std::unique_ptr<Module> |
Jan Wen Voung | c11b45a | 2015-02-11 16:12:50 +0000 | [diff] [blame] | 577 | getModuleForFile(LLVMContext &Context, claimed_file &F, |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 578 | ld_plugin_input_file &Info, raw_fd_ostream *ApiFile, |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 579 | StringSet<> &Internalize, StringSet<> &Maybe) { |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 580 | |
| 581 | if (get_symbols(F.handle, F.syms.size(), &F.syms[0]) != LDPS_OK) |
| 582 | message(LDPL_FATAL, "Failed to get symbol information"); |
| 583 | |
| 584 | const void *View; |
| 585 | if (get_view(F.handle, &View) != LDPS_OK) |
| 586 | message(LDPL_FATAL, "Failed to get a view of file"); |
| 587 | |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 588 | MemoryBufferRef BufferRef(StringRef((const char *)View, Info.filesize), |
| 589 | Info.name); |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 590 | ErrorOr<std::unique_ptr<object::IRObjectFile>> ObjOrErr = |
Rafael Espindola | 5dec7ea | 2014-12-09 20:36:13 +0000 | [diff] [blame] | 591 | object::IRObjectFile::create(BufferRef, Context); |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 592 | |
| 593 | if (std::error_code EC = ObjOrErr.getError()) |
Peter Collingbourne | 10039c0 | 2014-09-18 21:28:49 +0000 | [diff] [blame] | 594 | message(LDPL_FATAL, "Could not read bitcode from file : %s", |
| 595 | EC.message().c_str()); |
| 596 | |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 597 | object::IRObjectFile &Obj = **ObjOrErr; |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 598 | |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 599 | Module &M = Obj.getModule(); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 600 | |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 601 | UpgradeDebugInfo(M); |
| 602 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 603 | SmallPtrSet<GlobalValue *, 8> Used; |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 604 | collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 605 | |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 606 | DenseSet<GlobalValue *> Drop; |
| 607 | std::vector<GlobalAlias *> KeptAliases; |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 608 | |
| 609 | unsigned SymNum = 0; |
| 610 | for (auto &ObjSym : Obj.symbols()) { |
| 611 | if (shouldSkip(ObjSym.getFlags())) |
| 612 | continue; |
| 613 | ld_plugin_symbol &Sym = F.syms[SymNum]; |
| 614 | ++SymNum; |
| 615 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 616 | ld_plugin_symbol_resolution Resolution = |
| 617 | (ld_plugin_symbol_resolution)Sym.resolution; |
| 618 | |
| 619 | if (options::generate_api_file) |
| 620 | *ApiFile << Sym.name << ' ' << getResolutionName(Resolution) << '\n'; |
| 621 | |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 622 | GlobalValue *GV = Obj.getSymbolGV(ObjSym.getRawDataRefImpl()); |
Rafael Espindola | 538c9a8 | 2014-12-23 18:18:37 +0000 | [diff] [blame] | 623 | if (!GV) { |
| 624 | freeSymName(Sym); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 625 | continue; // Asm symbol. |
Rafael Espindola | 538c9a8 | 2014-12-23 18:18:37 +0000 | [diff] [blame] | 626 | } |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 627 | |
Rafael Espindola | 51bd8ee | 2014-09-17 20:41:13 +0000 | [diff] [blame] | 628 | if (Resolution != LDPR_PREVAILING_DEF_IRONLY && GV->hasCommonLinkage()) { |
Rafael Espindola | 890db27 | 2014-09-09 20:08:22 +0000 | [diff] [blame] | 629 | // Common linkage is special. There is no single symbol that wins the |
| 630 | // resolution. Instead we have to collect the maximum alignment and size. |
| 631 | // The IR linker does that for us if we just pass it every common GV. |
Rafael Espindola | 51bd8ee | 2014-09-17 20:41:13 +0000 | [diff] [blame] | 632 | // We still have to keep track of LDPR_PREVAILING_DEF_IRONLY so we |
| 633 | // internalize once the IR linker has done its job. |
Rafael Espindola | 538c9a8 | 2014-12-23 18:18:37 +0000 | [diff] [blame] | 634 | freeSymName(Sym); |
Rafael Espindola | 890db27 | 2014-09-09 20:08:22 +0000 | [diff] [blame] | 635 | continue; |
| 636 | } |
| 637 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 638 | switch (Resolution) { |
| 639 | case LDPR_UNKNOWN: |
| 640 | llvm_unreachable("Unexpected resolution"); |
| 641 | |
| 642 | case LDPR_RESOLVED_IR: |
| 643 | case LDPR_RESOLVED_EXEC: |
| 644 | case LDPR_RESOLVED_DYN: |
Rafael Espindola | d4bcefc | 2014-10-24 18:13:04 +0000 | [diff] [blame] | 645 | assert(GV->isDeclarationForLinker()); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 646 | break; |
| 647 | |
Rafael Espindola | 5ca7fa1 | 2015-01-14 13:53:50 +0000 | [diff] [blame] | 648 | case LDPR_UNDEF: |
Rafael Espindola | 9e3e53f | 2015-01-14 20:08:46 +0000 | [diff] [blame] | 649 | if (!GV->isDeclarationForLinker()) { |
Rafael Espindola | 0fd9e5f | 2015-01-14 19:43:32 +0000 | [diff] [blame] | 650 | assert(GV->hasComdat()); |
| 651 | Drop.insert(GV); |
| 652 | } |
Rafael Espindola | 5ca7fa1 | 2015-01-14 13:53:50 +0000 | [diff] [blame] | 653 | break; |
| 654 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 655 | case LDPR_PREVAILING_DEF_IRONLY: { |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 656 | keepGlobalValue(*GV, KeptAliases); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 657 | if (!Used.count(GV)) { |
| 658 | // Since we use the regular lib/Linker, we cannot just internalize GV |
| 659 | // now or it will not be copied to the merged module. Instead we force |
| 660 | // it to be copied and then internalize it. |
Rafael Espindola | a4f104b | 2014-12-09 16:50:57 +0000 | [diff] [blame] | 661 | Internalize.insert(GV->getName()); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 662 | } |
| 663 | break; |
| 664 | } |
| 665 | |
| 666 | case LDPR_PREVAILING_DEF: |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 667 | keepGlobalValue(*GV, KeptAliases); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 668 | break; |
| 669 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 670 | case LDPR_PREEMPTED_IR: |
Rafael Espindola | dfc7ed7 | 2014-10-07 04:06:13 +0000 | [diff] [blame] | 671 | // Gold might have selected a linkonce_odr and preempted a weak_odr. |
| 672 | // In that case we have to make sure we don't end up internalizing it. |
| 673 | if (!GV->isDiscardableIfUnused()) |
Rafael Espindola | a4f104b | 2014-12-09 16:50:57 +0000 | [diff] [blame] | 674 | Maybe.erase(GV->getName()); |
Rafael Espindola | dfc7ed7 | 2014-10-07 04:06:13 +0000 | [diff] [blame] | 675 | |
| 676 | // fall-through |
| 677 | case LDPR_PREEMPTED_REG: |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 678 | Drop.insert(GV); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 679 | break; |
| 680 | |
| 681 | case LDPR_PREVAILING_DEF_IRONLY_EXP: { |
| 682 | // We can only check for address uses after we merge the modules. The |
| 683 | // reason is that this GV might have a copy in another module |
| 684 | // and in that module the address might be significant, but that |
| 685 | // copy will be LDPR_PREEMPTED_IR. |
| 686 | if (GV->hasLinkOnceODRLinkage()) |
Rafael Espindola | a4f104b | 2014-12-09 16:50:57 +0000 | [diff] [blame] | 687 | Maybe.insert(GV->getName()); |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 688 | keepGlobalValue(*GV, KeptAliases); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 689 | break; |
| 690 | } |
| 691 | } |
| 692 | |
Rafael Espindola | 538c9a8 | 2014-12-23 18:18:37 +0000 | [diff] [blame] | 693 | freeSymName(Sym); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 694 | } |
| 695 | |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 696 | ValueToValueMapTy VM; |
| 697 | LocalValueMaterializer Materializer(Drop); |
| 698 | for (GlobalAlias *GA : KeptAliases) { |
| 699 | // Gold told us to keep GA. It is possible that a GV usied in the aliasee |
| 700 | // expression is being dropped. If that is the case, that GV must be copied. |
| 701 | Constant *Aliasee = GA->getAliasee(); |
| 702 | Constant *Replacement = mapConstantToLocalCopy(Aliasee, VM, &Materializer); |
Rafael Espindola | 4d47f7f | 2014-12-10 00:09:35 +0000 | [diff] [blame] | 703 | GA->setAliasee(Replacement); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 704 | } |
| 705 | |
Rafael Espindola | f7ecb11 | 2014-08-22 23:26:10 +0000 | [diff] [blame] | 706 | for (auto *GV : Drop) |
| 707 | drop(*GV); |
| 708 | |
Rafael Espindola | 527e846 | 2014-12-09 16:13:59 +0000 | [diff] [blame] | 709 | return Obj.takeModule(); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 710 | } |
| 711 | |
NAKAMURA Takumi | b0a5283 | 2015-02-02 05:47:30 +0000 | [diff] [blame] | 712 | static void runLTOPasses(Module &M, TargetMachine &TM) { |
Rafael Espindola | 85d8509 | 2015-02-21 00:13:15 +0000 | [diff] [blame] | 713 | if (const DataLayout *DL = TM.getDataLayout()) |
Rafael Espindola | 265ffbe | 2015-03-04 19:15:29 +0000 | [diff] [blame^] | 714 | M.setDataLayout(*DL); |
Rafael Espindola | 85d8509 | 2015-02-21 00:13:15 +0000 | [diff] [blame] | 715 | |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 716 | legacy::PassManager passes; |
NAKAMURA Takumi | b0a5283 | 2015-02-02 05:47:30 +0000 | [diff] [blame] | 717 | passes.add(createTargetTransformInfoWrapperPass(TM.getTargetIRAnalysis())); |
| 718 | |
Chandler Carruth | 5700b37 | 2015-02-13 21:10:58 +0000 | [diff] [blame] | 719 | PassManagerBuilder PMB; |
Sylvestre Ledru | 450f97d | 2015-01-24 13:59:08 +0000 | [diff] [blame] | 720 | PMB.LibraryInfo = new TargetLibraryInfoImpl(Triple(TM.getTargetTriple())); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 721 | PMB.Inliner = createFunctionInliningPass(); |
| 722 | PMB.VerifyInput = true; |
| 723 | PMB.VerifyOutput = true; |
Rafael Espindola | 8391dbd | 2014-10-30 00:11:24 +0000 | [diff] [blame] | 724 | PMB.LoopVectorize = true; |
Rafael Espindola | 919fb53 | 2014-10-30 00:38:54 +0000 | [diff] [blame] | 725 | PMB.SLPVectorize = true; |
Alexey Samsonov | 5ce2448 | 2015-01-30 19:14:04 +0000 | [diff] [blame] | 726 | PMB.populateLTOPassManager(passes); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 727 | passes.run(M); |
| 728 | } |
| 729 | |
Rafael Espindola | 4a3b6cf | 2014-10-29 23:54:45 +0000 | [diff] [blame] | 730 | static void saveBCFile(StringRef Path, Module &M) { |
| 731 | std::error_code EC; |
| 732 | raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::F_None); |
| 733 | if (EC) |
| 734 | message(LDPL_FATAL, "Failed to write the output file."); |
| 735 | WriteBitcodeToFile(&M, OS); |
| 736 | } |
| 737 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 738 | static void codegen(Module &M) { |
| 739 | const std::string &TripleStr = M.getTargetTriple(); |
| 740 | Triple TheTriple(TripleStr); |
| 741 | |
| 742 | std::string ErrMsg; |
| 743 | const Target *TheTarget = TargetRegistry::lookupTarget(TripleStr, ErrMsg); |
| 744 | if (!TheTarget) |
| 745 | message(LDPL_FATAL, "Target not found: %s", ErrMsg.c_str()); |
| 746 | |
| 747 | if (unsigned NumOpts = options::extra.size()) |
| 748 | cl::ParseCommandLineOptions(NumOpts, &options::extra[0]); |
| 749 | |
| 750 | SubtargetFeatures Features; |
| 751 | Features.getDefaultSubtargetFeatures(TheTriple); |
| 752 | for (const std::string &A : MAttrs) |
| 753 | Features.AddFeature(A); |
| 754 | |
| 755 | TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); |
| 756 | std::unique_ptr<TargetMachine> TM(TheTarget->createTargetMachine( |
| 757 | TripleStr, options::mcpu, Features.getString(), Options, RelocationModel, |
| 758 | CodeModel::Default, CodeGenOpt::Aggressive)); |
| 759 | |
| 760 | runLTOPasses(M, *TM); |
| 761 | |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 762 | if (options::TheOutputType == options::OT_SAVE_TEMPS) |
Rafael Espindola | 4a3b6cf | 2014-10-29 23:54:45 +0000 | [diff] [blame] | 763 | saveBCFile(output_name + ".opt.bc", M); |
| 764 | |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 765 | legacy::PassManager CodeGenPasses; |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 766 | |
| 767 | SmallString<128> Filename; |
| 768 | int FD; |
| 769 | if (options::obj_path.empty()) { |
| 770 | std::error_code EC = |
| 771 | sys::fs::createTemporaryFile("lto-llvm", "o", FD, Filename); |
| 772 | if (EC) |
Duncan P. N. Exon Smith | f6ab470 | 2014-11-19 22:39:21 +0000 | [diff] [blame] | 773 | message(LDPL_FATAL, "Could not create temporary file: %s", |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 774 | EC.message().c_str()); |
| 775 | } else { |
| 776 | Filename = options::obj_path; |
| 777 | std::error_code EC = |
| 778 | sys::fs::openFileForWrite(Filename.c_str(), FD, sys::fs::F_None); |
| 779 | if (EC) |
| 780 | message(LDPL_FATAL, "Could not open file: %s", EC.message().c_str()); |
| 781 | } |
| 782 | |
| 783 | { |
| 784 | raw_fd_ostream OS(FD, true); |
| 785 | formatted_raw_ostream FOS(OS); |
| 786 | |
| 787 | if (TM->addPassesToEmitFile(CodeGenPasses, FOS, |
| 788 | TargetMachine::CGFT_ObjectFile)) |
| 789 | message(LDPL_FATAL, "Failed to setup codegen"); |
| 790 | CodeGenPasses.run(M); |
| 791 | } |
| 792 | |
| 793 | if (add_input_file(Filename.c_str()) != LDPS_OK) |
| 794 | message(LDPL_FATAL, |
| 795 | "Unable to add .o file to the link. File left behind in: %s", |
| 796 | Filename.c_str()); |
| 797 | |
| 798 | if (options::obj_path.empty()) |
| 799 | Cleanup.push_back(Filename.c_str()); |
Rafael Espindola | 282a470 | 2013-10-31 20:51:58 +0000 | [diff] [blame] | 800 | } |
| 801 | |
Rafael Espindola | b639329 | 2014-07-30 01:23:45 +0000 | [diff] [blame] | 802 | /// gold informs us that all symbols have been read. At this point, we use |
| 803 | /// get_symbols to see if any of our definitions have been overridden by a |
| 804 | /// native object file. Then, perform optimization and codegen. |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 805 | static ld_plugin_status allSymbolsReadHook(raw_fd_ostream *ApiFile) { |
| 806 | if (Modules.empty()) |
| 807 | return LDPS_OK; |
Rafael Espindola | 9ef90d5 | 2011-02-20 18:28:29 +0000 | [diff] [blame] | 808 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 809 | LLVMContext Context; |
Rafael Espindola | f3f1854 | 2015-03-04 18:51:45 +0000 | [diff] [blame] | 810 | Context.setDiagnosticHandler(diagnosticHandler, nullptr, true); |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 811 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 812 | std::unique_ptr<Module> Combined(new Module("ld-temp.o", Context)); |
| 813 | Linker L(Combined.get()); |
| 814 | |
| 815 | std::string DefaultTriple = sys::getDefaultTargetTriple(); |
| 816 | |
| 817 | StringSet<> Internalize; |
| 818 | StringSet<> Maybe; |
Rafael Espindola | d2aac57 | 2014-07-30 01:52:40 +0000 | [diff] [blame] | 819 | for (claimed_file &F : Modules) { |
Jan Wen Voung | c11b45a | 2015-02-11 16:12:50 +0000 | [diff] [blame] | 820 | ld_plugin_input_file File; |
| 821 | if (get_input_file(F.handle, &File) != LDPS_OK) |
| 822 | message(LDPL_FATAL, "Failed to get file information"); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 823 | std::unique_ptr<Module> M = |
Rafael Espindola | 503f883 | 2015-03-02 19:08:03 +0000 | [diff] [blame] | 824 | getModuleForFile(Context, F, File, ApiFile, Internalize, Maybe); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 825 | if (!options::triple.empty()) |
| 826 | M->setTargetTriple(options::triple.c_str()); |
| 827 | else if (M->getTargetTriple().empty()) { |
| 828 | M->setTargetTriple(DefaultTriple); |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 829 | } |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 830 | |
Rafael Espindola | d12b4a3 | 2014-10-25 04:06:10 +0000 | [diff] [blame] | 831 | if (L.linkInModule(M.get())) |
| 832 | message(LDPL_FATAL, "Failed to link module"); |
Jan Wen Voung | c11b45a | 2015-02-11 16:12:50 +0000 | [diff] [blame] | 833 | if (release_input_file(F.handle) != LDPS_OK) |
| 834 | message(LDPL_FATAL, "Failed to release file information"); |
Rafael Espindola | 77b6d01 | 2010-06-14 21:20:52 +0000 | [diff] [blame] | 835 | } |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 836 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 837 | for (const auto &Name : Internalize) { |
| 838 | GlobalValue *GV = Combined->getNamedValue(Name.first()); |
| 839 | if (GV) |
| 840 | internalize(*GV); |
| 841 | } |
| 842 | |
| 843 | for (const auto &Name : Maybe) { |
| 844 | GlobalValue *GV = Combined->getNamedValue(Name.first()); |
| 845 | if (!GV) |
| 846 | continue; |
| 847 | GV->setLinkage(GlobalValue::LinkOnceODRLinkage); |
| 848 | if (canBeOmittedFromSymbolTable(GV)) |
| 849 | internalize(*GV); |
| 850 | } |
Rafael Espindola | ccab1dd | 2010-08-11 00:15:13 +0000 | [diff] [blame] | 851 | |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 852 | if (options::TheOutputType == options::OT_DISABLE) |
| 853 | return LDPS_OK; |
| 854 | |
| 855 | if (options::TheOutputType != options::OT_NORMAL) { |
Rafael Espindola | 8fb957e | 2010-06-03 21:11:20 +0000 | [diff] [blame] | 856 | std::string path; |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 857 | if (options::TheOutputType == options::OT_BC_ONLY) |
Rafael Espindola | 8fb957e | 2010-06-03 21:11:20 +0000 | [diff] [blame] | 858 | path = output_name; |
Rafael Espindola | 8fb957e | 2010-06-03 21:11:20 +0000 | [diff] [blame] | 859 | else |
| 860 | path = output_name + ".bc"; |
Rafael Espindola | 4a3b6cf | 2014-10-29 23:54:45 +0000 | [diff] [blame] | 861 | saveBCFile(path, *L.getModule()); |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 862 | if (options::TheOutputType == options::OT_BC_ONLY) |
Rafael Espindola | 55b3254 | 2014-08-11 19:06:54 +0000 | [diff] [blame] | 863 | return LDPS_OK; |
Rafael Espindola | ba3398b | 2010-05-13 13:39:31 +0000 | [diff] [blame] | 864 | } |
Rafael Espindola | 143fc3b | 2013-10-16 12:47:04 +0000 | [diff] [blame] | 865 | |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 866 | codegen(*L.getModule()); |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 867 | |
Rafael Espindola | ef49815 | 2010-06-23 20:20:59 +0000 | [diff] [blame] | 868 | if (!options::extra_library_path.empty() && |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 869 | set_extra_library_path(options::extra_library_path.c_str()) != LDPS_OK) |
| 870 | message(LDPL_FATAL, "Unable to set the extra library path."); |
Shuxin Yang | 1826ae2 | 2013-08-12 21:07:31 +0000 | [diff] [blame] | 871 | |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 872 | return LDPS_OK; |
| 873 | } |
| 874 | |
Rafael Espindola | 55b3254 | 2014-08-11 19:06:54 +0000 | [diff] [blame] | 875 | static ld_plugin_status all_symbols_read_hook(void) { |
| 876 | ld_plugin_status Ret; |
| 877 | if (!options::generate_api_file) { |
| 878 | Ret = allSymbolsReadHook(nullptr); |
| 879 | } else { |
Rafael Espindola | 3fd1e99 | 2014-08-25 18:16:47 +0000 | [diff] [blame] | 880 | std::error_code EC; |
| 881 | raw_fd_ostream ApiFile("apifile.txt", EC, sys::fs::F_None); |
| 882 | if (EC) |
Rafael Espindola | 55b3254 | 2014-08-11 19:06:54 +0000 | [diff] [blame] | 883 | message(LDPL_FATAL, "Unable to open apifile.txt for writing: %s", |
Rafael Espindola | 3fd1e99 | 2014-08-25 18:16:47 +0000 | [diff] [blame] | 884 | EC.message().c_str()); |
Rafael Espindola | 33466a7 | 2014-08-21 20:28:55 +0000 | [diff] [blame] | 885 | Ret = allSymbolsReadHook(&ApiFile); |
Rafael Espindola | 55b3254 | 2014-08-11 19:06:54 +0000 | [diff] [blame] | 886 | } |
| 887 | |
Rafael Espindola | 947bdb6 | 2014-11-25 20:52:49 +0000 | [diff] [blame] | 888 | llvm_shutdown(); |
| 889 | |
Rafael Espindola | 6953a3a | 2014-11-24 21:18:14 +0000 | [diff] [blame] | 890 | if (options::TheOutputType == options::OT_BC_ONLY || |
Michael Kuperstein | a07d9b9 | 2015-02-12 18:21:50 +0000 | [diff] [blame] | 891 | options::TheOutputType == options::OT_DISABLE) { |
| 892 | if (options::TheOutputType == options::OT_DISABLE) |
| 893 | // Remove the output file here since ld.bfd creates the output file |
| 894 | // early. |
| 895 | sys::fs::remove(output_name); |
Rafael Espindola | 55b3254 | 2014-08-11 19:06:54 +0000 | [diff] [blame] | 896 | exit(0); |
Michael Kuperstein | a07d9b9 | 2015-02-12 18:21:50 +0000 | [diff] [blame] | 897 | } |
Rafael Espindola | 55b3254 | 2014-08-11 19:06:54 +0000 | [diff] [blame] | 898 | |
| 899 | return Ret; |
| 900 | } |
| 901 | |
Dan Gohman | ebb4ae0 | 2010-04-16 00:42:57 +0000 | [diff] [blame] | 902 | static ld_plugin_status cleanup_hook(void) { |
Rafael Espindola | d2aac57 | 2014-07-30 01:52:40 +0000 | [diff] [blame] | 903 | for (std::string &Name : Cleanup) { |
| 904 | std::error_code EC = sys::fs::remove(Name); |
Rafael Espindola | 55ab87f | 2013-06-17 18:38:18 +0000 | [diff] [blame] | 905 | if (EC) |
Rafael Espindola | d2aac57 | 2014-07-30 01:52:40 +0000 | [diff] [blame] | 906 | message(LDPL_ERROR, "Failed to delete '%s': %s", Name.c_str(), |
Rafael Espindola | 5ad21fa | 2014-07-30 00:38:58 +0000 | [diff] [blame] | 907 | EC.message().c_str()); |
Rafael Espindola | 55ab87f | 2013-06-17 18:38:18 +0000 | [diff] [blame] | 908 | } |
Nick Lewycky | fb643e4 | 2009-02-03 07:13:24 +0000 | [diff] [blame] | 909 | |
| 910 | return LDPS_OK; |
| 911 | } |