blob: cb3a69160454a29b464aea3c949ea7c05fa9c794 [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
Peter Collingbourne17eff102015-07-04 03:42:35 +000043#define LTO_API_VERSION 17
Nick Kledzikcac8c8a2009-06-04 00:28:45 +000044
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000045/**
46 * \since prior to LTO_API_VERSION=3
47 */
Nick Kledzik07b4a622008-02-26 20:26:43 +000048typedef enum {
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000049 LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of alignment */
Bill Wendling152e4732012-03-31 10:44:20 +000050 LTO_SYMBOL_PERMISSIONS_MASK = 0x000000E0,
51 LTO_SYMBOL_PERMISSIONS_CODE = 0x000000A0,
52 LTO_SYMBOL_PERMISSIONS_DATA = 0x000000C0,
53 LTO_SYMBOL_PERMISSIONS_RODATA = 0x00000080,
54 LTO_SYMBOL_DEFINITION_MASK = 0x00000700,
55 LTO_SYMBOL_DEFINITION_REGULAR = 0x00000100,
56 LTO_SYMBOL_DEFINITION_TENTATIVE = 0x00000200,
57 LTO_SYMBOL_DEFINITION_WEAK = 0x00000300,
58 LTO_SYMBOL_DEFINITION_UNDEFINED = 0x00000400,
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000059 LTO_SYMBOL_DEFINITION_WEAKUNDEF = 0x00000500,
Bill Wendling152e4732012-03-31 10:44:20 +000060 LTO_SYMBOL_SCOPE_MASK = 0x00003800,
61 LTO_SYMBOL_SCOPE_INTERNAL = 0x00000800,
62 LTO_SYMBOL_SCOPE_HIDDEN = 0x00001000,
63 LTO_SYMBOL_SCOPE_PROTECTED = 0x00002000,
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000064 LTO_SYMBOL_SCOPE_DEFAULT = 0x00001800,
Peter Collingbourne485ad482015-06-11 21:41:27 +000065 LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x00002800,
Peter Collingbourne17eff102015-07-04 03:42:35 +000066 LTO_SYMBOL_COMDAT = 0x00004000,
67 LTO_SYMBOL_ALIAS = 0x00008000
Nick Kledzik07b4a622008-02-26 20:26:43 +000068} lto_symbol_attributes;
69
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000070/**
71 * \since prior to LTO_API_VERSION=3
72 */
Nick Kledzik07b4a622008-02-26 20:26:43 +000073typedef enum {
74 LTO_DEBUG_MODEL_NONE = 0,
75 LTO_DEBUG_MODEL_DWARF = 1
76} lto_debug_model;
77
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000078/**
79 * \since prior to LTO_API_VERSION=3
80 */
Nick Kledzik07b4a622008-02-26 20:26:43 +000081typedef enum {
82 LTO_CODEGEN_PIC_MODEL_STATIC = 0,
83 LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
James Molloy951e5292014-04-14 13:54:16 +000084 LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2,
85 LTO_CODEGEN_PIC_MODEL_DEFAULT = 3
Nick Kledzik07b4a622008-02-26 20:26:43 +000086} lto_codegen_model;
87
Nick Kledzik07b4a622008-02-26 20:26:43 +000088/** opaque reference to a loaded object module */
Rafael Espindola83ceb8e2014-05-03 14:59:52 +000089typedef struct LLVMOpaqueLTOModule *lto_module_t;
Nick Kledzik07b4a622008-02-26 20:26:43 +000090
91/** opaque reference to a code generator */
Rafael Espindola83ceb8e2014-05-03 14:59:52 +000092typedef struct LLVMOpaqueLTOCodeGenerator *lto_code_gen_t;
Nick Kledzik07b4a622008-02-26 20:26:43 +000093
Nick Kledzik07b4a622008-02-26 20:26:43 +000094#ifdef __cplusplus
95extern "C" {
96#endif
97
98/**
99 * Returns a printable string.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000100 *
101 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000102 */
103extern const char*
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000104lto_get_version(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000105
106
107/**
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000108 * Returns the last error string or NULL if last operation was successful.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000109 *
110 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000111 */
112extern const char*
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000113lto_get_error_message(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000114
Nick Kledzik07b4a622008-02-26 20:26:43 +0000115/**
116 * Checks if a file is a loadable object file.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000117 *
118 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000119 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000120extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000121lto_module_is_object_file(const char* path);
122
123
124/**
125 * Checks if a file is a loadable object compiled for requested target.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000126 *
127 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000128 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000129extern lto_bool_t
Bill Wendling152e4732012-03-31 10:44:20 +0000130lto_module_is_object_file_for_target(const char* path,
Nick Lewycky8811ecd2009-02-06 07:01:00 +0000131 const char* target_triple_prefix);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000132
133
134/**
135 * Checks if a buffer is a loadable object file.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000136 *
137 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000138 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000139extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000140lto_module_is_object_file_in_memory(const void* mem, size_t length);
141
142
143/**
144 * Checks if a buffer is a loadable object compiled for requested target.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000145 *
146 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000147 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000148extern lto_bool_t
Bill Wendling152e4732012-03-31 10:44:20 +0000149lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
Eric Christopher135de902010-07-12 05:13:35 +0000150 const char* target_triple_prefix);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000151
152
153/**
154 * Loads an object file from disk.
155 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000156 *
157 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000158 */
159extern lto_module_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000160lto_module_create(const char* path);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000161
162
163/**
164 * Loads an object file from memory.
165 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000166 *
167 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000168 */
169extern lto_module_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000170lto_module_create_from_memory(const void* mem, size_t length);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000171
Rafael Espindola56e41f72011-02-08 22:40:47 +0000172/**
Manman Ren03456a12014-02-10 23:26:14 +0000173 * Loads an object file from memory with an extra path argument.
174 * Returns NULL on error (check lto_get_error_message() for details).
175 *
Duncan P. N. Exon Smithd9982942015-04-27 22:08:01 +0000176 * \since LTO_API_VERSION=9
Manman Ren03456a12014-02-10 23:26:14 +0000177 */
178extern lto_module_t
179lto_module_create_from_memory_with_path(const void* mem, size_t length,
180 const char *path);
181
182/**
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000183 * \brief Loads an object file in its own context.
184 *
185 * Loads an object file in its own LLVMContext. This function call is
186 * thread-safe. However, modules created this way should not be merged into an
187 * lto_code_gen_t using \a lto_codegen_add_module().
188 *
189 * Returns NULL on error (check lto_get_error_message() for details).
190 *
191 * \since LTO_API_VERSION=11
192 */
193extern lto_module_t
194lto_module_create_in_local_context(const void *mem, size_t length,
195 const char *path);
196
197/**
198 * \brief Loads an object file in the codegen context.
199 *
200 * Loads an object file into the same context as \c cg. The module is safe to
201 * add using \a lto_codegen_add_module().
202 *
203 * Returns NULL on error (check lto_get_error_message() for details).
204 *
205 * \since LTO_API_VERSION=11
206 */
207extern lto_module_t
208lto_module_create_in_codegen_context(const void *mem, size_t length,
209 const char *path, lto_code_gen_t cg);
210
211/**
Rafael Espindola56e41f72011-02-08 22:40:47 +0000212 * Loads an object file from disk. The seek point of fd is not preserved.
213 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000214 *
215 * \since LTO_API_VERSION=5
Rafael Espindola56e41f72011-02-08 22:40:47 +0000216 */
217extern lto_module_t
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000218lto_module_create_from_fd(int fd, const char *path, size_t file_size);
219
220/**
221 * Loads an object file from disk. The seek point of fd is not preserved.
222 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000223 *
224 * \since LTO_API_VERSION=5
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000225 */
226extern lto_module_t
227lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size,
228 size_t map_size, off_t offset);
Rafael Espindola56e41f72011-02-08 22:40:47 +0000229
Nick Kledzik07b4a622008-02-26 20:26:43 +0000230/**
231 * Frees all memory internally allocated by the module.
232 * Upon return the lto_module_t is no longer valid.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000233 *
234 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000235 */
236extern void
237lto_module_dispose(lto_module_t mod);
238
Nick Kledzik07b4a622008-02-26 20:26:43 +0000239/**
240 * Returns triple string which the object module was compiled under.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000241 *
242 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000243 */
244extern const char*
245lto_module_get_target_triple(lto_module_t mod);
246
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000247/**
248 * Sets triple string with which the object will be codegened.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000249 *
250 * \since LTO_API_VERSION=4
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000251 */
252extern void
253lto_module_set_target_triple(lto_module_t mod, const char *triple);
254
Nick Kledzik07b4a622008-02-26 20:26:43 +0000255
256/**
257 * Returns the number of symbols in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000258 *
259 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000260 */
Devang Patel39bd6ce2011-01-07 22:26:25 +0000261extern unsigned int
Nick Kledzik07b4a622008-02-26 20:26:43 +0000262lto_module_get_num_symbols(lto_module_t mod);
263
264
265/**
266 * Returns the name of the ith symbol in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000267 *
268 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000269 */
270extern const char*
Devang Patel39bd6ce2011-01-07 22:26:25 +0000271lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000272
273
274/**
275 * Returns the attributes of the ith symbol in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000276 *
277 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000278 */
279extern lto_symbol_attributes
Devang Patel39bd6ce2011-01-07 22:26:25 +0000280lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000281
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000282
283/**
Peter Collingbourne5d7dffb2015-06-29 23:09:12 +0000284 * Returns the module's linker options.
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000285 *
Peter Collingbourne5d7dffb2015-06-29 23:09:12 +0000286 * The linker options may consist of multiple flags. It is the linker's
Peter Collingbourneaef36592015-06-29 22:04:09 +0000287 * responsibility to split the flags using a platform-specific mechanism.
288 *
Peter Collingbourne5d7dffb2015-06-29 23:09:12 +0000289 * \since LTO_API_VERSION=16
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000290 */
291extern const char*
Peter Collingbourne5d7dffb2015-06-29 23:09:12 +0000292lto_module_get_linkeropts(lto_module_t mod);
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000293
294
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000295/**
296 * Diagnostic severity.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000297 *
298 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000299 */
300typedef enum {
Tobias Grossere8d4c9a2014-02-28 09:08:45 +0000301 LTO_DS_ERROR = 0,
302 LTO_DS_WARNING = 1,
303 LTO_DS_REMARK = 3, // Added in LTO_API_VERSION=10.
304 LTO_DS_NOTE = 2
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000305} lto_codegen_diagnostic_severity_t;
306
307/**
308 * Diagnostic handler type.
309 * \p severity defines the severity.
310 * \p diag is the actual diagnostic.
311 * The diagnostic is not prefixed by any of severity keyword, e.g., 'error: '.
312 * \p ctxt is used to pass the context set with the diagnostic handler.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000313 *
314 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000315 */
316typedef void (*lto_diagnostic_handler_t)(
317 lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt);
318
319/**
320 * Set a diagnostic handler and the related context (void *).
321 * This is more general than lto_get_error_message, as the diagnostic handler
322 * can be called at anytime within lto.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000323 *
324 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000325 */
326extern void lto_codegen_set_diagnostic_handler(lto_code_gen_t,
327 lto_diagnostic_handler_t,
328 void *);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000329
330/**
331 * Instantiates a code generator.
332 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000333 *
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000334 * All modules added using \a lto_codegen_add_module() must have been created
335 * in the same context as the codegen.
336 *
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000337 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000338 */
339extern lto_code_gen_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000340lto_codegen_create(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000341
Nick Kledzik07b4a622008-02-26 20:26:43 +0000342/**
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000343 * \brief Instantiate a code generator in its own context.
344 *
345 * Instantiates a code generator in its own context. Modules added via \a
346 * lto_codegen_add_module() must have all been created in the same context,
347 * using \a lto_module_create_in_codegen_context().
348 *
349 * \since LTO_API_VERSION=11
350 */
351extern lto_code_gen_t
352lto_codegen_create_in_local_context(void);
353
354/**
Nick Kledzik07b4a622008-02-26 20:26:43 +0000355 * Frees all code generator and all memory it internally allocated.
356 * Upon return the lto_code_gen_t is no longer valid.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000357 *
358 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000359 */
360extern void
361lto_codegen_dispose(lto_code_gen_t);
362
Nick Kledzik07b4a622008-02-26 20:26:43 +0000363/**
364 * Add an object module to the set of modules for which code will be generated.
365 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000366 *
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000367 * \c cg and \c mod must both be in the same context. See \a
368 * lto_codegen_create_in_local_context() and \a
369 * lto_module_create_in_codegen_context().
370 *
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000371 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000372 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000373extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000374lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod);
375
Nick Kledzik07b4a622008-02-26 20:26:43 +0000376/**
Manman Ren6487ce92015-02-24 00:45:56 +0000377 * Sets the object module for code generation. This will transfer the ownship of
378 * the module to code generator.
379 *
380 * \c cg and \c mod must both be in the same context.
381 *
Duncan P. N. Exon Smithd9982942015-04-27 22:08:01 +0000382 * \since LTO_API_VERSION=13
Manman Ren6487ce92015-02-24 00:45:56 +0000383 */
384extern void
385lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod);
386
387/**
Nick Kledzik07b4a622008-02-26 20:26:43 +0000388 * Sets if debug info should be generated.
389 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000390 *
391 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000392 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000393extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000394lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model);
395
396
397/**
398 * Sets which PIC code model to generated.
399 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000400 *
401 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000402 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000403extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000404lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
405
406
407/**
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000408 * Sets the cpu to generate code for.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000409 *
410 * \since LTO_API_VERSION=4
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000411 */
412extern void
413lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
414
415
416/**
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000417 * Sets the location of the assembler tool to run. If not set, libLTO
418 * will use gcc to invoke the assembler.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000419 *
420 * \since LTO_API_VERSION=3
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000421 */
422extern void
423lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path);
424
Rafael Espindola00456462010-08-10 18:55:09 +0000425/**
426 * Sets extra arguments that libLTO should pass to the assembler.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000427 *
428 * \since LTO_API_VERSION=4
Rafael Espindola00456462010-08-10 18:55:09 +0000429 */
430extern void
431lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args,
432 int nargs);
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000433
434/**
Rafael Espindolab62e6b42014-05-03 14:34:48 +0000435 * Adds to a list of all global symbols that must exist in the final generated
436 * code. If a function is not listed there, it might be inlined into every usage
437 * and optimized away.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000438 *
439 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000440 */
441extern void
442lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
443
Nick Kledzik07b4a622008-02-26 20:26:43 +0000444/**
445 * Writes a new object file at the specified path that contains the
446 * merged contents of all modules added so far.
447 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000448 *
449 * \since LTO_API_VERSION=5
Nick Kledzik07b4a622008-02-26 20:26:43 +0000450 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000451extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000452lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
453
Nick Kledzik07b4a622008-02-26 20:26:43 +0000454/**
455 * Generates code for all added modules into one native object file.
Manman Ren8121e1d2015-02-03 18:39:15 +0000456 * This calls lto_codegen_optimize then lto_codegen_compile_optimized.
457 *
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000458 * On success returns a pointer to a generated mach-o/ELF buffer and
Bill Wendling152e4732012-03-31 10:44:20 +0000459 * length set to the buffer size. The buffer is owned by the
Nick Kledzik91a6dcf2008-02-27 22:25:36 +0000460 * lto_code_gen_t and will be freed when lto_codegen_dispose()
461 * is called, or lto_codegen_compile() is called again.
Nick Kledzik07b4a622008-02-26 20:26:43 +0000462 * On failure, returns NULL (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000463 *
464 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000465 */
Nick Kledzik91a6dcf2008-02-27 22:25:36 +0000466extern const void*
Nick Kledzik07b4a622008-02-26 20:26:43 +0000467lto_codegen_compile(lto_code_gen_t cg, size_t* length);
468
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000469/**
470 * Generates code for all added modules into one native object file.
Manman Ren8121e1d2015-02-03 18:39:15 +0000471 * This calls lto_codegen_optimize then lto_codegen_compile_optimized (instead
472 * of returning a generated mach-o/ELF buffer, it writes to a file).
473 *
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000474 * The name of the file is written to name. Returns true on error.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000475 *
476 * \since LTO_API_VERSION=5
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000477 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000478extern lto_bool_t
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000479lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name);
480
Manman Ren8121e1d2015-02-03 18:39:15 +0000481/**
482 * Runs optimization for the merged module. Returns true on error.
483 *
484 * \since LTO_API_VERSION=12
485 */
486extern lto_bool_t
487lto_codegen_optimize(lto_code_gen_t cg);
488
489/**
490 * Generates code for the optimized merged module into one native object file.
491 * It will not run any IR optimizations on the merged module.
492 *
493 * On success returns a pointer to a generated mach-o/ELF buffer and length set
494 * to the buffer size. The buffer is owned by the lto_code_gen_t and will be
495 * freed when lto_codegen_dispose() is called, or
496 * lto_codegen_compile_optimized() is called again. On failure, returns NULL
497 * (check lto_get_error_message() for details).
498 *
499 * \since LTO_API_VERSION=12
500 */
501extern const void*
502lto_codegen_compile_optimized(lto_code_gen_t cg, size_t* length);
503
504/**
505 * Returns the runtime API version.
506 *
507 * \since LTO_API_VERSION=12
508 */
509extern unsigned int
Rafael Espindolaa5eb7752015-02-04 13:30:28 +0000510lto_api_version(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000511
Devang Patela0e4fb82008-07-03 22:53:14 +0000512/**
513 * Sets options to help debug codegen bugs.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000514 *
515 * \since prior to LTO_API_VERSION=3
Devang Patela0e4fb82008-07-03 22:53:14 +0000516 */
517extern void
518lto_codegen_debug_options(lto_code_gen_t cg, const char *);
Bill Wendling152e4732012-03-31 10:44:20 +0000519
Benjamin Kramer9bcb9222012-11-24 16:59:10 +0000520/**
521 * Initializes LLVM disassemblers.
522 * FIXME: This doesn't really belong here.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000523 *
524 * \since LTO_API_VERSION=5
Benjamin Kramer9bcb9222012-11-24 16:59:10 +0000525 */
526extern void
527lto_initialize_disassembler(void);
528
Manman Rence0a0662015-04-17 17:10:09 +0000529/**
530 * Sets if we should run internalize pass during optimization and code
531 * generation.
532 *
Duncan P. N. Exon Smithd9982942015-04-27 22:08:01 +0000533 * \since LTO_API_VERSION=14
Manman Rence0a0662015-04-17 17:10:09 +0000534 */
535extern void
536lto_codegen_set_should_internalize(lto_code_gen_t cg,
537 lto_bool_t ShouldInternalize);
538
Duncan P. N. Exon Smith5a490d02015-04-27 23:38:54 +0000539/**
540 * \brief Set whether to embed uselists in bitcode.
541 *
542 * Sets whether \a lto_codegen_write_merged_modules() should embed uselists in
543 * output bitcode. This should be turned on for all -save-temps output.
544 *
545 * \since LTO_API_VERSION=15
546 */
547extern void
548lto_codegen_set_should_embed_uselists(lto_code_gen_t cg,
549 lto_bool_t ShouldEmbedUselists);
550
Nick Kledzik07b4a622008-02-26 20:26:43 +0000551#ifdef __cplusplus
552}
553#endif
554
Gregory Szorc34c863a2012-03-21 03:54:29 +0000555/**
556 * @}
557 */
Nick Kledzik07b4a622008-02-26 20:26:43 +0000558
559#endif