aboutsummaryrefslogtreecommitdiff
path: root/gold
AgeCommit message (Collapse)AuthorFilesLines
2008-03-26Fix a ChangeLog formatting problem.Ben Elliston1-1/+1
2008-03-25 * options.cc: Include "../bfd/bfdver.h".Ian Lance Taylor2-0/+9
(options::help): Print bug reporting address.
2008-03-25 * version.cc (print_version): Adjust output for current value ofIan Lance Taylor2-3/+20
BFD_VERSION_STRING.
2008-03-25 * NEWS: New file.Ian Lance Taylor1-0/+1
2008-03-25 * options.cc (options::help): Print list of supported targets.Ian Lance Taylor7-80/+177
* target-select.h: Include <vector>. (class Target_selector): Make machine_, size_, and is_big_endian_ fields const. Add bfd_name_ and instantiated_target_ fields. (Target_selector::Target_selector): Add bfd_name parameter. (Target_selector::recognize): Make non-virtual, call do_recognize. (Target_selector::recognize_by_name): Make non-virtual, call do_recognize_by_name. (Target_selector::supported_names): New function. (Target_selector::bfd_name): New function. (Target_selector::do_instantiate_target): New pure virtual function. (Target_selector::do_recognize): New virtual function. (Target_selector::do_recognize_by_name): New virtual function. (Target_selector::instantiate_target): New private function. (supported_target_names): Declare. * target-select.cc (Target_selector::Target_selector): Update for new parameter and fields. (select_target_by_name): Check that the name matches before calling recognize_by_name. (supported_target_names): New function. * i386.cc (class Target_selector_i386): Update Target_selector constructor call. Remove recognize and recognize_by_name. Add do_instantiate_target. * x86_64.cc (class Target_selector_x86_64): Likewise. * testsuite/testfile.cc (class Target_selector_test): Update for changes to Target_selector.
2008-03-25 * README: Rewrite, with some notes on unsupported features.Ian Lance Taylor2-10/+49
2008-03-25 * i386.cc (Target_i386::Got_type): New enum declaration.Cary Coutant9-416/+418
(Target_i386::Scan::local): Updated callers of Output_data_got member functions. (Target_i386::Scan::global): Likewise. (Target_i386::Relocate::relocate): Likewise. (Target_i386::Relocate::relocate_tls): Likewise. * object.h (Got_offset_list): New class. (Sized_relobj::local_has_got_offset): Added got_type parameter. (Sized_relobj::local_got_offset): Likewise. (Sized_relobj::set_local_got_offset): Likewise. (Sized_relobj::local_has_tls_got_offset): Removed. (Sized_relobj::local_tls_got_offset): Removed. (Sized_relobj::set_local_tls_got_offset): Removed. (Sized_relobj::Local_got_offsets): Changed to store a list of offsets. * output.cc (Output_data_got::add_global): Added got_type parameter. (Output_data_got::add_global_with_rel): Likewise. (Output_data_got::add_global_with_rela): Likewise. (Output_data_got::add_global_pair_with_rel): New function. (Output_data_got::add_global_pair_with_rela): New function. (Output_data_got::add_local): Added got_type parameter. (Output_data_got::add_local_with_rel): Likewise. (Output_data_got::add_local_with_rela): Likewise. (Output_data_got::add_local_pair_with_rel): New function. (Output_data_got::add_local_pair_with_rela): New function. (Output_data_got::add_global_tls): Removed. (Output_data_got::add_global_tls_with_rel): Removed. (Output_data_got::add_global_tls_with_rela): Removed. (Output_data_got::add_local_tls): Removed. (Output_data_got::add_local_tls_with_rel): Removed. (Output_data_got::add_local_tls_with_rela): Removed. * output.h (Output_data_got::add_global): Added got_type parameter. (Output_data_got::add_global_with_rel): Likewise. (Output_data_got::add_global_with_rela): Likewise. (Output_data_got::add_global_pair_with_rel): New function. (Output_data_got::add_global_pair_with_rela): New function. (Output_data_got::add_local): Added got_type parameter. (Output_data_got::add_local_with_rel): Likewise. (Output_data_got::add_local_with_rela): Likewise. (Output_data_got::add_local_pair_with_rel): New function. (Output_data_got::add_local_pair_with_rela): New function. (Output_data_got::add_global_tls): Removed. (Output_data_got::add_global_tls_with_rel): Removed. (Output_data_got::add_global_tls_with_rela): Removed. (Output_data_got::add_local_tls): Removed. (Output_data_got::add_local_tls_with_rel): Removed. (Output_data_got::add_local_tls_with_rela): Removed. * resolve.cc (Symbol::override_base_with_special): Removed reference to has_got_offset_ field. * symtab.cc (Symbol::init_fields): Replaced initialization of got_offset_ with got_offsets_. Removed initialization of has_got_offset_ *symtab.h (Symbol::has_got_offset): Aded got_type parameter. (Symbol::got_offset): Likewise. (Symbol::set_got_offset): Likewise. (Symbol::has_tls_got_offset): Removed. (Symbol::tls_got_offset): Removed. (Symbol::set_tls_got_offset): Removed. (Symbol::got_offset_): Removed. (Symbol::tls_mod_got_offset_): Removed. (Symbol::tls_pair_got_offset_): Removed. (Symbol::got_offsets_): New field. (Symbol::has_got_offset): Removed. (Symbol::has_tls_mod_got_offset): Removed. (Symbol::has_tls_pair_got_offset): Removed. * x86_64.cc (Target_x86_64::Got_type): New enum declaration. (Target_x86_64::Scan::local): Updated callers of Output_data_got member functions. (Target_x86_64::Scan::global): Likewise. (Target_x86_64::Relocate::relocate): Likewise. (Target_x86_64::Relocate::relocate_tls): Likewise.
2008-03-25 * yyscript.y: Fix spelling error in comment.Ben Elliston2-1/+5
2008-03-25 * options.h (class General_options): Define build_id option.Ian Lance Taylor4-20/+230
* layout.h (class Layout): Declare write_build_id, create_note, create_build_id. Add build_id_note_ member. * layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>, "libiberty.h", "md5.h", "sha1.h". (Layout::Layout): Initialize eh_frame_data_, eh_frame_hdr_section_, and build_id_note_. (Layout::finalize): Call create_build_id. (Layout::create_note): New function, broken out of Layout::create_gold_note. (Layout::create_gold_note): Call create_note. (Layout::create_build_id): New function. (Layout::write_build_id): New function. (Close_task_runner::run): Call write_build_id.
2008-03-24 * x86_64.cc: Correct license to GPLv3.Ian Lance Taylor2-21/+16
2008-03-24 * options.cc: Include "demangle.h".Ian Lance Taylor5-24/+131
(parse_optional_string): New function. (parse_long_option): Handle takes_optional_argument. (parse_short_option): Update dash_z initializer. Handle takes_optional_argument. (General_options::General_options): Initialize do_demangle_. (General_options::finalize): Set do_demangle_. Handle demangling style. * options.h (parse_optional_string): Declare. (struct One_option): Add optional_arg field. Update constructor. Update call constructor calls. Add takes_optional_argument function. (DEFINE_var): Add optional_arg__ parameter. Change all callers. (DEFINE_optional_string): Define. (General_options::demangle): Change from DEFINE_bool to DEFINE_optional_string. (General_options::no_demangle): New function. (General_options::do_demangle): New function. (General_options::set_do_demangle): New function. (General_options::execstack_status_): Move definition to end of class definition. (General_options::static_): Likewise. (General_options::do_demangle_): New field. * object.cc (big_endian>::get_symbol_location_info): Call Options::do_demangle, not Options::demangle. * symtab.cc (demangle): Likewise.
2008-03-22 * gold.h: Include <cstddef> and <sys/types.h>Ian Lance Taylor3-0/+9
* options.h: Include <cstring>.
2008-03-21Add ChangeLog file now that the sources are part of the GNU binutils.Ian Lance Taylor1-0/+4
2008-03-21Bump version for general release.Ian Lance Taylor2-40/+44
2008-03-20From Craig Silverstein: implement -z defs.Ian Lance Taylor2-1/+5
2008-03-19Make sure the start and size of the TLS segment are aligned.Ian Lance Taylor4-20/+89
2008-03-17Up the version number to 1.3, which was just pushed to devtools.Craig Silverstein1-1/+1
2008-03-16Fix handling of RELA relative relocs against local symbols in mergeIan Lance Taylor8-27/+48
sections.
2008-03-14Don't get confused about whether a symbol is the default version if weIan Lance Taylor9-17/+152
see a later reference to it. Add tests for this case.
2008-03-13Update copyright years. Update language files.Ian Lance Taylor88-446/+637
2008-03-13Don't crash if we change the address of the .eh_frame section after weIan Lance Taylor3-2/+23
find its size.
2008-03-13From Craig Silverstein: Implement --debug=files to track file opens,Ian Lance Taylor6-9/+37
and implement --verbose as a synonym.
2008-03-12Combine read-only .eh_frame sections with read-write .eh_frameIan Lance Taylor5-4/+89
sections.
2008-03-11Up version to 1.2, as the 1.2 binary was pushed to users today.Craig Silverstein1-1/+1
2008-03-11If we a section with no flags followed by a section with the same nameIan Lance Taylor2-85/+147
with flags, put them in the same output section.
2008-03-07From Craig Silverstein: sort options into alphabetical order.Ian Lance Taylor1-29/+36
2008-03-07Increase maximum bucket size for dynamic hash tables.Ian Lance Taylor1-2/+2
2008-03-07From Craig Silverstein: implement --hash-bucket-empty-fraction for real.Ian Lance Taylor1-1/+3
2008-03-07Recognize --hash-bucket-empty-fraction.Ian Lance Taylor2-1/+32
2008-03-06Use absolute address for relocations when not doing a relocatableIan Lance Taylor1-1/+7
link.
2008-03-06Use N_ for option help strings, and call gettext when printing them.Ian Lance Taylor2-73/+72
2008-03-06From Craig Silverstein: accept any string for input format, warn ifIan Lance Taylor2-6/+23
thread options when not supported.
2008-03-06Don't use the user-specified output format unless the user actuallyIan Lance Taylor1-1/+1
specified one.
2008-03-06Support --hash-style=gnu.Ian Lance Taylor2-16/+46
2008-03-04From Craig Silverstein: rework option handling to make it easier toIan Lance Taylor8-1632/+1150
add a new option.
2008-03-04From Craig Silverstein: rename some option functions in preparationIan Lance Taylor8-23/+27
for reworking option handling.
2008-03-03Remove partial implementation that was never completed. This wasIan Lance Taylor1-73/+0
replaced by the Stringpool<> class.
2008-02-29Remove gcc 3.2 compatibility hacks.Ian Lance Taylor17-317/+110
2008-02-29Permit scripts to refer to the addresses of output sections which wereIan Lance Taylor4-7/+153
not created.
2008-02-28Don't warn about redefinitions from a --just-symbols object.Ian Lance Taylor1-0/+8
2008-02-28Support -d/--define-common.Ian Lance Taylor8-10/+65
2008-02-28Read input scripts which look like input objects with properIan Lance Taylor8-119/+239
serialization.
2008-02-28Don't check assertions until symbols are finalized. Create an outputIan Lance Taylor8-58/+166
section if the script uses a data statement with no input sections. Don't create a loadable segment for the headers if there is no room.
2008-02-28Put input sections with no flags in output sections with the same name.Ian Lance Taylor1-2/+15
2008-02-28From Craig Silverstein: Have Parameters point to General_options.Ian Lance Taylor30-926/+596
2008-02-27Implement -q/--emit-relocs.Ian Lance Taylor12-41/+293
2008-02-27Fix handling of ENTRY in linker script.Ian Lance Taylor1-1/+1
2008-02-26From Craig Silverstein: rework handling of Script_options.Ian Lance Taylor9-77/+62
2008-02-26From Craig Silverstein: implement -z max-page-size and -zIan Lance Taylor7-19/+117
common-page-size.
2008-02-26From Craig Silverstein: rename option functions for future optionIan Lance Taylor12-145/+150
handling rewrite.