diff options
author | Ian Lance Taylor <iant@google.com> | 2007-10-17 06:24:50 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-10-17 06:24:50 +0000 |
commit | fe9a4c1201a3e0867cbc0324c55cfe90dce9415b (patch) | |
tree | 1cfc4aa11a0b71f31000b3fb7abecc367dd52180 /gold/options.h | |
parent | ae326da8ebcb14de70678bb726732a1c8923d63c (diff) | |
download | gdb-fe9a4c1201a3e0867cbc0324c55cfe90dce9415b.zip gdb-fe9a4c1201a3e0867cbc0324c55cfe90dce9415b.tar.gz gdb-fe9a4c1201a3e0867cbc0324c55cfe90dce9415b.tar.bz2 |
Add infrastructure for threading support.
Diffstat (limited to 'gold/options.h')
-rw-r--r-- | gold/options.h | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/gold/options.h b/gold/options.h index d32dd4a..fd43de3 100644 --- a/gold/options.h +++ b/gold/options.h @@ -189,6 +189,26 @@ class General_options user_set_text_segment_address() const { return this->text_segment_address_ != -1U; } + // --threads: Whether to use threads. + bool + threads() const + { return this->threads_; } + + // --thread-count-initial: Threads to use in initial pass. + int + thread_count_initial() const + { return this->thread_count_initial_; } + + // --thread-count-middle: Threads to use in middle pass. + int + thread_count_middle() const + { return this->thread_count_middle_; } + + // --thread-count-final: Threads to use in final pass. + int + thread_count_final() const + { return this->thread_count_final_; } + private: // Don't copy this structure. General_options(const General_options&); @@ -288,6 +308,49 @@ class General_options } } + int + parse_thread_count(const char* arg) + { + char* endptr; + int count = strtol(arg, &endptr, 0); + if (*endptr != '\0' || count < 0) + { + fprintf(stderr, _("%s: invalid thread count: %s\n"), + program_name, arg); + ::exit(1); + } + return count; + } + + void + set_threads() + { this->threads_ = true; } + + void + clear_threads() + { this->threads_ = false; } + + void + set_thread_count(const char* arg) + { + int count = this->parse_thread_count(arg); + this->thread_count_initial_ = count; + this->thread_count_middle_ = count; + this->thread_count_final_ = count; + } + + void + set_thread_count_initial(const char* arg) + { this->thread_count_initial_ = this->parse_thread_count(arg); } + + void + set_thread_count_middle(const char* arg) + { this->thread_count_initial_ = this->parse_thread_count(arg); } + + void + set_thread_count_final(const char* arg) + { this->thread_count_initial_ = this->parse_thread_count(arg); } + void ignore(const char*) { } @@ -311,6 +374,10 @@ class General_options bool print_stats_; std::string sysroot_; uint64_t text_segment_address_; + bool threads_; + int thread_count_initial_; + int thread_count_middle_; + int thread_count_final_; }; // The current state of the position dependent options. @@ -543,6 +610,11 @@ class Input_arguments in_group() const { return this->in_group_; } + // The number of entries in the list. + int + size() const + { return this->input_argument_list_.size(); } + // Iterators to iterate over the list of input files. const_iterator @@ -594,6 +666,11 @@ class Command_line options() const { return this->options_; } + // The number of input files. + int + number_of_input_files() const + { return this->inputs_.size(); } + // Iterators to iterate over the list of input files. const_iterator |