blob: 89f54b7a7b7470fd9ea9aa46d2e32a4bd550ed0c [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
Rafael Espindolacda29112013-10-03 18:29:09 +000043#define LTO_API_VERSION 5
Nick Kledzikcac8c8a2009-06-04 00:28:45 +000044
Nick Kledzik07b4a622008-02-26 20:26:43 +000045typedef enum {
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000046 LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of alignment */
Bill Wendling152e4732012-03-31 10:44:20 +000047 LTO_SYMBOL_PERMISSIONS_MASK = 0x000000E0,
48 LTO_SYMBOL_PERMISSIONS_CODE = 0x000000A0,
49 LTO_SYMBOL_PERMISSIONS_DATA = 0x000000C0,
50 LTO_SYMBOL_PERMISSIONS_RODATA = 0x00000080,
51 LTO_SYMBOL_DEFINITION_MASK = 0x00000700,
52 LTO_SYMBOL_DEFINITION_REGULAR = 0x00000100,
53 LTO_SYMBOL_DEFINITION_TENTATIVE = 0x00000200,
54 LTO_SYMBOL_DEFINITION_WEAK = 0x00000300,
55 LTO_SYMBOL_DEFINITION_UNDEFINED = 0x00000400,
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000056 LTO_SYMBOL_DEFINITION_WEAKUNDEF = 0x00000500,
Bill Wendling152e4732012-03-31 10:44:20 +000057 LTO_SYMBOL_SCOPE_MASK = 0x00003800,
58 LTO_SYMBOL_SCOPE_INTERNAL = 0x00000800,
59 LTO_SYMBOL_SCOPE_HIDDEN = 0x00001000,
60 LTO_SYMBOL_SCOPE_PROTECTED = 0x00002000,
Bill Wendlingdcd7c2b2010-09-27 20:17:45 +000061 LTO_SYMBOL_SCOPE_DEFAULT = 0x00001800,
62 LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x00002800
Nick Kledzik07b4a622008-02-26 20:26:43 +000063} lto_symbol_attributes;
64
65typedef enum {
66 LTO_DEBUG_MODEL_NONE = 0,
67 LTO_DEBUG_MODEL_DWARF = 1
68} lto_debug_model;
69
70typedef enum {
71 LTO_CODEGEN_PIC_MODEL_STATIC = 0,
72 LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
73 LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2
74} lto_codegen_model;
75
76
77/** opaque reference to a loaded object module */
78typedef struct LTOModule* lto_module_t;
79
80/** opaque reference to a code generator */
81typedef struct LTOCodeGenerator* lto_code_gen_t;
82
Nick Kledzik07b4a622008-02-26 20:26:43 +000083#ifdef __cplusplus
84extern "C" {
85#endif
86
87/**
88 * Returns a printable string.
89 */
90extern const char*
Gordon Henriksena735a9c2008-05-04 12:55:34 +000091lto_get_version(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +000092
93
94/**
Chris Lattner0ab5e2c2011-04-15 05:18:47 +000095 * Returns the last error string or NULL if last operation was successful.
Nick Kledzik07b4a622008-02-26 20:26:43 +000096 */
97extern const char*
Gordon Henriksena735a9c2008-05-04 12:55:34 +000098lto_get_error_message(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +000099
Nick Kledzik07b4a622008-02-26 20:26:43 +0000100/**
101 * Checks if a file is a loadable object file.
102 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000103extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000104lto_module_is_object_file(const char* path);
105
106
107/**
108 * Checks if a file is a loadable object compiled for requested target.
109 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000110extern lto_bool_t
Bill Wendling152e4732012-03-31 10:44:20 +0000111lto_module_is_object_file_for_target(const char* path,
Nick Lewycky8811ecd2009-02-06 07:01:00 +0000112 const char* target_triple_prefix);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000113
114
115/**
116 * Checks if a buffer is a loadable object file.
117 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000118extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000119lto_module_is_object_file_in_memory(const void* mem, size_t length);
120
121
122/**
123 * Checks if a buffer is a loadable object compiled for requested target.
124 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000125extern lto_bool_t
Bill Wendling152e4732012-03-31 10:44:20 +0000126lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
Eric Christopher135de902010-07-12 05:13:35 +0000127 const char* target_triple_prefix);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000128
129
130/**
131 * Loads an object file from disk.
132 * Returns NULL on error (check lto_get_error_message() for details).
133 */
134extern lto_module_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000135lto_module_create(const char* path);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000136
137
138/**
139 * Loads an object file from memory.
140 * Returns NULL on error (check lto_get_error_message() for details).
141 */
142extern lto_module_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000143lto_module_create_from_memory(const void* mem, size_t length);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000144
Rafael Espindola56e41f72011-02-08 22:40:47 +0000145/**
146 * Loads an object file from disk. The seek point of fd is not preserved.
147 * Returns NULL on error (check lto_get_error_message() for details).
148 */
149extern lto_module_t
Rafael Espindolab39c7c72011-03-17 00:36:11 +0000150lto_module_create_from_fd(int fd, const char *path, size_t file_size);
151
152/**
153 * Loads an object file from disk. The seek point of fd is not preserved.
154 * Returns NULL on error (check lto_get_error_message() for details).
155 */
156extern lto_module_t
157lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size,
158 size_t map_size, off_t offset);
Rafael Espindola56e41f72011-02-08 22:40:47 +0000159
Nick Kledzik07b4a622008-02-26 20:26:43 +0000160
161/**
162 * Frees all memory internally allocated by the module.
163 * Upon return the lto_module_t is no longer valid.
164 */
165extern void
166lto_module_dispose(lto_module_t mod);
167
168
169/**
170 * Returns triple string which the object module was compiled under.
171 */
172extern const char*
173lto_module_get_target_triple(lto_module_t mod);
174
Rafael Espindola4ef89f52010-08-09 21:09:46 +0000175/**
176 * Sets triple string with which the object will be codegened.
177 */
178extern void
179lto_module_set_target_triple(lto_module_t mod, const char *triple);
180
Nick Kledzik07b4a622008-02-26 20:26:43 +0000181
182/**
183 * Returns the number of symbols in the object module.
184 */
Devang Patel39bd6ce2011-01-07 22:26:25 +0000185extern unsigned int
Nick Kledzik07b4a622008-02-26 20:26:43 +0000186lto_module_get_num_symbols(lto_module_t mod);
187
188
189/**
190 * Returns the name of the ith symbol in the object module.
191 */
192extern const char*
Devang Patel39bd6ce2011-01-07 22:26:25 +0000193lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000194
195
196/**
197 * Returns the attributes of the ith symbol in the object module.
198 */
199extern lto_symbol_attributes
Devang Patel39bd6ce2011-01-07 22:26:25 +0000200lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000201
202
203/**
204 * Instantiates a code generator.
205 * Returns NULL on error (check lto_get_error_message() for details).
206 */
207extern lto_code_gen_t
Owen Anderson0ff99382009-07-02 00:31:14 +0000208lto_codegen_create(void);
Nick Kledzik07b4a622008-02-26 20:26:43 +0000209
210
211/**
212 * Frees all code generator and all memory it internally allocated.
213 * Upon return the lto_code_gen_t is no longer valid.
214 */
215extern void
216lto_codegen_dispose(lto_code_gen_t);
217
218
219
220/**
221 * Add an object module to the set of modules for which code will be generated.
222 * Returns true on error (check lto_get_error_message() for details).
223 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000224extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000225lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod);
226
227
228
229/**
230 * Sets if debug info should be generated.
231 * Returns true on error (check lto_get_error_message() for details).
232 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000233extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000234lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model);
235
236
237/**
238 * Sets which PIC code model to generated.
239 * Returns true on error (check lto_get_error_message() for details).
240 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000241extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000242lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
243
244
245/**
Rafael Espindolaccab1dd2010-08-11 00:15:13 +0000246 * Sets the cpu to generate code for.
247 */
248extern void
249lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
250
251
252/**
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000253 * Sets the location of the assembler tool to run. If not set, libLTO
254 * will use gcc to invoke the assembler.
255 */
256extern void
257lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path);
258
Rafael Espindola00456462010-08-10 18:55:09 +0000259/**
260 * Sets extra arguments that libLTO should pass to the assembler.
261 */
262extern void
263lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args,
264 int nargs);
Nick Kledzikcac8c8a2009-06-04 00:28:45 +0000265
266/**
Rafael Espindolacda29112013-10-03 18:29:09 +0000267 * Tells LTO optimization passes that this symbol must be preserved
268 * because it is referenced by native code or a command line option.
Nick Kledzik07b4a622008-02-26 20:26:43 +0000269 */
270extern void
271lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
272
Nick Kledzik07b4a622008-02-26 20:26:43 +0000273/**
274 * Writes a new object file at the specified path that contains the
275 * merged contents of all modules added so far.
276 * Returns true on error (check lto_get_error_message() for details).
277 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000278extern lto_bool_t
Nick Kledzik07b4a622008-02-26 20:26:43 +0000279lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
280
Nick Kledzik07b4a622008-02-26 20:26:43 +0000281/**
282 * Generates code for all added modules into one native object file.
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000283 * On success returns a pointer to a generated mach-o/ELF buffer and
Bill Wendling152e4732012-03-31 10:44:20 +0000284 * length set to the buffer size. The buffer is owned by the
Nick Kledzik91a6dcf2008-02-27 22:25:36 +0000285 * lto_code_gen_t and will be freed when lto_codegen_dispose()
286 * is called, or lto_codegen_compile() is called again.
Nick Kledzik07b4a622008-02-26 20:26:43 +0000287 * On failure, returns NULL (check lto_get_error_message() for details).
288 */
Nick Kledzik91a6dcf2008-02-27 22:25:36 +0000289extern const void*
Nick Kledzik07b4a622008-02-26 20:26:43 +0000290lto_codegen_compile(lto_code_gen_t cg, size_t* length);
291
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000292/**
293 * Generates code for all added modules into one native object file.
294 * The name of the file is written to name. Returns true on error.
295 */
Reid Klecknerddac1512013-10-24 22:26:04 +0000296extern lto_bool_t
Rafael Espindola26b57ff2011-03-22 20:57:13 +0000297lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name);
298
Nick Kledzik07b4a622008-02-26 20:26:43 +0000299
Devang Patela0e4fb82008-07-03 22:53:14 +0000300/**
301 * Sets options to help debug codegen bugs.
302 */
303extern void
304lto_codegen_debug_options(lto_code_gen_t cg, const char *);
Bill Wendling152e4732012-03-31 10:44:20 +0000305
Benjamin Kramer9bcb9222012-11-24 16:59:10 +0000306/**
307 * Initializes LLVM disassemblers.
308 * FIXME: This doesn't really belong here.
309 */
310extern void
311lto_initialize_disassembler(void);
312
Nick Kledzik07b4a622008-02-26 20:26:43 +0000313#ifdef __cplusplus
314}
315#endif
316
Gregory Szorc34c863a2012-03-21 03:54:29 +0000317/**
318 * @}
319 */
Nick Kledzik07b4a622008-02-26 20:26:43 +0000320
321#endif