LTO: document LTO_API_VERSION for each API
[oota-llvm.git] / include / llvm-c / lto.h
1 /*===-- 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
16 #ifndef LLVM_C_LTO_H
17 #define LLVM_C_LTO_H
18
19 #include <stddef.h>
20 #include <sys/types.h>
21
22 #ifndef __cplusplus
23 #if !defined(_MSC_VER)
24 #include <stdbool.h>
25 typedef bool lto_bool_t;
26 #else
27 /* 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. */
30 typedef unsigned char lto_bool_t;
31 #endif
32 #else
33 typedef bool lto_bool_t;
34 #endif
35
36 /**
37  * @defgroup LLVMCLTO LTO
38  * @ingroup LLVMC
39  *
40  * @{
41  */
42
43 #define LTO_API_VERSION 7
44
45 /**
46  * \since prior to LTO_API_VERSION=3
47  */
48 typedef enum {
49     LTO_SYMBOL_ALIGNMENT_MASK              = 0x0000001F, /* log2 of alignment */
50     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,
59     LTO_SYMBOL_DEFINITION_WEAKUNDEF        = 0x00000500,
60     LTO_SYMBOL_SCOPE_MASK                  = 0x00003800,
61     LTO_SYMBOL_SCOPE_INTERNAL              = 0x00000800,
62     LTO_SYMBOL_SCOPE_HIDDEN                = 0x00001000,
63     LTO_SYMBOL_SCOPE_PROTECTED             = 0x00002000,
64     LTO_SYMBOL_SCOPE_DEFAULT               = 0x00001800,
65     LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x00002800
66 } lto_symbol_attributes;
67
68 /**
69  * \since prior to LTO_API_VERSION=3
70  */
71 typedef enum {
72     LTO_DEBUG_MODEL_NONE         = 0,
73     LTO_DEBUG_MODEL_DWARF        = 1
74 } lto_debug_model;
75
76 /**
77  * \since prior to LTO_API_VERSION=3
78  */
79 typedef enum {
80     LTO_CODEGEN_PIC_MODEL_STATIC         = 0,
81     LTO_CODEGEN_PIC_MODEL_DYNAMIC        = 1,
82     LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2
83 } lto_codegen_model;
84
85 /**
86  * \since LTO_API_VERSION=6
87  */
88 typedef enum {
89     LTO_INTERNALIZE_FULL   = 0,
90     LTO_INTERNALIZE_NONE   = 1,
91     LTO_INTERNALIZE_HIDDEN = 2
92 } lto_internalize_strategy;
93
94 /** opaque reference to a loaded object module */
95 typedef struct LTOModule*         lto_module_t;
96
97 /** opaque reference to a code generator */
98 typedef struct LTOCodeGenerator*  lto_code_gen_t;
99
100 #ifdef __cplusplus
101 extern "C" {
102 #endif
103
104 /**
105  * Returns a printable string.
106  *
107  * \since prior to LTO_API_VERSION=3
108  */
109 extern const char*
110 lto_get_version(void);
111
112
113 /**
114  * Returns the last error string or NULL if last operation was successful.
115  *
116  * \since prior to LTO_API_VERSION=3
117  */
118 extern const char*
119 lto_get_error_message(void);
120
121 /**
122  * Checks if a file is a loadable object file.
123  *
124  * \since prior to LTO_API_VERSION=3
125  */
126 extern lto_bool_t
127 lto_module_is_object_file(const char* path);
128
129
130 /**
131  * Checks if a file is a loadable object compiled for requested target.
132  *
133  * \since prior to LTO_API_VERSION=3
134  */
135 extern lto_bool_t
136 lto_module_is_object_file_for_target(const char* path,
137                                      const char* target_triple_prefix);
138
139
140 /**
141  * Checks if a buffer is a loadable object file.
142  *
143  * \since prior to LTO_API_VERSION=3
144  */
145 extern lto_bool_t
146 lto_module_is_object_file_in_memory(const void* mem, size_t length);
147
148
149 /**
150  * Checks if a buffer is a loadable object compiled for requested target.
151  *
152  * \since prior to LTO_API_VERSION=3
153  */
154 extern lto_bool_t
155 lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
156                                               const char* target_triple_prefix);
157
158
159 /**
160  * Loads an object file from disk.
161  * Returns NULL on error (check lto_get_error_message() for details).
162  *
163  * \since prior to LTO_API_VERSION=3
164  */
165 extern lto_module_t
166 lto_module_create(const char* path);
167
168
169 /**
170  * Loads an object file from memory.
171  * Returns NULL on error (check lto_get_error_message() for details).
172  *
173  * \since prior to LTO_API_VERSION=3
174  */
175 extern lto_module_t
176 lto_module_create_from_memory(const void* mem, size_t length);
177
178 /**
179  * Loads an object file from disk. The seek point of fd is not preserved.
180  * Returns NULL on error (check lto_get_error_message() for details).
181  *
182  * \since LTO_API_VERSION=5
183  */
184 extern lto_module_t
185 lto_module_create_from_fd(int fd, const char *path, size_t file_size);
186
187 /**
188  * Loads an object file from disk. The seek point of fd is not preserved.
189  * Returns NULL on error (check lto_get_error_message() for details).
190  *
191  * \since LTO_API_VERSION=5
192  */
193 extern lto_module_t
194 lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size,
195                                     size_t map_size, off_t offset);
196
197 /**
198  * Frees all memory internally allocated by the module.
199  * Upon return the lto_module_t is no longer valid.
200  *
201  * \since prior to LTO_API_VERSION=3
202  */
203 extern void
204 lto_module_dispose(lto_module_t mod);
205
206 /**
207  * Returns triple string which the object module was compiled under.
208  *
209  * \since prior to LTO_API_VERSION=3
210  */
211 extern const char*
212 lto_module_get_target_triple(lto_module_t mod);
213
214 /**
215  * Sets triple string with which the object will be codegened.
216  *
217  * \since LTO_API_VERSION=4
218  */
219 extern void
220 lto_module_set_target_triple(lto_module_t mod, const char *triple);
221
222
223 /**
224  * Returns the number of symbols in the object module.
225  *
226  * \since prior to LTO_API_VERSION=3
227  */
228 extern unsigned int
229 lto_module_get_num_symbols(lto_module_t mod);
230
231
232 /**
233  * Returns the name of the ith symbol in the object module.
234  *
235  * \since prior to LTO_API_VERSION=3
236  */
237 extern const char*
238 lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
239
240
241 /**
242  * Returns the attributes of the ith symbol in the object module.
243  *
244  * \since prior to LTO_API_VERSION=3
245  */
246 extern lto_symbol_attributes
247 lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
248
249 /**
250  * Diagnostic severity.
251  *
252  * \since LTO_API_VERSION=7
253  */
254 typedef enum {
255   LTO_DS_ERROR,
256   LTO_DS_WARNING,
257   LTO_DS_NOTE
258 } lto_codegen_diagnostic_severity_t;
259
260 /**
261  * Diagnostic handler type.
262  * \p severity defines the severity.
263  * \p diag is the actual diagnostic.
264  * The diagnostic is not prefixed by any of severity keyword, e.g., 'error: '.
265  * \p ctxt is used to pass the context set with the diagnostic handler.
266  *
267  * \since LTO_API_VERSION=7
268  */
269 typedef void (*lto_diagnostic_handler_t)(
270     lto_codegen_diagnostic_severity_t severity, const char *diag, void *ctxt);
271
272 /**
273  * Set a diagnostic handler and the related context (void *).
274  * This is more general than lto_get_error_message, as the diagnostic handler
275  * can be called at anytime within lto.
276  *
277  * \since LTO_API_VERSION=7
278  */
279 extern void lto_codegen_set_diagnostic_handler(lto_code_gen_t,
280                                                lto_diagnostic_handler_t,
281                                                void *);
282
283 /**
284  * Instantiates a code generator.
285  * Returns NULL on error (check lto_get_error_message() for details).
286  *
287  * \since prior to LTO_API_VERSION=3
288  */
289 extern lto_code_gen_t
290 lto_codegen_create(void);
291
292 /**
293  * Frees all code generator and all memory it internally allocated.
294  * Upon return the lto_code_gen_t is no longer valid.
295  *
296  * \since prior to LTO_API_VERSION=3
297  */
298 extern void
299 lto_codegen_dispose(lto_code_gen_t);
300
301 /**
302  * Add an object module to the set of modules for which code will be generated.
303  * Returns true on error (check lto_get_error_message() for details).
304  *
305  * \since prior to LTO_API_VERSION=3
306  */
307 extern lto_bool_t
308 lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod);
309
310 /**
311  * Sets if debug info should be generated.
312  * Returns true on error (check lto_get_error_message() for details).
313  *
314  * \since prior to LTO_API_VERSION=3
315  */
316 extern lto_bool_t
317 lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model);
318
319
320 /**
321  * Sets which PIC code model to generated.
322  * Returns true on error (check lto_get_error_message() for details).
323  *
324  * \since prior to LTO_API_VERSION=3
325  */
326 extern lto_bool_t
327 lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
328
329
330 /**
331  * Sets the cpu to generate code for.
332  *
333  * \since LTO_API_VERSION=4
334  */
335 extern void
336 lto_codegen_set_cpu(lto_code_gen_t cg, const char *cpu);
337
338
339 /**
340  * Sets the location of the assembler tool to run. If not set, libLTO
341  * will use gcc to invoke the assembler.
342  *
343  * \since LTO_API_VERSION=3
344  */
345 extern void
346 lto_codegen_set_assembler_path(lto_code_gen_t cg, const char* path);
347
348 /**
349  * Sets extra arguments that libLTO should pass to the assembler.
350  *
351  * \since LTO_API_VERSION=4
352  */
353 extern void
354 lto_codegen_set_assembler_args(lto_code_gen_t cg, const char **args,
355                                int nargs);
356
357 /**
358  * Sets the strategy to use during internalize.  Default strategy is
359  * LTO_INTERNALIZE_FULL.
360  *
361  * \since LTO_API_VERSION=6
362  */
363 extern void
364 lto_codegen_set_internalize_strategy(lto_code_gen_t cg,
365                                      lto_internalize_strategy);
366
367 /**
368  * Tells LTO optimization passes that this symbol must be preserved
369  * because it is referenced by native code or a command line option.
370  *
371  * \since prior to LTO_API_VERSION=3
372  */
373 extern void
374 lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
375
376 /**
377  * Writes a new object file at the specified path that contains the
378  * merged contents of all modules added so far.
379  * Returns true on error (check lto_get_error_message() for details).
380  *
381  * \since LTO_API_VERSION=5
382  */
383 extern lto_bool_t
384 lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
385
386 /**
387  * Generates code for all added modules into one native object file.
388  * On success returns a pointer to a generated mach-o/ELF buffer and
389  * length set to the buffer size.  The buffer is owned by the
390  * lto_code_gen_t and will be freed when lto_codegen_dispose()
391  * is called, or lto_codegen_compile() is called again.
392  * On failure, returns NULL (check lto_get_error_message() for details).
393  *
394  * \since prior to LTO_API_VERSION=3
395  */
396 extern const void*
397 lto_codegen_compile(lto_code_gen_t cg, size_t* length);
398
399 /**
400  * Generates code for all added modules into one native object file.
401  * The name of the file is written to name. Returns true on error.
402  *
403  * \since LTO_API_VERSION=5
404  */
405 extern lto_bool_t
406 lto_codegen_compile_to_file(lto_code_gen_t cg, const char** name);
407
408
409 /**
410  * Sets options to help debug codegen bugs.
411  *
412  * \since prior to LTO_API_VERSION=3
413  */
414 extern void
415 lto_codegen_debug_options(lto_code_gen_t cg, const char *);
416
417 /**
418  * Initializes LLVM disassemblers.
419  * FIXME: This doesn't really belong here.
420  *
421  * \since LTO_API_VERSION=5
422  */
423 extern void
424 lto_initialize_disassembler(void);
425
426 #ifdef __cplusplus
427 }
428 #endif
429
430 /**
431  * @}
432  */
433
434 #endif