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 | |
Eugene Zelenko | 35623fb | 2016-03-28 17:40:08 +0000 | [diff] [blame^] | 19 | #ifdef __cplusplus |
| 20 | #include <cstddef> |
| 21 | #else |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 22 | #include <stddef.h> |
Eugene Zelenko | 35623fb | 2016-03-28 17:40:08 +0000 | [diff] [blame^] | 23 | #endif |
Peter Collingbourne | dda3591 | 2013-09-25 07:52:21 +0000 | [diff] [blame] | 24 | #include <sys/types.h> |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 25 | |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 26 | #ifndef __cplusplus |
| 27 | #if !defined(_MSC_VER) |
| 28 | #include <stdbool.h> |
| 29 | typedef bool lto_bool_t; |
| 30 | #else |
Rafael Espindola | fe3be11 | 2013-10-25 12:59:02 +0000 | [diff] [blame] | 31 | /* MSVC in particular does not have anything like _Bool or bool in C, but we can |
| 32 | at least make sure the type is the same size. The implementation side will |
| 33 | use C++ bool. */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 34 | typedef unsigned char lto_bool_t; |
| 35 | #endif |
| 36 | #else |
| 37 | typedef bool lto_bool_t; |
| 38 | #endif |
| 39 | |
Gregory Szorc | 34c863a | 2012-03-21 03:54:29 +0000 | [diff] [blame] | 40 | /** |
| 41 | * @defgroup LLVMCLTO LTO |
| 42 | * @ingroup LLVMC |
| 43 | * |
| 44 | * @{ |
| 45 | */ |
| 46 | |
Mehdi Amini | 7c4a1a8 | 2016-03-09 01:37:22 +0000 | [diff] [blame] | 47 | #define LTO_API_VERSION 18 |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 48 | /** |
| 49 | * \since prior to LTO_API_VERSION=3 |
| 50 | */ |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 51 | typedef enum { |
Bill Wendling | dcd7c2b | 2010-09-27 20:17:45 +0000 | [diff] [blame] | 52 | LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of alignment */ |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 53 | LTO_SYMBOL_PERMISSIONS_MASK = 0x000000E0, |
| 54 | LTO_SYMBOL_PERMISSIONS_CODE = 0x000000A0, |
| 55 | LTO_SYMBOL_PERMISSIONS_DATA = 0x000000C0, |
| 56 | LTO_SYMBOL_PERMISSIONS_RODATA = 0x00000080, |
| 57 | LTO_SYMBOL_DEFINITION_MASK = 0x00000700, |
| 58 | LTO_SYMBOL_DEFINITION_REGULAR = 0x00000100, |
| 59 | LTO_SYMBOL_DEFINITION_TENTATIVE = 0x00000200, |
| 60 | LTO_SYMBOL_DEFINITION_WEAK = 0x00000300, |
| 61 | LTO_SYMBOL_DEFINITION_UNDEFINED = 0x00000400, |
Bill Wendling | dcd7c2b | 2010-09-27 20:17:45 +0000 | [diff] [blame] | 62 | LTO_SYMBOL_DEFINITION_WEAKUNDEF = 0x00000500, |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 63 | LTO_SYMBOL_SCOPE_MASK = 0x00003800, |
| 64 | LTO_SYMBOL_SCOPE_INTERNAL = 0x00000800, |
| 65 | LTO_SYMBOL_SCOPE_HIDDEN = 0x00001000, |
| 66 | LTO_SYMBOL_SCOPE_PROTECTED = 0x00002000, |
Bill Wendling | dcd7c2b | 2010-09-27 20:17:45 +0000 | [diff] [blame] | 67 | LTO_SYMBOL_SCOPE_DEFAULT = 0x00001800, |
Peter Collingbourne | 485ad48 | 2015-06-11 21:41:27 +0000 | [diff] [blame] | 68 | LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x00002800, |
Peter Collingbourne | 17eff10 | 2015-07-04 03:42:35 +0000 | [diff] [blame] | 69 | LTO_SYMBOL_COMDAT = 0x00004000, |
| 70 | LTO_SYMBOL_ALIAS = 0x00008000 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 71 | } lto_symbol_attributes; |
| 72 | |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 73 | /** |
| 74 | * \since prior to LTO_API_VERSION=3 |
| 75 | */ |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 76 | typedef enum { |
| 77 | LTO_DEBUG_MODEL_NONE = 0, |
| 78 | LTO_DEBUG_MODEL_DWARF = 1 |
| 79 | } lto_debug_model; |
| 80 | |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 81 | /** |
| 82 | * \since prior to LTO_API_VERSION=3 |
| 83 | */ |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 84 | typedef enum { |
| 85 | LTO_CODEGEN_PIC_MODEL_STATIC = 0, |
| 86 | LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1, |
James Molloy | 951e529 | 2014-04-14 13:54:16 +0000 | [diff] [blame] | 87 | LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2, |
| 88 | LTO_CODEGEN_PIC_MODEL_DEFAULT = 3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 89 | } lto_codegen_model; |
| 90 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 91 | /** opaque reference to a loaded object module */ |
Rafael Espindola | 83ceb8e | 2014-05-03 14:59:52 +0000 | [diff] [blame] | 92 | typedef struct LLVMOpaqueLTOModule *lto_module_t; |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 93 | |
| 94 | /** opaque reference to a code generator */ |
Rafael Espindola | 83ceb8e | 2014-05-03 14:59:52 +0000 | [diff] [blame] | 95 | typedef struct LLVMOpaqueLTOCodeGenerator *lto_code_gen_t; |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 96 | |
Mehdi Amini | 7c4a1a8 | 2016-03-09 01:37:22 +0000 | [diff] [blame] | 97 | /** opaque reference to a thin code generator */ |
| 98 | typedef struct LLVMOpaqueThinLTOCodeGenerator *thinlto_code_gen_t; |
| 99 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 100 | #ifdef __cplusplus |
| 101 | extern "C" { |
| 102 | #endif |
| 103 | |
| 104 | /** |
| 105 | * Returns a printable string. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 106 | * |
| 107 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 108 | */ |
| 109 | extern const char* |
Gordon Henriksen | a735a9c | 2008-05-04 12:55:34 +0000 | [diff] [blame] | 110 | lto_get_version(void); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 111 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 112 | /** |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 113 | * 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] | 114 | * |
| 115 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 116 | */ |
| 117 | extern const char* |
Gordon Henriksen | a735a9c | 2008-05-04 12:55:34 +0000 | [diff] [blame] | 118 | lto_get_error_message(void); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 119 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 120 | /** |
| 121 | * Checks if a file is a loadable object file. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 122 | * |
| 123 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 124 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 125 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 126 | lto_module_is_object_file(const char* path); |
| 127 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 128 | /** |
| 129 | * 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] | 130 | * |
| 131 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 132 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 133 | extern lto_bool_t |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 134 | lto_module_is_object_file_for_target(const char* path, |
Nick Lewycky | 8811ecd | 2009-02-06 07:01:00 +0000 | [diff] [blame] | 135 | const char* target_triple_prefix); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 136 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 137 | /** |
| 138 | * Checks if a buffer is a loadable object file. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 139 | * |
| 140 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 141 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 142 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 143 | lto_module_is_object_file_in_memory(const void* mem, size_t length); |
| 144 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 145 | /** |
| 146 | * 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] | 147 | * |
| 148 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 149 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 150 | extern lto_bool_t |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 151 | 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] | 152 | const char* target_triple_prefix); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 153 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 154 | /** |
| 155 | * Loads an object file from disk. |
| 156 | * 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] | 157 | * |
| 158 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 159 | */ |
| 160 | extern lto_module_t |
Owen Anderson | 0ff9938 | 2009-07-02 00:31:14 +0000 | [diff] [blame] | 161 | lto_module_create(const char* path); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 162 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 163 | /** |
| 164 | * Loads an object file from memory. |
| 165 | * 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] | 166 | * |
| 167 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 168 | */ |
| 169 | extern lto_module_t |
Owen Anderson | 0ff9938 | 2009-07-02 00:31:14 +0000 | [diff] [blame] | 170 | lto_module_create_from_memory(const void* mem, size_t length); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 171 | |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 172 | /** |
Manman Ren | 03456a1 | 2014-02-10 23:26:14 +0000 | [diff] [blame] | 173 | * Loads an object file from memory with an extra path argument. |
| 174 | * Returns NULL on error (check lto_get_error_message() for details). |
| 175 | * |
Duncan P. N. Exon Smith | d998294 | 2015-04-27 22:08:01 +0000 | [diff] [blame] | 176 | * \since LTO_API_VERSION=9 |
Manman Ren | 03456a1 | 2014-02-10 23:26:14 +0000 | [diff] [blame] | 177 | */ |
| 178 | extern lto_module_t |
| 179 | lto_module_create_from_memory_with_path(const void* mem, size_t length, |
| 180 | const char *path); |
| 181 | |
| 182 | /** |
Duncan P. N. Exon Smith | c5800f6 | 2014-11-11 23:19:23 +0000 | [diff] [blame] | 183 | * \brief Loads an object file in its own context. |
| 184 | * |
| 185 | * Loads an object file in its own LLVMContext. This function call is |
| 186 | * thread-safe. However, modules created this way should not be merged into an |
| 187 | * lto_code_gen_t using \a lto_codegen_add_module(). |
| 188 | * |
| 189 | * Returns NULL on error (check lto_get_error_message() for details). |
| 190 | * |
| 191 | * \since LTO_API_VERSION=11 |
| 192 | */ |
| 193 | extern lto_module_t |
| 194 | lto_module_create_in_local_context(const void *mem, size_t length, |
| 195 | const char *path); |
| 196 | |
| 197 | /** |
| 198 | * \brief Loads an object file in the codegen context. |
| 199 | * |
| 200 | * Loads an object file into the same context as \c cg. The module is safe to |
| 201 | * add using \a lto_codegen_add_module(). |
| 202 | * |
| 203 | * Returns NULL on error (check lto_get_error_message() for details). |
| 204 | * |
| 205 | * \since LTO_API_VERSION=11 |
| 206 | */ |
| 207 | extern lto_module_t |
| 208 | lto_module_create_in_codegen_context(const void *mem, size_t length, |
| 209 | const char *path, lto_code_gen_t cg); |
| 210 | |
| 211 | /** |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 212 | * Loads an object file from disk. The seek point of fd is not preserved. |
| 213 | * 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] | 214 | * |
| 215 | * \since LTO_API_VERSION=5 |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 216 | */ |
| 217 | extern lto_module_t |
Rafael Espindola | b39c7c7 | 2011-03-17 00:36:11 +0000 | [diff] [blame] | 218 | lto_module_create_from_fd(int fd, const char *path, size_t file_size); |
| 219 | |
| 220 | /** |
| 221 | * Loads an object file from disk. The seek point of fd is not preserved. |
| 222 | * 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] | 223 | * |
| 224 | * \since LTO_API_VERSION=5 |
Rafael Espindola | b39c7c7 | 2011-03-17 00:36:11 +0000 | [diff] [blame] | 225 | */ |
| 226 | extern lto_module_t |
| 227 | lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size, |
| 228 | size_t map_size, off_t offset); |
Rafael Espindola | 56e41f7 | 2011-02-08 22:40:47 +0000 | [diff] [blame] | 229 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 230 | /** |
| 231 | * Frees all memory internally allocated by the module. |
| 232 | * 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] | 233 | * |
| 234 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 235 | */ |
| 236 | extern void |
| 237 | lto_module_dispose(lto_module_t mod); |
| 238 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 239 | /** |
| 240 | * 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] | 241 | * |
| 242 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 243 | */ |
| 244 | extern const char* |
| 245 | lto_module_get_target_triple(lto_module_t mod); |
| 246 | |
Rafael Espindola | 4ef89f5 | 2010-08-09 21:09:46 +0000 | [diff] [blame] | 247 | /** |
| 248 | * 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] | 249 | * |
| 250 | * \since LTO_API_VERSION=4 |
Rafael Espindola | 4ef89f5 | 2010-08-09 21:09:46 +0000 | [diff] [blame] | 251 | */ |
| 252 | extern void |
| 253 | lto_module_set_target_triple(lto_module_t mod, const char *triple); |
| 254 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 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 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 263 | /** |
| 264 | * 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] | 265 | * |
| 266 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 267 | */ |
| 268 | extern const char* |
Devang Patel | 39bd6ce | 2011-01-07 22:26:25 +0000 | [diff] [blame] | 269 | lto_module_get_symbol_name(lto_module_t mod, unsigned int index); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 270 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 271 | /** |
| 272 | * 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] | 273 | * |
| 274 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 275 | */ |
| 276 | extern lto_symbol_attributes |
Devang Patel | 39bd6ce | 2011-01-07 22:26:25 +0000 | [diff] [blame] | 277 | lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 278 | |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 279 | /** |
Peter Collingbourne | 5d7dffb | 2015-06-29 23:09:12 +0000 | [diff] [blame] | 280 | * Returns the module's linker options. |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 281 | * |
Peter Collingbourne | 5d7dffb | 2015-06-29 23:09:12 +0000 | [diff] [blame] | 282 | * The linker options may consist of multiple flags. It is the linker's |
Peter Collingbourne | aef3659 | 2015-06-29 22:04:09 +0000 | [diff] [blame] | 283 | * responsibility to split the flags using a platform-specific mechanism. |
| 284 | * |
Peter Collingbourne | 5d7dffb | 2015-06-29 23:09:12 +0000 | [diff] [blame] | 285 | * \since LTO_API_VERSION=16 |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 286 | */ |
| 287 | extern const char* |
Peter Collingbourne | 5d7dffb | 2015-06-29 23:09:12 +0000 | [diff] [blame] | 288 | lto_module_get_linkeropts(lto_module_t mod); |
Yunzhong Gao | a88d7ab | 2014-01-21 18:31:27 +0000 | [diff] [blame] | 289 | |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 290 | /** |
| 291 | * Diagnostic severity. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 292 | * |
| 293 | * \since LTO_API_VERSION=7 |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 294 | */ |
| 295 | typedef enum { |
Tobias Grosser | e8d4c9a | 2014-02-28 09:08:45 +0000 | [diff] [blame] | 296 | LTO_DS_ERROR = 0, |
| 297 | LTO_DS_WARNING = 1, |
| 298 | LTO_DS_REMARK = 3, // Added in LTO_API_VERSION=10. |
| 299 | LTO_DS_NOTE = 2 |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 300 | } lto_codegen_diagnostic_severity_t; |
| 301 | |
| 302 | /** |
| 303 | * Diagnostic handler type. |
| 304 | * \p severity defines the severity. |
| 305 | * \p diag is the actual diagnostic. |
| 306 | * The diagnostic is not prefixed by any of severity keyword, e.g., 'error: '. |
| 307 | * \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] | 308 | * |
| 309 | * \since LTO_API_VERSION=7 |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 310 | */ |
| 311 | typedef void (*lto_diagnostic_handler_t)( |
| 312 | lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt); |
| 313 | |
| 314 | /** |
| 315 | * Set a diagnostic handler and the related context (void *). |
| 316 | * This is more general than lto_get_error_message, as the diagnostic handler |
| 317 | * can be called at anytime within lto. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 318 | * |
| 319 | * \since LTO_API_VERSION=7 |
Quentin Colombet | 5fa1f6f | 2014-01-15 22:04:35 +0000 | [diff] [blame] | 320 | */ |
| 321 | extern void lto_codegen_set_diagnostic_handler(lto_code_gen_t, |
| 322 | lto_diagnostic_handler_t, |
| 323 | void *); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 324 | |
| 325 | /** |
| 326 | * Instantiates a code generator. |
| 327 | * 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] | 328 | * |
Duncan P. N. Exon Smith | c5800f6 | 2014-11-11 23:19:23 +0000 | [diff] [blame] | 329 | * All modules added using \a lto_codegen_add_module() must have been created |
| 330 | * in the same context as the codegen. |
| 331 | * |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 332 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 333 | */ |
| 334 | extern lto_code_gen_t |
Owen Anderson | 0ff9938 | 2009-07-02 00:31:14 +0000 | [diff] [blame] | 335 | lto_codegen_create(void); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 336 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 337 | /** |
Duncan P. N. Exon Smith | c5800f6 | 2014-11-11 23:19:23 +0000 | [diff] [blame] | 338 | * \brief Instantiate a code generator in its own context. |
| 339 | * |
| 340 | * Instantiates a code generator in its own context. Modules added via \a |
| 341 | * lto_codegen_add_module() must have all been created in the same context, |
| 342 | * using \a lto_module_create_in_codegen_context(). |
| 343 | * |
| 344 | * \since LTO_API_VERSION=11 |
| 345 | */ |
| 346 | extern lto_code_gen_t |
| 347 | lto_codegen_create_in_local_context(void); |
| 348 | |
| 349 | /** |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 350 | * Frees all code generator and all memory it internally allocated. |
| 351 | * 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] | 352 | * |
| 353 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 354 | */ |
| 355 | extern void |
| 356 | lto_codegen_dispose(lto_code_gen_t); |
| 357 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 358 | /** |
| 359 | * Add an object module to the set of modules for which code will be generated. |
| 360 | * 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] | 361 | * |
Duncan P. N. Exon Smith | c5800f6 | 2014-11-11 23:19:23 +0000 | [diff] [blame] | 362 | * \c cg and \c mod must both be in the same context. See \a |
| 363 | * lto_codegen_create_in_local_context() and \a |
| 364 | * lto_module_create_in_codegen_context(). |
| 365 | * |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 366 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 367 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 368 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 369 | lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod); |
| 370 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 371 | /** |
Peter Collingbourne | 9c8909d | 2015-08-24 22:22:53 +0000 | [diff] [blame] | 372 | * Sets the object module for code generation. This will transfer the ownership |
| 373 | * of the module to the code generator. |
Manman Ren | 6487ce9 | 2015-02-24 00:45:56 +0000 | [diff] [blame] | 374 | * |
| 375 | * \c cg and \c mod must both be in the same context. |
| 376 | * |
Duncan P. N. Exon Smith | d998294 | 2015-04-27 22:08:01 +0000 | [diff] [blame] | 377 | * \since LTO_API_VERSION=13 |
Manman Ren | 6487ce9 | 2015-02-24 00:45:56 +0000 | [diff] [blame] | 378 | */ |
| 379 | extern void |
| 380 | lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod); |
| 381 | |
| 382 | /** |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 383 | * Sets if debug info should be generated. |
| 384 | * 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] | 385 | * |
| 386 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 387 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 388 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 389 | lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model); |
| 390 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 391 | /** |
| 392 | * Sets which PIC code model to generated. |
| 393 | * 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] | 394 | * |
| 395 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 396 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 397 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 398 | lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model); |
| 399 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 400 | /** |
Rafael Espindola | ccab1dd | 2010-08-11 00:15:13 +0000 | [diff] [blame] | 401 | * Sets the cpu to generate code for. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 402 | * |
| 403 | * \since LTO_API_VERSION=4 |
Rafael Espindola | ccab1dd | 2010-08-11 00:15:13 +0000 | [diff] [blame] | 404 | */ |
| 405 | extern void |
| 406 | lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu); |
| 407 | |
Rafael Espindola | ccab1dd | 2010-08-11 00:15:13 +0000 | [diff] [blame] | 408 | /** |
Nick Kledzik | cac8c8a | 2009-06-04 00:28:45 +0000 | [diff] [blame] | 409 | * Sets the location of the assembler tool to run. If not set, libLTO |
| 410 | * will use gcc to invoke the assembler. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 411 | * |
| 412 | * \since LTO_API_VERSION=3 |
Nick Kledzik | cac8c8a | 2009-06-04 00:28:45 +0000 | [diff] [blame] | 413 | */ |
| 414 | extern void |
| 415 | lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path); |
| 416 | |
Rafael Espindola | 0045646 | 2010-08-10 18:55:09 +0000 | [diff] [blame] | 417 | /** |
| 418 | * 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] | 419 | * |
| 420 | * \since LTO_API_VERSION=4 |
Rafael Espindola | 0045646 | 2010-08-10 18:55:09 +0000 | [diff] [blame] | 421 | */ |
| 422 | extern void |
| 423 | lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args, |
| 424 | int nargs); |
Nick Kledzik | cac8c8a | 2009-06-04 00:28:45 +0000 | [diff] [blame] | 425 | |
| 426 | /** |
Rafael Espindola | b62e6b4 | 2014-05-03 14:34:48 +0000 | [diff] [blame] | 427 | * Adds to a list of all global symbols that must exist in the final generated |
| 428 | * code. If a function is not listed there, it might be inlined into every usage |
| 429 | * and optimized away. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 430 | * |
| 431 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 432 | */ |
| 433 | extern void |
| 434 | lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol); |
| 435 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 436 | /** |
| 437 | * Writes a new object file at the specified path that contains the |
| 438 | * merged contents of all modules added so far. |
| 439 | * 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] | 440 | * |
| 441 | * \since LTO_API_VERSION=5 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 442 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 443 | extern lto_bool_t |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 444 | lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path); |
| 445 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 446 | /** |
| 447 | * Generates code for all added modules into one native object file. |
Manman Ren | 8121e1d | 2015-02-03 18:39:15 +0000 | [diff] [blame] | 448 | * This calls lto_codegen_optimize then lto_codegen_compile_optimized. |
| 449 | * |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 450 | * 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] | 451 | * length set to the buffer size. The buffer is owned by the |
Nick Kledzik | 91a6dcf | 2008-02-27 22:25:36 +0000 | [diff] [blame] | 452 | * lto_code_gen_t and will be freed when lto_codegen_dispose() |
| 453 | * is called, or lto_codegen_compile() is called again. |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 454 | * 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] | 455 | * |
| 456 | * \since prior to LTO_API_VERSION=3 |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 457 | */ |
Nick Kledzik | 91a6dcf | 2008-02-27 22:25:36 +0000 | [diff] [blame] | 458 | extern const void* |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 459 | lto_codegen_compile(lto_code_gen_t cg, size_t* length); |
| 460 | |
Rafael Espindola | 26b57ff | 2011-03-22 20:57:13 +0000 | [diff] [blame] | 461 | /** |
| 462 | * Generates code for all added modules into one native object file. |
Manman Ren | 8121e1d | 2015-02-03 18:39:15 +0000 | [diff] [blame] | 463 | * This calls lto_codegen_optimize then lto_codegen_compile_optimized (instead |
| 464 | * of returning a generated mach-o/ELF buffer, it writes to a file). |
| 465 | * |
Rafael Espindola | 26b57ff | 2011-03-22 20:57:13 +0000 | [diff] [blame] | 466 | * 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] | 467 | * |
| 468 | * \since LTO_API_VERSION=5 |
Rafael Espindola | 26b57ff | 2011-03-22 20:57:13 +0000 | [diff] [blame] | 469 | */ |
Reid Kleckner | ddac151 | 2013-10-24 22:26:04 +0000 | [diff] [blame] | 470 | extern lto_bool_t |
Rafael Espindola | 26b57ff | 2011-03-22 20:57:13 +0000 | [diff] [blame] | 471 | lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name); |
| 472 | |
Manman Ren | 8121e1d | 2015-02-03 18:39:15 +0000 | [diff] [blame] | 473 | /** |
| 474 | * Runs optimization for the merged module. Returns true on error. |
| 475 | * |
| 476 | * \since LTO_API_VERSION=12 |
| 477 | */ |
| 478 | extern lto_bool_t |
| 479 | lto_codegen_optimize(lto_code_gen_t cg); |
| 480 | |
| 481 | /** |
| 482 | * Generates code for the optimized merged module into one native object file. |
| 483 | * It will not run any IR optimizations on the merged module. |
| 484 | * |
| 485 | * On success returns a pointer to a generated mach-o/ELF buffer and length set |
| 486 | * to the buffer size. The buffer is owned by the lto_code_gen_t and will be |
| 487 | * freed when lto_codegen_dispose() is called, or |
| 488 | * lto_codegen_compile_optimized() is called again. On failure, returns NULL |
| 489 | * (check lto_get_error_message() for details). |
| 490 | * |
| 491 | * \since LTO_API_VERSION=12 |
| 492 | */ |
| 493 | extern const void* |
| 494 | lto_codegen_compile_optimized(lto_code_gen_t cg, size_t* length); |
| 495 | |
| 496 | /** |
| 497 | * Returns the runtime API version. |
| 498 | * |
| 499 | * \since LTO_API_VERSION=12 |
| 500 | */ |
| 501 | extern unsigned int |
Rafael Espindola | a5eb775 | 2015-02-04 13:30:28 +0000 | [diff] [blame] | 502 | lto_api_version(void); |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 503 | |
Devang Patel | a0e4fb8 | 2008-07-03 22:53:14 +0000 | [diff] [blame] | 504 | /** |
| 505 | * Sets options to help debug codegen bugs. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 506 | * |
| 507 | * \since prior to LTO_API_VERSION=3 |
Devang Patel | a0e4fb8 | 2008-07-03 22:53:14 +0000 | [diff] [blame] | 508 | */ |
| 509 | extern void |
| 510 | lto_codegen_debug_options(lto_code_gen_t cg, const char *); |
Bill Wendling | 152e473 | 2012-03-31 10:44:20 +0000 | [diff] [blame] | 511 | |
Benjamin Kramer | 9bcb922 | 2012-11-24 16:59:10 +0000 | [diff] [blame] | 512 | /** |
| 513 | * Initializes LLVM disassemblers. |
| 514 | * FIXME: This doesn't really belong here. |
Duncan P. N. Exon Smith | 40fdf5f | 2014-01-16 21:37:17 +0000 | [diff] [blame] | 515 | * |
| 516 | * \since LTO_API_VERSION=5 |
Benjamin Kramer | 9bcb922 | 2012-11-24 16:59:10 +0000 | [diff] [blame] | 517 | */ |
| 518 | extern void |
| 519 | lto_initialize_disassembler(void); |
| 520 | |
Manman Ren | ce0a066 | 2015-04-17 17:10:09 +0000 | [diff] [blame] | 521 | /** |
| 522 | * Sets if we should run internalize pass during optimization and code |
| 523 | * generation. |
| 524 | * |
Duncan P. N. Exon Smith | d998294 | 2015-04-27 22:08:01 +0000 | [diff] [blame] | 525 | * \since LTO_API_VERSION=14 |
Manman Ren | ce0a066 | 2015-04-17 17:10:09 +0000 | [diff] [blame] | 526 | */ |
| 527 | extern void |
| 528 | lto_codegen_set_should_internalize(lto_code_gen_t cg, |
| 529 | lto_bool_t ShouldInternalize); |
| 530 | |
Duncan P. N. Exon Smith | 5a490d0 | 2015-04-27 23:38:54 +0000 | [diff] [blame] | 531 | /** |
| 532 | * \brief Set whether to embed uselists in bitcode. |
| 533 | * |
| 534 | * Sets whether \a lto_codegen_write_merged_modules() should embed uselists in |
| 535 | * output bitcode. This should be turned on for all -save-temps output. |
| 536 | * |
| 537 | * \since LTO_API_VERSION=15 |
| 538 | */ |
| 539 | extern void |
| 540 | lto_codegen_set_should_embed_uselists(lto_code_gen_t cg, |
| 541 | lto_bool_t ShouldEmbedUselists); |
| 542 | |
Mehdi Amini | 7c4a1a8 | 2016-03-09 01:37:22 +0000 | [diff] [blame] | 543 | /** |
| 544 | * @} |
| 545 | * @defgroup LLVMCTLTO ThinLTO |
| 546 | * @ingroup LLVMC |
| 547 | * |
| 548 | * @{ |
| 549 | */ |
| 550 | |
| 551 | /** |
| 552 | * Type to wrap a single object returned by ThinLTO. |
| 553 | * |
| 554 | * \since LTO_API_VERSION=18 |
| 555 | */ |
| 556 | typedef struct { |
Mehdi Amini | c286b9f | 2016-03-19 21:28:18 +0000 | [diff] [blame] | 557 | const char *Buffer; |
Mehdi Amini | 7c4a1a8 | 2016-03-09 01:37:22 +0000 | [diff] [blame] | 558 | size_t Size; |
| 559 | } LTOObjectBuffer; |
| 560 | |
| 561 | /** |
| 562 | * Instantiates a ThinLTO code generator. |
| 563 | * Returns NULL on error (check lto_get_error_message() for details). |
| 564 | * |
| 565 | * |
| 566 | * The ThinLTOCodeGenerator is not intended to be reuse for multiple |
| 567 | * compilation: the model is that the client adds modules to the generator and |
| 568 | * ask to perform the ThinLTO optimizations / codegen, and finally destroys the |
| 569 | * codegenerator. |
| 570 | * |
| 571 | * \since LTO_API_VERSION=18 |
| 572 | */ |
Mehdi Amini | 3ed41d6 | 2016-03-09 02:36:09 +0000 | [diff] [blame] | 573 | extern thinlto_code_gen_t thinlto_create_codegen(void); |
Mehdi Amini | 7c4a1a8 | 2016-03-09 01:37:22 +0000 | [diff] [blame] | 574 | |
| 575 | /** |
| 576 | * Frees the generator and all memory it internally allocated. |
| 577 | * Upon return the thinlto_code_gen_t is no longer valid. |
| 578 | * |
| 579 | * \since LTO_API_VERSION=18 |
| 580 | */ |
| 581 | extern void thinlto_codegen_dispose(thinlto_code_gen_t cg); |
| 582 | |
| 583 | /** |
| 584 | * Add a module to a ThinLTO code generator. Identifier has to be unique among |
| 585 | * all the modules in a code generator. The data buffer stays owned by the |
| 586 | * client, and is expected to be available for the entire lifetime of the |
| 587 | * thinlto_code_gen_t it is added to. |
| 588 | * |
| 589 | * On failure, returns NULL (check lto_get_error_message() for details). |
| 590 | * |
| 591 | * |
| 592 | * \since LTO_API_VERSION=18 |
| 593 | */ |
| 594 | extern void thinlto_codegen_add_module(thinlto_code_gen_t cg, |
| 595 | const char *identifier, const char *data, |
| 596 | int length); |
| 597 | |
| 598 | /** |
| 599 | * Optimize and codegen all the modules added to the codegenerator using |
| 600 | * ThinLTO. Resulting objects are accessible using thinlto_module_get_object(). |
| 601 | * |
| 602 | * \since LTO_API_VERSION=18 |
| 603 | */ |
| 604 | extern void thinlto_codegen_process(thinlto_code_gen_t cg); |
| 605 | |
| 606 | /** |
| 607 | * Returns the number of object files produced by the ThinLTO CodeGenerator. |
| 608 | * |
| 609 | * It usually matches the number of input files, but this is not a guarantee of |
| 610 | * the API and may change in future implementation, so the client should not |
| 611 | * assume it. |
| 612 | * |
| 613 | * \since LTO_API_VERSION=18 |
| 614 | */ |
| 615 | extern unsigned int thinlto_module_get_num_objects(thinlto_code_gen_t cg); |
| 616 | |
| 617 | /** |
| 618 | * Returns a reference to the ith object file produced by the ThinLTO |
| 619 | * CodeGenerator. |
| 620 | * |
| 621 | * Client should use \p thinlto_module_get_num_objects() to get the number of |
| 622 | * available objects. |
| 623 | * |
| 624 | * \since LTO_API_VERSION=18 |
| 625 | */ |
| 626 | extern LTOObjectBuffer thinlto_module_get_object(thinlto_code_gen_t cg, |
| 627 | unsigned int index); |
| 628 | |
| 629 | /** |
| 630 | * Sets which PIC code model to generate. |
| 631 | * Returns true on error (check lto_get_error_message() for details). |
| 632 | * |
| 633 | * \since LTO_API_VERSION=18 |
| 634 | */ |
| 635 | extern lto_bool_t thinlto_codegen_set_pic_model(thinlto_code_gen_t cg, |
| 636 | lto_codegen_model); |
| 637 | |
| 638 | /** |
| 639 | * @} |
| 640 | * @defgroup LLVMCTLTO_CACHING ThinLTO Cache Control |
| 641 | * @ingroup LLVMCTLTO |
| 642 | * |
| 643 | * These entry points control the ThinLTO cache. The cache is intended to |
| 644 | * support incremental build, and thus needs to be persistent accross build. |
| 645 | * The client enabled the cache by supplying a path to an existing directory. |
| 646 | * The code generator will use this to store objects files that may be reused |
| 647 | * during a subsequent build. |
| 648 | * To avoid filling the disk space, a few knobs are provided: |
| 649 | * - The pruning interval limit the frequency at which the garbage collector |
| 650 | * will try to scan the cache directory to prune it from expired entries. |
| 651 | * Setting to -1 disable the pruning (default). |
| 652 | * - The pruning expiration time indicates to the garbage collector how old an |
| 653 | * entry needs to be to be removed. |
| 654 | * - Finally, the garbage collector can be instructed to prune the cache till |
| 655 | * the occupied space goes below a threshold. |
| 656 | * @{ |
| 657 | */ |
| 658 | |
| 659 | /** |
| 660 | * Sets the path to a directory to use as a cache storage for incremental build. |
| 661 | * |
| 662 | * \since LTO_API_VERSION=18 |
| 663 | */ |
| 664 | extern void thinlto_codegen_set_cache_dir(thinlto_code_gen_t cg, |
| 665 | const char *cache_dir); |
| 666 | |
| 667 | /** |
| 668 | * Sets the cache pruning interval (in seconds). A negative value disable the |
| 669 | * pruning (default). |
| 670 | * |
| 671 | * \since LTO_API_VERSION=18 |
| 672 | */ |
| 673 | extern void thinlto_codegen_set_cache_pruning_interval(thinlto_code_gen_t cg, |
| 674 | int interval); |
| 675 | |
| 676 | /** |
| 677 | * Sets the maximum cache size that can be persistent across build, in terms of |
| 678 | * percentage of the available space on the the disk. Set to 100 to indicate |
| 679 | * no limit, 50 to indicate that the cache size will not be left over half the |
| 680 | * available space. A value over 100 will be reduced to 100. |
| 681 | * |
| 682 | * The formula looks like: |
| 683 | * AvailableSpace = FreeSpace + ExistingCacheSize |
| 684 | * NewCacheSize = AvailableSpace * P/100 |
| 685 | * |
| 686 | * \since LTO_API_VERSION=18 |
| 687 | */ |
| 688 | extern void thinlto_codegen_set_final_cache_size_relative_to_available_space( |
| 689 | thinlto_code_gen_t cg, unsigned percentage); |
| 690 | |
| 691 | /** |
| 692 | * Sets the expiration (in seconds) for an entry in the cache. |
| 693 | * |
| 694 | * \since LTO_API_VERSION=18 |
| 695 | */ |
| 696 | extern void thinlto_codegen_set_cache_entry_expiration(thinlto_code_gen_t cg, |
| 697 | unsigned expiration); |
| 698 | |
| 699 | /** |
| 700 | * @} |
| 701 | */ |
| 702 | |
| 703 | /** |
| 704 | * Sets the path to a directory to use as a storage for temporary bitcode files. |
| 705 | * The intention is to make the bitcode files available for debugging at various |
| 706 | * stage of the pipeline. |
| 707 | * |
| 708 | * \since LTO_API_VERSION=18 |
| 709 | */ |
| 710 | extern void thinlto_codegen_set_savetemps_dir(thinlto_code_gen_t cg, |
| 711 | const char *save_temps_dir); |
| 712 | |
| 713 | /** |
| 714 | * Sets the cpu to generate code for. |
| 715 | * |
| 716 | * \since LTO_API_VERSION=18 |
| 717 | */ |
| 718 | extern void thinlto_codegen_set_cpu(thinlto_code_gen_t cg, const char *cpu); |
| 719 | |
| 720 | /** |
| 721 | * Parse -mllvm style debug options. |
| 722 | * |
| 723 | * \since LTO_API_VERSION=18 |
| 724 | */ |
| 725 | extern void thinlto_debug_options(const char *const *options, int number); |
| 726 | |
| 727 | /** |
| 728 | * Test if a module has support for ThinLTO linking. |
| 729 | * |
| 730 | * \since LTO_API_VERSION=18 |
| 731 | */ |
Sean Silva | 05e5cbf | 2016-03-09 04:05:28 +0000 | [diff] [blame] | 732 | extern lto_bool_t lto_module_is_thinlto(lto_module_t mod); |
Mehdi Amini | 7c4a1a8 | 2016-03-09 01:37:22 +0000 | [diff] [blame] | 733 | |
| 734 | /** |
| 735 | * Adds a symbol to the list of global symbols that must exist in the final |
| 736 | * generated code. If a function is not listed there, it might be inlined into |
| 737 | * every usage and optimized away. For every single module, the functions |
| 738 | * referenced from code outside of the ThinLTO modules need to be added here. |
| 739 | * |
| 740 | * \since LTO_API_VERSION=18 |
| 741 | */ |
| 742 | extern void thinlto_codegen_add_must_preserve_symbol(thinlto_code_gen_t cg, |
| 743 | const char *name, |
| 744 | int length); |
| 745 | |
| 746 | /** |
| 747 | * Adds a symbol to the list of global symbols that are cross-referenced between |
| 748 | * ThinLTO files. If the ThinLTO CodeGenerator can ensure that every |
| 749 | * references from a ThinLTO module to this symbol is optimized away, then |
| 750 | * the symbol can be discarded. |
| 751 | * |
| 752 | * \since LTO_API_VERSION=18 |
| 753 | */ |
| 754 | extern void thinlto_codegen_add_cross_referenced_symbol(thinlto_code_gen_t cg, |
| 755 | const char *name, |
| 756 | int length); |
| 757 | |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 758 | #ifdef __cplusplus |
| 759 | } |
| 760 | #endif |
| 761 | |
Gregory Szorc | 34c863a | 2012-03-21 03:54:29 +0000 | [diff] [blame] | 762 | /** |
| 763 | * @} |
| 764 | */ |
Nick Kledzik | 07b4a62 | 2008-02-26 20:26:43 +0000 | [diff] [blame] | 765 | |
Eugene Zelenko | 35623fb | 2016-03-28 17:40:08 +0000 | [diff] [blame^] | 766 | #endif /* LLVM_C_LTO_H */ |