1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
#![allow(non_camel_case_types)]
pub type lto_bool_t = u8;
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum lto_symbol_attributes {
LTO_SYMBOL_ALIGNMENT_MASK = 31,
LTO_SYMBOL_PERMISSIONS_MASK = 224,
LTO_SYMBOL_PERMISSIONS_CODE = 160,
LTO_SYMBOL_PERMISSIONS_DATA = 192,
LTO_SYMBOL_PERMISSIONS_RODATA = 128,
LTO_SYMBOL_DEFINITION_MASK = 1792,
LTO_SYMBOL_DEFINITION_REGULAR = 256,
LTO_SYMBOL_DEFINITION_TENTATIVE = 512,
LTO_SYMBOL_DEFINITION_WEAK = 768,
LTO_SYMBOL_DEFINITION_UNDEFINED = 1024,
LTO_SYMBOL_DEFINITION_WEAKUNDEF = 1280,
LTO_SYMBOL_SCOPE_MASK = 14336,
LTO_SYMBOL_SCOPE_INTERNAL = 2048,
LTO_SYMBOL_SCOPE_HIDDEN = 0x1000,
LTO_SYMBOL_SCOPE_PROTECTED = 0x2000,
LTO_SYMBOL_SCOPE_DEFAULT = 0x1800,
LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN = 0x2800,
LTO_SYMBOL_COMDAT = 0x4000,
LTO_SYMBOL_ALIAS = 0x8000,
}
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum lto_debug_model {
LTO_DEBUG_MODEL_NONE = 0,
LTO_DEBUG_MODEL_DWARF = 1,
}
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum lto_codegen_model {
LTO_CODEGEN_PIC_MODEL_STATIC = 0,
LTO_CODEGEN_PIC_MODEL_DYNAMIC = 1,
LTO_CODEGEN_PIC_MODEL_DYNAMIC_NO_PIC = 2,
LTO_CODEGEN_PIC_MODEL_DEFAULT = 3,
}
#[derive(Debug)]
pub enum LLVMOpaqueLTOModule {}
pub type lto_module_t = *mut LLVMOpaqueLTOModule;
#[derive(Debug)]
pub enum LLVMOpaqueLTOCodeGenerator {}
pub type lto_code_gen_t = *mut LLVMOpaqueLTOCodeGenerator;
#[derive(Debug)]
pub enum LLVMOpaqueThinLTOCodeGenerator {}
pub type thinlto_code_gen_t = *mut LLVMOpaqueThinLTOCodeGenerator;
#[derive(Debug)]
pub enum LLVMOpaqueLTOInput {}
pub type lto_input_t = *mut LLVMOpaqueLTOInput;
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum lto_codegen_diagnostic_severity_t {
LTO_DS_ERROR = 0,
LTO_DS_WARNING = 1,
LTO_DS_REMARK = 3,
LTO_DS_NOTE = 2,
}
pub type lto_diagnostic_handler_t = Option<
extern "C" fn(
severity: lto_codegen_diagnostic_severity_t,
diag: *const ::libc::c_char,
ctxt: *mut ::libc::c_void,
),
>;
extern "C" {
pub fn lto_get_version() -> *const ::libc::c_char;
pub fn lto_get_error_message() -> *const ::libc::c_char;
pub fn lto_module_is_object_file(path: *const ::libc::c_char) -> lto_bool_t;
pub fn lto_module_is_object_file_for_target(
path: *const ::libc::c_char,
target_triple_prefix: *const ::libc::c_char,
) -> lto_bool_t;
pub fn lto_module_has_objc_category(
mem: *const ::libc::c_void,
length: ::libc::size_t,
) -> lto_bool_t;
pub fn lto_module_is_object_file_in_memory(
mem: *const ::libc::c_void,
length: ::libc::size_t,
) -> lto_bool_t;
pub fn lto_module_is_object_file_in_memory_for_target(
mem: *const ::libc::c_void,
length: ::libc::size_t,
target_triple_prefix: *const ::libc::c_char,
) -> lto_bool_t;
pub fn lto_module_create(path: *const ::libc::c_char) -> lto_module_t;
pub fn lto_module_create_from_memory(
mem: *const ::libc::c_void,
length: ::libc::size_t,
) -> lto_module_t;
pub fn lto_module_create_from_memory_with_path(
mem: *const ::libc::c_void,
length: ::libc::size_t,
path: *const ::libc::c_char,
) -> lto_module_t;
pub fn lto_module_create_in_local_context(
mem: *const ::libc::c_void,
length: ::libc::size_t,
path: *const ::libc::c_char,
) -> lto_module_t;
pub fn lto_module_create_in_codegen_context(
mem: *const ::libc::c_void,
length: ::libc::size_t,
path: *const ::libc::c_char,
cg: lto_code_gen_t,
) -> lto_module_t;
pub fn lto_module_create_from_fd(
fd: ::libc::c_int,
path: *const ::libc::c_char,
file_size: ::libc::size_t,
) -> lto_module_t;
pub fn lto_module_create_from_fd_at_offset(
fd: ::libc::c_int,
path: *const ::libc::c_char,
file_size: ::libc::size_t,
map_size: ::libc::size_t,
offset: ::libc::off_t,
) -> lto_module_t;
pub fn lto_module_dispose(_mod: lto_module_t);
pub fn lto_module_get_target_triple(_mod: lto_module_t) -> *const ::libc::c_char;
pub fn lto_module_set_target_triple(_mod: lto_module_t, triple: *const ::libc::c_char);
pub fn lto_module_get_num_symbols(_mod: lto_module_t) -> ::libc::c_uint;
pub fn lto_module_get_symbol_name(
_mod: lto_module_t,
index: ::libc::c_uint,
) -> *const ::libc::c_char;
pub fn lto_module_get_symbol_attribute(
_mod: lto_module_t,
index: ::libc::c_uint,
) -> lto_symbol_attributes;
pub fn lto_module_get_linkeropts(_mod: lto_module_t) -> *const ::libc::c_char;
pub fn lto_module_get_macho_cputype(
_mod: lto_module_t,
out_cputype: *mut ::libc::c_uint,
out_cpusubtype: *mut ::libc::c_uint,
) -> lto_bool_t;
pub fn lto_codegen_set_diagnostic_handler(
arg1: lto_code_gen_t,
arg2: lto_diagnostic_handler_t,
arg3: *mut ::libc::c_void,
);
pub fn lto_codegen_create() -> lto_code_gen_t;
pub fn lto_codegen_create_in_local_context() -> lto_code_gen_t;
pub fn lto_codegen_dispose(arg1: lto_code_gen_t);
pub fn lto_codegen_add_module(cg: lto_code_gen_t, _mod: lto_module_t) -> lto_bool_t;
pub fn lto_codegen_set_module(cg: lto_code_gen_t, _mod: lto_module_t);
pub fn lto_codegen_set_debug_model(cg: lto_code_gen_t, arg1: lto_debug_model) -> lto_bool_t;
pub fn lto_codegen_set_pic_model(cg: lto_code_gen_t, arg1: lto_codegen_model) -> lto_bool_t;
pub fn lto_codegen_set_cpu(cg: lto_code_gen_t, cpu: *const ::libc::c_char);
pub fn lto_codegen_set_assembler_path(cg: lto_code_gen_t, path: *const ::libc::c_char);
pub fn lto_codegen_set_assembler_args(
cg: lto_code_gen_t,
args: *mut *const ::libc::c_char,
nargs: ::libc::c_int,
);
pub fn lto_codegen_add_must_preserve_symbol(cg: lto_code_gen_t, symbol: *const ::libc::c_char);
pub fn lto_codegen_write_merged_modules(
cg: lto_code_gen_t,
path: *const ::libc::c_char,
) -> lto_bool_t;
pub fn lto_codegen_compile(
cg: lto_code_gen_t,
length: *mut ::libc::size_t,
) -> *const ::libc::c_void;
pub fn lto_codegen_compile_to_file(
cg: lto_code_gen_t,
name: *mut *const ::libc::c_char,
) -> lto_bool_t;
pub fn lto_codegen_optimize(cg: lto_code_gen_t) -> lto_bool_t;
pub fn lto_codegen_compile_optimized(
cg: lto_code_gen_t,
length: *mut ::libc::size_t,
) -> *mut ::libc::c_void;
pub fn lto_api_version() -> ::libc::c_uint;
pub fn lto_codegen_debug_options(cg: lto_code_gen_t, arg1: *const ::libc::c_char);
pub fn lto_codegen_debug_options_array(
cg: lto_code_gen_t,
arg2: *const *const ::libc::c_char,
number: ::libc::c_int,
);
pub fn lto_initialize_disassembler();
pub fn lto_codegen_set_should_internalize(cg: lto_code_gen_t, ShouldInternalize: lto_bool_t);
pub fn lto_codegen_set_should_embed_uselists(
cg: lto_code_gen_t,
ShouldEmbedUselists: lto_bool_t,
);
}
#[repr(C)]
#[derive(Debug)]
#[allow(non_snake_case)]
pub struct LTOObjectBuffer {
Buffer: *const ::libc::c_char,
Size: ::libc::size_t,
}
extern "C" {
pub fn thinlto_create_codegen() -> thinlto_code_gen_t;
pub fn thinlto_codegen_dispose(cg: thinlto_code_gen_t);
pub fn thinlto_codegen_add_module(
cg: thinlto_code_gen_t,
identifier: *const ::libc::c_char,
data: *const ::libc::c_char,
length: ::libc::c_int,
);
pub fn thinlto_codegen_process(cg: thinlto_code_gen_t);
pub fn thinlto_module_get_num_objects(cg: thinlto_code_gen_t) -> ::libc::c_int;
pub fn thinlto_module_get_object(
cg: thinlto_code_gen_t,
index: ::libc::c_uint,
) -> LTOObjectBuffer;
pub fn thinlto_module_get_num_object_files(cg: thinlto_code_gen_t) -> ::libc::c_uint;
pub fn thinlto_module_get_object_file(
cg: thinlto_code_gen_t,
index: ::libc::c_uint,
) -> *const ::libc::c_char;
pub fn thinlto_codegen_set_pic_model(
cg: thinlto_code_gen_t,
model: lto_codegen_model,
) -> lto_bool_t;
pub fn thinlto_codegen_set_cache_dir(cg: thinlto_code_gen_t, cache_dir: *const ::libc::c_char);
pub fn thinlto_codegen_set_cache_pruning_interval(
cg: thinlto_code_gen_t,
interval: ::libc::c_int,
);
pub fn thinlto_codegen_set_final_cache_size_relative_to_available_space(
cg: thinlto_code_gen_t,
percentage: ::libc::c_uint,
);
pub fn thinlto_codegen_set_cache_entry_expiration(
cg: thinlto_code_gen_t,
expiration: ::libc::c_uint,
);
pub fn thinlto_codegen_set_cache_size_bytes(
cg: thinlto_code_gen_t,
max_size_bytes: ::libc::c_uint,
);
pub fn thinlto_codegen_set_cache_size_megabytes(
cg: thinlto_code_gen_t,
max_size_megabytes: ::libc::c_uint,
);
pub fn thinlto_codegen_set_cache_size_files(
cg: thinlto_code_gen_t,
max_size_files: ::libc::c_uint,
);
pub fn lto_input_create(
buffer: *const ::libc::c_void,
buffer_size: ::libc::size_t,
path: *const ::libc::c_char,
) -> lto_input_t;
pub fn lto_input_dispose(input: lto_input_t);
pub fn lto_input_get_num_dependent_libraries(input: lto_input_t) -> ::libc::c_uint;
pub fn lto_input_get_dependent_library(
input: lto_input_t,
index: ::libc::size_t,
size: *mut ::libc::size_t,
) -> *const ::libc::c_char;
pub fn lto_runtime_lib_symbols_list(size: *mut usize) -> *const *const ::libc::c_char;
pub fn thinlto_codegen_set_savetemps_dir(
cg: thinlto_code_gen_t,
save_temps_dir: *const ::libc::c_char,
);
pub fn thinlto_set_generated_objects_dir(
cg: thinlto_code_gen_t,
save_temps_dir: *const ::libc::c_char,
);
pub fn thinlto_codegen_set_cpu(cg: thinlto_code_gen_t, cpu: *const ::libc::c_char);
pub fn thinlto_codegen_disable_codegen(cg: thinlto_code_gen_t, disable: lto_bool_t);
pub fn thinlto_codegen_set_codegen_only(cg: thinlto_code_gen_t, codegen_only: lto_bool_t);
pub fn thinlto_debug_options(options: *const *const ::libc::c_char, number: ::libc::c_int);
pub fn lto_module_is_thinlto(module: lto_module_t) -> lto_bool_t;
pub fn thinlto_codegen_add_must_preserve_symbol(
cg: thinlto_code_gen_t,
name: *const ::libc::c_char,
length: ::libc::c_int,
);
pub fn thinlto_codegen_add_cross_referenced_symbol(
cg: thinlto_code_gen_t,
name: *const ::libc::c_char,
length: ::libc::c_int,
);
}