blob: 2f3aac7ed878cdf9febca4cd45b118f3c31c5a78 [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
Manman Rence0a0662015-04-17 17:10:09 +000043#define LTO_API_VERSION 14
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,
65 LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x00002800
Nick Kledzik07b4a622008-02-26 20:26:43 +000066} lto_symbol_attributes;
67
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000068/**
69 * \since prior to LTO_API_VERSION=3
70 */
Nick Kledzik07b4a622008-02-26 20:26:43 +000071typedef enum {
72 LTO_DEBUG_MODEL_NONE = 0,
73 LTO_DEBUG_MODEL_DWARF = 1
74} lto_debug_model;
75
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000076/**
77 * \since prior to LTO_API_VERSION=3
78 */
Nick Kledzik07b4a622008-02-26 20:26:43 +000079typedef enum {
80 LTO_CODEGEN_PIC_MODEL_STATIC = 0,
81 LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
James Molloy951e5292014-04-14 13:54:16 +000082 LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2,
83 LTO_CODEGEN_PIC_MODEL_DEFAULT = 3
Nick Kledzik07b4a622008-02-26 20:26:43 +000084} lto_codegen_model;
85
Nick Kledzik07b4a622008-02-26 20:26:43 +000086/** opaque reference to a loaded object module */
Rafael Espindola83ceb8e2014-05-03 14:59:52 +000087typedef struct LLVMOpaqueLTOModule *lto_module_t;
Nick Kledzik07b4a622008-02-26 20:26:43 +000088
89/** opaque reference to a code generator */
Rafael Espindola83ceb8e2014-05-03 14:59:52 +000090typedef struct LLVMOpaqueLTOCodeGenerator *lto_code_gen_t;
Nick Kledzik07b4a622008-02-26 20:26:43 +000091
Nick Kledzik07b4a622008-02-26 20:26:43 +000092#ifdef __cplusplus
93extern "C" {
94#endif
95
96/**
97 * Returns a printable string.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +000098 *
99 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000100 */
101extern const char*
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000102lto_get_version(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000103
104
105/**
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000106 * Returns the last error string or NULL if last operation was successful.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000107 *
108 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000109 */
110extern const char*
Gordon Henriksena735a9c2008-05-04 12:55:34 +0000111lto_get_error_message(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000112
Nick Kledzik07b4a622008-02-26 20:26:43 +0000113/**
114 * Checks if a file is a loadable object file.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000115 *
116 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000117 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000118extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000119lto_module_is_object_file(const char* path);
120
121
122/**
123 * Checks if a file is a loadable object compiled for requested target.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000124 *
125 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000126 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000127extern lto_bool_t
Bill Wendling152e4732012-03-31 10:44:20 +0000128lto_module_is_object_file_for_target(const char* path,
Nick Lewycky8811ecd2009-02-06 07:01:00 +0000129 const char* target_triple_prefix);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000130
131
132/**
133 * Checks if a buffer is a loadable object file.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000134 *
135 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000136 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000137extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000138lto_module_is_object_file_in_memory(const void* mem, size_t length);
139
140
141/**
142 * Checks if a buffer is a loadable object compiled for requested target.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000143 *
144 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000145 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000146extern lto_bool_t
Bill Wendling152e4732012-03-31 10:44:20 +0000147lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
Eric Christopher135de902010-07-12 05:13:35 +0000148 const char* target_triple_prefix);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000149
150
151/**
152 * Loads an object file from disk.
153 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000154 *
155 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000156 */
157extern lto_module_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000158lto_module_create(const char* path);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000159
160
161/**
162 * Loads an object file from memory.
163 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000164 *
165 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000166 */
167extern lto_module_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000168lto_module_create_from_memory(const void* mem, size_t length);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000169
Rafael Espindola56e41f72011-02-08 22:40:47 +0000170/**
Manman Ren03456a12014-02-10 23:26:14 +0000171 * Loads an object file from memory with an extra path argument.
172 * Returns NULL on error (check lto_get_error_message() for details).
173 *
174 * \since prior to LTO_API_VERSION=9
175 */
176extern lto_module_t
177lto_module_create_from_memory_with_path(const void* mem, size_t length,
178 const char *path);
179
180/**
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000181 * \brief Loads an object file in its own context.
182 *
183 * Loads an object file in its own LLVMContext. This function call is
184 * thread-safe. However, modules created this way should not be merged into an
185 * lto_code_gen_t using \a lto_codegen_add_module().
186 *
187 * Returns NULL on error (check lto_get_error_message() for details).
188 *
189 * \since LTO_API_VERSION=11
190 */
191extern lto_module_t
192lto_module_create_in_local_context(const void *mem, size_t length,
193 const char *path);
194
195/**
196 * \brief Loads an object file in the codegen context.
197 *
198 * Loads an object file into the same context as \c cg. The module is safe to
199 * add using \a lto_codegen_add_module().
200 *
201 * Returns NULL on error (check lto_get_error_message() for details).
202 *
203 * \since LTO_API_VERSION=11
204 */
205extern lto_module_t
206lto_module_create_in_codegen_context(const void *mem, size_t length,
207 const char *path, lto_code_gen_t cg);
208
209/**
Rafael Espindola56e41f72011-02-08 22:40:47 +0000210 * Loads an object file from disk. The seek point of fd is not preserved.
211 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000212 *
213 * \since LTO_API_VERSION=5
Rafael Espindola56e41f72011-02-08 22:40:47 +0000214 */
215extern lto_module_t
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000216lto_module_create_from_fd(int fd, const char *path, size_t file_size);
217
218/**
219 * Loads an object file from disk. The seek point of fd is not preserved.
220 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000221 *
222 * \since LTO_API_VERSION=5
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000223 */
224extern lto_module_t
225lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size,
226 size_t map_size, off_t offset);
Rafael Espindola56e41f72011-02-08 22:40:47 +0000227
Nick Kledzik07b4a622008-02-26 20:26:43 +0000228/**
229 * Frees all memory internally allocated by the module.
230 * Upon return the lto_module_t is no longer valid.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000231 *
232 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000233 */
234extern void
235lto_module_dispose(lto_module_t mod);
236
Nick Kledzik07b4a622008-02-26 20:26:43 +0000237/**
238 * Returns triple string which the object module was compiled under.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000239 *
240 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000241 */
242extern const char*
243lto_module_get_target_triple(lto_module_t mod);
244
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000245/**
246 * Sets triple string with which the object will be codegened.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000247 *
248 * \since LTO_API_VERSION=4
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000249 */
250extern void
251lto_module_set_target_triple(lto_module_t mod, const char *triple);
252
Nick Kledzik07b4a622008-02-26 20:26:43 +0000253
254/**
255 * Returns the number of symbols in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000256 *
257 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000258 */
Devang Patel39bd6ce2011-01-07 22:26:25 +0000259extern unsigned int
Nick Kledzik07b4a622008-02-26 20:26:43 +0000260lto_module_get_num_symbols(lto_module_t mod);
261
262
263/**
264 * Returns the name of the ith symbol in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000265 *
266 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000267 */
268extern const char*
Devang Patel39bd6ce2011-01-07 22:26:25 +0000269lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000270
271
272/**
273 * Returns the attributes of the ith symbol in the object module.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000274 *
275 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000276 */
277extern lto_symbol_attributes
Devang Patel39bd6ce2011-01-07 22:26:25 +0000278lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000279
Yunzhong Gaoa88d7ab2014-01-21 18:31:27 +0000280
281/**
282 * Returns the number of dependent libraries in the object module.
283 *
284 * \since LTO_API_VERSION=8
285 */
286extern unsigned int
287lto_module_get_num_deplibs(lto_module_t mod);
288
289
290/**
291 * Returns the ith dependent library in the module.
292 *
293 * \since LTO_API_VERSION=8
294 */
295extern const char*
296lto_module_get_deplib(lto_module_t mod, unsigned int index);
297
298
299/**
300 * Returns the number of linker options in the object module.
301 *
302 * \since LTO_API_VERSION=8
303 */
304extern unsigned int
305lto_module_get_num_linkeropts(lto_module_t mod);
306
307
308/**
309 * Returns the ith linker option in the module.
310 *
311 * \since LTO_API_VERSION=8
312 */
313extern const char*
314lto_module_get_linkeropt(lto_module_t mod, unsigned int index);
315
316
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000317/**
318 * Diagnostic severity.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000319 *
320 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000321 */
322typedef enum {
Tobias Grossere8d4c9a2014-02-28 09:08:45 +0000323 LTO_DS_ERROR = 0,
324 LTO_DS_WARNING = 1,
325 LTO_DS_REMARK = 3, // Added in LTO_API_VERSION=10.
326 LTO_DS_NOTE = 2
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000327} lto_codegen_diagnostic_severity_t;
328
329/**
330 * Diagnostic handler type.
331 * \p severity defines the severity.
332 * \p diag is the actual diagnostic.
333 * The diagnostic is not prefixed by any of severity keyword, e.g., 'error: '.
334 * \p ctxt is used to pass the context set with the diagnostic handler.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000335 *
336 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000337 */
338typedef void (*lto_diagnostic_handler_t)(
339 lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt);
340
341/**
342 * Set a diagnostic handler and the related context (void *).
343 * This is more general than lto_get_error_message, as the diagnostic handler
344 * can be called at anytime within lto.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000345 *
346 * \since LTO_API_VERSION=7
Quentin Colombet5fa1f6f2014-01-15 22:04:35 +0000347 */
348extern void lto_codegen_set_diagnostic_handler(lto_code_gen_t,
349 lto_diagnostic_handler_t,
350 void *);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000351
352/**
353 * Instantiates a code generator.
354 * Returns NULL on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000355 *
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000356 * All modules added using \a lto_codegen_add_module() must have been created
357 * in the same context as the codegen.
358 *
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000359 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000360 */
361extern lto_code_gen_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000362lto_codegen_create(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000363
Nick Kledzik07b4a622008-02-26 20:26:43 +0000364/**
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000365 * \brief Instantiate a code generator in its own context.
366 *
367 * Instantiates a code generator in its own context. Modules added via \a
368 * lto_codegen_add_module() must have all been created in the same context,
369 * using \a lto_module_create_in_codegen_context().
370 *
371 * \since LTO_API_VERSION=11
372 */
373extern lto_code_gen_t
374lto_codegen_create_in_local_context(void);
375
376/**
Nick Kledzik07b4a622008-02-26 20:26:43 +0000377 * Frees all code generator and all memory it internally allocated.
378 * Upon return the lto_code_gen_t is no longer valid.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000379 *
380 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000381 */
382extern void
383lto_codegen_dispose(lto_code_gen_t);
384
Nick Kledzik07b4a622008-02-26 20:26:43 +0000385/**
386 * Add an object module to the set of modules for which code will be generated.
387 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000388 *
Duncan P. N. Exon Smithc5800f62014-11-11 23:19:23 +0000389 * \c cg and \c mod must both be in the same context. See \a
390 * lto_codegen_create_in_local_context() and \a
391 * lto_module_create_in_codegen_context().
392 *
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000393 * \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_add_module(lto_code_gen_t cg, lto_module_t mod);
397
Nick Kledzik07b4a622008-02-26 20:26:43 +0000398/**
Manman Ren6487ce92015-02-24 00:45:56 +0000399 * Sets the object module for code generation. This will transfer the ownship of
400 * the module to code generator.
401 *
402 * \c cg and \c mod must both be in the same context.
403 *
404 * \since prior to LTO_API_VERSION=13
405 */
406extern void
407lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod);
408
409/**
Nick Kledzik07b4a622008-02-26 20:26:43 +0000410 * Sets if debug info should be generated.
411 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000412 *
413 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000414 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000415extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000416lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model);
417
418
419/**
420 * Sets which PIC code model to generated.
421 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000422 *
423 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000424 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000425extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000426lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
427
428
429/**
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000430 * Sets the cpu to generate code for.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000431 *
432 * \since LTO_API_VERSION=4
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000433 */
434extern void
435lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
436
437
438/**
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000439 * Sets the location of the assembler tool to run. If not set, libLTO
440 * will use gcc to invoke the assembler.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000441 *
442 * \since LTO_API_VERSION=3
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000443 */
444extern void
445lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path);
446
Rafael Espindola00456462010-08-10 18:55:09 +0000447/**
448 * Sets extra arguments that libLTO should pass to the assembler.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000449 *
450 * \since LTO_API_VERSION=4
Rafael Espindola00456462010-08-10 18:55:09 +0000451 */
452extern void
453lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args,
454 int nargs);
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000455
456/**
Rafael Espindolab62e6b42014-05-03 14:34:48 +0000457 * Adds to a list of all global symbols that must exist in the final generated
458 * code. If a function is not listed there, it might be inlined into every usage
459 * and optimized away.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000460 *
461 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000462 */
463extern void
464lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
465
Nick Kledzik07b4a622008-02-26 20:26:43 +0000466/**
467 * Writes a new object file at the specified path that contains the
468 * merged contents of all modules added so far.
469 * Returns true on error (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000470 *
471 * \since LTO_API_VERSION=5
Nick Kledzik07b4a622008-02-26 20:26:43 +0000472 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000473extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000474lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
475
Nick Kledzik07b4a622008-02-26 20:26:43 +0000476/**
477 * Generates code for all added modules into one native object file.
Manman Ren8121e1d2015-02-03 18:39:15 +0000478 * This calls lto_codegen_optimize then lto_codegen_compile_optimized.
479 *
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000480 * On success returns a pointer to a generated mach-o/ELF buffer and
Bill Wendling152e4732012-03-31 10:44:20 +0000481 * length set to the buffer size. The buffer is owned by the
Nick Kledzik91a6dcf2008-02-27 22:25:36 +0000482 * lto_code_gen_t and will be freed when lto_codegen_dispose()
483 * is called, or lto_codegen_compile() is called again.
Nick Kledzik07b4a622008-02-26 20:26:43 +0000484 * On failure, returns NULL (check lto_get_error_message() for details).
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000485 *
486 * \since prior to LTO_API_VERSION=3
Nick Kledzik07b4a622008-02-26 20:26:43 +0000487 */
Nick Kledzik91a6dcf2008-02-27 22:25:36 +0000488extern const void*
Nick Kledzik07b4a622008-02-26 20:26:43 +0000489lto_codegen_compile(lto_code_gen_t cg, size_t* length);
490
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000491/**
492 * Generates code for all added modules into one native object file.
Manman Ren8121e1d2015-02-03 18:39:15 +0000493 * This calls lto_codegen_optimize then lto_codegen_compile_optimized (instead
494 * of returning a generated mach-o/ELF buffer, it writes to a file).
495 *
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000496 * The name of the file is written to name. Returns true on error.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000497 *
498 * \since LTO_API_VERSION=5
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000499 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000500extern lto_bool_t
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000501lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name);
502
Manman Ren8121e1d2015-02-03 18:39:15 +0000503/**
504 * Runs optimization for the merged module. Returns true on error.
505 *
506 * \since LTO_API_VERSION=12
507 */
508extern lto_bool_t
509lto_codegen_optimize(lto_code_gen_t cg);
510
511/**
512 * Generates code for the optimized merged module into one native object file.
513 * It will not run any IR optimizations on the merged module.
514 *
515 * On success returns a pointer to a generated mach-o/ELF buffer and length set
516 * to the buffer size. The buffer is owned by the lto_code_gen_t and will be
517 * freed when lto_codegen_dispose() is called, or
518 * lto_codegen_compile_optimized() is called again. On failure, returns NULL
519 * (check lto_get_error_message() for details).
520 *
521 * \since LTO_API_VERSION=12
522 */
523extern const void*
524lto_codegen_compile_optimized(lto_code_gen_t cg, size_t* length);
525
526/**
527 * Returns the runtime API version.
528 *
529 * \since LTO_API_VERSION=12
530 */
531extern unsigned int
Rafael Espindolaa5eb7752015-02-04 13:30:28 +0000532lto_api_version(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000533
Devang Patela0e4fb82008-07-03 22:53:14 +0000534/**
535 * Sets options to help debug codegen bugs.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000536 *
537 * \since prior to LTO_API_VERSION=3
Devang Patela0e4fb82008-07-03 22:53:14 +0000538 */
539extern void
540lto_codegen_debug_options(lto_code_gen_t cg, const char *);
Bill Wendling152e4732012-03-31 10:44:20 +0000541
Benjamin Kramer9bcb9222012-11-24 16:59:10 +0000542/**
543 * Initializes LLVM disassemblers.
544 * FIXME: This doesn't really belong here.
Duncan P. N. Exon Smith40fdf5f2014-01-16 21:37:17 +0000545 *
546 * \since LTO_API_VERSION=5
Benjamin Kramer9bcb9222012-11-24 16:59:10 +0000547 */
548extern void
549lto_initialize_disassembler(void);
550
Manman Rence0a0662015-04-17 17:10:09 +0000551/**
552 * Sets if we should run internalize pass during optimization and code
553 * generation.
554 *
555 * \since prior to LTO_API_VERSION=14
556 */
557extern void
558lto_codegen_set_should_internalize(lto_code_gen_t cg,
559 lto_bool_t ShouldInternalize);
560
Nick Kledzik07b4a622008-02-26 20:26:43 +0000561#ifdef __cplusplus
562}
563#endif
564
Gregory Szorc34c863a2012-03-21 03:54:29 +0000565/**
566 * @}
567 */
Nick Kledzik07b4a622008-02-26 20:26:43 +0000568
569#endif