861fb55ab5
Daniel Jacobowitz <dan@codesourcery.com> Catherine Moore <clm@codesourcery.com> Mark Shinwell <shinwell@codesourcery.com> Maxim Kuvyrkov <maxim@codesourcery.com> * elf32-mips.c (mips_vxworks_copy_howto_rela): Replace with... (elf_mips_copy_howto): ...this howto. Clear the size fields. (mips_vxworks_jump_slot_howto_rela): Replace with... (elf_mips_jump_slot_howto): ...this howto. (bfd_elf32_bfd_reloc_type_lookup): Handle BFD_RELOC_MIPS_COPY and BFD_RELOC_MIPS_JUMP_SLOT. (bfd_elf32_bfd_reloc_name_lookup): Handle "R_MIPS_COPY" and "R_MIPS_JUMP_SLOT". (mips_elf32_rtype_to_howto): Handle R_MIPS_COPY and R_MIPS_JUMP_SLOT. (elf_backend_plt_readonly): Define. (elf_backend_plt_sym_val): Define for non-VxWorks targets. (mips_vxworks_bfd_reloc_type_lookup): Delete. (mips_vxworks_bfd_reloc_name_lookup): Likewise. (mips_vxworks_rtype_to_howto): Likewise. (elf_backend_want_dynbss): Don't define for VxWorks. (elf_backend_plt_readonly): Likewise. (bfd_elf32_bfd_reloc_type_lookup): Likewise. (bfd_elf32_bfd_reloc_name_lookup): Likewise. (elf_backend_mips_rtype_to_howto): Likewise. (elf_backend_adjust_dynamic_symbol): Likewise. (elf_backend_got_symbol_offset): Don't define. * elfn32-mips.c (elf_mips_copy_howto, elf_mips_jump_slot_howto): New. (bfd_elf32_bfd_reloc_type_lookup): Handle BFD_RELOC_MIPS_COPY and BFD_RELOC_MIPS_JUMP_SLOT. (bfd_elf32_bfd_reloc_name_lookup): Handle "R_MIPS_COPY" and "R_MIPS_JUMP_SLOT". (mips_elf32_n32_rtype_to_howto): Handle R_MIPS_COPY and R_MIPS_JUMP_SLOT. (elf_backend_rela_plts_and_copies_p, elf_backend_plt_readonly) (elf_backend_plt_sym_val): Define. * elf64-mips.c (elf_mips_copy_howto, elf_mips_jump_slot_howto): New. (bfd_elf64_bfd_reloc_type_lookup): Handle BFD_RELOC_MIPS_COPY and BFD_RELOC_MIPS_JUMP_SLOT. (bfd_elf64_bfd_reloc_name_lookup): Handle "R_MIPS_COPY" and "R_MIPS_JUMP_SLOT". (mips_elf64_rtype_to_howto): Handle R_MIPS_COPY and R_MIPS_JUMP_SLOT. (elf_backend_rela_plts_and_copies_p, elf_backend_plt_readonly) (elf_backend_plt_sym_val): Define. * elfxx-mips.h (_bfd_mips_vxworks_adjust_dynamic_symbol): Delete. (_bfd_mips_elf_use_plts_and_copy_relocs, _bfd_mips_elf_init_stubs) (_bfd_mips_elf_plt_sym_val, _bfd_mips_post_process_headers): Declare. * elfxx-mips.c (mips_elf_la25_stub): New structure. (LA25_LUI, LA25_J, LA25_ADDIU): New macros. (mips_elf_link_hash_entry): Add "la25_stubs", "has_static_relocs" and "has_nonpic_branches" fields. Remove "is_relocation_target" and "is_branch_target". (mips_elf_link_hash_table): Add blank lines. Add "use_plts_and_copy_relocs", "reserved_gotno", "strampoline", "la25_stubs" and "add_stub_section" fields. (mips_htab_traverse_info): New structure. (PIC_OBJECT_P, MIPS_ELF_LOAD_WORD): New macros. (MIPS_RESERVED_GOTNO): Delete. (mips_o32_exec_plt0_entry, mips_n32_exec_plt0_entry) (mips_n64_exec_plt0_entry, mips_exec_plt_entry): New tables. (mips_elf_link_hash_newfunc): Update after the changes to mips_elf_link_hash_entry. (mips_elf_check_mips16_stubs): Replace the DATA parameter with an INFO parameter. Don't look through warnings symbols here; do it in mips_elf_check_symbols instead. (mips_elf_create_stub_symbol): New function. (mips_elf_la25_stub_hash, mips_elf_la25_stub_eq): New functions. (_bfd_mips_elf_init_stubs, mips_elf_local_pic_function_p): Likewise. (mips_elf_add_la25_intro, mips_elf_add_la25_trampoline): Likewise. (mips_elf_add_la25_stub, mips_elf_check_symbols): New functions. (mips_elf_gotplt_index): Check for VxWorks. (mips_elf_output_dynamic_relocation): Take the relocation index as an extra parameter. Do not increment reloc_count here. (mips_elf_initialize_tls_slots): Update the calls to mips_elf_output_dynamic_relocation accordingly. (mips_elf_multi_got): Use htab->reserved_gotno instead of MIPS_RESERVED_GOTNO. (mips_elf_create_got_section): Don't allocate reserved GOT entries here. Unconditionally create .got.plt, but don't set its alignment here. (mips_elf_relocation_needs_la25_stub): New function. (mips_elf_calculate_relocation): Redirect branches and jumps to a non-PIC stub if one exists. Check !h->has_static_relocs instead of !htab->is_vxworks when deciding whether to create dynamic relocations for R_MIPS_32, R_MIPS_REL32 and R_MIPS_64. (_bfd_mips_elf_create_dynamic_sections): Unconditionally call _bfd_elf_create_dynamic_sections. Unconditionally set up htab->splt and htab->sdynbss. Set htab->srelplt to ".rel.plt" if !htab->is_vxworks. Add non-VxWorks values of htab->plt_header_size and htab->plt_entry_size. (_bfd_mips_elf_check_relocs): Set pointer_equality_needed for non-branch static relocations. Set has_nonpic_branches when an la25 stub might be required. Set can_make_dynamic_p to TRUE if R_MIPS_32, R_MIPS_REL32 and R_MIPS_64 relocations can be made dynamic, rather than duplicating the condition. Do not make them dynamic for read-only sections in non-PIC executable objects. Do not protect this code with dynobj == NULL || htab->sgot == NULL; handle each group of cases separately. Add a default case that sets has_static_relocs for non-GOT relocations that cannot be made dynamic. Don't set is_relocation_target and is_branch_target. Reject non-PIC static relocations in shared objects. (_bfd_mips_vxworks_adjust_dynamic_symbol): Fold into... (_bfd_mips_elf_adjust_dynamic_symbol): ...here, using htab->use_plts_and_copy_relocs instead of htab->is_vxworks to select PLT and copy-reloc handling. Set the alignment of .plt and .got.plt when allocating the first entry. Generalize code to handle REL as well as RELA sections and 64-bit as well as 32-bit GOT entries. Complain if we find a static-only reloc against an externally-defined symbol and if we cannot create dynamic relocations for it. Allocate copy relocs using mips_elf_allocate_dynamic_relocations on non-VxWorks targets. Set possibly_dynamic_relocs to 0 when using PLTs or copy relocs. Skip reserved .got.plt entries. (_bfd_mips_elf_always_size_sections): Use mips_elf_check_symbols instead of mips_elf_check_mips16_stubs to process each symbol. Do the traversal for relocatable objects too. (mips_elf_lay_out_got): Use htab->reserved_gotno instead of MIPS_RESERVED_GOTNO. (_bfd_mips_elf_size_dynamic_sections): Exclude sdynbss if it is empty. Extend the DT_PLTREL, DT_JMPREL and DT_PLTRELSZ handling to non-VxWorks targets. Only add DT_REL{,A}, DT_REL{,A}SZ and DT_REL{,A}ENT if .rel.dyn is nonempty. Create a symbol for the PLT. Allocate a nop at the end of the PLT. Allocate DT_MIPS_PLTGOT. (mips_elf_create_la25_stub_info): New function. (_bfd_mips_elf_finish_dynamic_symbol): Write out PLT entries and copy relocs where necessary. Check pointer_equality_needed. (mips_finish_exec_plt): New function. (_bfd_mips_elf_finish_dynamic_sections): Always set DT_PLTGOT to the beginning of htab->sgot. Use htab->reserved_gotno instead of MIPS_RESERVED_GOTNO. Assert htab->use_plts_and_copy_relocs instead of htab->is_vxworks for DT_PLTREL, DT_PLTRELSZ and DT_JMPREL. Set DT_PLTREL to DT_REL instead of DT_RELA on non-VxWorks targets. Use mips_finish_exec_plt to create non-VxWorks PLT headers. Set DT_MIPS_PLTGOT. (_bfd_mips_elf_copy_indirect_symbol): Copy has_static_relocs from the indirect symbol to the direct symbol. Also copy has_nonpic_branches for indirect symbols. (_bfd_mips_elf_get_target_dtag): Handle DT_MIPS_PLTGOT and DT_MIPS_RWPLT. (_bfd_mips_elf_link_hash_table_create): Initialize the new mips_elf_link_hash_table fields. (_bfd_mips_vxworks_link_hash_table_create): Set use_plts_and_copy_relocs to TRUE. Use TRUE rather than 1 when setting is_vxworks. (_bfd_mips_elf_use_plts_and_copy_relocs): New function. (_bfd_mips_elf_final_link): Call mips_elf_create_la25_stub for each la25_stub. (_bfd_mips_elf_merge_private_bfd_data): Treat dynamic objects as PIC. Generalize message about linking PIC and non-PIC. (_bfd_mips_elf_plt_sym_val, _bfd_mips_post_process_headers): New functions. * reloc.c: Update comment near BFD_RELOC_MIPS_JUMP_SLOT. * bfd-in2.h: Regenerated. 2008-08-08 Richard Sandiford <rdsandiford@googlemail.com> Daniel Jacobowitz <dan@codesourcery.com> Catherine Moore <clm@codesourcery.com> Mark Shinwell <shinwell@codesourcery.com> * readelf.c (get_mips_symbol_other): Handle STO_MIPS_PLT and STO_MIPS_PIC. (slurp_rela_relocs, slurp_rel_relocs): Handle MIPS ELF64 here. (dump_relocations, debug_apply_relocations): Don't handle it here. (get_mips_dynamic_type): Handle DT_MIPS_PLTGOT and DT_MIPS_RWPLT. (print_mips_pltgot_entry): New function. (process_mips_specific): Dump the PLT GOT. 2008-08-08 Richard Sandiford <rdsandiford@googlemail.com> Daniel Jacobowitz <dan@codesourcery.com> * config/tc-mips.c (OPTION_CALL_NONPIC): New macro. (OPTION_NON_SHARED, OPTION_XGOT, OPTION_MABI, OPTION_32) (OPTION_N32, OPTION_64, OPTION_MDEBUG, OPTION_NO_MDEBUG) (OPTION_PDR, OPTION_NO_PDR, OPTION_MVXWORKS_PIC): Bump by 1. (md_longopts): Add -call_nonpic. (md_parse_option): Handle OPTION_CALL_NONPIC. (md_show_usage): Add -call_nonpic. 2008-08-08 Richard Sandiford <rdsandiford@googlemail.com> * gas/mips/call-nonpic-1.s, gas/mips/call-nonpic-1.d: New test. * gas/mips/mips.exp: Run it. 2008-08-08 Richard Sandiford <rdsandiford@googlemail.com> Daniel Jacobowitz <dan@codesourcery.com> Catherine Moore <clm@codesourcery.com> Mark Shinwell <shinwell@codesourcery.com> * mips.h (STO_MIPS_PLT, ELF_ST_IS_MIPS_PLT, ELF_ST_SET_MIPS_PLT) (STO_MIPS_PIC, DT_MIPS_PLTGOT, DT_MIPS_RWPLT): New macros. 2008-08-08 Richard Sandiford <rdsandiford@googlemail.com> Daniel Jacobowitz <dan@codesourcery.com> * emulparams/elf32bmip.sh (GOT): Define, moving .got.plt to... (OTHER_RELRO_SECTIONS, OTHER_READWRITE_SECTIONS): ...one of these two variables. * emulparams/elf32bmipn32-defs.sh: Likewise. * emultempl/mipself.em: Include ldctor.h, elf/mips.h and elfxx-mips.h. (is_mips_elf): New macro. (stub_file, stub_bfd): New variables. (hook_stub_info): New structure. (hook_in_stub): New function. (mips_add_stub_section): Likewise. (mips_create_output_section_statements): Likewise. (mips_before_allocation): Likewise. (real_func): New variable. (mips_for_each_input_file_wrapper): New function. (mips_lang_for_each_input_file): Likewise. (lang_for_each_input_file): Define. (LDEMUL_BEFORE_ALLOCATION): Likewise. (LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS): Likewise. 2008-08-08 Richard Sandiford <rdsandiford@googlemail.com> Daniel Jacobowitz <dan@codesourcery.com> * ld-mips-elf/mips16-pic-3a.s, ld-mips-elf/mips16-pic-3b.s, ld-mips-elf/mips16-pic-3.dd, ld-mips-elf/mips16-pic-3.gd, ld-mips-elf/mips16-pic-3.rd, ld-mips-elf/mips16-pic-3.inc, ld-mips-elf/pic-and-nonpic-1a.s, ld-mips-elf/pic-and-nonpic-1b.s, ld-mips-elf/pic-and-nonpic-1.ld, ld-mips-elf/pic-and-nonpic-1.dd, ld-mips-elf/pic-and-nonpic-1.nd, ld-mips-elf/pic-and-nonpic-1-rel.dd, ld-mips-elf/pic-and-nonpic-1-rel.nd, ld-mips-elf/pic-and-nonpic-2a.s, ld-mips-elf/pic-and-nonpic-2b.s, ld-mips-elf/pic-and-nonpic-2.d, ld-mips-elf/pic-and-nonpic-3a.s, ld-mips-elf/pic-and-nonpic-3a.ld, ld-mips-elf/pic-and-nonpic-3a.dd, ld-mips-elf/pic-and-nonpic-3a.gd, ld-mips-elf/pic-and-nonpic-3a.sd, ld-mips-elf/pic-and-nonpic-3b.s, ld-mips-elf/pic-and-nonpic-3b.ld, ld-mips-elf/pic-and-nonpic-3b.ad, ld-mips-elf/pic-and-nonpic-3b.dd, ld-mips-elf/pic-and-nonpic-3b.gd, ld-mips-elf/pic-and-nonpic-3b.nd, ld-mips-elf/pic-and-nonpic-3b.pd, ld-mips-elf/pic-and-nonpic-3b.rd, ld-mips-elf/pic-and-nonpic-3b.sd, ld-mips-elf/pic-and-nonpic-3-error.d, ld-mips-elf/pic-and-nonpic-4a.s, ld-mips-elf/pic-and-nonpic-4b.s, ld-mips-elf/pic-and-nonpic-4b.ld, ld-mips-elf/pic-and-nonpic-4b.ad, ld-mips-elf/pic-and-nonpic-4b.dd, ld-mips-elf/pic-and-nonpic-4b.gd, ld-mips-elf/pic-and-nonpic-4b.nd, ld-mips-elf/pic-and-nonpic-4b.rd, ld-mips-elf/pic-and-nonpic-4b.sd, ld-mips-elf/pic-and-nonpic-4-error.d, ld-mips-elf/pic-and-nonpic-5a.s, ld-mips-elf/pic-and-nonpic-5b.s, ld-mips-elf/pic-and-nonpic-5b.ld, ld-mips-elf/pic-and-nonpic-5b.ad, ld-mips-elf/pic-and-nonpic-5b.dd, ld-mips-elf/pic-and-nonpic-5b.gd, ld-mips-elf/pic-and-nonpic-5b.nd, ld-mips-elf/pic-and-nonpic-5b.rd, ld-mips-elf/pic-and-nonpic-5b.sd, ld-mips-elf/pic-and-nonpic-5b.pd, ld-mips-elf/pic-and-nonpic-6.ld, ld-mips-elf/pic-and-nonpic-6-o32a.s, ld-mips-elf/pic-and-nonpic-6-o32b.s, ld-mips-elf/pic-and-nonpic-6-o32c.s, ld-mips-elf/pic-and-nonpic-6-o32.ad, ld-mips-elf/pic-and-nonpic-6-o32.dd, ld-mips-elf/pic-and-nonpic-6-o32.gd, ld-mips-elf/pic-and-nonpic-6-o32.nd, ld-mips-elf/pic-and-nonpic-6-o32.pd, ld-mips-elf/pic-and-nonpic-6-o32.rd, ld-mips-elf/pic-and-nonpic-6-o32.sd, ld-mips-elf/pic-and-nonpic-6-n32a.s, ld-mips-elf/pic-and-nonpic-6-n32b.s, ld-mips-elf/pic-and-nonpic-6-n32c.s, ld-mips-elf/pic-and-nonpic-6-n32.ad, ld-mips-elf/pic-and-nonpic-6-n32.dd, ld-mips-elf/pic-and-nonpic-6-n32.gd, ld-mips-elf/pic-and-nonpic-6-n32.nd, ld-mips-elf/pic-and-nonpic-6-n32.pd, ld-mips-elf/pic-and-nonpic-6-n32.rd, ld-mips-elf/pic-and-nonpic-6-n32.sd, ld-mips-elf/pic-and-nonpic-6-n64a.s, ld-mips-elf/pic-and-nonpic-6-n64b.s, ld-mips-elf/pic-and-nonpic-6-n64c.s, ld-mips-elf/pic-and-nonpic-6-n64.ad, ld-mips-elf/pic-and-nonpic-6-n64.dd, ld-mips-elf/pic-and-nonpic-6-n64.gd, ld-mips-elf/pic-and-nonpic-6-n64.nd, ld-mips-elf/pic-and-nonpic-6-n64.pd, ld-mips-elf/pic-and-nonpic-6-n64.rd, ld-mips-elf/pic-and-nonpic-6-n64.sd: New tests. * ld-mips-elf/mips-elf.exp: Run them. |
||
---|---|---|
.. | ||
attr-gnu-4-00.d | ||
attr-gnu-4-0.s | ||
attr-gnu-4-01.d | ||
attr-gnu-4-1.s | ||
attr-gnu-4-02.d | ||
attr-gnu-4-2.s | ||
attr-gnu-4-03.d | ||
attr-gnu-4-3.s | ||
attr-gnu-4-04.d | ||
attr-gnu-4-4.s | ||
attr-gnu-4-05.d | ||
attr-gnu-4-5.s | ||
attr-gnu-4-10.d | ||
attr-gnu-4-11.d | ||
attr-gnu-4-12.d | ||
attr-gnu-4-13.d | ||
attr-gnu-4-14.d | ||
attr-gnu-4-15.d | ||
attr-gnu-4-20.d | ||
attr-gnu-4-21.d | ||
attr-gnu-4-22.d | ||
attr-gnu-4-23.d | ||
attr-gnu-4-24.d | ||
attr-gnu-4-25.d | ||
attr-gnu-4-30.d | ||
attr-gnu-4-31.d | ||
attr-gnu-4-32.d | ||
attr-gnu-4-33.d | ||
attr-gnu-4-34.d | ||
attr-gnu-4-35.d | ||
attr-gnu-4-40.d | ||
attr-gnu-4-41.d | ||
attr-gnu-4-42.d | ||
attr-gnu-4-43.d | ||
attr-gnu-4-44.d | ||
attr-gnu-4-45.d | ||
attr-gnu-4-51.d | ||
branch-misc-1.d | ||
dyn-sec64.d | ||
dyn-sec64.ld | ||
dyn-sec64.s | ||
eh-frame1-n32.d | ||
eh-frame1-n64.d | ||
eh-frame1.ld | ||
eh-frame1.s | ||
eh-frame2-n32.d | ||
eh-frame2-n64.d | ||
eh-frame3.d | ||
eh-frame4.d | ||
elf-rel-got-n32.d | ||
elf-rel-got-n64-linux.d | ||
elf-rel-got-n64.d | ||
elf-rel-xgot-n32.d | ||
elf-rel-xgot-n64-linux.d | ||
elf-rel-xgot-n64.d | ||
emit-relocs-1.d | ||
emit-relocs-1.ld | ||
emit-relocs-1a.s | ||
emit-relocs-1b.s | ||
got-dump-1.d | ||
got-dump-1.ld | ||
got-dump-1.s | ||
got-dump-2.d | ||
got-dump-2.ld | ||
got-dump-2.s | ||
got-page-1.d | ||
got-page-1.ld | ||
got-page-1.s | ||
got-page-2.d | ||
got-page-2.s | ||
got-page-3.d | ||
got-page-3a.s | ||
got-page-3b.s | ||
got-page-3c.s | ||
got-vers-1.dd | ||
got-vers-1.rd | ||
got-vers-1.sd | ||
got-vers-1.ver | ||
got-vers-1a.s | ||
got-vers-1b.s | ||
hash1.s | ||
hash1a.d | ||
hash1b.d | ||
hash1c.d | ||
jalbal.d | ||
jalbal.s | ||
jaloverflow-2.d | ||
jaloverflow-2.s | ||
jaloverflow.d | ||
jaloverflow.s | ||
jr.s | ||
mips-dyn.ld | ||
mips-elf-flags.exp | ||
mips-elf.exp | ||
mips-lib.ld | ||
mips16-1.d | ||
mips16-1a.s | ||
mips16-1b.s | ||
mips16-call-global-1.s | ||
mips16-call-global-2.s | ||
mips16-call-global-3.s | ||
mips16-call-global.d | ||
mips16-hilo-n32.d | ||
mips16-hilo.d | ||
mips16-hilo.ld | ||
mips16-hilo.s | ||
mips16-intermix-1.s | ||
mips16-intermix-2.s | ||
mips16-intermix.d | ||
mips16-local-stubs-1.d | ||
mips16-local-stubs-1.s | ||
mips16-pic-1-dummy.s | ||
mips16-pic-1.dd | ||
mips16-pic-1.gd | ||
mips16-pic-1.inc | ||
mips16-pic-1.ld | ||
mips16-pic-1a.s | ||
mips16-pic-1b.s | ||
mips16-pic-2.ad | ||
mips16-pic-2.dd | ||
mips16-pic-2.gd | ||
mips16-pic-2.nd | ||
mips16-pic-2.rd | ||
mips16-pic-2a.s | ||
mips16-pic-2b.s | ||
mips16-pic-3.dd | ||
mips16-pic-3.gd | ||
mips16-pic-3.inc | ||
mips16-pic-3.rd | ||
mips16-pic-3a.s | ||
mips16-pic-3b.s | ||
multi-got-1-1.s | ||
multi-got-1-2.s | ||
multi-got-1.d | ||
multi-got-hidden-1.d | ||
multi-got-hidden-1.s | ||
multi-got-hidden-2.d | ||
multi-got-hidden-2.s | ||
multi-got-no-shared-1.s | ||
multi-got-no-shared-2.s | ||
multi-got-no-shared.d | ||
no-shared-1-n32.d | ||
no-shared-1-n64.d | ||
no-shared-1-n64.s | ||
no-shared-1-o32.d | ||
no-shared-1-o32.s | ||
no-shared-1.ld | ||
pic-and-nonpic-1-rel.dd | ||
pic-and-nonpic-1-rel.nd | ||
pic-and-nonpic-1.dd | ||
pic-and-nonpic-1.ld | ||
pic-and-nonpic-1.nd | ||
pic-and-nonpic-1a.s | ||
pic-and-nonpic-1b.s | ||
pic-and-nonpic-2.d | ||
pic-and-nonpic-2a.s | ||
pic-and-nonpic-2b.s | ||
pic-and-nonpic-3-error.d | ||
pic-and-nonpic-3a.dd | ||
pic-and-nonpic-3a.gd | ||
pic-and-nonpic-3a.ld | ||
pic-and-nonpic-3a.s | ||
pic-and-nonpic-3a.sd | ||
pic-and-nonpic-3b.ad | ||
pic-and-nonpic-3b.dd | ||
pic-and-nonpic-3b.gd | ||
pic-and-nonpic-3b.ld | ||
pic-and-nonpic-3b.nd | ||
pic-and-nonpic-3b.pd | ||
pic-and-nonpic-3b.rd | ||
pic-and-nonpic-3b.s | ||
pic-and-nonpic-3b.sd | ||
pic-and-nonpic-4-error.d | ||
pic-and-nonpic-4a.s | ||
pic-and-nonpic-4b.ad | ||
pic-and-nonpic-4b.dd | ||
pic-and-nonpic-4b.gd | ||
pic-and-nonpic-4b.ld | ||
pic-and-nonpic-4b.nd | ||
pic-and-nonpic-4b.rd | ||
pic-and-nonpic-4b.s | ||
pic-and-nonpic-4b.sd | ||
pic-and-nonpic-5a.s | ||
pic-and-nonpic-5b.ad | ||
pic-and-nonpic-5b.dd | ||
pic-and-nonpic-5b.gd | ||
pic-and-nonpic-5b.ld | ||
pic-and-nonpic-5b.nd | ||
pic-and-nonpic-5b.pd | ||
pic-and-nonpic-5b.rd | ||
pic-and-nonpic-5b.s | ||
pic-and-nonpic-5b.sd | ||
pic-and-nonpic-6-n32.ad | ||
pic-and-nonpic-6-n32.dd | ||
pic-and-nonpic-6-n32.gd | ||
pic-and-nonpic-6-n32.nd | ||
pic-and-nonpic-6-n32.pd | ||
pic-and-nonpic-6-n32.rd | ||
pic-and-nonpic-6-n32.sd | ||
pic-and-nonpic-6-n32a.s | ||
pic-and-nonpic-6-n32b.s | ||
pic-and-nonpic-6-n32c.s | ||
pic-and-nonpic-6-n64.ad | ||
pic-and-nonpic-6-n64.dd | ||
pic-and-nonpic-6-n64.gd | ||
pic-and-nonpic-6-n64.nd | ||
pic-and-nonpic-6-n64.pd | ||
pic-and-nonpic-6-n64.rd | ||
pic-and-nonpic-6-n64.sd | ||
pic-and-nonpic-6-n64a.s | ||
pic-and-nonpic-6-n64b.s | ||
pic-and-nonpic-6-n64c.s | ||
pic-and-nonpic-6-o32.ad | ||
pic-and-nonpic-6-o32.dd | ||
pic-and-nonpic-6-o32.gd | ||
pic-and-nonpic-6-o32.nd | ||
pic-and-nonpic-6-o32.pd | ||
pic-and-nonpic-6-o32.rd | ||
pic-and-nonpic-6-o32.sd | ||
pic-and-nonpic-6-o32a.s | ||
pic-and-nonpic-6-o32b.s | ||
pic-and-nonpic-6-o32c.s | ||
pic-and-nonpic-6.ld | ||
region1.d | ||
region1.t | ||
region1a.s | ||
region1b.s | ||
rel32-n32.d | ||
rel32-o32.d | ||
rel32.s | ||
rel64.d | ||
rel64.s | ||
relax-jalr-n32-shared.d | ||
relax-jalr-n32.d | ||
relax-jalr-n64-shared.d | ||
relax-jalr-n64.d | ||
relax-jalr.s | ||
reloc-1-n32.d | ||
reloc-1-n64.d | ||
reloc-1-rel.d | ||
reloc-1a.s | ||
reloc-1b.s | ||
reloc-2.d | ||
reloc-2.ld | ||
reloc-2a.s | ||
reloc-2b.s | ||
reloc-3-n32.d | ||
reloc-3.d | ||
reloc-4.d | ||
reloc-4.s | ||
reloc-5.d | ||
reloc-5.s | ||
reloc-estimate-1.d | ||
reloc-estimate-1.ld | ||
reloc-estimate-1a.s | ||
reloc-estimate-1b.s | ||
reloc-merge-lo16.d | ||
reloc-merge-lo16.ld | ||
reloc-merge-lo16.s | ||
stub-dynsym-1-2fe80.d | ||
stub-dynsym-1-7fff.d | ||
stub-dynsym-1-8000.d | ||
stub-dynsym-1-10000.d | ||
stub-dynsym-1-fff0.d | ||
stub-dynsym-1.ld | ||
stub-dynsym-1.s | ||
textrel-1.d | ||
textrel-1.s | ||
tls-hidden2-got.d | ||
tls-hidden2.d | ||
tls-hidden2a.s | ||
tls-hidden2b.s | ||
tls-hidden3.d | ||
tls-hidden3.got | ||
tls-hidden3.ld | ||
tls-hidden3.r | ||
tls-hidden3a.s | ||
tls-hidden3b.s | ||
tls-hidden4.got | ||
tls-hidden4.r | ||
tls-hidden4a.s | ||
tls-hidden4b.s | ||
tls-multi-got-1-1.s | ||
tls-multi-got-1-2.s | ||
tls-multi-got-1.d | ||
tls-multi-got-1.got | ||
tls-multi-got-1.r | ||
tlsbin-o32.d | ||
tlsbin-o32.got | ||
tlsbin-o32.s | ||
tlsdyn-o32-1.d | ||
tlsdyn-o32-1.got | ||
tlsdyn-o32-2.d | ||
tlsdyn-o32-2.got | ||
tlsdyn-o32-2.s | ||
tlsdyn-o32-3.d | ||
tlsdyn-o32-3.got | ||
tlsdyn-o32.d | ||
tlsdyn-o32.got | ||
tlsdyn-o32.s | ||
tlslib-hidden.ver | ||
tlslib-o32-hidden.got | ||
tlslib-o32-ver.got | ||
tlslib-o32.d | ||
tlslib-o32.got | ||
tlslib-o32.s | ||
tlslib.ver | ||
vxworks-forced-local-1.d | ||
vxworks-forced-local-1.s | ||
vxworks-forced-local-1.ver | ||
vxworks1-lib.dd | ||
vxworks1-lib.nd | ||
vxworks1-lib.rd | ||
vxworks1-lib.s | ||
vxworks1-lib.td | ||
vxworks1-static.d | ||
vxworks1.dd | ||
vxworks1.ld | ||
vxworks1.rd | ||
vxworks1.s | ||
vxworks2-static.sd | ||
vxworks2.s | ||
vxworks2.sd |