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