Home | History | Annotate | Download | only in Mach-O

Lines Matching refs:addr_t

485                                        lldb::addr_t header_addr)
576 lldb::addr_t data_offset,
577 lldb::addr_t data_length)
607 lldb::addr_t header_addr) :
784 ObjectFileMachO::GetAddressClass (lldb::addr_t file_addr)
1146 const lldb::addr_t sect64_min_addr = sect64.addr;
1147 const lldb::addr_t sect64_max_addr = sect64_min_addr + sect64.size;
1148 const lldb::addr_t curr_seg_byte_size = segment->GetByteSize();
1149 const lldb::addr_t curr_seg_min_addr = segment->GetFileAddress();
1150 const lldb::addr_t curr_seg_max_addr = curr_seg_min_addr + curr_seg_byte_size;
1153 const lldb::addr_t new_seg_byte_size = sect64_max_addr - curr_seg_min_addr;
1162 const lldb::addr_t slide_amount = sect64_min_addr - curr_seg_min_addr;
1171 const lldb::addr_t segment_min_file_offset = segment->GetFileOffset();
1172 const lldb::addr_t segment_max_file_offset = segment_min_file_offset + segment->GetFileSize();
1174 const lldb::addr_t section_min_file_offset = sect64.offset;
1175 const lldb::addr_t section_max_file_offset = section_min_file_offset + sect64.size;
1176 const lldb::addr_t new_file_offset = std::min (section_min_file_offset, segment_min_file_offset);
1177 const lldb::addr_t new_file_size = std::max (section_max_file_offset, segment_max_file_offset) - new_file_offset;
1404 GetSection (uint8_t n_sect, addr_t file_addr)
1469 typedef AddressDataArray<lldb::addr_t, bool, 100> FunctionStarts;
1554 const addr_t nlist_data_byte_size = symtab_load_command.nsyms * nlist_byte_size;
1555 const addr_t strtab_data_byte_size = symtab_load_command.strsize;
1556 addr_t strtab_addr = LLDB_INVALID_ADDRESS;
1565 const addr_t linkedit_load_addr = linkedit_section_sp->GetLoadBaseAddress(&target);
1566 const addr_t linkedit_file_offset = linkedit_section_sp->GetFileOffset();
1567 const addr_t symoff_addr = linkedit_load_addr + symtab_load_command.symoff - linkedit_file_offset;
1610 const addr_t func_start_addr = linkedit_load_addr + function_starts_load_command.dataoff - linkedit_file_offset;
1627 const addr_t indirect_syms_addr = linkedit_load_addr + m_dysymtab.indirectsymoff - linkedit_file_offset;
1634 const addr_t func_start_addr = linkedit_load_addr + function_starts_load_command.dataoff - linkedit_file_offset;
1742 addr_t text_base_addr = text_section_sp->GetFileAddress();
2557 const addr_t section_file_addr = symbol_section->GetFileAddress();
2560 addr_t symbol_lookup_file_addr = nlist.n_value;
2579 addr_t symbol_file_addr = func_start_entry->addr;
2589 const addr_t section_end_file_addr = section_file_addr + symbol_section->GetByteSize();
2592 addr_t next_symbol_file_addr = next_func_start_entry->addr;
2597 symbol_byte_size = std::min<lldb::addr_t>(next_symbol_file_addr - symbol_file_addr, section_end_file_addr - symbol_file_addr);
2760 const addr_t str_addr = strtab_addr + nlist.n_strx;
2768 lldb::addr_t symbol_byte_size = 0;
3304 const addr_t section_file_addr = symbol_section->GetFileAddress();
3307 addr_t symbol_lookup_file_addr = nlist.n_value;
3326 addr_t symbol_file_addr = func_start_entry->addr;
3331 const addr_t section_end_file_addr = section_file_addr + symbol_section->GetByteSize();
3334 addr_t next_symbol_file_addr = next_func_start_entry->addr;
3339 symbol_byte_size = std::min<lldb::addr_t>(next_symbol_file_addr - symbol_file_addr, section_end_file_addr - symbol_file_addr);
3490 addr_t symbol_file_addr = func_start_entry->addr;
3505 const addr_t section_file_addr = symbol_section->GetFileAddress();
3507 const addr_t section_end_file_addr = section_file_addr + symbol_section->GetByteSize();
3510 addr_t next_symbol_file_addr = next_func_start_entry->addr;
3513 symbol_byte_size = std::min<lldb::addr_t>(next_symbol_file_addr - symbol_file_addr, section_end_file_addr - symbol_file_addr);
3573 const lldb::addr_t symbol_stub_addr = m_mach_sections[sect_idx].addr + (stub_idx * symbol_stub_byte_size);
3826 lldb::addr_t start_address = LLDB_INVALID_ADDRESS;
4209 addr_t all_image_infos = process->GetImageInfoAddress();
4225 addr_t sharedCacheUUID_address = LLDB_INVALID_ADDRESS;