Searched refs:lto_module_t (Results 1 – 4 of 4) sorted by relevance
/external/llvm/include/llvm-c/ |
D | lto.h | 65 typedef struct LTOModule* lto_module_t; typedef 121 extern lto_module_t 129 extern lto_module_t 136 extern lto_module_t 143 extern lto_module_t 153 lto_module_dispose(lto_module_t mod); 160 lto_module_get_target_triple(lto_module_t mod); 166 lto_module_set_target_triple(lto_module_t mod, const char *triple); 173 lto_module_get_num_symbols(lto_module_t mod); 180 lto_module_get_symbol_name(lto_module_t mod, unsigned int index); [all …]
|
/external/llvm/tools/lto/ |
D | lto.cpp | 65 lto_module_t lto_module_create(const char* path) { in lto_module_create() 71 lto_module_t lto_module_create_from_fd(int fd, const char *path, size_t size) { in lto_module_create_from_fd() 77 lto_module_t lto_module_create_from_fd_at_offset(int fd, const char *path, in lto_module_create_from_fd_at_offset() 86 lto_module_t lto_module_create_from_memory(const void* mem, size_t length) { in lto_module_create_from_memory() 92 void lto_module_dispose(lto_module_t mod) { in lto_module_dispose() 98 const char* lto_module_get_target_triple(lto_module_t mod) { in lto_module_get_target_triple() 104 void lto_module_set_target_triple(lto_module_t mod, const char *triple) { in lto_module_set_target_triple() 110 unsigned int lto_module_get_num_symbols(lto_module_t mod) { in lto_module_get_num_symbols() 116 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) { in lto_module_get_symbol_name() 122 lto_symbol_attributes lto_module_get_symbol_attribute(lto_module_t mod, in lto_module_get_symbol_attribute() [all …]
|
/external/llvm/docs/ |
D | LinkTimeOptimization.rst | 212 ``lto_module_t`` 215 A non-native object file is handled via an ``lto_module_t``. The following 227 ``lto_module_t`` by using one of: 238 lto_module_dispose(lto_module_t) 246 lto_module_get_num_symbols(lto_module_t) 247 lto_module_get_symbol_name(lto_module_t, unsigned int) 248 lto_module_get_symbol_attribute(lto_module_t, unsigned int) 256 ``lto_module_t``, it can request ``libLTO`` to process them all and generate a 268 lto_codegen_add_module(lto_code_gen_t, lto_module_t)
|
/external/llvm/tools/gold/ |
D | gold-plugin.cpp | 240 lto_module_t M; in claim_file_hook()
|