blob: 090cd34af4e9388fbf6103d29edac5c8c4a01803 [file] [log] [blame]
Nick Kledzik77595fc2008-02-26 20:26:43 +00001/*===-- 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 Staszak674be022013-01-10 00:45:19 +000016#ifndef LLVM_C_LTO_H
17#define LLVM_C_LTO_H
Nick Kledzik77595fc2008-02-26 20:26:43 +000018
Eugene Zelenkod0a33c42016-03-28 17:40:08 +000019#ifdef __cplusplus
20#include <cstddef>
21#else
Nick Kledzik77595fc2008-02-26 20:26:43 +000022#include <stddef.h>
Eugene Zelenkod0a33c42016-03-28 17:40:08 +000023#endif
Peter Collingbournee8a665f2013-09-25 07:52:21 +000024#include <sys/types.h>
Nick Kledzik77595fc2008-02-26 20:26:43 +000025
Reid Kleckner07d5aef2013-10-24 22:26:04 +000026#ifndef __cplusplus
27#if !defined(_MSC_VER)
28#include <stdbool.h>
29typedef bool lto_bool_t;
30#else
Rafael Espindolac7ef7c22013-10-25 12:59:02 +000031/* 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 Kleckner07d5aef2013-10-24 22:26:04 +000034typedef unsigned char lto_bool_t;
35#endif
36#else
37typedef bool lto_bool_t;
38#endif
39
Gregory Szorc6244b512012-03-21 03:54:29 +000040/**
41 * @defgroup LLVMCLTO LTO
42 * @ingroup LLVMC
43 *
44 * @{
45 */
46
James Hendersonb981f4f2018-09-17 10:21:26 +000047#define LTO_API_VERSION 23
Mehdi Amini51f55482016-04-01 06:47:02 +000048
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +000049/**
50 * \since prior to LTO_API_VERSION=3
51 */
Nick Kledzik77595fc2008-02-26 20:26:43 +000052typedef enum {
Bill Wendling7afea0c2010-09-27 20:17:45 +000053 LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of alignment */
Bill Wendling168f1422012-03-31 10:44:20 +000054 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 Wendling7afea0c2010-09-27 20:17:45 +000063 LTO_SYMBOL_DEFINITION_WEAKUNDEF = 0x00000500,
Bill Wendling168f1422012-03-31 10:44:20 +000064 LTO_SYMBOL_SCOPE_MASK = 0x00003800,
65 LTO_SYMBOL_SCOPE_INTERNAL = 0x00000800,
66 LTO_SYMBOL_SCOPE_HIDDEN = 0x00001000,
67 LTO_SYMBOL_SCOPE_PROTECTED = 0x00002000,
Bill Wendling7afea0c2010-09-27 20:17:45 +000068 LTO_SYMBOL_SCOPE_DEFAULT = 0x00001800,
Peter Collingbourne6f69f402015-06-11 21:41:27 +000069 LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x00002800,
Peter Collingbournedfe47862015-07-04 03:42:35 +000070 LTO_SYMBOL_COMDAT = 0x00004000,
71 LTO_SYMBOL_ALIAS = 0x00008000
Nick Kledzik77595fc2008-02-26 20:26:43 +000072} lto_symbol_attributes;
73
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +000074/**
75 * \since prior to LTO_API_VERSION=3
76 */
Nick Kledzik77595fc2008-02-26 20:26:43 +000077typedef enum {
78 LTO_DEBUG_MODEL_NONE = 0,
79 LTO_DEBUG_MODEL_DWARF = 1
80} lto_debug_model;
81
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +000082/**
83 * \since prior to LTO_API_VERSION=3
84 */
Nick Kledzik77595fc2008-02-26 20:26:43 +000085typedef enum {
86 LTO_CODEGEN_PIC_MODEL_STATIC = 0,
87 LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
James Molloy555f97f2014-04-14 13:54:16 +000088 LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2,
89 LTO_CODEGEN_PIC_MODEL_DEFAULT = 3
Nick Kledzik77595fc2008-02-26 20:26:43 +000090} lto_codegen_model;
91
Nick Kledzik77595fc2008-02-26 20:26:43 +000092/** opaque reference to a loaded object module */
Rafael Espindoladd326082014-05-03 14:59:52 +000093typedef struct LLVMOpaqueLTOModule *lto_module_t;
Nick Kledzik77595fc2008-02-26 20:26:43 +000094
95/** opaque reference to a code generator */
Rafael Espindoladd326082014-05-03 14:59:52 +000096typedef struct LLVMOpaqueLTOCodeGenerator *lto_code_gen_t;
Nick Kledzik77595fc2008-02-26 20:26:43 +000097
Mehdi Amini73cf01b2016-03-09 01:37:22 +000098/** opaque reference to a thin code generator */
99typedef struct LLVMOpaqueThinLTOCodeGenerator *thinlto_code_gen_t;
100
Nick Kledzik77595fc2008-02-26 20:26:43 +0000101#ifdef __cplusplus
102extern "C" {
103#endif
104
105/**
106 * Returns a printable string.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000107 *
108 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000109 */
110extern const char*
Gordon Henriksen16c1f442008-05-04 12:55:34 +0000111lto_get_version(void);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000112
Nick Kledzik77595fc2008-02-26 20:26:43 +0000113/**
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000114 * Returns the last error string or NULL if last operation was successful.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000115 *
116 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000117 */
118extern const char*
Gordon Henriksen16c1f442008-05-04 12:55:34 +0000119lto_get_error_message(void);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000120
Nick Kledzik77595fc2008-02-26 20:26:43 +0000121/**
122 * Checks if a file is a loadable object file.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000123 *
124 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000125 */
Reid Kleckner07d5aef2013-10-24 22:26:04 +0000126extern lto_bool_t
Nick Kledzik77595fc2008-02-26 20:26:43 +0000127lto_module_is_object_file(const char* path);
128
Nick Kledzik77595fc2008-02-26 20:26:43 +0000129/**
130 * Checks if a file is a loadable object compiled for requested target.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000131 *
132 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000133 */
Reid Kleckner07d5aef2013-10-24 22:26:04 +0000134extern lto_bool_t
Bill Wendling168f1422012-03-31 10:44:20 +0000135lto_module_is_object_file_for_target(const char* path,
Nick Lewyckyb454eab2009-02-06 07:01:00 +0000136 const char* target_triple_prefix);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000137
Nick Kledzik77595fc2008-02-26 20:26:43 +0000138/**
Mehdi Amini45e997d2016-07-11 23:10:18 +0000139 * Return true if \p Buffer contains a bitcode file with ObjC code (category
140 * or class) in it.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000141 *
Mehdi Amini45e997d2016-07-11 23:10:18 +0000142 * \since LTO_API_VERSION=20
Nick Kledzik77595fc2008-02-26 20:26:43 +0000143 */
Mehdi Amini3b182412016-07-11 23:55:01 +0000144extern lto_bool_t
145lto_module_has_objc_category(const void *mem, size_t length);
Mehdi Amini45e997d2016-07-11 23:10:18 +0000146
147/**
Amaury Sechet7f21dd52016-07-26 04:20:30 +0000148 * Checks if a buffer is a loadable object file.
149 *
150 * \since prior to LTO_API_VERSION=3
151 */
Mehdi Amini45e997d2016-07-11 23:10:18 +0000152extern lto_bool_t lto_module_is_object_file_in_memory(const void *mem,
153 size_t length);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000154
Nick Kledzik77595fc2008-02-26 20:26:43 +0000155/**
156 * Checks if a buffer is a loadable object compiled for requested target.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000157 *
158 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000159 */
Reid Kleckner07d5aef2013-10-24 22:26:04 +0000160extern lto_bool_t
Bill Wendling168f1422012-03-31 10:44:20 +0000161lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
Eric Christopherca3ca132010-07-12 05:13:35 +0000162 const char* target_triple_prefix);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000163
Nick Kledzik77595fc2008-02-26 20:26:43 +0000164/**
165 * Loads an object file from disk.
166 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000167 *
168 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000169 */
170extern lto_module_t
Owen Anderson0e7a5462009-07-02 00:31:14 +0000171lto_module_create(const char* path);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000172
Nick Kledzik77595fc2008-02-26 20:26:43 +0000173/**
174 * Loads an object file from memory.
175 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000176 *
177 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000178 */
179extern lto_module_t
Owen Anderson0e7a5462009-07-02 00:31:14 +0000180lto_module_create_from_memory(const void* mem, size_t length);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000181
Rafael Espindolab4cc0312011-02-08 22:40:47 +0000182/**
Manman Renf3fc8c92014-02-10 23:26:14 +0000183 * Loads an object file from memory with an extra path argument.
184 * Returns NULL on error (check lto_get_error_message() for details).
185 *
Duncan P. N. Exon Smithe9e340e2015-04-27 22:08:01 +0000186 * \since LTO_API_VERSION=9
Manman Renf3fc8c92014-02-10 23:26:14 +0000187 */
188extern lto_module_t
189lto_module_create_from_memory_with_path(const void* mem, size_t length,
190 const char *path);
191
192/**
Adrian Prantl26b584c2018-05-01 15:54:18 +0000193 * Loads an object file in its own context.
Duncan P. N. Exon Smith4f897092014-11-11 23:19:23 +0000194 *
195 * Loads an object file in its own LLVMContext. This function call is
196 * thread-safe. However, modules created this way should not be merged into an
197 * lto_code_gen_t using \a lto_codegen_add_module().
198 *
199 * Returns NULL on error (check lto_get_error_message() for details).
200 *
201 * \since LTO_API_VERSION=11
202 */
203extern lto_module_t
204lto_module_create_in_local_context(const void *mem, size_t length,
205 const char *path);
206
207/**
Adrian Prantl26b584c2018-05-01 15:54:18 +0000208 * Loads an object file in the codegen context.
Duncan P. N. Exon Smith4f897092014-11-11 23:19:23 +0000209 *
210 * Loads an object file into the same context as \c cg. The module is safe to
211 * add using \a lto_codegen_add_module().
212 *
213 * Returns NULL on error (check lto_get_error_message() for details).
214 *
215 * \since LTO_API_VERSION=11
216 */
217extern lto_module_t
218lto_module_create_in_codegen_context(const void *mem, size_t length,
219 const char *path, lto_code_gen_t cg);
220
221/**
Rafael Espindolab4cc0312011-02-08 22:40:47 +0000222 * 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 Smith7c411502014-01-16 21:37:17 +0000224 *
225 * \since LTO_API_VERSION=5
Rafael Espindolab4cc0312011-02-08 22:40:47 +0000226 */
227extern lto_module_t
Rafael Espindolaf21b1052011-03-17 00:36:11 +0000228lto_module_create_from_fd(int fd, const char *path, size_t file_size);
229
230/**
231 * Loads an object file from disk. The seek point of fd is not preserved.
232 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000233 *
234 * \since LTO_API_VERSION=5
Rafael Espindolaf21b1052011-03-17 00:36:11 +0000235 */
236extern lto_module_t
237lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size,
238 size_t map_size, off_t offset);
Rafael Espindolab4cc0312011-02-08 22:40:47 +0000239
Nick Kledzik77595fc2008-02-26 20:26:43 +0000240/**
241 * Frees all memory internally allocated by the module.
242 * Upon return the lto_module_t is no longer valid.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000243 *
244 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000245 */
246extern void
247lto_module_dispose(lto_module_t mod);
248
Nick Kledzik77595fc2008-02-26 20:26:43 +0000249/**
250 * Returns triple string which the object module was compiled under.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000251 *
252 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000253 */
254extern const char*
255lto_module_get_target_triple(lto_module_t mod);
256
Rafael Espindolacbb170d2010-08-09 21:09:46 +0000257/**
258 * Sets triple string with which the object will be codegened.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000259 *
260 * \since LTO_API_VERSION=4
Rafael Espindolacbb170d2010-08-09 21:09:46 +0000261 */
262extern void
263lto_module_set_target_triple(lto_module_t mod, const char *triple);
264
Nick Kledzik77595fc2008-02-26 20:26:43 +0000265/**
266 * Returns the number of symbols in the object module.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000267 *
268 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000269 */
Devang Patel6a6623c2011-01-07 22:26:25 +0000270extern unsigned int
Nick Kledzik77595fc2008-02-26 20:26:43 +0000271lto_module_get_num_symbols(lto_module_t mod);
272
Nick Kledzik77595fc2008-02-26 20:26:43 +0000273/**
274 * Returns the name of the ith symbol in the object module.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000275 *
276 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000277 */
278extern const char*
Devang Patel6a6623c2011-01-07 22:26:25 +0000279lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000280
Nick Kledzik77595fc2008-02-26 20:26:43 +0000281/**
282 * Returns the attributes of the ith symbol in the object module.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000283 *
284 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000285 */
286extern lto_symbol_attributes
Devang Patel6a6623c2011-01-07 22:26:25 +0000287lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000288
Yunzhong Gaoa747cf12014-01-21 18:31:27 +0000289/**
Peter Collingbourne10e9fb12015-06-29 23:09:12 +0000290 * Returns the module's linker options.
Yunzhong Gaoa747cf12014-01-21 18:31:27 +0000291 *
Peter Collingbourne10e9fb12015-06-29 23:09:12 +0000292 * The linker options may consist of multiple flags. It is the linker's
Peter Collingbournea6367d92015-06-29 22:04:09 +0000293 * responsibility to split the flags using a platform-specific mechanism.
294 *
Peter Collingbourne10e9fb12015-06-29 23:09:12 +0000295 * \since LTO_API_VERSION=16
Yunzhong Gaoa747cf12014-01-21 18:31:27 +0000296 */
297extern const char*
Peter Collingbourne10e9fb12015-06-29 23:09:12 +0000298lto_module_get_linkeropts(lto_module_t mod);
Yunzhong Gaoa747cf12014-01-21 18:31:27 +0000299
Quentin Colombet4c831d92014-01-15 22:04:35 +0000300/**
301 * Diagnostic severity.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000302 *
303 * \since LTO_API_VERSION=7
Quentin Colombet4c831d92014-01-15 22:04:35 +0000304 */
305typedef enum {
Tobias Grosser72c42d92014-02-28 09:08:45 +0000306 LTO_DS_ERROR = 0,
307 LTO_DS_WARNING = 1,
308 LTO_DS_REMARK = 3, // Added in LTO_API_VERSION=10.
309 LTO_DS_NOTE = 2
Quentin Colombet4c831d92014-01-15 22:04:35 +0000310} lto_codegen_diagnostic_severity_t;
311
312/**
313 * Diagnostic handler type.
314 * \p severity defines the severity.
315 * \p diag is the actual diagnostic.
316 * The diagnostic is not prefixed by any of severity keyword, e.g., 'error: '.
317 * \p ctxt is used to pass the context set with the diagnostic handler.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000318 *
319 * \since LTO_API_VERSION=7
Quentin Colombet4c831d92014-01-15 22:04:35 +0000320 */
321typedef void (*lto_diagnostic_handler_t)(
322 lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt);
323
324/**
325 * Set a diagnostic handler and the related context (void *).
326 * This is more general than lto_get_error_message, as the diagnostic handler
327 * can be called at anytime within lto.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000328 *
329 * \since LTO_API_VERSION=7
Quentin Colombet4c831d92014-01-15 22:04:35 +0000330 */
331extern void lto_codegen_set_diagnostic_handler(lto_code_gen_t,
332 lto_diagnostic_handler_t,
333 void *);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000334
335/**
336 * Instantiates a code generator.
337 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000338 *
Duncan P. N. Exon Smith4f897092014-11-11 23:19:23 +0000339 * All modules added using \a lto_codegen_add_module() must have been created
340 * in the same context as the codegen.
341 *
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000342 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000343 */
344extern lto_code_gen_t
Owen Anderson0e7a5462009-07-02 00:31:14 +0000345lto_codegen_create(void);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000346
Nick Kledzik77595fc2008-02-26 20:26:43 +0000347/**
Adrian Prantl26b584c2018-05-01 15:54:18 +0000348 * Instantiate a code generator in its own context.
Duncan P. N. Exon Smith4f897092014-11-11 23:19:23 +0000349 *
350 * Instantiates a code generator in its own context. Modules added via \a
351 * lto_codegen_add_module() must have all been created in the same context,
352 * using \a lto_module_create_in_codegen_context().
353 *
354 * \since LTO_API_VERSION=11
355 */
356extern lto_code_gen_t
357lto_codegen_create_in_local_context(void);
358
359/**
Nick Kledzik77595fc2008-02-26 20:26:43 +0000360 * Frees all code generator and all memory it internally allocated.
361 * Upon return the lto_code_gen_t is no longer valid.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000362 *
363 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000364 */
365extern void
366lto_codegen_dispose(lto_code_gen_t);
367
Nick Kledzik77595fc2008-02-26 20:26:43 +0000368/**
369 * Add an object module to the set of modules for which code will be generated.
370 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000371 *
Duncan P. N. Exon Smith4f897092014-11-11 23:19:23 +0000372 * \c cg and \c mod must both be in the same context. See \a
373 * lto_codegen_create_in_local_context() and \a
374 * lto_module_create_in_codegen_context().
375 *
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000376 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000377 */
Reid Kleckner07d5aef2013-10-24 22:26:04 +0000378extern lto_bool_t
Nick Kledzik77595fc2008-02-26 20:26:43 +0000379lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod);
380
Nick Kledzik77595fc2008-02-26 20:26:43 +0000381/**
Peter Collingbourne8c1602d2015-08-24 22:22:53 +0000382 * Sets the object module for code generation. This will transfer the ownership
383 * of the module to the code generator.
Manman Renbd26e6a2015-02-24 00:45:56 +0000384 *
385 * \c cg and \c mod must both be in the same context.
386 *
Duncan P. N. Exon Smithe9e340e2015-04-27 22:08:01 +0000387 * \since LTO_API_VERSION=13
Manman Renbd26e6a2015-02-24 00:45:56 +0000388 */
389extern void
390lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod);
391
392/**
Nick Kledzik77595fc2008-02-26 20:26:43 +0000393 * Sets if debug info should be generated.
394 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000395 *
396 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000397 */
Reid Kleckner07d5aef2013-10-24 22:26:04 +0000398extern lto_bool_t
Nick Kledzik77595fc2008-02-26 20:26:43 +0000399lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model);
400
Nick Kledzik77595fc2008-02-26 20:26:43 +0000401/**
402 * Sets which PIC code model to generated.
403 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000404 *
405 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000406 */
Reid Kleckner07d5aef2013-10-24 22:26:04 +0000407extern lto_bool_t
Nick Kledzik77595fc2008-02-26 20:26:43 +0000408lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
409
Nick Kledzik77595fc2008-02-26 20:26:43 +0000410/**
Rafael Espindola2d643ef2010-08-11 00:15:13 +0000411 * Sets the cpu to generate code for.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000412 *
413 * \since LTO_API_VERSION=4
Rafael Espindola2d643ef2010-08-11 00:15:13 +0000414 */
415extern void
416lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
417
Rafael Espindola2d643ef2010-08-11 00:15:13 +0000418/**
Nick Kledzikcbad5862009-06-04 00:28:45 +0000419 * Sets the location of the assembler tool to run. If not set, libLTO
420 * will use gcc to invoke the assembler.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000421 *
422 * \since LTO_API_VERSION=3
Nick Kledzikcbad5862009-06-04 00:28:45 +0000423 */
424extern void
425lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path);
426
Rafael Espindola98197e52010-08-10 18:55:09 +0000427/**
428 * Sets extra arguments that libLTO should pass to the assembler.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000429 *
430 * \since LTO_API_VERSION=4
Rafael Espindola98197e52010-08-10 18:55:09 +0000431 */
432extern void
433lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args,
434 int nargs);
Nick Kledzikcbad5862009-06-04 00:28:45 +0000435
436/**
Rafael Espindolafcee7222014-05-03 14:34:48 +0000437 * Adds to a list of all global symbols that must exist in the final generated
438 * code. If a function is not listed there, it might be inlined into every usage
439 * and optimized away.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000440 *
441 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000442 */
443extern void
444lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
445
Nick Kledzik77595fc2008-02-26 20:26:43 +0000446/**
447 * Writes a new object file at the specified path that contains the
448 * merged contents of all modules added so far.
449 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000450 *
451 * \since LTO_API_VERSION=5
Nick Kledzik77595fc2008-02-26 20:26:43 +0000452 */
Reid Kleckner07d5aef2013-10-24 22:26:04 +0000453extern lto_bool_t
Nick Kledzik77595fc2008-02-26 20:26:43 +0000454lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
455
Nick Kledzik77595fc2008-02-26 20:26:43 +0000456/**
457 * Generates code for all added modules into one native object file.
Manman Ren69e4dd12015-02-03 18:39:15 +0000458 * This calls lto_codegen_optimize then lto_codegen_compile_optimized.
459 *
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000460 * On success returns a pointer to a generated mach-o/ELF buffer and
Bill Wendling168f1422012-03-31 10:44:20 +0000461 * length set to the buffer size. The buffer is owned by the
Nick Kledzikef194ed2008-02-27 22:25:36 +0000462 * lto_code_gen_t and will be freed when lto_codegen_dispose()
463 * is called, or lto_codegen_compile() is called again.
Nick Kledzik77595fc2008-02-26 20:26:43 +0000464 * On failure, returns NULL (check lto_get_error_message() for details).
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000465 *
466 * \since prior to LTO_API_VERSION=3
Nick Kledzik77595fc2008-02-26 20:26:43 +0000467 */
Nick Kledzikef194ed2008-02-27 22:25:36 +0000468extern const void*
Nick Kledzik77595fc2008-02-26 20:26:43 +0000469lto_codegen_compile(lto_code_gen_t cg, size_t* length);
470
Rafael Espindola6421a882011-03-22 20:57:13 +0000471/**
472 * Generates code for all added modules into one native object file.
Manman Ren69e4dd12015-02-03 18:39:15 +0000473 * This calls lto_codegen_optimize then lto_codegen_compile_optimized (instead
474 * of returning a generated mach-o/ELF buffer, it writes to a file).
475 *
Rafael Espindola6421a882011-03-22 20:57:13 +0000476 * The name of the file is written to name. Returns true on error.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000477 *
478 * \since LTO_API_VERSION=5
Rafael Espindola6421a882011-03-22 20:57:13 +0000479 */
Reid Kleckner07d5aef2013-10-24 22:26:04 +0000480extern lto_bool_t
Rafael Espindola6421a882011-03-22 20:57:13 +0000481lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name);
482
Manman Ren69e4dd12015-02-03 18:39:15 +0000483/**
484 * Runs optimization for the merged module. Returns true on error.
485 *
486 * \since LTO_API_VERSION=12
487 */
488extern lto_bool_t
489lto_codegen_optimize(lto_code_gen_t cg);
490
491/**
492 * Generates code for the optimized merged module into one native object file.
493 * It will not run any IR optimizations on the merged module.
494 *
495 * On success returns a pointer to a generated mach-o/ELF buffer and length set
496 * to the buffer size. The buffer is owned by the lto_code_gen_t and will be
497 * freed when lto_codegen_dispose() is called, or
498 * lto_codegen_compile_optimized() is called again. On failure, returns NULL
499 * (check lto_get_error_message() for details).
500 *
501 * \since LTO_API_VERSION=12
502 */
503extern const void*
504lto_codegen_compile_optimized(lto_code_gen_t cg, size_t* length);
505
506/**
507 * Returns the runtime API version.
508 *
509 * \since LTO_API_VERSION=12
510 */
511extern unsigned int
Rafael Espindola27f1ced2015-02-04 13:30:28 +0000512lto_api_version(void);
Nick Kledzik77595fc2008-02-26 20:26:43 +0000513
Devang Patela93ae712008-07-03 22:53:14 +0000514/**
515 * Sets options to help debug codegen bugs.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000516 *
517 * \since prior to LTO_API_VERSION=3
Devang Patela93ae712008-07-03 22:53:14 +0000518 */
519extern void
520lto_codegen_debug_options(lto_code_gen_t cg, const char *);
Bill Wendling168f1422012-03-31 10:44:20 +0000521
Benjamin Kramer8a2ce5d2012-11-24 16:59:10 +0000522/**
523 * Initializes LLVM disassemblers.
524 * FIXME: This doesn't really belong here.
Duncan P. N. Exon Smith7c411502014-01-16 21:37:17 +0000525 *
526 * \since LTO_API_VERSION=5
Benjamin Kramer8a2ce5d2012-11-24 16:59:10 +0000527 */
528extern void
529lto_initialize_disassembler(void);
530
Manman Ren44b800f2015-04-17 17:10:09 +0000531/**
532 * Sets if we should run internalize pass during optimization and code
533 * generation.
534 *
Duncan P. N. Exon Smithe9e340e2015-04-27 22:08:01 +0000535 * \since LTO_API_VERSION=14
Manman Ren44b800f2015-04-17 17:10:09 +0000536 */
537extern void
538lto_codegen_set_should_internalize(lto_code_gen_t cg,
539 lto_bool_t ShouldInternalize);
540
Duncan P. N. Exon Smith0b29dea2015-04-27 23:38:54 +0000541/**
Adrian Prantl26b584c2018-05-01 15:54:18 +0000542 * Set whether to embed uselists in bitcode.
Duncan P. N. Exon Smith0b29dea2015-04-27 23:38:54 +0000543 *
544 * Sets whether \a lto_codegen_write_merged_modules() should embed uselists in
545 * output bitcode. This should be turned on for all -save-temps output.
546 *
547 * \since LTO_API_VERSION=15
548 */
549extern void
550lto_codegen_set_should_embed_uselists(lto_code_gen_t cg,
551 lto_bool_t ShouldEmbedUselists);
552
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000553/**
Mehdi Amini0b9a8d82017-04-08 19:20:30 +0000554 * @} // endgoup LLVMCLTO
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000555 * @defgroup LLVMCTLTO ThinLTO
556 * @ingroup LLVMC
557 *
558 * @{
559 */
560
561/**
562 * Type to wrap a single object returned by ThinLTO.
563 *
564 * \since LTO_API_VERSION=18
565 */
566typedef struct {
Mehdi Amini14e46322016-03-19 21:28:18 +0000567 const char *Buffer;
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000568 size_t Size;
569} LTOObjectBuffer;
570
571/**
572 * Instantiates a ThinLTO code generator.
573 * Returns NULL on error (check lto_get_error_message() for details).
574 *
575 *
576 * The ThinLTOCodeGenerator is not intended to be reuse for multiple
577 * compilation: the model is that the client adds modules to the generator and
578 * ask to perform the ThinLTO optimizations / codegen, and finally destroys the
579 * codegenerator.
580 *
581 * \since LTO_API_VERSION=18
582 */
Mehdi Amini5e01ef42016-03-09 02:36:09 +0000583extern thinlto_code_gen_t thinlto_create_codegen(void);
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000584
585/**
586 * Frees the generator and all memory it internally allocated.
587 * Upon return the thinlto_code_gen_t is no longer valid.
588 *
589 * \since LTO_API_VERSION=18
590 */
591extern void thinlto_codegen_dispose(thinlto_code_gen_t cg);
592
593/**
594 * Add a module to a ThinLTO code generator. Identifier has to be unique among
595 * all the modules in a code generator. The data buffer stays owned by the
596 * client, and is expected to be available for the entire lifetime of the
597 * thinlto_code_gen_t it is added to.
598 *
599 * On failure, returns NULL (check lto_get_error_message() for details).
600 *
601 *
602 * \since LTO_API_VERSION=18
603 */
604extern void thinlto_codegen_add_module(thinlto_code_gen_t cg,
605 const char *identifier, const char *data,
606 int length);
607
608/**
609 * Optimize and codegen all the modules added to the codegenerator using
610 * ThinLTO. Resulting objects are accessible using thinlto_module_get_object().
611 *
612 * \since LTO_API_VERSION=18
613 */
614extern void thinlto_codegen_process(thinlto_code_gen_t cg);
615
616/**
617 * Returns the number of object files produced by the ThinLTO CodeGenerator.
618 *
619 * It usually matches the number of input files, but this is not a guarantee of
620 * the API and may change in future implementation, so the client should not
621 * assume it.
622 *
623 * \since LTO_API_VERSION=18
624 */
625extern unsigned int thinlto_module_get_num_objects(thinlto_code_gen_t cg);
626
627/**
628 * Returns a reference to the ith object file produced by the ThinLTO
629 * CodeGenerator.
630 *
631 * Client should use \p thinlto_module_get_num_objects() to get the number of
632 * available objects.
633 *
634 * \since LTO_API_VERSION=18
635 */
636extern LTOObjectBuffer thinlto_module_get_object(thinlto_code_gen_t cg,
637 unsigned int index);
638
639/**
Mehdi Aminidbca62e2016-12-14 04:56:42 +0000640 * Returns the number of object files produced by the ThinLTO CodeGenerator.
641 *
642 * It usually matches the number of input files, but this is not a guarantee of
643 * the API and may change in future implementation, so the client should not
644 * assume it.
645 *
646 * \since LTO_API_VERSION=21
647 */
648unsigned int thinlto_module_get_num_object_files(thinlto_code_gen_t cg);
649
650/**
651 * Returns the path to the ith object file produced by the ThinLTO
652 * CodeGenerator.
653 *
654 * Client should use \p thinlto_module_get_num_object_files() to get the number
655 * of available objects.
656 *
657 * \since LTO_API_VERSION=21
658 */
659const char *thinlto_module_get_object_file(thinlto_code_gen_t cg,
660 unsigned int index);
661
662/**
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000663 * Sets which PIC code model to generate.
664 * Returns true on error (check lto_get_error_message() for details).
665 *
666 * \since LTO_API_VERSION=18
667 */
668extern lto_bool_t thinlto_codegen_set_pic_model(thinlto_code_gen_t cg,
669 lto_codegen_model);
670
671/**
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000672 * Sets the path to a directory to use as a storage for temporary bitcode files.
673 * The intention is to make the bitcode files available for debugging at various
674 * stage of the pipeline.
675 *
676 * \since LTO_API_VERSION=18
677 */
678extern void thinlto_codegen_set_savetemps_dir(thinlto_code_gen_t cg,
679 const char *save_temps_dir);
680
681/**
Mehdi Aminidbca62e2016-12-14 04:56:42 +0000682 * Set the path to a directory where to save generated object files. This
683 * path can be used by a linker to request on-disk files instead of in-memory
684 * buffers. When set, results are available through
685 * thinlto_module_get_object_file() instead of thinlto_module_get_object().
686 *
687 * \since LTO_API_VERSION=21
688 */
689void thinlto_set_generated_objects_dir(thinlto_code_gen_t cg,
690 const char *save_temps_dir);
691
692/**
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000693 * Sets the cpu to generate code for.
694 *
695 * \since LTO_API_VERSION=18
696 */
697extern void thinlto_codegen_set_cpu(thinlto_code_gen_t cg, const char *cpu);
698
699/**
Mehdi Amini51f55482016-04-01 06:47:02 +0000700 * Disable CodeGen, only run the stages till codegen and stop. The output will
701 * be bitcode.
702 *
703 * \since LTO_API_VERSION=19
704 */
705extern void thinlto_codegen_disable_codegen(thinlto_code_gen_t cg,
706 lto_bool_t disable);
707
708/**
709 * Perform CodeGen only: disable all other stages.
710 *
711 * \since LTO_API_VERSION=19
712 */
713extern void thinlto_codegen_set_codegen_only(thinlto_code_gen_t cg,
714 lto_bool_t codegen_only);
715
716/**
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000717 * Parse -mllvm style debug options.
718 *
719 * \since LTO_API_VERSION=18
720 */
721extern void thinlto_debug_options(const char *const *options, int number);
722
723/**
724 * Test if a module has support for ThinLTO linking.
725 *
726 * \since LTO_API_VERSION=18
727 */
Sean Silva91639a82016-03-09 04:05:28 +0000728extern lto_bool_t lto_module_is_thinlto(lto_module_t mod);
Mehdi Amini73cf01b2016-03-09 01:37:22 +0000729
730/**
731 * Adds a symbol to the list of global symbols that must exist in the final
732 * generated code. If a function is not listed there, it might be inlined into
733 * every usage and optimized away. For every single module, the functions
734 * referenced from code outside of the ThinLTO modules need to be added here.
735 *
736 * \since LTO_API_VERSION=18
737 */
738extern void thinlto_codegen_add_must_preserve_symbol(thinlto_code_gen_t cg,
739 const char *name,
740 int length);
741
742/**
743 * Adds a symbol to the list of global symbols that are cross-referenced between
744 * ThinLTO files. If the ThinLTO CodeGenerator can ensure that every
745 * references from a ThinLTO module to this symbol is optimized away, then
746 * the symbol can be discarded.
747 *
748 * \since LTO_API_VERSION=18
749 */
750extern void thinlto_codegen_add_cross_referenced_symbol(thinlto_code_gen_t cg,
751 const char *name,
752 int length);
753
Mehdi Amini0b9a8d82017-04-08 19:20:30 +0000754/**
755 * @} // endgoup LLVMCTLTO
756 * @defgroup LLVMCTLTO_CACHING ThinLTO Cache Control
757 * @ingroup LLVMCTLTO
758 *
759 * These entry points control the ThinLTO cache. The cache is intended to
Ben Dunbobbin0d49e112017-12-19 14:49:33 +0000760 * support incremental builds, and thus needs to be persistent across builds.
761 * The client enables the cache by supplying a path to an existing directory.
Mehdi Amini0b9a8d82017-04-08 19:20:30 +0000762 * The code generator will use this to store objects files that may be reused
763 * during a subsequent build.
764 * To avoid filling the disk space, a few knobs are provided:
Ben Dunbobbin0d49e112017-12-19 14:49:33 +0000765 * - The pruning interval limits the frequency at which the garbage collector
766 * will try to scan the cache directory to prune expired entries.
Ben Dunbobbin463ba762017-12-22 18:32:15 +0000767 * Setting to a negative number disables the pruning.
Mehdi Amini0b9a8d82017-04-08 19:20:30 +0000768 * - The pruning expiration time indicates to the garbage collector how old an
769 * entry needs to be to be removed.
Ben Dunbobbin0d49e112017-12-19 14:49:33 +0000770 * - Finally, the garbage collector can be instructed to prune the cache until
Mehdi Amini0b9a8d82017-04-08 19:20:30 +0000771 * the occupied space goes below a threshold.
772 * @{
773 */
774
775/**
776 * Sets the path to a directory to use as a cache storage for incremental build.
777 * Setting this activates caching.
778 *
779 * \since LTO_API_VERSION=18
780 */
781extern void thinlto_codegen_set_cache_dir(thinlto_code_gen_t cg,
782 const char *cache_dir);
783
784/**
Ben Dunbobbin463ba762017-12-22 18:32:15 +0000785 * Sets the cache pruning interval (in seconds). A negative value disables the
786 * pruning. An unspecified default value will be applied, and a value of 0 will
Ekaterina Romanova51f80332018-02-15 23:29:21 +0000787 * force prunning to occur.
Mehdi Amini0b9a8d82017-04-08 19:20:30 +0000788 *
789 * \since LTO_API_VERSION=18
790 */
791extern void thinlto_codegen_set_cache_pruning_interval(thinlto_code_gen_t cg,
792 int interval);
793
794/**
795 * Sets the maximum cache size that can be persistent across build, in terms of
Hiroshi Inouec0d997d2018-01-23 05:49:30 +0000796 * percentage of the available space on the disk. Set to 100 to indicate
Mehdi Amini0b9a8d82017-04-08 19:20:30 +0000797 * no limit, 50 to indicate that the cache size will not be left over half the
798 * available space. A value over 100 will be reduced to 100, a value of 0 will
799 * be ignored. An unspecified default value will be applied.
800 *
801 * The formula looks like:
802 * AvailableSpace = FreeSpace + ExistingCacheSize
803 * NewCacheSize = AvailableSpace * P/100
804 *
805 * \since LTO_API_VERSION=18
806 */
807extern void thinlto_codegen_set_final_cache_size_relative_to_available_space(
808 thinlto_code_gen_t cg, unsigned percentage);
809
810/**
811 * Sets the expiration (in seconds) for an entry in the cache. An unspecified
812 * default value will be applied. A value of 0 will be ignored.
813 *
814 * \since LTO_API_VERSION=18
815 */
816extern void thinlto_codegen_set_cache_entry_expiration(thinlto_code_gen_t cg,
817 unsigned expiration);
818
819/**
Ekaterina Romanova76899c62018-03-02 03:51:27 +0000820 * Sets the maximum size of the cache directory (in bytes). A value over the
821 * amount of available space on the disk will be reduced to the amount of
822 * available space. An unspecified default value will be applied. A value of 0
823 * will be ignored.
824 *
825 * \since LTO_API_VERSION=22
826 */
827extern void thinlto_codegen_set_cache_size_bytes(thinlto_code_gen_t cg,
828 unsigned max_size_bytes);
829
830/**
James Hendersonb981f4f2018-09-17 10:21:26 +0000831 * Same as thinlto_codegen_set_cache_size_bytes, except the maximum size is in
832 * megabytes (2^20 bytes).
833 *
834 * \since LTO_API_VERSION=23
835 */
836extern void
837thinlto_codegen_set_cache_size_megabytes(thinlto_code_gen_t cg,
838 unsigned max_size_megabytes);
839
840/**
Ekaterina Romanova76899c62018-03-02 03:51:27 +0000841 * Sets the maximum number of files in the cache directory. An unspecified
842 * default value will be applied. A value of 0 will be ignored.
843 *
844 * \since LTO_API_VERSION=22
845 */
846extern void thinlto_codegen_set_cache_size_files(thinlto_code_gen_t cg,
847 unsigned max_size_files);
848
849
850
851/**
Mehdi Amini0b9a8d82017-04-08 19:20:30 +0000852 * @} // endgroup LLVMCTLTO_CACHING
853 */
854
Nick Kledzik77595fc2008-02-26 20:26:43 +0000855#ifdef __cplusplus
856}
857#endif
858
Eugene Zelenkod0a33c42016-03-28 17:40:08 +0000859#endif /* LLVM_C_LTO_H */