* options.h (General_options): Add --rosegment-gap option.
	* options.cc (finalize): --rosegment-gap implies --rosegment.
	* layout.cc (set_segment_offsets): Let user option override
	target->rosegment_gap().
This commit is contained in:
Roland McGrath 2013-05-10 22:33:35 +00:00
parent 0c6e6c39ad
commit bbc5ae17c4
4 changed files with 196 additions and 177 deletions

View File

@ -1,3 +1,10 @@
2013-05-10 Roland McGrath <mcgrathr@google.com>
* options.h (General_options): Add --rosegment-gap option.
* options.cc (finalize): --rosegment-gap implies --rosegment.
* layout.cc (set_segment_offsets): Let user option override
target->rosegment_gap().
2013-05-10 Roland McGrath <mcgrathr@google.com> 2013-05-10 Roland McGrath <mcgrathr@google.com>
* options.h (General_options): Remove leading space from help * options.h (General_options): Remove leading space from help

View File

@ -1,6 +1,6 @@
// layout.cc -- lay out output file sections for gold // layout.cc -- lay out output file sections for gold
// Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012 // Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
// Free Software Foundation, Inc. // Free Software Foundation, Inc.
// Written by Ian Lance Taylor <iant@google.com>. // Written by Ian Lance Taylor <iant@google.com>.
@ -244,10 +244,10 @@ class Hash_task : public Task
{ {
public: public:
Hash_task(const unsigned char* src, Hash_task(const unsigned char* src,
size_t size, size_t size,
unsigned char* dst, unsigned char* dst,
Task_token* build_id_blocker, Task_token* build_id_blocker,
Task_token* final_blocker) Task_token* final_blocker)
: src_(src), size_(size), dst_(dst), build_id_blocker_(build_id_blocker), : src_(src), size_(size), dst_(dst), build_id_blocker_(build_id_blocker),
final_blocker_(final_blocker) final_blocker_(final_blocker)
{ } { }
@ -1098,7 +1098,7 @@ Layout::special_ordering_of_input_section(const char* name)
// wind up in the .text section. Sections that start with these // wind up in the .text section. Sections that start with these
// prefixes must appear first, and must appear in the order listed // prefixes must appear first, and must appear in the order listed
// here. // here.
static const char* const text_section_sort[] = static const char* const text_section_sort[] =
{ {
".text.unlikely", ".text.unlikely",
".text.exit", ".text.exit",
@ -1158,7 +1158,7 @@ Layout::layout(Sized_relobj_file<size, big_endian>* object, unsigned int shndx,
= this->section_segment_map_.find(Const_section_id(object, shndx)); = this->section_segment_map_.find(Const_section_id(object, shndx));
if (it == this->section_segment_map_.end()) if (it == this->section_segment_map_.end())
{ {
os = this->choose_output_section(object, name, sh_type, os = this->choose_output_section(object, name, sh_type,
shdr.get_sh_flags(), true, shdr.get_sh_flags(), true,
ORDER_INVALID, false); ORDER_INVALID, false);
} }
@ -1254,7 +1254,7 @@ void
Layout::insert_section_segment_map(Const_section_id secn, Layout::insert_section_segment_map(Const_section_id secn,
Unique_segment_info *s) Unique_segment_info *s)
{ {
gold_assert(this->unique_segment_for_sections_specified_); gold_assert(this->unique_segment_for_sections_specified_);
this->section_segment_map_[secn] = s; this->section_segment_map_[secn] = s;
} }
@ -1890,44 +1890,44 @@ Layout::attach_allocated_section_to_segment(const Target* target,
if (!os->is_unique_segment()) if (!os->is_unique_segment())
{ {
for (p = this->segment_list_.begin(); for (p = this->segment_list_.begin();
p != this->segment_list_.end(); p != this->segment_list_.end();
++p) ++p)
{ {
if ((*p)->type() != elfcpp::PT_LOAD) if ((*p)->type() != elfcpp::PT_LOAD)
continue; continue;
if ((*p)->is_unique_segment()) if ((*p)->is_unique_segment())
continue; continue;
if (!parameters->options().omagic() if (!parameters->options().omagic()
&& ((*p)->flags() & elfcpp::PF_W) != (seg_flags & elfcpp::PF_W)) && ((*p)->flags() & elfcpp::PF_W) != (seg_flags & elfcpp::PF_W))
continue; continue;
if ((target->isolate_execinstr() || parameters->options().rosegment()) if ((target->isolate_execinstr() || parameters->options().rosegment())
&& ((*p)->flags() & elfcpp::PF_X) != (seg_flags & elfcpp::PF_X)) && ((*p)->flags() & elfcpp::PF_X) != (seg_flags & elfcpp::PF_X))
continue; continue;
// If -Tbss was specified, we need to separate the data and BSS // If -Tbss was specified, we need to separate the data and BSS
// segments. // segments.
if (parameters->options().user_set_Tbss()) if (parameters->options().user_set_Tbss())
{ {
if ((os->type() == elfcpp::SHT_NOBITS) if ((os->type() == elfcpp::SHT_NOBITS)
== (*p)->has_any_data_sections()) == (*p)->has_any_data_sections())
continue; continue;
} }
if (os->is_large_data_section() && !(*p)->is_large_data_segment()) if (os->is_large_data_section() && !(*p)->is_large_data_segment())
continue; continue;
if (is_address_set) if (is_address_set)
{ {
if ((*p)->are_addresses_set()) if ((*p)->are_addresses_set())
continue; continue;
(*p)->add_initial_output_data(os); (*p)->add_initial_output_data(os);
(*p)->update_flags_for_output_section(seg_flags); (*p)->update_flags_for_output_section(seg_flags);
(*p)->set_addresses(addr, addr); (*p)->set_addresses(addr, addr);
break; break;
} }
(*p)->add_output_section_to_load(this, os, seg_flags); (*p)->add_output_section_to_load(this, os, seg_flags);
break; break;
} }
} }
if (p == this->segment_list_.end() if (p == this->segment_list_.end()
@ -3457,7 +3457,10 @@ Layout::set_segment_offsets(const Target* target, Output_segment* load_seg,
// If the target wants a fixed minimum distance from the // If the target wants a fixed minimum distance from the
// text segment to the read-only segment, move up now. // text segment to the read-only segment, move up now.
uint64_t min_addr = start_addr + target->rosegment_gap(); uint64_t min_addr =
start_addr + (parameters->options().user_set_rosegment_gap()
? parameters->options().rosegment_gap()
: target->rosegment_gap());
if (addr < min_addr) if (addr < min_addr)
addr = min_addr; addr = min_addr;
@ -5270,20 +5273,20 @@ Layout::write_sections_after_input_sections(Output_file* of)
Task_token* Task_token*
Layout::queue_build_id_tasks(Workqueue* workqueue, Task_token* build_id_blocker, Layout::queue_build_id_tasks(Workqueue* workqueue, Task_token* build_id_blocker,
Output_file* of) Output_file* of)
{ {
const size_t filesize = (this->output_file_size() <= 0 ? 0 const size_t filesize = (this->output_file_size() <= 0 ? 0
: static_cast<size_t>(this->output_file_size())); : static_cast<size_t>(this->output_file_size()));
if (this->build_id_note_ != NULL if (this->build_id_note_ != NULL
&& strcmp(parameters->options().build_id(), "tree") == 0 && strcmp(parameters->options().build_id(), "tree") == 0
&& parameters->options().build_id_chunk_size_for_treehash() > 0 && parameters->options().build_id_chunk_size_for_treehash() > 0
&& filesize > 0 && filesize > 0
&& (filesize >= && (filesize >=
parameters->options().build_id_min_file_size_for_treehash())) parameters->options().build_id_min_file_size_for_treehash()))
{ {
static const size_t MD5_OUTPUT_SIZE_IN_BYTES = 16; static const size_t MD5_OUTPUT_SIZE_IN_BYTES = 16;
const size_t chunk_size = const size_t chunk_size =
parameters->options().build_id_chunk_size_for_treehash(); parameters->options().build_id_chunk_size_for_treehash();
const size_t num_hashes = ((filesize - 1) / chunk_size) + 1; const size_t num_hashes = ((filesize - 1) / chunk_size) + 1;
Task_token* post_hash_tasks_blocker = new Task_token(true); Task_token* post_hash_tasks_blocker = new Task_token(true);
post_hash_tasks_blocker->add_blockers(num_hashes); post_hash_tasks_blocker->add_blockers(num_hashes);
@ -5293,15 +5296,15 @@ Layout::queue_build_id_tasks(Workqueue* workqueue, Task_token* build_id_blocker,
unsigned char *dst = new unsigned char[this->size_of_array_of_hashes_]; unsigned char *dst = new unsigned char[this->size_of_array_of_hashes_];
this->array_of_hashes_ = dst; this->array_of_hashes_ = dst;
for (size_t i = 0, src_offset = 0; i < num_hashes; for (size_t i = 0, src_offset = 0; i < num_hashes;
i++, dst += MD5_OUTPUT_SIZE_IN_BYTES, src_offset += chunk_size) i++, dst += MD5_OUTPUT_SIZE_IN_BYTES, src_offset += chunk_size)
{ {
size_t size = std::min(chunk_size, filesize - src_offset); size_t size = std::min(chunk_size, filesize - src_offset);
workqueue->queue(new Hash_task(src + src_offset, workqueue->queue(new Hash_task(src + src_offset,
size, size,
dst, dst,
build_id_blocker, build_id_blocker,
post_hash_tasks_blocker)); post_hash_tasks_blocker));
} }
return post_hash_tasks_blocker; return post_hash_tasks_blocker;
} }
return build_id_blocker; return build_id_blocker;
@ -5318,7 +5321,7 @@ Layout::write_build_id(Output_file* of) const
return; return;
unsigned char* ov = of->get_output_view(this->build_id_note_->offset(), unsigned char* ov = of->get_output_view(this->build_id_note_->offset(),
this->build_id_note_->data_size()); this->build_id_note_->data_size());
if (this->array_of_hashes_ == NULL) if (this->array_of_hashes_ == NULL)
{ {
@ -5329,11 +5332,11 @@ Layout::write_build_id(Output_file* of) const
// If we get here with style == "tree" then the output must be // If we get here with style == "tree" then the output must be
// too small for chunking, and we use SHA-1 in that case. // too small for chunking, and we use SHA-1 in that case.
if ((strcmp(style, "sha1") == 0) || (strcmp(style, "tree") == 0)) if ((strcmp(style, "sha1") == 0) || (strcmp(style, "tree") == 0))
sha1_buffer(reinterpret_cast<const char*>(iv), output_file_size, ov); sha1_buffer(reinterpret_cast<const char*>(iv), output_file_size, ov);
else if (strcmp(style, "md5") == 0) else if (strcmp(style, "md5") == 0)
md5_buffer(reinterpret_cast<const char*>(iv), output_file_size, ov); md5_buffer(reinterpret_cast<const char*>(iv), output_file_size, ov);
else else
gold_unreachable(); gold_unreachable();
of->free_input_view(0, output_file_size, iv); of->free_input_view(0, output_file_size, iv);
} }
@ -5342,7 +5345,7 @@ Layout::write_build_id(Output_file* of) const
// Non-overlapping substrings of the output file have been hashed. // Non-overlapping substrings of the output file have been hashed.
// Compute SHA-1 hash of the hashes. // Compute SHA-1 hash of the hashes.
sha1_buffer(reinterpret_cast<const char*>(this->array_of_hashes_), sha1_buffer(reinterpret_cast<const char*>(this->array_of_hashes_),
this->size_of_array_of_hashes_, ov); this->size_of_array_of_hashes_, ov);
delete[] this->array_of_hashes_; delete[] this->array_of_hashes_;
of->free_input_view(0, this->output_file_size(), this->input_view_); of->free_input_view(0, this->output_file_size(), this->input_view_);
} }

View File

@ -1,6 +1,7 @@
// options.c -- handle command line options for gold // options.c -- handle command line options for gold
// Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. // Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013
// Free Software Foundation, Inc.
// Written by Ian Lance Taylor <iant@google.com>. // Written by Ian Lance Taylor <iant@google.com>.
// This file is part of gold. // This file is part of gold.
@ -101,11 +102,11 @@ One_option::print() const
{ {
len += printf("-%c", this->shortname); len += printf("-%c", this->shortname);
if (this->helparg) if (this->helparg)
{ {
// -z takes long-names only. // -z takes long-names only.
gold_assert(this->dashes != DASH_Z); gold_assert(this->dashes != DASH_Z);
len += printf(" %s", gettext(this->helparg)); len += printf(" %s", gettext(this->helparg));
} }
comma = true; comma = true;
} }
if (!this->longname.empty() if (!this->longname.empty()
@ -113,29 +114,29 @@ One_option::print() const
&& this->longname[1] == '\0')) && this->longname[1] == '\0'))
{ {
if (comma) if (comma)
len += printf(", "); len += printf(", ");
switch (this->dashes) switch (this->dashes)
{ {
case options::ONE_DASH: case options::EXACTLY_ONE_DASH: case options::ONE_DASH: case options::EXACTLY_ONE_DASH:
len += printf("-"); len += printf("-");
break; break;
case options::TWO_DASHES: case options::EXACTLY_TWO_DASHES: case options::TWO_DASHES: case options::EXACTLY_TWO_DASHES:
len += printf("--"); len += printf("--");
break; break;
case options::DASH_Z: case options::DASH_Z:
len += printf("-z "); len += printf("-z ");
break; break;
default: default:
gold_unreachable(); gold_unreachable();
} }
len += printf("%s", this->longname.c_str()); len += printf("%s", this->longname.c_str());
if (this->helparg) if (this->helparg)
{ {
// For most options, we print "--frob FOO". But for -z // For most options, we print "--frob FOO". But for -z
// we print "-z frob=FOO". // we print "-z frob=FOO".
len += printf("%c%s", this->dashes == options::DASH_Z ? '=' : ' ', len += printf("%c%s", this->dashes == options::DASH_Z ? '=' : ' ',
gettext(this->helparg)); gettext(this->helparg));
} }
} }
if (len >= 30) if (len >= 30)
@ -200,7 +201,7 @@ parse_uint(const char* option_name, const char* arg, int* retval)
*retval = strtol(arg, &endptr, 0); *retval = strtol(arg, &endptr, 0);
if (*endptr != '\0' || *retval < 0) if (*endptr != '\0' || *retval < 0)
gold_fatal(_("%s: invalid option value (expected an integer): %s"), gold_fatal(_("%s: invalid option value (expected an integer): %s"),
option_name, arg); option_name, arg);
} }
void void
@ -210,7 +211,7 @@ parse_int(const char* option_name, const char* arg, int* retval)
*retval = strtol(arg, &endptr, 0); *retval = strtol(arg, &endptr, 0);
if (*endptr != '\0') if (*endptr != '\0')
gold_fatal(_("%s: invalid option value (expected an integer): %s"), gold_fatal(_("%s: invalid option value (expected an integer): %s"),
option_name, arg); option_name, arg);
} }
void void
@ -220,7 +221,7 @@ parse_uint64(const char* option_name, const char* arg, uint64_t* retval)
*retval = strtoull(arg, &endptr, 0); *retval = strtoull(arg, &endptr, 0);
if (*endptr != '\0') if (*endptr != '\0')
gold_fatal(_("%s: invalid option value (expected an integer): %s"), gold_fatal(_("%s: invalid option value (expected an integer): %s"),
option_name, arg); option_name, arg);
} }
void void
@ -273,13 +274,13 @@ parse_set(const char*, const char* arg, String_set* retval)
void void
parse_choices(const char* option_name, const char* arg, const char** retval, parse_choices(const char* option_name, const char* arg, const char** retval,
const char* choices[], int num_choices) const char* choices[], int num_choices)
{ {
for (int i = 0; i < num_choices; i++) for (int i = 0; i < num_choices; i++)
if (strcmp(choices[i], arg) == 0) if (strcmp(choices[i], arg) == 0)
{ {
*retval = arg; *retval = arg;
return; return;
} }
// If we get here, the user did not enter a valid choice, so we die. // If we get here, the user did not enter a valid choice, so we die.
@ -288,10 +289,10 @@ parse_choices(const char* option_name, const char* arg, const char** retval,
{ {
choices_list += choices[i]; choices_list += choices[i];
if (i != num_choices - 1) if (i != num_choices - 1)
choices_list += ", "; choices_list += ", ";
} }
gold_fatal(_("%s: must take one of the following arguments: %s"), gold_fatal(_("%s: must take one of the following arguments: %s"),
option_name, choices_list.c_str()); option_name, choices_list.c_str());
} }
} // End namespace options. } // End namespace options.
@ -340,21 +341,21 @@ General_options::parse_V(const char*, const char*, Command_line*)
void void
General_options::parse_defsym(const char*, const char* arg, General_options::parse_defsym(const char*, const char* arg,
Command_line* cmdline) Command_line* cmdline)
{ {
cmdline->script_options().define_symbol(arg); cmdline->script_options().define_symbol(arg);
} }
void void
General_options::parse_incremental(const char*, const char*, General_options::parse_incremental(const char*, const char*,
Command_line*) Command_line*)
{ {
this->incremental_mode_ = INCREMENTAL_AUTO; this->incremental_mode_ = INCREMENTAL_AUTO;
} }
void void
General_options::parse_no_incremental(const char*, const char*, General_options::parse_no_incremental(const char*, const char*,
Command_line*) Command_line*)
{ {
this->incremental_mode_ = INCREMENTAL_OFF; this->incremental_mode_ = INCREMENTAL_OFF;
} }
@ -375,7 +376,7 @@ General_options::parse_incremental_update(const char*, const char*,
void void
General_options::parse_incremental_changed(const char*, const char*, General_options::parse_incremental_changed(const char*, const char*,
Command_line*) Command_line*)
{ {
this->implicit_incremental_ = true; this->implicit_incremental_ = true;
this->incremental_disposition_ = INCREMENTAL_CHANGED; this->incremental_disposition_ = INCREMENTAL_CHANGED;
@ -383,7 +384,7 @@ General_options::parse_incremental_changed(const char*, const char*,
void void
General_options::parse_incremental_unchanged(const char*, const char*, General_options::parse_incremental_unchanged(const char*, const char*,
Command_line*) Command_line*)
{ {
this->implicit_incremental_ = true; this->implicit_incremental_ = true;
this->incremental_disposition_ = INCREMENTAL_UNCHANGED; this->incremental_disposition_ = INCREMENTAL_UNCHANGED;
@ -391,7 +392,7 @@ General_options::parse_incremental_unchanged(const char*, const char*,
void void
General_options::parse_incremental_unknown(const char*, const char*, General_options::parse_incremental_unknown(const char*, const char*,
Command_line*) Command_line*)
{ {
this->implicit_incremental_ = true; this->implicit_incremental_ = true;
this->incremental_disposition_ = INCREMENTAL_CHECK; this->incremental_disposition_ = INCREMENTAL_CHECK;
@ -407,7 +408,7 @@ General_options::parse_incremental_startup_unchanged(const char*, const char*,
void void
General_options::parse_library(const char*, const char* arg, General_options::parse_library(const char*, const char* arg,
Command_line* cmdline) Command_line* cmdline)
{ {
Input_file_argument::Input_file_type type; Input_file_argument::Input_file_type type;
const char* name; const char* name;
@ -428,7 +429,7 @@ General_options::parse_library(const char*, const char* arg,
#ifdef ENABLE_PLUGINS #ifdef ENABLE_PLUGINS
void void
General_options::parse_plugin(const char*, const char* arg, General_options::parse_plugin(const char*, const char* arg,
Command_line*) Command_line*)
{ {
this->add_plugin(arg); this->add_plugin(arg);
} }
@ -437,7 +438,7 @@ General_options::parse_plugin(const char*, const char* arg,
void void
General_options::parse_plugin_opt(const char*, const char* arg, General_options::parse_plugin_opt(const char*, const char* arg,
Command_line*) Command_line*)
{ {
this->add_plugin_option(arg); this->add_plugin_option(arg);
} }
@ -445,7 +446,7 @@ General_options::parse_plugin_opt(const char*, const char* arg,
void void
General_options::parse_R(const char* option, const char* arg, General_options::parse_R(const char* option, const char* arg,
Command_line* cmdline) Command_line* cmdline)
{ {
struct stat s; struct stat s;
if (::stat(arg, &s) != 0 || S_ISDIR(s.st_mode)) if (::stat(arg, &s) != 0 || S_ISDIR(s.st_mode))
@ -456,7 +457,7 @@ General_options::parse_R(const char* option, const char* arg,
void void
General_options::parse_just_symbols(const char*, const char* arg, General_options::parse_just_symbols(const char*, const char* arg,
Command_line* cmdline) Command_line* cmdline)
{ {
Input_file_argument file(arg, Input_file_argument::INPUT_FILE_TYPE_FILE, Input_file_argument file(arg, Input_file_argument::INPUT_FILE_TYPE_FILE,
"", true, *this); "", true, *this);
@ -528,7 +529,7 @@ General_options::parse_static(const char*, const char*, Command_line*)
void void
General_options::parse_script(const char*, const char* arg, General_options::parse_script(const char*, const char* arg,
Command_line* cmdline) Command_line* cmdline)
{ {
if (!read_commandline_script(arg, cmdline)) if (!read_commandline_script(arg, cmdline))
gold::gold_fatal(_("unable to parse script file %s"), arg); gold::gold_fatal(_("unable to parse script file %s"), arg);
@ -536,7 +537,7 @@ General_options::parse_script(const char*, const char* arg,
void void
General_options::parse_version_script(const char*, const char* arg, General_options::parse_version_script(const char*, const char* arg,
Command_line* cmdline) Command_line* cmdline)
{ {
if (!read_version_script(arg, cmdline)) if (!read_version_script(arg, cmdline))
gold::gold_fatal(_("unable to parse version script file %s"), arg); gold::gold_fatal(_("unable to parse version script file %s"), arg);
@ -544,7 +545,7 @@ General_options::parse_version_script(const char*, const char* arg,
void void
General_options::parse_dynamic_list(const char*, const char* arg, General_options::parse_dynamic_list(const char*, const char* arg,
Command_line* cmdline) Command_line* cmdline)
{ {
if (!read_dynamic_list(arg, cmdline, &this->dynamic_list_)) if (!read_dynamic_list(arg, cmdline, &this->dynamic_list_))
gold::gold_fatal(_("unable to parse dynamic-list script file %s"), arg); gold::gold_fatal(_("unable to parse dynamic-list script file %s"), arg);
@ -552,28 +553,28 @@ General_options::parse_dynamic_list(const char*, const char* arg,
void void
General_options::parse_start_group(const char*, const char*, General_options::parse_start_group(const char*, const char*,
Command_line* cmdline) Command_line* cmdline)
{ {
cmdline->inputs().start_group(); cmdline->inputs().start_group();
} }
void void
General_options::parse_end_group(const char*, const char*, General_options::parse_end_group(const char*, const char*,
Command_line* cmdline) Command_line* cmdline)
{ {
cmdline->inputs().end_group(); cmdline->inputs().end_group();
} }
void void
General_options::parse_start_lib(const char*, const char*, General_options::parse_start_lib(const char*, const char*,
Command_line* cmdline) Command_line* cmdline)
{ {
cmdline->inputs().start_lib(cmdline->position_dependent_options()); cmdline->inputs().start_lib(cmdline->position_dependent_options());
} }
void void
General_options::parse_end_lib(const char*, const char*, General_options::parse_end_lib(const char*, const char*,
Command_line* cmdline) Command_line* cmdline)
{ {
cmdline->inputs().end_lib(); cmdline->inputs().end_lib();
} }
@ -585,7 +586,7 @@ General_options::parse_end_lib(const char*, const char*,
void void
General_options::parse_exclude_libs(const char*, const char* arg, General_options::parse_exclude_libs(const char*, const char* arg,
Command_line*) Command_line*)
{ {
const char* p = arg; const char* p = arg;
@ -659,15 +660,15 @@ General_options::string_to_object_format(const char* arg)
else else
{ {
gold::gold_error(_("format '%s' not supported; treating as elf " gold::gold_error(_("format '%s' not supported; treating as elf "
"(supported formats: elf, binary)"), "(supported formats: elf, binary)"),
arg); arg);
return gold::General_options::OBJECT_FORMAT_ELF; return gold::General_options::OBJECT_FORMAT_ELF;
} }
} }
void void
General_options::parse_fix_v4bx(const char*, const char*, General_options::parse_fix_v4bx(const char*, const char*,
Command_line*) Command_line*)
{ {
this->fix_v4bx_ = FIX_V4BX_REPLACE; this->fix_v4bx_ = FIX_V4BX_REPLACE;
} }
@ -700,8 +701,8 @@ void
usage() usage()
{ {
fprintf(stderr, fprintf(stderr,
_("%s: use the --help option for usage information\n"), _("%s: use the --help option for usage information\n"),
gold::program_name); gold::program_name);
::exit(EXIT_FAILURE); ::exit(EXIT_FAILURE);
} }
@ -709,8 +710,8 @@ void
usage(const char* msg, const char* opt) usage(const char* msg, const char* opt)
{ {
fprintf(stderr, fprintf(stderr,
_("%s: %s: %s\n"), _("%s: %s: %s\n"),
gold::program_name, opt, msg); gold::program_name, opt, msg);
usage(); usage();
} }
@ -721,12 +722,12 @@ static char*
get_relative_sysroot(const char* from) get_relative_sysroot(const char* from)
{ {
char* path = make_relative_prefix(gold::program_name, from, char* path = make_relative_prefix(gold::program_name, from,
TARGET_SYSTEM_ROOT); TARGET_SYSTEM_ROOT);
if (path != NULL) if (path != NULL)
{ {
struct stat s; struct stat s;
if (::stat(path, &s) == 0 && S_ISDIR(s.st_mode)) if (::stat(path, &s) == 0 && S_ISDIR(s.st_mode))
return path; return path;
free(path); free(path);
} }
@ -749,9 +750,9 @@ get_default_sysroot()
{ {
char* path = get_relative_sysroot(BINDIR); char* path = get_relative_sysroot(BINDIR);
if (path == NULL) if (path == NULL)
path = get_relative_sysroot(TOOLBINDIR); path = get_relative_sysroot(TOOLBINDIR);
if (path != NULL) if (path != NULL)
return path; return path;
} }
return sysroot; return sysroot;
@ -768,14 +769,14 @@ get_default_sysroot()
// NOTE: it is safe for argv and arg to point to the same place. // NOTE: it is safe for argv and arg to point to the same place.
gold::options::One_option* gold::options::One_option*
parse_long_option(int argc, const char** argv, bool equals_only, parse_long_option(int argc, const char** argv, bool equals_only,
const char** arg, int* i) const char** arg, int* i)
{ {
const char* const this_argv = argv[*i]; const char* const this_argv = argv[*i];
const char* equals = strchr(this_argv, '='); const char* equals = strchr(this_argv, '=');
const char* option_start = this_argv + strspn(this_argv, "-"); const char* option_start = this_argv + strspn(this_argv, "-");
std::string option(option_start, std::string option(option_start,
equals ? equals - option_start : strlen(option_start)); equals ? equals - option_start : strlen(option_start));
gold::options::Option_map::iterator it gold::options::Option_map::iterator it
= gold::options::long_options->find(option); = gold::options::long_options->find(option);
@ -788,21 +789,21 @@ parse_long_option(int argc, const char** argv, bool equals_only,
if (this_argv[0] != '-') // no dashes at all: had better be "-z <longopt>" if (this_argv[0] != '-') // no dashes at all: had better be "-z <longopt>"
{ {
if (retval->dashes != gold::options::DASH_Z) if (retval->dashes != gold::options::DASH_Z)
return NULL; return NULL;
} }
else if (this_argv[1] != '-') // one dash else if (this_argv[1] != '-') // one dash
{ {
if (retval->dashes != gold::options::ONE_DASH if (retval->dashes != gold::options::ONE_DASH
&& retval->dashes != gold::options::EXACTLY_ONE_DASH && retval->dashes != gold::options::EXACTLY_ONE_DASH
&& retval->dashes != gold::options::TWO_DASHES) && retval->dashes != gold::options::TWO_DASHES)
return NULL; return NULL;
} }
else // two dashes (or more!) else // two dashes (or more!)
{ {
if (retval->dashes != gold::options::TWO_DASHES if (retval->dashes != gold::options::TWO_DASHES
&& retval->dashes != gold::options::EXACTLY_TWO_DASHES && retval->dashes != gold::options::EXACTLY_TWO_DASHES
&& retval->dashes != gold::options::ONE_DASH) && retval->dashes != gold::options::ONE_DASH)
return NULL; return NULL;
} }
// Now that we know the option is good (or else bad in a way that // Now that we know the option is good (or else bad in a way that
@ -813,20 +814,20 @@ parse_long_option(int argc, const char** argv, bool equals_only,
if (!retval->takes_argument()) if (!retval->takes_argument())
{ {
if (equals) if (equals)
usage(_("unexpected argument"), this_argv); usage(_("unexpected argument"), this_argv);
else else
*arg = NULL; *arg = NULL;
} }
else else
{ {
if (equals) if (equals)
*arg = equals + 1; *arg = equals + 1;
else if (retval->takes_optional_argument()) else if (retval->takes_optional_argument())
*arg = retval->default_value; *arg = retval->default_value;
else if (*i < argc && !equals_only) else if (*i < argc && !equals_only)
*arg = argv[(*i)++]; *arg = argv[(*i)++];
else else
usage(_("missing argument"), this_argv); usage(_("missing argument"), this_argv);
} }
return retval; return retval;
@ -844,7 +845,7 @@ parse_long_option(int argc, const char** argv, bool equals_only,
// another short option in the same word. // another short option in the same word.
gold::options::One_option* gold::options::One_option*
parse_short_option(int argc, const char** argv, int pos_in_argv_i, parse_short_option(int argc, const char** argv, int pos_in_argv_i,
const char** arg, int* i) const char** arg, int* i)
{ {
const char* const this_argv = argv[*i]; const char* const this_argv = argv[*i];
@ -853,7 +854,7 @@ parse_short_option(int argc, const char** argv, int pos_in_argv_i,
// We handle -z as a special case. // We handle -z as a special case.
static gold::options::One_option dash_z("", gold::options::DASH_Z, static gold::options::One_option dash_z("", gold::options::DASH_Z,
'z', "", NULL, "Z-OPTION", false, 'z', "", NULL, "Z-OPTION", false,
NULL); NULL);
gold::options::One_option* retval = NULL; gold::options::One_option* retval = NULL;
if (this_argv[pos_in_argv_i] == 'z') if (this_argv[pos_in_argv_i] == 'z')
@ -862,7 +863,7 @@ parse_short_option(int argc, const char** argv, int pos_in_argv_i,
{ {
const int char_as_int = static_cast<int>(this_argv[pos_in_argv_i]); const int char_as_int = static_cast<int>(this_argv[pos_in_argv_i]);
if (char_as_int > 0 && char_as_int < 128) if (char_as_int > 0 && char_as_int < 128)
retval = gold::options::short_options[char_as_int]; retval = gold::options::short_options[char_as_int];
} }
if (retval == NULL) if (retval == NULL)
@ -874,20 +875,20 @@ parse_short_option(int argc, const char** argv, int pos_in_argv_i,
*arg = NULL; *arg = NULL;
// We only advance past this argument if it's the only one in argv. // We only advance past this argument if it's the only one in argv.
if (this_argv[pos_in_argv_i + 1] == '\0') if (this_argv[pos_in_argv_i + 1] == '\0')
++(*i); ++(*i);
} }
else else
{ {
// If we take an argument, we'll eat up this entire argv entry. // If we take an argument, we'll eat up this entire argv entry.
++(*i); ++(*i);
if (this_argv[pos_in_argv_i + 1] != '\0') if (this_argv[pos_in_argv_i + 1] != '\0')
*arg = this_argv + pos_in_argv_i + 1; *arg = this_argv + pos_in_argv_i + 1;
else if (retval->takes_optional_argument()) else if (retval->takes_optional_argument())
*arg = retval->default_value; *arg = retval->default_value;
else if (*i < argc) else if (*i < argc)
*arg = argv[(*i)++]; *arg = argv[(*i)++];
else else
usage(_("missing argument"), this_argv); usage(_("missing argument"), this_argv);
} }
// If we're a -z option, we need to parse our argument as a // If we're a -z option, we need to parse our argument as a
@ -898,7 +899,7 @@ parse_short_option(int argc, const char** argv, int pos_in_argv_i,
const char* dash_z_arg = *arg; const char* dash_z_arg = *arg;
retval = parse_long_option(1, arg, true, arg, &dummy_i); retval = parse_long_option(1, arg, true, arg, &dummy_i);
if (retval == NULL) if (retval == NULL)
usage(_("unknown -z option"), dash_z_arg); usage(_("unknown -z option"), dash_z_arg);
} }
return retval; return retval;
@ -952,7 +953,7 @@ General_options::add_sysroot()
{ {
this->set_sysroot(get_default_sysroot()); this->set_sysroot(get_default_sysroot());
if (this->sysroot() == NULL || this->sysroot()[0] == '\0') if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
return; return;
} }
char* canonical_sysroot = lrealpath(this->sysroot()); char* canonical_sysroot = lrealpath(this->sysroot());
@ -1117,8 +1118,8 @@ General_options::finalize()
if (this->thread_count() > 0 || this->thread_count_initial() > 0 if (this->thread_count() > 0 || this->thread_count_initial() > 0
|| this->thread_count_middle() > 0 || this->thread_count_final() > 0) || this->thread_count_middle() > 0 || this->thread_count_final() > 0)
gold_warning(_("ignoring --thread-count: " gold_warning(_("ignoring --thread-count: "
"%s was compiled without thread support"), "%s was compiled without thread support"),
program_name); program_name);
#endif #endif
std::string libpath; std::string libpath;
@ -1170,17 +1171,17 @@ General_options::finalize()
std::ifstream in; std::ifstream in;
in.open(this->retain_symbols_file()); in.open(this->retain_symbols_file());
if (!in) if (!in)
gold_fatal(_("unable to open -retain-symbols-file file %s: %s"), gold_fatal(_("unable to open -retain-symbols-file file %s: %s"),
this->retain_symbols_file(), strerror(errno)); this->retain_symbols_file(), strerror(errno));
std::string line; std::string line;
std::getline(in, line); // this chops off the trailing \n, if any std::getline(in, line); // this chops off the trailing \n, if any
while (in) while (in)
{ {
if (!line.empty() && line[line.length() - 1] == '\r') // Windows if (!line.empty() && line[line.length() - 1] == '\r') // Windows
line.resize(line.length() - 1); line.resize(line.length() - 1);
this->symbols_to_retain_.insert(line); this->symbols_to_retain_.insert(line);
std::getline(in, line); std::getline(in, line);
} }
} }
// -Bgroup implies --unresolved-symbols=report-all. // -Bgroup implies --unresolved-symbols=report-all.
@ -1239,7 +1240,7 @@ General_options::finalize()
if (this->implicit_incremental_ && this->incremental_mode_ == INCREMENTAL_OFF) if (this->implicit_incremental_ && this->incremental_mode_ == INCREMENTAL_OFF)
gold_fatal(_("Options --incremental-changed, --incremental-unchanged, " gold_fatal(_("Options --incremental-changed, --incremental-unchanged, "
"--incremental-unknown require the use of --incremental")); "--incremental-unknown require the use of --incremental"));
// Check for options that are not compatible with incremental linking. // Check for options that are not compatible with incremental linking.
// Where an option can be disabled without seriously changing the semantics // Where an option can be disabled without seriously changing the semantics
@ -1272,6 +1273,10 @@ General_options::finalize()
} }
} }
// --rosegment-gap implies --rosegment.
if (this->user_set_rosegment_gap())
this->set_rosegment(true);
// FIXME: we can/should be doing a lot more sanity checking here. // FIXME: we can/should be doing a lot more sanity checking here.
} }
@ -1282,14 +1287,14 @@ General_options::finalize()
void void
Search_directory::add_sysroot(const char* sysroot, Search_directory::add_sysroot(const char* sysroot,
const char* canonical_sysroot) const char* canonical_sysroot)
{ {
gold_assert(*sysroot != '\0'); gold_assert(*sysroot != '\0');
if (this->put_in_sysroot_) if (this->put_in_sysroot_)
{ {
if (!IS_DIR_SEPARATOR(this->name_[0]) if (!IS_DIR_SEPARATOR(this->name_[0])
&& !IS_DIR_SEPARATOR(sysroot[strlen(sysroot) - 1])) && !IS_DIR_SEPARATOR(sysroot[strlen(sysroot) - 1]))
this->name_ = '/' + this->name_; this->name_ = '/' + this->name_;
this->name_ = sysroot + this->name_; this->name_ = sysroot + this->name_;
this->is_in_sysroot_ = true; this->is_in_sysroot_ = true;
} }
@ -1302,12 +1307,12 @@ Search_directory::add_sysroot(const char* sysroot,
int canonical_name_len = strlen(canonical_name); int canonical_name_len = strlen(canonical_name);
int canonical_sysroot_len = strlen(canonical_sysroot); int canonical_sysroot_len = strlen(canonical_sysroot);
if (canonical_name_len > canonical_sysroot_len if (canonical_name_len > canonical_sysroot_len
&& IS_DIR_SEPARATOR(canonical_name[canonical_sysroot_len])) && IS_DIR_SEPARATOR(canonical_name[canonical_sysroot_len]))
{ {
canonical_name[canonical_sysroot_len] = '\0'; canonical_name[canonical_sysroot_len] = '\0';
if (FILENAME_CMP(canonical_name, canonical_sysroot) == 0) if (FILENAME_CMP(canonical_name, canonical_sysroot) == 0)
this->is_in_sysroot_ = true; this->is_in_sysroot_ = true;
} }
free(canonical_name); free(canonical_name);
} }
} }
@ -1406,7 +1411,7 @@ Command_line::Pre_options::Pre_options()
int int
Command_line::process_one_option(int argc, const char** argv, int i, Command_line::process_one_option(int argc, const char** argv, int i,
bool* no_more_options) bool* no_more_options)
{ {
gold_assert(argv[i][0] == '-' && !(*no_more_options)); gold_assert(argv[i][0] == '-' && !(*no_more_options));
@ -1437,7 +1442,7 @@ Command_line::process_one_option(int argc, const char** argv, int i,
{ {
option = parse_short_option(argc, argv, pos_in_argv_i, &arg, &new_i); option = parse_short_option(argc, argv, pos_in_argv_i, &arg, &new_i);
if (!option) if (!option)
break; break;
option->reader->parse_to_value(argv[i], arg, this, &this->options_); option->reader->parse_to_value(argv[i], arg, this, &this->options_);
++pos_in_argv_i; ++pos_in_argv_i;
} }
@ -1459,15 +1464,15 @@ Command_line::process(int argc, const char** argv)
{ {
this->position_options_.copy_from_options(this->options()); this->position_options_.copy_from_options(this->options());
if (no_more_options || argv[i][0] != '-') if (no_more_options || argv[i][0] != '-')
{ {
Input_file_argument file(argv[i], Input_file_argument file(argv[i],
Input_file_argument::INPUT_FILE_TYPE_FILE, Input_file_argument::INPUT_FILE_TYPE_FILE,
"", false, this->position_options_); "", false, this->position_options_);
this->inputs_.add_file(file); this->inputs_.add_file(file);
++i; ++i;
} }
else else
i = process_one_option(argc, argv, i, &no_more_options); i = process_one_option(argc, argv, i, &no_more_options);
} }
if (this->inputs_.in_group()) if (this->inputs_.in_group())

View File

@ -927,6 +927,10 @@ class General_options
N_("Put read-only non-executable sections in their own segment"), N_("Put read-only non-executable sections in their own segment"),
NULL); NULL);
DEFINE_uint64(rosegment_gap, options::TWO_DASHES, '\0', -1U,
N_("Set offset between executable and read-only segments"),
N_("OFFSET"));
DEFINE_string(m, options::EXACTLY_ONE_DASH, 'm', "", DEFINE_string(m, options::EXACTLY_ONE_DASH, 'm', "",
N_("Set GNU linker emulation; obsolete"), N_("EMULATION")); N_("Set GNU linker emulation; obsolete"), N_("EMULATION"));