Home
last modified time | relevance | path

Searched refs:max_branch_offset (Results 1 – 7 of 7) sorted by relevance

/toolchain/binutils/binutils-2.27/bfd/
Delf32-hppa.c617 bfd_vma max_branch_offset; in hppa_type_of_stub() local
646 max_branch_offset = (1 << (17 - 1)) << 2; in hppa_type_of_stub()
649 max_branch_offset = (1 << (12 - 1)) << 2; in hppa_type_of_stub()
652 max_branch_offset = (1 << (22 - 1)) << 2; in hppa_type_of_stub()
654 if (branch_offset + max_branch_offset >= 2*max_branch_offset) in hppa_type_of_stub()
3329 bfd_vma max_branch_offset = 0; in final_link_relocate() local
3566 max_branch_offset = (1 << (17-1)) << 2; in final_link_relocate()
3570 max_branch_offset = (1 << (12-1)) << 2; in final_link_relocate()
3574 max_branch_offset = (1 << (22-1)) << 2; in final_link_relocate()
3585 if (value + addend + max_branch_offset >= 2*max_branch_offset) in final_link_relocate()
[all …]
Delf64-hppa.c3192 bfd_vma max_branch_offset = 0; in elf_hppa_final_link_relocate() local
3274 max_branch_offset = (1 << (22-1)) << 2; in elf_hppa_final_link_relocate()
3276 max_branch_offset = (1 << (17-1)) << 2; in elf_hppa_final_link_relocate()
3278 max_branch_offset = (1 << (12-1)) << 2; in elf_hppa_final_link_relocate()
3281 if (max_branch_offset != 0 in elf_hppa_final_link_relocate()
3282 && value + addend + max_branch_offset >= 2*max_branch_offset) in elf_hppa_final_link_relocate()
Delf32-metag.c3586 bfd_vma max_branch_offset; in metag_type_of_stub() local
3602 max_branch_offset = (1 << (BRANCH_BITS-1)) << 2; in metag_type_of_stub()
3604 if (branch_offset + max_branch_offset >= 2*max_branch_offset) in metag_type_of_stub()
Delf32-ppc.c6968 bfd_vma max_branch_offset = 0, val; in ppc_elf_relax_section() local
6980 max_branch_offset = 1 << 25; in ppc_elf_relax_section()
6986 max_branch_offset = 1 << 15; in ppc_elf_relax_section()
7236 if (symaddr - reladdr + max_branch_offset in ppc_elf_relax_section()
7237 < 2 * max_branch_offset) in ppc_elf_relax_section()
7252 if (val >= max_branch_offset) in ppc_elf_relax_section()
7299 if (val >= max_branch_offset) in ppc_elf_relax_section()
Delf64-ppc.c10289 bfd_vma max_branch_offset; in ppc_type_of_stub() local
10349 max_branch_offset = 1 << 25; in ppc_type_of_stub()
10351 max_branch_offset = 1 << 15; in ppc_type_of_stub()
10353 if (branch_offset + max_branch_offset >= 2 * max_branch_offset - local_off) in ppc_type_of_stub()
/toolchain/binutils/binutils-2.27/gold/
Dpowerpc.cc2918 Address max_branch_offset = max_branch_delta(this->r_type_); in make_stub() local
2919 if (max_branch_offset == 0) in make_stub()
2986 if (delta + max_branch_offset >= 2 * max_branch_offset) in make_stub()
3924 Address max_branch_offset = max_branch_delta(r_type); in can_reach_stub() local
3925 if (max_branch_offset == 0) in can_reach_stub()
3929 return loc - from + max_branch_offset < 2 * max_branch_offset; in can_reach_stub()
8030 Address max_branch_offset = max_branch_delta(r_type); in relocate() local
8031 if (max_branch_offset != 0 in relocate()
8032 && value - address + max_branch_offset >= 2 * max_branch_offset) in relocate()
DChangeLog-08151723 max_branch_offset an "Address".
1724 (Stub_table::can_reach_stub): Make max_branch_offset an "Address".