1 /*===-- llvm-c/lto.h - LTO Public C Interface ---------------------*- C -*-===*\
3 |* The LLVM Compiler Infrastructure *|
5 |* This file is distributed under the University of Illinois Open Source *|
6 |* License. See LICENSE.TXT for details. *|
8 |*===----------------------------------------------------------------------===*|
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. *|
14 \*===----------------------------------------------------------------------===*/
23 LTO_SYMBOL_ALIGNMENT_MASK = 0x0000001F, /* log2 of alignment */
24 LTO_SYMBOL_PERMISSIONS_MASK = 0x000000E0,
25 LTO_SYMBOL_PERMISSIONS_CODE = 0x000000A0,
26 LTO_SYMBOL_PERMISSIONS_DATA = 0x000000C0,
27 LTO_SYMBOL_PERMISSIONS_RODATA = 0x00000080,
28 LTO_SYMBOL_DEFINITION_MASK = 0x00000700,
29 LTO_SYMBOL_DEFINITION_REGULAR = 0x00000100,
30 LTO_SYMBOL_DEFINITION_TENTATIVE = 0x00000200,
31 LTO_SYMBOL_DEFINITION_WEAK = 0x00000300,
32 LTO_SYMBOL_DEFINITION_UNDEFINED = 0x00000400,
33 LTO_SYMBOL_SCOPE_MASK = 0x00001800,
34 LTO_SYMBOL_SCOPE_INTERNAL = 0x00000800,
35 LTO_SYMBOL_SCOPE_HIDDEN = 0x00001000,
36 LTO_SYMBOL_SCOPE_DEFAULT = 0x00001800
37 } lto_symbol_attributes;
40 LTO_DEBUG_MODEL_NONE = 0,
41 LTO_DEBUG_MODEL_DWARF = 1
45 LTO_CODEGEN_PIC_MODEL_STATIC = 0,
46 LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
47 LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2
51 /** opaque reference to a loaded object module */
52 typedef struct LTOModule* lto_module_t;
54 /** opaque reference to a code generator */
55 typedef struct LTOCodeGenerator* lto_code_gen_t;
63 * Returns a printable string.
70 * Returns the last error string or NULL if last operation was sucessful.
73 lto_get_error_message();
77 * Checks if a file is a loadable object file.
80 lto_module_is_object_file(const char* path);
84 * Checks if a file is a loadable object compiled for requested target.
87 lto_module_is_object_file_for_target(const char* path,
88 const char* target_triple_prefix);
92 * Checks if a buffer is a loadable object file.
95 lto_module_is_object_file_in_memory(const void* mem, size_t length);
99 * Checks if a buffer is a loadable object compiled for requested target.
102 lto_module_is_object_file_in_memory_for_target(const void* mem, size_t length,
103 const char* target_triple_prefix);
107 * Loads an object file from disk.
108 * Returns NULL on error (check lto_get_error_message() for details).
111 lto_module_create(const char* path);
115 * Loads an object file from memory.
116 * Returns NULL on error (check lto_get_error_message() for details).
119 lto_module_create_from_memory(const void* mem, size_t length);
123 * Frees all memory internally allocated by the module.
124 * Upon return the lto_module_t is no longer valid.
127 lto_module_dispose(lto_module_t mod);
131 * Returns triple string which the object module was compiled under.
134 lto_module_get_target_triple(lto_module_t mod);
138 * Returns the number of symbols in the object module.
141 lto_module_get_num_symbols(lto_module_t mod);
145 * Returns the name of the ith symbol in the object module.
148 lto_module_get_symbol_name(lto_module_t mod, unsigned int index);
152 * Returns the attributes of the ith symbol in the object module.
154 extern lto_symbol_attributes
155 lto_module_get_symbol_attribute(lto_module_t mod, unsigned int index);
159 * Instantiates a code generator.
160 * Returns NULL on error (check lto_get_error_message() for details).
162 extern lto_code_gen_t
163 lto_codegen_create();
167 * Frees all code generator and all memory it internally allocated.
168 * Upon return the lto_code_gen_t is no longer valid.
171 lto_codegen_dispose(lto_code_gen_t);
176 * Add an object module to the set of modules for which code will be generated.
177 * Returns true on error (check lto_get_error_message() for details).
180 lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod);
185 * Sets if debug info should be generated.
186 * Returns true on error (check lto_get_error_message() for details).
189 lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model);
193 * Sets which PIC code model to generated.
194 * Returns true on error (check lto_get_error_message() for details).
197 lto_codegen_set_pic_model(lto_code_gen_t cg, lto_codegen_model);
201 * Adds to a list of all global symbols that must exist in the final
202 * generated code. If a function is not listed, it might be
203 * inlined into every usage and optimized away.
206 lto_codegen_add_must_preserve_symbol(lto_code_gen_t cg, const char* symbol);
210 * Writes a new object file at the specified path that contains the
211 * merged contents of all modules added so far.
212 * Returns true on error (check lto_get_error_message() for details).
215 lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
219 * Generates code for all added modules into one native object file.
220 * On sucess returns a pointer to a generated mach-o/ELF buffer and
221 * length set to the buffer size. The buffer is owned by the
222 * lto_code_gen_t and will be freed when lto_codegen_dispose()
223 * is called, or lto_codegen_compile() is called again.
224 * On failure, returns NULL (check lto_get_error_message() for details).
227 lto_codegen_compile(lto_code_gen_t cg, size_t* length);