Searched refs:thinlto_code_gen_t (Results 1 – 2 of 2) sorted by relevance
/external/llvm/include/llvm-c/ |
D | lto.h | 99 typedef struct LLVMOpaqueThinLTOCodeGenerator *thinlto_code_gen_t; typedef 583 extern thinlto_code_gen_t thinlto_create_codegen(void); 591 extern void thinlto_codegen_dispose(thinlto_code_gen_t cg); 604 extern void thinlto_codegen_add_module(thinlto_code_gen_t cg, 614 extern void thinlto_codegen_process(thinlto_code_gen_t cg); 625 extern unsigned int thinlto_module_get_num_objects(thinlto_code_gen_t cg); 636 extern LTOObjectBuffer thinlto_module_get_object(thinlto_code_gen_t cg, 645 extern lto_bool_t thinlto_codegen_set_pic_model(thinlto_code_gen_t cg, 675 extern void thinlto_codegen_set_cache_dir(thinlto_code_gen_t cg, 685 extern void thinlto_codegen_set_cache_pruning_interval(thinlto_code_gen_t cg, [all …]
|
/external/llvm/tools/lto/ |
D | lto.cpp | 142 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ThinLTOCodeGenerator, thinlto_code_gen_t) in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() 460 thinlto_code_gen_t thinlto_create_codegen(void) { in thinlto_create_codegen() 468 void thinlto_codegen_dispose(thinlto_code_gen_t cg) { delete unwrap(cg); } in thinlto_codegen_dispose() 470 void thinlto_codegen_add_module(thinlto_code_gen_t cg, const char *Identifier, in thinlto_codegen_add_module() 475 void thinlto_codegen_process(thinlto_code_gen_t cg) { unwrap(cg)->run(); } in thinlto_codegen_process() 477 unsigned int thinlto_module_get_num_objects(thinlto_code_gen_t cg) { in thinlto_module_get_num_objects() 480 LTOObjectBuffer thinlto_module_get_object(thinlto_code_gen_t cg, in thinlto_module_get_object() 488 void thinlto_codegen_disable_codegen(thinlto_code_gen_t cg, in thinlto_codegen_disable_codegen() 493 void thinlto_codegen_set_codegen_only(thinlto_code_gen_t cg, in thinlto_codegen_set_codegen_only() 512 void thinlto_codegen_add_must_preserve_symbol(thinlto_code_gen_t cg, in thinlto_codegen_add_must_preserve_symbol() [all …]
|