Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 1 | /*===-- llvm-c/lto.h - LTO Public C Interface ---------------------*- C -*-===*\ |
| 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 header provides public interface to an abstract link time optimization*| |
| 11 | |* library. LLVM provides an implementation of this interface for use with *| |
| 12 | |* llvm bitcode files. *| |
| 13 | |* *| |
| 14 | \*===----------------------------------------------------------------------===*/ |
| 15 | |
Jakub Staszak | 02a3c9b | 2013-01-10 00:45:19 +0000 | [diff] [blame] | 16 | #ifndef LLVM_C_LTO_H |
| 17 | #define LLVM_C_LTO_H |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 18 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 19 | #include <stddef.h> |
Peter Collingbourne | dda3591 | 2013-09-25 07:52:21 +0000 | [diff] [blame] | 20 | #include <sys/types.h> |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 21 | |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 22 | #ifndef __cplusplus |
| 23 | #if !defined(_MSC_VER) |
| 24 | #include <stdbool.h> |
| 25 | typedef bool lto_bool_t; |
| 26 | #else |
Rafael Espindola | fe3be11 | 2013-10-25 12:59:02 +0000 | [diff] [blame] | 27 | /* MSVC in particular does not have anything like _Bool or bool in C, but we can |
| 28 | at least make sure the type is the same size. The implementation side will |
| 29 | use C++ bool. */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 30 | typedef unsigned char lto_bool_t; |
| 31 | #endif |
| 32 | #else |
| 33 | typedef bool lto_bool_t; |
| 34 | #endif |
| 35 | |
Gregory Szorc | 34c863a | 2012-03-21 03:54:29 +0000 | [diff] [blame] | 36 | /** |
| 37 | * @defgroup LLVMCLTO LTO |
| 38 | * @ingroup LLVMC |
| 39 | * |
| 40 | * @{ |
| 41 | */ |
| 42 | |
Duncan P. N. Exon Smith | 5a490d0 | 2015-04-27 23:38:54 +0000 | [diff] [blame] | 43 | #define LTO_API_VERSION 15 |
Nick Kledzik | cac8c8a | 2009-06-04 00:28:45 +0000 | [diff] [blame] | 44 | |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 45 | /** |
| 46 | * \since prior to LTO_API_VERSION=3 |
| 47 | */ |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 48 | typedef enum { |
Bill Wendling | dcd7c2b | 2010-09-27 20:17:45 +0000 | [diff] [blame] | 49 | LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of alignment */ |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 50 | LTO_SYMBOL_PERMISSIONS_MASK = 0x000000E0, |
| 51 | LTO_SYMBOL_PERMISSIONS_CODE = 0x000000A0, |
| 52 | LTO_SYMBOL_PERMISSIONS_DATA = 0x000000C0, |
| 53 | LTO_SYMBOL_PERMISSIONS_RODATA = 0x00000080, |
| 54 | LTO_SYMBOL_DEFINITION_MASK = 0x00000700, |
| 55 | LTO_SYMBOL_DEFINITION_REGULAR = 0x00000100, |
| 56 | LTO_SYMBOL_DEFINITION_TENTATIVE = 0x00000200, |
| 57 | LTO_SYMBOL_DEFINITION_WEAK = 0x00000300, |
| 58 | LTO_SYMBOL_DEFINITION_UNDEFINED = 0x00000400, |
Bill Wendling | dcd7c2b | 2010-09-27 20:17:45 +0000 | [diff] [blame] | 59 | LTO_SYMBOL_DEFINITION_WEAKUNDEF = 0x00000500, |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 60 | LTO_SYMBOL_SCOPE_MASK = 0x00003800, |
| 61 | LTO_SYMBOL_SCOPE_INTERNAL = 0x00000800, |
| 62 | LTO_SYMBOL_SCOPE_HIDDEN = 0x00001000, |
| 63 | LTO_SYMBOL_SCOPE_PROTECTED = 0x00002000, |
Bill Wendling | dcd7c2b | 2010-09-27 20:17:45 +0000 | [diff] [blame] | 64 | LTO_SYMBOL_SCOPE_DEFAULT = 0x00001800, |
Peter Collingbourne | 485ad48 | 2015-06-11 21:41:27 +0000 | [diff] [blame] | 65 | LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x00002800, |
| 66 | LTO_SYMBOL_COMDAT = 0x00004000 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 67 | } lto_symbol_attributes; |
| 68 | |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 69 | /** |
| 70 | * \since prior to LTO_API_VERSION=3 |
| 71 | */ |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 72 | typedef enum { |
| 73 | LTO_DEBUG_MODEL_NONE = 0, |
| 74 | LTO_DEBUG_MODEL_DWARF = 1 |
| 75 | } lto_debug_model; |
| 76 | |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 77 | /** |
| 78 | * \since prior to LTO_API_VERSION=3 |
| 79 | */ |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 80 | typedef enum { |
| 81 | LTO_CODEGEN_PIC_MODEL_STATIC = 0, |
| 82 | LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1, |
James Molloy | 951e529 | 2014-04-14 13:54:16 +0000 | [diff] [blame] | 83 | LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2, |
| 84 | LTO_CODEGEN_PIC_MODEL_DEFAULT = 3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 85 | } lto_codegen_model; |
| 86 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 87 | /** opaque reference to a loaded object module */ |
Rafael Espindola | 83ceb8e | 2014-05-03 14:59:52 +0000 | [diff] [blame] | 88 | typedef struct LLVMOpaqueLTOModule *lto_module_t; |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 89 | |
| 90 | /** opaque reference to a code generator */ |
Rafael Espindola | 83ceb8e | 2014-05-03 14:59:52 +0000 | [diff] [blame] | 91 | typedef struct LLVMOpaqueLTOCodeGenerator *lto_code_gen_t; |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 92 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 93 | #ifdef __cplusplus |
| 94 | extern "C" { |
| 95 | #endif |
| 96 | |
| 97 | /** |
| 98 | * Returns a printable string. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 99 | * |
| 100 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 101 | */ |
| 102 | extern const char* |
Gordon Henriksen | a735a9c | 2008-05-04 12:55:34 +0000 | [diff] [blame] | 103 | lto_get_version(void); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 104 | |
| 105 | |
| 106 | /** |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 107 | * Returns the last error string or NULL if last operation was successful. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 108 | * |
| 109 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 110 | */ |
| 111 | extern const char* |
Gordon Henriksen | a735a9c | 2008-05-04 12:55:34 +0000 | [diff] [blame] | 112 | lto_get_error_message(void); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 113 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 114 | /** |
| 115 | * Checks if a file is a loadable object file. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 116 | * |
| 117 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 118 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 119 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 120 | lto_module_is_object_file(const char* path); |
| 121 | |
| 122 | |
| 123 | /** |
| 124 | * Checks if a file is a loadable object compiled for requested target. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 125 | * |
| 126 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 127 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 128 | extern lto_bool_t |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 129 | lto_module_is_object_file_for_target(const char* path, |
Nick Lewycky | 8811ecd | 2009-02-06 07:01:00 +0000 | [diff] [blame] | 130 | const char* target_triple_prefix); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 131 | |
| 132 | |
| 133 | /** |
| 134 | * Checks if a buffer is a loadable object file. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 135 | * |
| 136 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 137 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 138 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 139 | lto_module_is_object_file_in_memory(const void* mem, size_t length); |
| 140 | |
| 141 | |
| 142 | /** |
| 143 | * Checks if a buffer is a loadable object compiled for requested target. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 144 | * |
| 145 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 146 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 147 | extern lto_bool_t |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 148 | lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length, |
Eric Christopher | 135de90 | 2010-07-12 05:13:35 +0000 | [diff] [blame] | 149 | const char* target_triple_prefix); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 150 | |
| 151 | |
| 152 | /** |
| 153 | * Loads an object file from disk. |
| 154 | * Returns NULL on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 155 | * |
| 156 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 157 | */ |
| 158 | extern lto_module_t |
Owen Anderson | 0ff9938 | 2009-07-02 00:31:14 +0000 | [diff] [blame] | 159 | lto_module_create(const char* path); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 160 | |
| 161 | |
| 162 | /** |
| 163 | * Loads an object file from memory. |
| 164 | * Returns NULL on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 165 | * |
| 166 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 167 | */ |
| 168 | extern lto_module_t |
Owen Anderson | 0ff9938 | 2009-07-02 00:31:14 +0000 | [diff] [blame] | 169 | lto_module_create_from_memory(const void* mem, size_t length); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 170 | |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 171 | /** |
Manman Ren | 03456a1 | 2014-02-10 23:26:14 +0000 | [diff] [blame] | 172 | * Loads an object file from memory with an extra path argument. |
| 173 | * Returns NULL on error (check lto_get_error_message() for details). |
| 174 | * |
Duncan P. N. Exon Smith | d998294 | 2015-04-27 22:08:01 +0000 | [diff] [blame] | 175 | * \since LTO_API_VERSION=9 |
Manman Ren | 03456a1 | 2014-02-10 23:26:14 +0000 | [diff] [blame] | 176 | */ |
| 177 | extern lto_module_t |
| 178 | lto_module_create_from_memory_with_path(const void* mem, size_t length, |
| 179 | const char *path); |
| 180 | |
| 181 | /** |
Duncan P. N. Exon Smith | c5800f6 | 2014-11-11 23:19:23 +0000 | [diff] [blame] | 182 | * \brief Loads an object file in its own context. |
| 183 | * |
| 184 | * Loads an object file in its own LLVMContext. This function call is |
| 185 | * thread-safe. However, modules created this way should not be merged into an |
| 186 | * lto_code_gen_t using \a lto_codegen_add_module(). |
| 187 | * |
| 188 | * Returns NULL on error (check lto_get_error_message() for details). |
| 189 | * |
| 190 | * \since LTO_API_VERSION=11 |
| 191 | */ |
| 192 | extern lto_module_t |
| 193 | lto_module_create_in_local_context(const void *mem, size_t length, |
| 194 | const char *path); |
| 195 | |
| 196 | /** |
| 197 | * \brief Loads an object file in the codegen context. |
| 198 | * |
| 199 | * Loads an object file into the same context as \c cg. The module is safe to |
| 200 | * add using \a lto_codegen_add_module(). |
| 201 | * |
| 202 | * Returns NULL on error (check lto_get_error_message() for details). |
| 203 | * |
| 204 | * \since LTO_API_VERSION=11 |
| 205 | */ |
| 206 | extern lto_module_t |
| 207 | lto_module_create_in_codegen_context(const void *mem, size_t length, |
| 208 | const char *path, lto_code_gen_t cg); |
| 209 | |
| 210 | /** |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 211 | * Loads an object file from disk. The seek point of fd is not preserved. |
| 212 | * Returns NULL on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 213 | * |
| 214 | * \since LTO_API_VERSION=5 |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 215 | */ |
| 216 | extern lto_module_t |
Rafael Espindola | b39c7c7 | 2011-03-17 00:36:11 +0000 | [diff] [blame] | 217 | lto_module_create_from_fd(int fd, const char *path, size_t file_size); |
| 218 | |
| 219 | /** |
| 220 | * Loads an object file from disk. The seek point of fd is not preserved. |
| 221 | * Returns NULL on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 222 | * |
| 223 | * \since LTO_API_VERSION=5 |
Rafael Espindola | b39c7c7 | 2011-03-17 00:36:11 +0000 | [diff] [blame] | 224 | */ |
| 225 | extern lto_module_t |
| 226 | lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size, |
| 227 | size_t map_size, off_t offset); |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 228 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 229 | /** |
| 230 | * Frees all memory internally allocated by the module. |
| 231 | * Upon return the lto_module_t is no longer valid. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 232 | * |
| 233 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 234 | */ |
| 235 | extern void |
| 236 | lto_module_dispose(lto_module_t mod); |
| 237 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 238 | /** |
| 239 | * Returns triple string which the object module was compiled under. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 240 | * |
| 241 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 242 | */ |
| 243 | extern const char* |
| 244 | lto_module_get_target_triple(lto_module_t mod); |
| 245 | |
Rafael Espindola | 4ef89f5 | 2010-08-09 21:09:46 +0000 | [diff] [blame] | 246 | /** |
| 247 | * Sets triple string with which the object will be codegened. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 248 | * |
| 249 | * \since LTO_API_VERSION=4 |
Rafael Espindola | 4ef89f5 | 2010-08-09 21:09:46 +0000 | [diff] [blame] | 250 | */ |
| 251 | extern void |
| 252 | lto_module_set_target_triple(lto_module_t mod, const char *triple); |
| 253 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 254 | |
| 255 | /** |
| 256 | * Returns the number of symbols in the object module. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 257 | * |
| 258 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 259 | */ |
Devang Patel | 39bd6ce | 2011-01-07 22:26:25 +0000 | [diff] [blame] | 260 | extern unsigned int |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 261 | lto_module_get_num_symbols(lto_module_t mod); |
| 262 | |
| 263 | |
| 264 | /** |
| 265 | * Returns the name of the ith symbol in the object module. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 266 | * |
| 267 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 268 | */ |
| 269 | extern const char* |
Devang Patel | 39bd6ce | 2011-01-07 22:26:25 +0000 | [diff] [blame] | 270 | lto_module_get_symbol_name(lto_module_t mod, unsigned int index); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 271 | |
| 272 | |
| 273 | /** |
| 274 | * Returns the attributes of the ith symbol in the object module. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 275 | * |
| 276 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 277 | */ |
| 278 | extern lto_symbol_attributes |
Devang Patel | 39bd6ce | 2011-01-07 22:26:25 +0000 | [diff] [blame] | 279 | lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 280 | |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 281 | |
| 282 | /** |
| 283 | * Returns the number of dependent libraries in the object module. |
| 284 | * |
Peter Collingbourne | aef3659 | 2015-06-29 22:04:09 +0000 | [diff] [blame] | 285 | * Deprecated. Now returns an empty list. |
| 286 | * |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 287 | * \since LTO_API_VERSION=8 |
| 288 | */ |
| 289 | extern unsigned int |
| 290 | lto_module_get_num_deplibs(lto_module_t mod); |
| 291 | |
| 292 | |
| 293 | /** |
| 294 | * Returns the ith dependent library in the module. |
| 295 | * |
Peter Collingbourne | aef3659 | 2015-06-29 22:04:09 +0000 | [diff] [blame] | 296 | * Deprecated. Now always returns null. |
| 297 | * |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 298 | * \since LTO_API_VERSION=8 |
| 299 | */ |
| 300 | extern const char* |
| 301 | lto_module_get_deplib(lto_module_t mod, unsigned int index); |
| 302 | |
| 303 | |
| 304 | /** |
| 305 | * Returns the number of linker options in the object module. |
| 306 | * |
Peter Collingbourne | aef3659 | 2015-06-29 22:04:09 +0000 | [diff] [blame] | 307 | * Each linker option may consist of multiple flags. It is the linker's |
| 308 | * responsibility to split the flags using a platform-specific mechanism. |
| 309 | * |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 310 | * \since LTO_API_VERSION=8 |
| 311 | */ |
| 312 | extern unsigned int |
| 313 | lto_module_get_num_linkeropts(lto_module_t mod); |
| 314 | |
| 315 | |
| 316 | /** |
| 317 | * Returns the ith linker option in the module. |
| 318 | * |
Peter Collingbourne | aef3659 | 2015-06-29 22:04:09 +0000 | [diff] [blame] | 319 | * Each linker option may consist of multiple flags. It is the linker's |
| 320 | * responsibility to split the flags using a platform-specific mechanism. |
| 321 | * |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 322 | * \since LTO_API_VERSION=8 |
| 323 | */ |
| 324 | extern const char* |
| 325 | lto_module_get_linkeropt(lto_module_t mod, unsigned int index); |
| 326 | |
| 327 | |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 328 | /** |
| 329 | * Diagnostic severity. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 330 | * |
| 331 | * \since LTO_API_VERSION=7 |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 332 | */ |
| 333 | typedef enum { |
Tobias Grosser | e8d4c9a | 2014-02-28 09:08:45 +0000 | [diff] [blame] | 334 | LTO_DS_ERROR = 0, |
| 335 | LTO_DS_WARNING = 1, |
| 336 | LTO_DS_REMARK = 3, // Added in LTO_API_VERSION=10. |
| 337 | LTO_DS_NOTE = 2 |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 338 | } lto_codegen_diagnostic_severity_t; |
| 339 | |
| 340 | /** |
| 341 | * Diagnostic handler type. |
| 342 | * \p severity defines the severity. |
| 343 | * \p diag is the actual diagnostic. |
| 344 | * The diagnostic is not prefixed by any of severity keyword, e.g., 'error: '. |
| 345 | * \p ctxt is used to pass the context set with the diagnostic handler. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 346 | * |
| 347 | * \since LTO_API_VERSION=7 |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 348 | */ |
| 349 | typedef void (*lto_diagnostic_handler_t)( |
| 350 | lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt); |
| 351 | |
| 352 | /** |
| 353 | * Set a diagnostic handler and the related context (void *). |
| 354 | * This is more general than lto_get_error_message, as the diagnostic handler |
| 355 | * can be called at anytime within lto. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 356 | * |
| 357 | * \since LTO_API_VERSION=7 |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 358 | */ |
| 359 | extern void lto_codegen_set_diagnostic_handler(lto_code_gen_t, |
| 360 | lto_diagnostic_handler_t, |
| 361 | void *); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 362 | |
| 363 | /** |
| 364 | * Instantiates a code generator. |
| 365 | * Returns NULL on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 366 | * |
Duncan P. N. Exon Smith | c5800f6 | 2014-11-11 23:19:23 +0000 | [diff] [blame] | 367 | * All modules added using \a lto_codegen_add_module() must have been created |
| 368 | * in the same context as the codegen. |
| 369 | * |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 370 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 371 | */ |
| 372 | extern lto_code_gen_t |
Owen Anderson | 0ff9938 | 2009-07-02 00:31:14 +0000 | [diff] [blame] | 373 | lto_codegen_create(void); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 374 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 375 | /** |
Duncan P. N. Exon Smith | c5800f6 | 2014-11-11 23:19:23 +0000 | [diff] [blame] | 376 | * \brief Instantiate a code generator in its own context. |
| 377 | * |
| 378 | * Instantiates a code generator in its own context. Modules added via \a |
| 379 | * lto_codegen_add_module() must have all been created in the same context, |
| 380 | * using \a lto_module_create_in_codegen_context(). |
| 381 | * |
| 382 | * \since LTO_API_VERSION=11 |
| 383 | */ |
| 384 | extern lto_code_gen_t |
| 385 | lto_codegen_create_in_local_context(void); |
| 386 | |
| 387 | /** |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 388 | * Frees all code generator and all memory it internally allocated. |
| 389 | * Upon return the lto_code_gen_t is no longer valid. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 390 | * |
| 391 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 392 | */ |
| 393 | extern void |
| 394 | lto_codegen_dispose(lto_code_gen_t); |
| 395 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 396 | /** |
| 397 | * Add an object module to the set of modules for which code will be generated. |
| 398 | * Returns true on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 399 | * |
Duncan P. N. Exon Smith | c5800f6 | 2014-11-11 23:19:23 +0000 | [diff] [blame] | 400 | * \c cg and \c mod must both be in the same context. See \a |
| 401 | * lto_codegen_create_in_local_context() and \a |
| 402 | * lto_module_create_in_codegen_context(). |
| 403 | * |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 404 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 405 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 406 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 407 | lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod); |
| 408 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 409 | /** |
Manman Ren | 6487ce9 | 2015-02-24 00:45:56 +0000 | [diff] [blame] | 410 | * Sets the object module for code generation. This will transfer the ownship of |
| 411 | * the module to code generator. |
| 412 | * |
| 413 | * \c cg and \c mod must both be in the same context. |
| 414 | * |
Duncan P. N. Exon Smith | d998294 | 2015-04-27 22:08:01 +0000 | [diff] [blame] | 415 | * \since LTO_API_VERSION=13 |
Manman Ren | 6487ce9 | 2015-02-24 00:45:56 +0000 | [diff] [blame] | 416 | */ |
| 417 | extern void |
| 418 | lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod); |
| 419 | |
| 420 | /** |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 421 | * Sets if debug info should be generated. |
| 422 | * Returns true on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 423 | * |
| 424 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 425 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 426 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 427 | lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model); |
| 428 | |
| 429 | |
| 430 | /** |
| 431 | * Sets which PIC code model to generated. |
| 432 | * Returns true on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 433 | * |
| 434 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 435 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 436 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 437 | lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model); |
| 438 | |
| 439 | |
| 440 | /** |
Rafael Espindola | ccab1dd | 2010-08-11 00:15:13 +0000 | [diff] [blame] | 441 | * Sets the cpu to generate code for. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 442 | * |
| 443 | * \since LTO_API_VERSION=4 |
Rafael Espindola | ccab1dd | 2010-08-11 00:15:13 +0000 | [diff] [blame] | 444 | */ |
| 445 | extern void |
| 446 | lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu); |
| 447 | |
| 448 | |
| 449 | /** |
Nick Kledzik | cac8c8a | 2009-06-04 00:28:45 +0000 | [diff] [blame] | 450 | * Sets the location of the assembler tool to run. If not set, libLTO |
| 451 | * will use gcc to invoke the assembler. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 452 | * |
| 453 | * \since LTO_API_VERSION=3 |
Nick Kledzik | cac8c8a | 2009-06-04 00:28:45 +0000 | [diff] [blame] | 454 | */ |
| 455 | extern void |
| 456 | lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path); |
| 457 | |
Rafael Espindola | 0045646 | 2010-08-10 18:55:09 +0000 | [diff] [blame] | 458 | /** |
| 459 | * Sets extra arguments that libLTO should pass to the assembler. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 460 | * |
| 461 | * \since LTO_API_VERSION=4 |
Rafael Espindola | 0045646 | 2010-08-10 18:55:09 +0000 | [diff] [blame] | 462 | */ |
| 463 | extern void |
| 464 | lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args, |
| 465 | int nargs); |
Nick Kledzik | cac8c8a | 2009-06-04 00:28:45 +0000 | [diff] [blame] | 466 | |
| 467 | /** |
Rafael Espindola | b62e6b4 | 2014-05-03 14:34:48 +0000 | [diff] [blame] | 468 | * Adds to a list of all global symbols that must exist in the final generated |
| 469 | * code. If a function is not listed there, it might be inlined into every usage |
| 470 | * and optimized away. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 471 | * |
| 472 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 473 | */ |
| 474 | extern void |
| 475 | lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol); |
| 476 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 477 | /** |
| 478 | * Writes a new object file at the specified path that contains the |
| 479 | * merged contents of all modules added so far. |
| 480 | * Returns true on error (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 481 | * |
| 482 | * \since LTO_API_VERSION=5 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 483 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 484 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 485 | lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path); |
| 486 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 487 | /** |
| 488 | * Generates code for all added modules into one native object file. |
Manman Ren | 8121e1d | 2015-02-03 18:39:15 +0000 | [diff] [blame] | 489 | * This calls lto_codegen_optimize then lto_codegen_compile_optimized. |
| 490 | * |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 491 | * On success returns a pointer to a generated mach-o/ELF buffer and |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 492 | * length set to the buffer size. The buffer is owned by the |
Nick Kledzik | 91a6dcf | 2008-02-27 22:25:36 +0000 | [diff] [blame] | 493 | * lto_code_gen_t and will be freed when lto_codegen_dispose() |
| 494 | * is called, or lto_codegen_compile() is called again. |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 495 | * On failure, returns NULL (check lto_get_error_message() for details). |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 496 | * |
| 497 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 498 | */ |
Nick Kledzik | 91a6dcf | 2008-02-27 22:25:36 +0000 | [diff] [blame] | 499 | extern const void* |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 500 | lto_codegen_compile(lto_code_gen_t cg, size_t* length); |
| 501 | |
Rafael Espindola | 26b57ff | 2011-03-22 20:57:13 +0000 | [diff] [blame] | 502 | /** |
| 503 | * Generates code for all added modules into one native object file. |
Manman Ren | 8121e1d | 2015-02-03 18:39:15 +0000 | [diff] [blame] | 504 | * This calls lto_codegen_optimize then lto_codegen_compile_optimized (instead |
| 505 | * of returning a generated mach-o/ELF buffer, it writes to a file). |
| 506 | * |
Rafael Espindola | 26b57ff | 2011-03-22 20:57:13 +0000 | [diff] [blame] | 507 | * The name of the file is written to name. Returns true on error. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 508 | * |
| 509 | * \since LTO_API_VERSION=5 |
Rafael Espindola | 26b57ff | 2011-03-22 20:57:13 +0000 | [diff] [blame] | 510 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 511 | extern lto_bool_t |
Rafael Espindola | 26b57ff | 2011-03-22 20:57:13 +0000 | [diff] [blame] | 512 | lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name); |
| 513 | |
Manman Ren | 8121e1d | 2015-02-03 18:39:15 +0000 | [diff] [blame] | 514 | /** |
| 515 | * Runs optimization for the merged module. Returns true on error. |
| 516 | * |
| 517 | * \since LTO_API_VERSION=12 |
| 518 | */ |
| 519 | extern lto_bool_t |
| 520 | lto_codegen_optimize(lto_code_gen_t cg); |
| 521 | |
| 522 | /** |
| 523 | * Generates code for the optimized merged module into one native object file. |
| 524 | * It will not run any IR optimizations on the merged module. |
| 525 | * |
| 526 | * On success returns a pointer to a generated mach-o/ELF buffer and length set |
| 527 | * to the buffer size. The buffer is owned by the lto_code_gen_t and will be |
| 528 | * freed when lto_codegen_dispose() is called, or |
| 529 | * lto_codegen_compile_optimized() is called again. On failure, returns NULL |
| 530 | * (check lto_get_error_message() for details). |
| 531 | * |
| 532 | * \since LTO_API_VERSION=12 |
| 533 | */ |
| 534 | extern const void* |
| 535 | lto_codegen_compile_optimized(lto_code_gen_t cg, size_t* length); |
| 536 | |
| 537 | /** |
| 538 | * Returns the runtime API version. |
| 539 | * |
| 540 | * \since LTO_API_VERSION=12 |
| 541 | */ |
| 542 | extern unsigned int |
Rafael Espindola | a5eb775 | 2015-02-04 13:30:28 +0000 | [diff] [blame] | 543 | lto_api_version(void); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 544 | |
Devang Patel | a0e4fb8 | 2008-07-03 22:53:14 +0000 | [diff] [blame] | 545 | /** |
| 546 | * Sets options to help debug codegen bugs. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 547 | * |
| 548 | * \since prior to LTO_API_VERSION=3 |
Devang Patel | a0e4fb8 | 2008-07-03 22:53:14 +0000 | [diff] [blame] | 549 | */ |
| 550 | extern void |
| 551 | lto_codegen_debug_options(lto_code_gen_t cg, const char *); |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 552 | |
Benjamin Kramer | 9bcb922 | 2012-11-24 16:59:10 +0000 | [diff] [blame] | 553 | /** |
| 554 | * Initializes LLVM disassemblers. |
| 555 | * FIXME: This doesn't really belong here. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 556 | * |
| 557 | * \since LTO_API_VERSION=5 |
Benjamin Kramer | 9bcb922 | 2012-11-24 16:59:10 +0000 | [diff] [blame] | 558 | */ |
| 559 | extern void |
| 560 | lto_initialize_disassembler(void); |
| 561 | |
Manman Ren | ce0a066 | 2015-04-17 17:10:09 +0000 | [diff] [blame] | 562 | /** |
| 563 | * Sets if we should run internalize pass during optimization and code |
| 564 | * generation. |
| 565 | * |
Duncan P. N. Exon Smith | d998294 | 2015-04-27 22:08:01 +0000 | [diff] [blame] | 566 | * \since LTO_API_VERSION=14 |
Manman Ren | ce0a066 | 2015-04-17 17:10:09 +0000 | [diff] [blame] | 567 | */ |
| 568 | extern void |
| 569 | lto_codegen_set_should_internalize(lto_code_gen_t cg, |
| 570 | lto_bool_t ShouldInternalize); |
| 571 | |
Duncan P. N. Exon Smith | 5a490d0 | 2015-04-27 23:38:54 +0000 | [diff] [blame] | 572 | /** |
| 573 | * \brief Set whether to embed uselists in bitcode. |
| 574 | * |
| 575 | * Sets whether \a lto_codegen_write_merged_modules() should embed uselists in |
| 576 | * output bitcode. This should be turned on for all -save-temps output. |
| 577 | * |
| 578 | * \since LTO_API_VERSION=15 |
| 579 | */ |
| 580 | extern void |
| 581 | lto_codegen_set_should_embed_uselists(lto_code_gen_t cg, |
| 582 | lto_bool_t ShouldEmbedUselists); |
| 583 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 584 | #ifdef __cplusplus |
| 585 | } |
| 586 | #endif |
| 587 | |
Gregory Szorc | 34c863a | 2012-03-21 03:54:29 +0000 | [diff] [blame] | 588 | /** |
| 589 | * @} |
| 590 | */ |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 591 | |
| 592 | #endif |