Home | History | Annotate | Download | only in lto

Lines Matching refs:lto_module_t

151 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(LTOModule, lto_module_t)
219 lto_module_t lto_module_create(const char* path) {
229 lto_module_t lto_module_create_from_fd(int fd, const char *path, size_t size) {
239 lto_module_t lto_module_create_from_fd_at_offset(int fd, const char *path,
252 lto_module_t lto_module_create_from_memory(const void* mem, size_t length) {
262 lto_module_t lto_module_create_from_memory_with_path(const void* mem,
274 lto_module_t lto_module_create_in_local_context(const void *mem, size_t length,
291 lto_module_t lto_module_create_in_codegen_context(const void *mem,
302 void lto_module_dispose(lto_module_t mod) { delete unwrap(mod); }
304 const char* lto_module_get_target_triple(lto_module_t mod) {
308 void lto_module_set_target_triple(lto_module_t mod, const char *triple) {
312 unsigned int lto_module_get_num_symbols(lto_module_t mod) {
316 const char* lto_module_get_symbol_name(lto_module_t mod, unsigned int index) {
320 lto_symbol_attributes lto_module_get_symbol_attribute(lto_module_t mod,
325 const char* lto_module_get_linkeropts(lto_module_t mod) {
357 bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) {
361 void lto_codegen_set_module(lto_code_gen_t cg, lto_module_t mod) {
551 lto_bool_t lto_module_is_thinlto(lto_module_t mod) {