Lines Matching refs:obj
35 use wasmtime_environ::obj::{ELF_WASMTIME_EXCEPTIONS, ELF_WASMTIME_FRAMES};
480 obj: &mut Object<'static>, in append_code()
490 ModuleTextBuilder::new(obj, self, self.isa.text_section_builder(funcs.len())); in append_code()
609 addrs.append_to(obj); in append_code()
611 stack_maps.append_to(obj); in append_code()
612 traps.append_to(obj); in append_code()
614 let exception_section = obj.add_section( in append_code()
615 obj.segment_name(StandardSegment::Data).to_vec(), in append_code()
620 obj.append_section_data(exception_section, bytes, 1); in append_code()
624 let frame_table_section = obj.add_section( in append_code()
625 obj.segment_name(StandardSegment::Data).to_vec(), in append_code()
630 obj.append_section_data(frame_table_section, bytes, 1); in append_code()
660 obj: &mut Object<'_>, in append_dwarf()
698 let segment = obj.segment_name(StandardSegment::Debug).to_vec(); in append_dwarf()
699 let section_id = obj.add_section(segment, name.as_bytes().to_vec(), SectionKind::Debug); in append_dwarf()
701 obj.append_section_data(section_id, &body, 1); in append_dwarf()
711 obj.section_symbol(dwarf_sections_ids[name]) in append_dwarf()
714 obj.add_relocation( in append_dwarf()