diff options
author | Cary Coutant <ccoutant@google.com> | 2013-05-30 23:01:11 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2013-05-30 23:01:11 +0000 |
commit | 6934001a98509d5f40ececbd9aa793b8969e27a3 (patch) | |
tree | e6b29c40e30acd5c3601df19a9fc5609fd618bd4 /gold/output.h | |
parent | 067ec077d717e716b0dba87b9ebfa25074cd5453 (diff) | |
download | fsf-binutils-gdb-6934001a98509d5f40ececbd9aa793b8969e27a3.zip fsf-binutils-gdb-6934001a98509d5f40ececbd9aa793b8969e27a3.tar.gz fsf-binutils-gdb-6934001a98509d5f40ececbd9aa793b8969e27a3.tar.bz2 |
2013-05-30 Alexander Ivchenko <alexander.ivchenko@intel.com>
Sriraman Tallam <tmsriram@google.com>
* options.h (sort_section): New option.
* output.h (Input_section_sort_section_prefix_special_ordering_compare):
Rename from Input_section_sort_section_name_special_ordering_compare.
(Input_section_sort_section_name_compare): New struct.
* output.cc (Output_section::Input_section_sort_section_name_compare::
operator()): New function.
(Output_section::sort_attached_input_sections): Use new sort function
for .text if --sort-section=name is specified.
* layout.cc (Layout::make_output_section):
Add sorting by name when --sort-section=name is specified.
* testsuite/Makefile.am (text_section_grouping): Test option
--sort-section=name.
* testsuite/Makefile.in: Regenerate.
* testsuite/section_sorting_name.cc: New file.
* testsuite/section_sorting_name.sh: New file.
Diffstat (limited to 'gold/output.h')
-rw-r--r-- | gold/output.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gold/output.h b/gold/output.h index 7722237..1bcdfea 100644 --- a/gold/output.h +++ b/gold/output.h @@ -4202,7 +4202,15 @@ class Output_section : public Output_data // This is the sort comparison function for .text to sort sections with // prefixes .text.{unlikely,exit,startup,hot} before other sections. - struct Input_section_sort_section_name_special_ordering_compare + struct Input_section_sort_section_prefix_special_ordering_compare + { + bool + operator()(const Input_section_sort_entry&, + const Input_section_sort_entry&) const; + }; + + // This is the sort comparison function for sorting sections by name. + struct Input_section_sort_section_name_compare { bool operator()(const Input_section_sort_entry&, |