blob: 44f7bea2c8cb0781a849d82197bcf8d317601e53 [file] [log] [blame]
Nick Kledzik07b4a622008-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 Staszak02a3c9b2013-01-10 00:45:19 +000016#ifndef LLVM_C_LTO_H
17#define LLVM_C_LTO_H
Nick Kledzik07b4a622008-02-26 20:26:43 +000018
Nick Kledzik07b4a622008-02-26 20:26:43 +000019#include <stddef.h>
Peter Collingbournedda35912013-09-25 07:52:21 +000020#include <sys/types.h>
Nick Kledzik07b4a622008-02-26 20:26:43 +000021
Reid Klecknerddac1512013-10-24 22:26:04 +000022#ifndef __cplusplus
23#if !defined(_MSC_VER)
24#include <stdbool.h>
25typedef bool lto_bool_t;
26#else
Rafael Espindolafe3be112013-10-25 12:59:02 +000027/* MSVC in particular does not have anything like _Bool or bool in C, but we can
28 at least make sure the type is the same size. The implementation side will
29 use C++ bool. */
Reid Klecknerddac1512013-10-24 22:26:04 +000030typedef unsigned char lto_bool_t;
31#endif
32#else
33typedef bool lto_bool_t;
34#endif
35
Gregory Szorc34c863a2012-03-21 03:54:29 +000036/**
37 * @defgroup LLVMCLTO LTO
38 * @ingroup LLVMC
39 *
40 * @{
41 */
42
Mehdi Amini7c4a1a82016-03-09 01:37:22 +000043#define LTO_API_VERSION 18
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000044/**
45 * \since prior to LTO_API_VERSION=3
46 */
Nick Kledzik07b4a622008-02-26 20:26:43 +000047typedef enum {
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000048 LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of alignment */
Bill Wendling152e4732012-03-31 10:44:20 +000049 LTO_SYMBOL_PERMISSIONS_MASK = 0x000000E0,
50 LTO_SYMBOL_PERMISSIONS_CODE = 0x000000A0,
51 LTO_SYMBOL_PERMISSIONS_DATA = 0x000000C0,
52 LTO_SYMBOL_PERMISSIONS_RODATA = 0x00000080,
53 LTO_SYMBOL_DEFINITION_MASK = 0x00000700,
54 LTO_SYMBOL_DEFINITION_REGULAR = 0x00000100,
55 LTO_SYMBOL_DEFINITION_TENTATIVE = 0x00000200,
56 LTO_SYMBOL_DEFINITION_WEAK = 0x00000300,
57 LTO_SYMBOL_DEFINITION_UNDEFINED = 0x00000400,
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000058 LTO_SYMBOL_DEFINITION_WEAKUNDEF = 0x00000500,
Bill Wendling152e4732012-03-31 10:44:20 +000059 LTO_SYMBOL_SCOPE_MASK = 0x00003800,
60 LTO_SYMBOL_SCOPE_INTERNAL = 0x00000800,
61 LTO_SYMBOL_SCOPE_HIDDEN = 0x00001000,
62 LTO_SYMBOL_SCOPE_PROTECTED = 0x00002000,
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000063 LTO_SYMBOL_SCOPE_DEFAULT = 0x00001800,
Peter Collingbourne485ad482015-06-11 21:41:27 +000064 LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x00002800,
Peter Collingbourne17eff102015-07-04 03:42:35 +000065 LTO_SYMBOL_COMDAT = 0x00004000,
66 LTO_SYMBOL_ALIAS = 0x00008000
Nick Kledzik07b4a622008-02-26 20:26:43 +000067} lto_symbol_attributes;
68
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000069/**
70 * \since prior to LTO_API_VERSION=3
71 */
Nick Kledzik07b4a622008-02-26 20:26:43 +000072typedef enum {
73 LTO_DEBUG_MODEL_NONE = 0,
74 LTO_DEBUG_MODEL_DWARF = 1
75} lto_debug_model;
76
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000077/**
78 * \since prior to LTO_API_VERSION=3
79 */
Nick Kledzik07b4a622008-02-26 20:26:43 +000080typedef enum {
81 LTO_CODEGEN_PIC_MODEL_STATIC = 0,
82 LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
James Molloy951e5292014-04-14 13:54:16 +000083 LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2,
84 LTO_CODEGEN_PIC_MODEL_DEFAULT = 3
Nick Kledzik07b4a622008-02-26 20:26:43 +000085} lto_codegen_model;
86
Nick Kledzik07b4a622008-02-26 20:26:43 +000087/** opaque reference to a loaded object module */
Rafael Espindola83ceb8e2014-05-03 14:59:52 +000088typedef struct LLVMOpaqueLTOModule *lto_module_t;
Nick Kledzik07b4a622008-02-26 20:26:43 +000089
90/** opaque reference to a code generator */
Rafael Espindola83ceb8e2014-05-03 14:59:52 +000091typedef struct LLVMOpaqueLTOCodeGenerator *lto_code_gen_t;
Nick Kledzik07b4a622008-02-26 20:26:43 +000092
Mehdi Amini7c4a1a82016-03-09 01:37:22 +000093/** opaque reference to a thin code generator */
94typedef struct LLVMOpaqueThinLTOCodeGenerator *thinlto_code_gen_t;
95
Nick Kledzik07b4a622008-02-26 20:26:43 +000096#ifdef __cplusplus
97extern "C" {
98#endif
99
100/**
101 * Returns a printable string.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000102 *
103 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000104 */
105extern const char*
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000106lto_get_version(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000107
108
109/**
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000110 * Returns the last error string or NULL if last operation was successful.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000111 *
112 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000113 */
114extern const char*
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000115lto_get_error_message(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000116
Nick Kledzik07b4a622008-02-26 20:26:43 +0000117/**
118 * Checks if a file is a loadable object file.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000119 *
120 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000121 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000122extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000123lto_module_is_object_file(const char* path);
124
125
126/**
127 * Checks if a file is a loadable object compiled for requested target.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000128 *
129 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000130 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000131extern lto_bool_t
Bill Wendling152e4732012-03-31 10:44:20 +0000132lto_module_is_object_file_for_target(const char* path,
Nick Lewycky8811ecd2009-02-06 07:01:00 +0000133 const char* target_triple_prefix);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000134
135
136/**
137 * Checks if a buffer is a loadable object file.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000138 *
139 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000140 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000141extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000142lto_module_is_object_file_in_memory(const void* mem, size_t length);
143
144
145/**
146 * Checks if a buffer is a loadable object compiled for requested target.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000147 *
148 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000149 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000150extern lto_bool_t
Bill Wendling152e4732012-03-31 10:44:20 +0000151lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
Eric Christopher135de902010-07-12 05:13:35 +0000152 const char* target_triple_prefix);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000153
154
155/**
156 * Loads an object file from disk.
157 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000158 *
159 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000160 */
161extern lto_module_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000162lto_module_create(const char* path);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000163
164
165/**
166 * Loads an object file from memory.
167 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000168 *
169 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000170 */
171extern lto_module_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000172lto_module_create_from_memory(const void* mem, size_t length);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000173
Rafael Espindola56e41f72011-02-08 22:40:47 +0000174/**
Manman Ren03456a12014-02-10 23:26:14 +0000175 * Loads an object file from memory with an extra path argument.
176 * Returns NULL on error (check lto_get_error_message() for details).
177 *
Duncan P. N. Exon Smithd9982942015-04-27 22:08:01 +0000178 * \since LTO_API_VERSION=9
Manman Ren03456a12014-02-10 23:26:14 +0000179 */
180extern lto_module_t
181lto_module_create_from_memory_with_path(const void* mem, size_t length,
182 const char *path);
183
184/**
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000185 * \brief Loads an object file in its own context.
186 *
187 * Loads an object file in its own LLVMContext. This function call is
188 * thread-safe. However, modules created this way should not be merged into an
189 * lto_code_gen_t using \a lto_codegen_add_module().
190 *
191 * Returns NULL on error (check lto_get_error_message() for details).
192 *
193 * \since LTO_API_VERSION=11
194 */
195extern lto_module_t
196lto_module_create_in_local_context(const void *mem, size_t length,
197 const char *path);
198
199/**
200 * \brief Loads an object file in the codegen context.
201 *
202 * Loads an object file into the same context as \c cg. The module is safe to
203 * add using \a lto_codegen_add_module().
204 *
205 * Returns NULL on error (check lto_get_error_message() for details).
206 *
207 * \since LTO_API_VERSION=11
208 */
209extern lto_module_t
210lto_module_create_in_codegen_context(const void *mem, size_t length,
211 const char *path, lto_code_gen_t cg);
212
213/**
Rafael Espindola56e41f72011-02-08 22:40:47 +0000214 * Loads an object file from disk. The seek point of fd is not preserved.
215 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000216 *
217 * \since LTO_API_VERSION=5
Rafael Espindola56e41f72011-02-08 22:40:47 +0000218 */
219extern lto_module_t
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000220lto_module_create_from_fd(int fd, const char *path, size_t file_size);
221
222/**
223 * Loads an object file from disk. The seek point of fd is not preserved.
224 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000225 *
226 * \since LTO_API_VERSION=5
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000227 */
228extern lto_module_t
229lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size,
230 size_t map_size, off_t offset);
Rafael Espindola56e41f72011-02-08 22:40:47 +0000231
Nick Kledzik07b4a622008-02-26 20:26:43 +0000232/**
233 * Frees all memory internally allocated by the module.
234 * Upon return the lto_module_t is no longer valid.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000235 *
236 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000237 */
238extern void
239lto_module_dispose(lto_module_t mod);
240
Nick Kledzik07b4a622008-02-26 20:26:43 +0000241/**
242 * Returns triple string which the object module was compiled under.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000243 *
244 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000245 */
246extern const char*
247lto_module_get_target_triple(lto_module_t mod);
248
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000249/**
250 * Sets triple string with which the object will be codegened.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000251 *
252 * \since LTO_API_VERSION=4
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000253 */
254extern void
255lto_module_set_target_triple(lto_module_t mod, const char *triple);
256
Nick Kledzik07b4a622008-02-26 20:26:43 +0000257
258/**
259 * Returns the number of symbols in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000260 *
261 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000262 */
Devang Patel39bd6ce2011-01-07 22:26:25 +0000263extern unsigned int
Nick Kledzik07b4a622008-02-26 20:26:43 +0000264lto_module_get_num_symbols(lto_module_t mod);
265
266
267/**
268 * Returns the name of the ith symbol in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000269 *
270 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000271 */
272extern const char*
Devang Patel39bd6ce2011-01-07 22:26:25 +0000273lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000274
275
276/**
277 * Returns the attributes of the ith symbol in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000278 *
279 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000280 */
281extern lto_symbol_attributes
Devang Patel39bd6ce2011-01-07 22:26:25 +0000282lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000283
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000284
285/**
Peter Collingbourne5d7dffb2015-06-29 23:09:12 +0000286 * Returns the module's linker options.
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000287 *
Peter Collingbourne5d7dffb2015-06-29 23:09:12 +0000288 * The linker options may consist of multiple flags. It is the linker's
Peter Collingbourneaef36592015-06-29 22:04:09 +0000289 * responsibility to split the flags using a platform-specific mechanism.
290 *
Peter Collingbourne5d7dffb2015-06-29 23:09:12 +0000291 * \since LTO_API_VERSION=16
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000292 */
293extern const char*
Peter Collingbourne5d7dffb2015-06-29 23:09:12 +0000294lto_module_get_linkeropts(lto_module_t mod);
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000295
296
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000297/**
298 * Diagnostic severity.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000299 *
300 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000301 */
302typedef enum {
Tobias Grossere8d4c9a2014-02-28 09:08:45 +0000303 LTO_DS_ERROR = 0,
304 LTO_DS_WARNING = 1,
305 LTO_DS_REMARK = 3, // Added in LTO_API_VERSION=10.
306 LTO_DS_NOTE = 2
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000307} lto_codegen_diagnostic_severity_t;
308
309/**
310 * Diagnostic handler type.
311 * \p severity defines the severity.
312 * \p diag is the actual diagnostic.
313 * The diagnostic is not prefixed by any of severity keyword, e.g., 'error: '.
314 * \p ctxt is used to pass the context set with the diagnostic handler.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000315 *
316 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000317 */
318typedef void (*lto_diagnostic_handler_t)(
319 lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt);
320
321/**
322 * Set a diagnostic handler and the related context (void *).
323 * This is more general than lto_get_error_message, as the diagnostic handler
324 * can be called at anytime within lto.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000325 *
326 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000327 */
328extern void lto_codegen_set_diagnostic_handler(lto_code_gen_t,
329 lto_diagnostic_handler_t,
330 void *);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000331
332/**
333 * Instantiates a code generator.
334 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000335 *
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000336 * All modules added using \a lto_codegen_add_module() must have been created
337 * in the same context as the codegen.
338 *
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000339 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000340 */
341extern lto_code_gen_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000342lto_codegen_create(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000343
Nick Kledzik07b4a622008-02-26 20:26:43 +0000344/**
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000345 * \brief Instantiate a code generator in its own context.
346 *
347 * Instantiates a code generator in its own context. Modules added via \a
348 * lto_codegen_add_module() must have all been created in the same context,
349 * using \a lto_module_create_in_codegen_context().
350 *
351 * \since LTO_API_VERSION=11
352 */
353extern lto_code_gen_t
354lto_codegen_create_in_local_context(void);
355
356/**
Nick Kledzik07b4a622008-02-26 20:26:43 +0000357 * Frees all code generator and all memory it internally allocated.
358 * Upon return the lto_code_gen_t is no longer valid.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000359 *
360 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000361 */
362extern void
363lto_codegen_dispose(lto_code_gen_t);
364
Nick Kledzik07b4a622008-02-26 20:26:43 +0000365/**
366 * Add an object module to the set of modules for which code will be generated.
367 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000368 *
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000369 * \c cg and \c mod must both be in the same context. See \a
370 * lto_codegen_create_in_local_context() and \a
371 * lto_module_create_in_codegen_context().
372 *
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000373 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000374 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000375extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000376lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod);
377
Nick Kledzik07b4a622008-02-26 20:26:43 +0000378/**
Peter Collingbourne9c8909d2015-08-24 22:22:53 +0000379 * Sets the object module for code generation. This will transfer the ownership
380 * of the module to the code generator.
Manman Ren6487ce92015-02-24 00:45:56 +0000381 *
382 * \c cg and \c mod must both be in the same context.
383 *
Duncan P. N. Exon Smithd9982942015-04-27 22:08:01 +0000384 * \since LTO_API_VERSION=13
Manman Ren6487ce92015-02-24 00:45:56 +0000385 */
386extern void
387lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod);
388
389/**
Nick Kledzik07b4a622008-02-26 20:26:43 +0000390 * Sets if debug info should be generated.
391 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000392 *
393 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000394 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000395extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000396lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model);
397
398
399/**
400 * Sets which PIC code model to generated.
401 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000402 *
403 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000404 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000405extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000406lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
407
408
409/**
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000410 * Sets the cpu to generate code for.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000411 *
412 * \since LTO_API_VERSION=4
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000413 */
414extern void
415lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
416
417
418/**
Nick Kledzikcac8c8a2009-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 Smith40fdf5f2014-01-16 21:37:17 +0000421 *
422 * \since LTO_API_VERSION=3
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000423 */
424extern void
425lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path);
426
Rafael Espindola00456462010-08-10 18:55:09 +0000427/**
428 * Sets extra arguments that libLTO should pass to the assembler.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000429 *
430 * \since LTO_API_VERSION=4
Rafael Espindola00456462010-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 Kledzikcac8c8a2009-06-04 00:28:45 +0000435
436/**
Rafael Espindolab62e6b42014-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 Smith40fdf5f2014-01-16 21:37:17 +0000440 *
441 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000442 */
443extern void
444lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
445
Nick Kledzik07b4a622008-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 Smith40fdf5f2014-01-16 21:37:17 +0000450 *
451 * \since LTO_API_VERSION=5
Nick Kledzik07b4a622008-02-26 20:26:43 +0000452 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000453extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000454lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
455
Nick Kledzik07b4a622008-02-26 20:26:43 +0000456/**
457 * Generates code for all added modules into one native object file.
Manman Ren8121e1d2015-02-03 18:39:15 +0000458 * This calls lto_codegen_optimize then lto_codegen_compile_optimized.
459 *
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000460 * On success returns a pointer to a generated mach-o/ELF buffer and
Bill Wendling152e4732012-03-31 10:44:20 +0000461 * length set to the buffer size. The buffer is owned by the
Nick Kledzik91a6dcf2008-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 Kledzik07b4a622008-02-26 20:26:43 +0000464 * On failure, returns NULL (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000465 *
466 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000467 */
Nick Kledzik91a6dcf2008-02-27 22:25:36 +0000468extern const void*
Nick Kledzik07b4a622008-02-26 20:26:43 +0000469lto_codegen_compile(lto_code_gen_t cg, size_t* length);
470
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000471/**
472 * Generates code for all added modules into one native object file.
Manman Ren8121e1d2015-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 Espindola26b57ff2011-03-22 20:57:13 +0000476 * The name of the file is written to name. Returns true on error.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000477 *
478 * \since LTO_API_VERSION=5
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000479 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000480extern lto_bool_t
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000481lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name);
482
Manman Ren8121e1d2015-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 Espindolaa5eb7752015-02-04 13:30:28 +0000512lto_api_version(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000513
Devang Patela0e4fb82008-07-03 22:53:14 +0000514/**
515 * Sets options to help debug codegen bugs.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000516 *
517 * \since prior to LTO_API_VERSION=3
Devang Patela0e4fb82008-07-03 22:53:14 +0000518 */
519extern void
520lto_codegen_debug_options(lto_code_gen_t cg, const char *);
Bill Wendling152e4732012-03-31 10:44:20 +0000521
Benjamin Kramer9bcb9222012-11-24 16:59:10 +0000522/**
523 * Initializes LLVM disassemblers.
524 * FIXME: This doesn't really belong here.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000525 *
526 * \since LTO_API_VERSION=5
Benjamin Kramer9bcb9222012-11-24 16:59:10 +0000527 */
528extern void
529lto_initialize_disassembler(void);
530
Manman Rence0a0662015-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 Smithd9982942015-04-27 22:08:01 +0000535 * \since LTO_API_VERSION=14
Manman Rence0a0662015-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 Smith5a490d02015-04-27 23:38:54 +0000541/**
542 * \brief Set whether to embed uselists in bitcode.
543 *
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 Amini7c4a1a82016-03-09 01:37:22 +0000553/**
554 * @}
555 * @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 {
567 void *Buffer;
568 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 Amini3ed41d62016-03-09 02:36:09 +0000583extern thinlto_code_gen_t thinlto_create_codegen(void);
Mehdi Amini7c4a1a82016-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/**
640 * Sets which PIC code model to generate.
641 * Returns true on error (check lto_get_error_message() for details).
642 *
643 * \since LTO_API_VERSION=18
644 */
645extern lto_bool_t thinlto_codegen_set_pic_model(thinlto_code_gen_t cg,
646 lto_codegen_model);
647
648/**
649 * @}
650 * @defgroup LLVMCTLTO_CACHING ThinLTO Cache Control
651 * @ingroup LLVMCTLTO
652 *
653 * These entry points control the ThinLTO cache. The cache is intended to
654 * support incremental build, and thus needs to be persistent accross build.
655 * The client enabled the cache by supplying a path to an existing directory.
656 * The code generator will use this to store objects files that may be reused
657 * during a subsequent build.
658 * To avoid filling the disk space, a few knobs are provided:
659 * - The pruning interval limit the frequency at which the garbage collector
660 * will try to scan the cache directory to prune it from expired entries.
661 * Setting to -1 disable the pruning (default).
662 * - The pruning expiration time indicates to the garbage collector how old an
663 * entry needs to be to be removed.
664 * - Finally, the garbage collector can be instructed to prune the cache till
665 * the occupied space goes below a threshold.
666 * @{
667 */
668
669/**
670 * Sets the path to a directory to use as a cache storage for incremental build.
671 *
672 * \since LTO_API_VERSION=18
673 */
674extern void thinlto_codegen_set_cache_dir(thinlto_code_gen_t cg,
675 const char *cache_dir);
676
677/**
678 * Sets the cache pruning interval (in seconds). A negative value disable the
679 * pruning (default).
680 *
681 * \since LTO_API_VERSION=18
682 */
683extern void thinlto_codegen_set_cache_pruning_interval(thinlto_code_gen_t cg,
684 int interval);
685
686/**
687 * Sets the maximum cache size that can be persistent across build, in terms of
688 * percentage of the available space on the the disk. Set to 100 to indicate
689 * no limit, 50 to indicate that the cache size will not be left over half the
690 * available space. A value over 100 will be reduced to 100.
691 *
692 * The formula looks like:
693 * AvailableSpace = FreeSpace + ExistingCacheSize
694 * NewCacheSize = AvailableSpace * P/100
695 *
696 * \since LTO_API_VERSION=18
697 */
698extern void thinlto_codegen_set_final_cache_size_relative_to_available_space(
699 thinlto_code_gen_t cg, unsigned percentage);
700
701/**
702 * Sets the expiration (in seconds) for an entry in the cache.
703 *
704 * \since LTO_API_VERSION=18
705 */
706extern void thinlto_codegen_set_cache_entry_expiration(thinlto_code_gen_t cg,
707 unsigned expiration);
708
709/**
710 * @}
711 */
712
713/**
714 * Sets the path to a directory to use as a storage for temporary bitcode files.
715 * The intention is to make the bitcode files available for debugging at various
716 * stage of the pipeline.
717 *
718 * \since LTO_API_VERSION=18
719 */
720extern void thinlto_codegen_set_savetemps_dir(thinlto_code_gen_t cg,
721 const char *save_temps_dir);
722
723/**
724 * Sets the cpu to generate code for.
725 *
726 * \since LTO_API_VERSION=18
727 */
728extern void thinlto_codegen_set_cpu(thinlto_code_gen_t cg, const char *cpu);
729
730/**
731 * Parse -mllvm style debug options.
732 *
733 * \since LTO_API_VERSION=18
734 */
735extern void thinlto_debug_options(const char *const *options, int number);
736
737/**
738 * Test if a module has support for ThinLTO linking.
739 *
740 * \since LTO_API_VERSION=18
741 */
Sean Silva05e5cbf2016-03-09 04:05:28 +0000742extern lto_bool_t lto_module_is_thinlto(lto_module_t mod);
Mehdi Amini7c4a1a82016-03-09 01:37:22 +0000743
744/**
745 * Adds a symbol to the list of global symbols that must exist in the final
746 * generated code. If a function is not listed there, it might be inlined into
747 * every usage and optimized away. For every single module, the functions
748 * referenced from code outside of the ThinLTO modules need to be added here.
749 *
750 * \since LTO_API_VERSION=18
751 */
752extern void thinlto_codegen_add_must_preserve_symbol(thinlto_code_gen_t cg,
753 const char *name,
754 int length);
755
756/**
757 * Adds a symbol to the list of global symbols that are cross-referenced between
758 * ThinLTO files. If the ThinLTO CodeGenerator can ensure that every
759 * references from a ThinLTO module to this symbol is optimized away, then
760 * the symbol can be discarded.
761 *
762 * \since LTO_API_VERSION=18
763 */
764extern void thinlto_codegen_add_cross_referenced_symbol(thinlto_code_gen_t cg,
765 const char *name,
766 int length);
767
Nick Kledzik07b4a622008-02-26 20:26:43 +0000768#ifdef __cplusplus
769}
770#endif
771
Gregory Szorc34c863a2012-03-21 03:54:29 +0000772/**
773 * @}
774 */
Nick Kledzik07b4a622008-02-26 20:26:43 +0000775
776#endif