Lines Matching refs:lto_module_t
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()
142 bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) { in lto_codegen_add_module()