* gdb.cp/mb-inline.exp: New.
[deliverable/binutils-gdb.git] / gold / options.h
CommitLineData
bae7f79e
ILT
1// options.h -- handle command line options for gold -*- C++ -*-
2
e5756efb 3// Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
6cb15b7f
ILT
4// Written by Ian Lance Taylor <iant@google.com>.
5
6// This file is part of gold.
7
8// This program is free software; you can redistribute it and/or modify
9// it under the terms of the GNU General Public License as published by
10// the Free Software Foundation; either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21// MA 02110-1301, USA.
22
bae7f79e
ILT
23// Command_line
24// Holds everything we get from the command line.
25// General_options (from Command_line::options())
26// Options which are not position dependent.
27// Input_argument (from Command_line::inputs())
28// The list of input files, including -l options.
29// Position_dependent_options (from Input_argument::options())
30// Position dependent options which apply to this argument.
31
32#ifndef GOLD_OPTIONS_H
33#define GOLD_OPTIONS_H
34
ca3a67a5 35#include <cstdlib>
bae7f79e 36#include <list>
61ba1cf9 37#include <string>
92e059d8 38#include <vector>
bae7f79e 39
3c2fafa5
ILT
40#include "script.h"
41
bae7f79e
ILT
42namespace gold
43{
44
45class Command_line;
ead1e424 46class Input_file_group;
3c2fafa5 47class Position_dependent_options;
bae7f79e 48
c7912668
ILT
49namespace options
50{
bae7f79e
ILT
51
52class Command_line_options;
53struct One_option;
35cdfc9a 54struct One_z_option;
c7912668 55struct One_debug_option;
bae7f79e
ILT
56
57} // End namespace gold::options.
58
ad2d6943
ILT
59// A directory to search. For each directory we record whether it is
60// in the sysroot. We need to know this so that, if a linker script
61// is found within the sysroot, we will apply the sysroot to any files
62// named by that script.
63
64class Search_directory
65{
66 public:
67 // We need a default constructor because we put this in a
68 // std::vector.
69 Search_directory()
70 : name_(NULL), put_in_sysroot_(false), is_in_sysroot_(false)
71 { }
72
73 // This is the usual constructor.
74 Search_directory(const char* name, bool put_in_sysroot)
75 : name_(name), put_in_sysroot_(put_in_sysroot), is_in_sysroot_(false)
15893b88
ILT
76 {
77 if (this->name_.empty())
78 this->name_ = ".";
79 }
ad2d6943
ILT
80
81 // This is called if we have a sysroot. The sysroot is prefixed to
82 // any entries for which put_in_sysroot_ is true. is_in_sysroot_ is
83 // set to true for any enries which are in the sysroot (this will
84 // naturally include any entries for which put_in_sysroot_ is true).
85 // SYSROOT is the sysroot, CANONICAL_SYSROOT is the result of
86 // passing SYSROOT to lrealpath.
87 void
88 add_sysroot(const char* sysroot, const char* canonical_sysroot);
89
90 // Get the directory name.
91 const std::string&
92 name() const
93 { return this->name_; }
94
95 // Return whether this directory is in the sysroot.
96 bool
97 is_in_sysroot() const
98 { return this->is_in_sysroot_; }
99
100 private:
101 std::string name_;
102 bool put_in_sysroot_;
103 bool is_in_sysroot_;
104};
105
bae7f79e
ILT
106// The position independent options which apply to the whole link.
107// There are a lot of them.
108
109class General_options
110{
111 public:
e5756efb 112 General_options(Script_options*);
bae7f79e 113
d391083d
ILT
114 // -e: set entry address.
115 const char*
116 entry() const
e5756efb 117 { return this->script_options_->entry(); }
d391083d 118
a6badf5a
ILT
119 // -E: export dynamic symbols.
120 bool
121 export_dynamic() const
122 { return this->export_dynamic_; }
123
fced7afd
ILT
124 // -h: shared library name.
125 const char*
126 soname() const
127 { return this->soname_; }
128
dbe717ef
ILT
129 // -I: dynamic linker name.
130 const char*
131 dynamic_linker() const
132 { return this->dynamic_linker_; }
133
bae7f79e 134 // -L: Library search path.
ad2d6943 135 typedef std::vector<Search_directory> Dir_list;
bae7f79e
ILT
136
137 const Dir_list&
138 search_path() const
139 { return this->search_path_; }
140
ca3a67a5
ILT
141 // -O: optimization level (0: don't try to optimize output size).
142 int
143 optimization_level() const
144 { return this->optimization_level_; }
145
61ba1cf9
ILT
146 // -o: Output file name.
147 const char*
148 output_file_name() const
149 { return this->output_file_name_; }
150
516cb3d0
ILT
151 // --oformat: Output format.
152
153 enum Output_format
154 {
155 // Ordinary ELF.
156 OUTPUT_FORMAT_ELF,
157 // Straight binary format.
158 OUTPUT_FORMAT_BINARY
159 };
160
161 Output_format
162 output_format() const
163 { return this->output_format_; }
164
bae7f79e
ILT
165 // -r: Whether we are doing a relocatable link.
166 bool
167 is_relocatable() const
168 { return this->is_relocatable_; }
169
9e2dcb77
ILT
170 // -s: Strip all symbols.
171 bool
172 strip_all() const
173 { return this->strip_ == STRIP_ALL; }
174
175 // -S: Strip debugging information.
176 bool
177 strip_debug() const
178 { return this->strip_ == STRIP_ALL || this->strip_ == STRIP_DEBUG; }
179
9a0910c3
ILT
180 // --strip-debug-gdb: strip only debugging information that's not
181 // used by gdb (at least, for gdb versions <= 6.7).
02d2ba74
ILT
182 bool
183 strip_debug_gdb() const
184 { return this->strip_debug() || this->strip_ == STRIP_DEBUG_UNUSED_BY_GDB; }
185
e2827e5f
ILT
186 // --allow-shlib-undefined: do not warn about unresolved symbols in
187 // --shared libraries.
188 bool
189 allow_shlib_undefined() const
190 { return this->allow_shlib_undefined_; }
191
51b08ebe
ILT
192 // -Bsymbolic: bind defined symbols locally.
193 bool
194 symbolic() const
195 { return this->symbolic_; }
196
9a0910c3
ILT
197 // --compress-debug-sections: compress .debug_* sections in the
198 // output file using the given compression method. This is useful
199 // when the tools (such as gdb) support compressed sections.
200 bool
201 compress_debug_sections() const
202 { return this->compress_debug_sections_ != NO_COMPRESSION; }
203
204 bool
205 zlib_compress_debug_sections() const
206 { return this->compress_debug_sections_ == ZLIB_COMPRESSION; }
207
a2b1aa12
ILT
208 // --demangle: demangle C++ symbols in our log messages.
209 bool
210 demangle() const
211 { return this->demangle_; }
212
a55ce7fe
ILT
213 // --detect-odr-violations: Whether to search for One Defn Rule violations.
214 bool
215 detect_odr_violations() const
216 { return this->detect_odr_violations_; }
217
7da52175
ILT
218 // --eh-frame-hdr: Whether to generate an exception frame header.
219 bool
220 create_eh_frame_hdr() const
221 { return this->create_eh_frame_hdr_; }
222
41f542e7
ILT
223 // --rpath: The runtime search path.
224 const Dir_list&
225 rpath() const
226 { return this->rpath_; }
227
15b3cfae
ILT
228 // --rpath-link: The link time search patch for shared libraries.
229 const Dir_list&
230 rpath_link() const
231 { return this->rpath_link_; }
232
92e059d8
ILT
233 // --shared: Whether generating a shared object.
234 bool
235 is_shared() const
236 { return this->is_shared_; }
237
bae7f79e
ILT
238 // --static: Whether doing a static link.
239 bool
240 is_static() const
241 { return this->is_static_; }
242
0c5e9c22 243 // --stats: Print resource usage statistics.
e44fcf3b
ILT
244 bool
245 print_stats() const
246 { return this->print_stats_; }
247
ad2d6943
ILT
248 // --sysroot: The system root of a cross-linker.
249 const std::string&
250 sysroot() const
251 { return this->sysroot_; }
252
09124467
ILT
253 // --version-script: The version script to apply if --shared is true.
254 const Version_script_info&
255 version_script() const
256 { return *this->script_options_->version_script_info(); }
257
0c5e9c22
ILT
258 // -Ttext: The address of the .text section
259 uint64_t
260 text_segment_address() const
261 { return this->text_segment_address_; }
262
263 // Whether -Ttext was used.
264 bool
265 user_set_text_segment_address() const
266 { return this->text_segment_address_ != -1U; }
267
fe9a4c12
ILT
268 // --threads: Whether to use threads.
269 bool
270 threads() const
271 { return this->threads_; }
272
273 // --thread-count-initial: Threads to use in initial pass.
274 int
275 thread_count_initial() const
276 { return this->thread_count_initial_; }
277
278 // --thread-count-middle: Threads to use in middle pass.
279 int
280 thread_count_middle() const
281 { return this->thread_count_middle_; }
282
283 // --thread-count-final: Threads to use in final pass.
284 int
285 thread_count_final() const
286 { return this->thread_count_final_; }
287
35cdfc9a
ILT
288 // -z execstack, -z noexecstack
289 bool
290 is_execstack_set() const
291 { return this->execstack_ != EXECSTACK_FROM_INPUT; }
292
293 bool
294 is_stack_executable() const
295 { return this->execstack_ == EXECSTACK_YES; }
296
c7912668
ILT
297 // --debug
298 unsigned int
299 debug() const
300 { return this->debug_; }
301
e5756efb
ILT
302 // Return the options which may be set from a linker script.
303 Script_options*
304 script_options()
305 { return this->script_options_; }
306
307 const Script_options*
308 script_options() const
309 { return this->script_options_; }
310
bae7f79e 311 private:
dbe717ef
ILT
312 // Don't copy this structure.
313 General_options(const General_options&);
314 General_options& operator=(const General_options&);
315
bae7f79e
ILT
316 friend class Command_line;
317 friend class options::Command_line_options;
318
9e2dcb77
ILT
319 // Which symbols to strip.
320 enum Strip
321 {
322 // Don't strip any symbols.
323 STRIP_NONE,
324 // Strip all symbols.
325 STRIP_ALL,
326 // Strip debugging information.
02d2ba74
ILT
327 STRIP_DEBUG,
328 // Strip debugging information that's not used by gdb (at least <= 6.7)
329 STRIP_DEBUG_UNUSED_BY_GDB
9e2dcb77
ILT
330 };
331
35cdfc9a
ILT
332 // Whether to mark the stack as executable.
333 enum Execstack
334 {
335 // Not set on command line.
336 EXECSTACK_FROM_INPUT,
337 // Mark the stack as executable.
338 EXECSTACK_YES,
339 // Mark the stack as not executable.
340 EXECSTACK_NO
341 };
342
9a0910c3
ILT
343 // What compression method to use
344 enum CompressionMethod
345 {
346 NO_COMPRESSION,
347 ZLIB_COMPRESSION,
348 };
349
d391083d
ILT
350 void
351 set_entry(const char* arg)
e5756efb 352 { this->script_options_->set_entry(arg, strlen(arg)); }
d391083d 353
a6badf5a
ILT
354 void
355 set_export_dynamic()
356 { this->export_dynamic_ = true; }
357
fced7afd
ILT
358 void
359 set_soname(const char* arg)
360 { this->soname_ = arg; }
361
dbe717ef
ILT
362 void
363 set_dynamic_linker(const char* arg)
364 { this->dynamic_linker_ = arg; }
365
bae7f79e
ILT
366 void
367 add_to_search_path(const char* arg)
ad2d6943
ILT
368 { this->search_path_.push_back(Search_directory(arg, false)); }
369
370 void
371 add_to_search_path_with_sysroot(const char* arg)
372 { this->search_path_.push_back(Search_directory(arg, true)); }
bae7f79e 373
ca3a67a5
ILT
374 void
375 set_optimization_level(const char* arg)
3ae7da37
ILT
376 {
377 char* endptr;
378 this->optimization_level_ = strtol(arg, &endptr, 0);
379 if (*endptr != '\0' || this->optimization_level_ < 0)
380 gold_fatal(_("invalid optimization level: %s"), arg);
381 }
ca3a67a5 382
61ba1cf9
ILT
383 void
384 set_output_file_name(const char* arg)
385 { this->output_file_name_ = arg; }
386
516cb3d0
ILT
387 void
388 set_output_format(const char*);
389
bae7f79e
ILT
390 void
391 set_relocatable()
392 { this->is_relocatable_ = true; }
393
9e2dcb77
ILT
394 void
395 set_strip_all()
396 { this->strip_ = STRIP_ALL; }
397
46738c9a
ILT
398 // Note: normalize_options() depends on the fact that this turns off
399 // STRIP_ALL if it were already set.
9e2dcb77
ILT
400 void
401 set_strip_debug()
402 { this->strip_ = STRIP_DEBUG; }
403
02d2ba74
ILT
404 void
405 set_strip_debug_gdb()
406 { this->strip_ = STRIP_DEBUG_UNUSED_BY_GDB; }
407
e2827e5f
ILT
408 void
409 set_allow_shlib_undefined()
410 { this->allow_shlib_undefined_ = true; }
411
412 void
413 set_no_allow_shlib_undefined()
414 { this->allow_shlib_undefined_ = false; }
415
51b08ebe
ILT
416 void
417 set_symbolic()
418 { this->symbolic_ = true; }
419
bc2c67ff 420 void set_compress_debug_sections(const char* arg)
9a0910c3
ILT
421 {
422 if (strcmp(arg, "none") == 0)
423 this->compress_debug_sections_ = NO_COMPRESSION;
424#ifdef HAVE_ZLIB_H
425 else if (strcmp(arg, "zlib") == 0)
426 this->compress_debug_sections_ = ZLIB_COMPRESSION;
427#endif
428 else
bc2c67ff 429 gold_fatal(_("unsupported argument to --compress-debug-sections: %s"),
9a0910c3
ILT
430 arg);
431 }
432
e5756efb
ILT
433 void
434 define_symbol(const char* arg);
435
a2b1aa12
ILT
436 void
437 set_demangle()
438 { this->demangle_ = true; }
439
440 void
441 clear_demangle()
442 { this->demangle_ = false; }
443
a55ce7fe
ILT
444 void
445 set_detect_odr_violations()
446 { this->detect_odr_violations_ = true; }
447
7da52175 448 void
192f9b85 449 set_create_eh_frame_hdr()
7da52175
ILT
450 { this->create_eh_frame_hdr_ = true; }
451
41f542e7
ILT
452 void
453 add_to_rpath(const char* arg)
ad2d6943 454 { this->rpath_.push_back(Search_directory(arg, false)); }
41f542e7 455
15b3cfae
ILT
456 void
457 add_to_rpath_link(const char* arg)
ad2d6943 458 { this->rpath_link_.push_back(Search_directory(arg, false)); }
15b3cfae 459
92e059d8
ILT
460 void
461 set_shared()
462 { this->is_shared_ = true; }
463
bae7f79e
ILT
464 void
465 set_static()
466 { this->is_static_ = true; }
467
e44fcf3b
ILT
468 void
469 set_stats()
470 { this->print_stats_ = true; }
471
ad2d6943
ILT
472 void
473 set_sysroot(const char* arg)
474 { this->sysroot_ = arg; }
475
0c5e9c22
ILT
476 void
477 set_text_segment_address(const char* arg)
478 {
479 char* endptr;
480 this->text_segment_address_ = strtoull(arg, &endptr, 0);
481 if (*endptr != '\0'
482 || this->text_segment_address_ == -1U)
3ae7da37 483 gold_fatal(_("invalid argument to -Ttext: %s"), arg);
0c5e9c22
ILT
484 }
485
fe9a4c12
ILT
486 int
487 parse_thread_count(const char* arg)
488 {
489 char* endptr;
3ae7da37 490 const int count = strtol(arg, &endptr, 0);
fe9a4c12 491 if (*endptr != '\0' || count < 0)
3ae7da37 492 gold_fatal(_("invalid thread count: %s"), arg);
fe9a4c12
ILT
493 return count;
494 }
495
496 void
497 set_threads()
3ae7da37
ILT
498 {
499#ifndef ENABLE_THREADS
500 gold_fatal(_("--threads not supported"));
501#endif
502 this->threads_ = true;
503 }
fe9a4c12
ILT
504
505 void
506 clear_threads()
507 { this->threads_ = false; }
508
509 void
510 set_thread_count(const char* arg)
511 {
512 int count = this->parse_thread_count(arg);
513 this->thread_count_initial_ = count;
514 this->thread_count_middle_ = count;
515 this->thread_count_final_ = count;
516 }
517
518 void
519 set_thread_count_initial(const char* arg)
520 { this->thread_count_initial_ = this->parse_thread_count(arg); }
521
522 void
523 set_thread_count_middle(const char* arg)
460c00b5 524 { this->thread_count_middle_ = this->parse_thread_count(arg); }
fe9a4c12
ILT
525
526 void
527 set_thread_count_final(const char* arg)
460c00b5 528 { this->thread_count_final_ = this->parse_thread_count(arg); }
fe9a4c12 529
652ec9bd
ILT
530 void
531 ignore(const char*)
532 { }
533
35cdfc9a
ILT
534 void
535 set_execstack()
536 { this->execstack_ = EXECSTACK_YES; }
537
538 void
539 set_noexecstack()
540 { this->execstack_ = EXECSTACK_NO; }
541
c7912668
ILT
542 void
543 set_debug(unsigned int flags)
544 { this->debug_ = flags; }
545
35cdfc9a
ILT
546 // Handle the -z option.
547 void
548 handle_z_option(const char*);
549
c7912668
ILT
550 // Handle the --debug option.
551 void
552 handle_debug_option(const char*);
553
ad2d6943
ILT
554 // Apply any sysroot to the directory lists.
555 void
556 add_sysroot();
557
a6badf5a 558 bool export_dynamic_;
fced7afd 559 const char* soname_;
dbe717ef 560 const char* dynamic_linker_;
bae7f79e 561 Dir_list search_path_;
ca3a67a5 562 int optimization_level_;
61ba1cf9 563 const char* output_file_name_;
516cb3d0 564 Output_format output_format_;
bae7f79e 565 bool is_relocatable_;
9e2dcb77 566 Strip strip_;
e2827e5f 567 bool allow_shlib_undefined_;
51b08ebe 568 bool symbolic_;
9a0910c3 569 CompressionMethod compress_debug_sections_;
a2b1aa12 570 bool demangle_;
a55ce7fe 571 bool detect_odr_violations_;
7da52175 572 bool create_eh_frame_hdr_;
41f542e7 573 Dir_list rpath_;
15b3cfae 574 Dir_list rpath_link_;
92e059d8 575 bool is_shared_;
bae7f79e 576 bool is_static_;
e44fcf3b 577 bool print_stats_;
ad2d6943 578 std::string sysroot_;
0c5e9c22 579 uint64_t text_segment_address_;
fe9a4c12
ILT
580 bool threads_;
581 int thread_count_initial_;
582 int thread_count_middle_;
583 int thread_count_final_;
35cdfc9a 584 Execstack execstack_;
c7912668 585 unsigned int debug_;
e5756efb
ILT
586 // Some options can also be set from linker scripts. Those are
587 // stored here.
588 Script_options* script_options_;
bae7f79e
ILT
589};
590
591// The current state of the position dependent options.
592
593class Position_dependent_options
594{
595 public:
596 Position_dependent_options();
597
61611222
ILT
598 // -Bdynamic/-Bstatic: Whether we are searching for a static archive
599 // -rather than a shared object.
bae7f79e 600 bool
dbe717ef 601 do_static_search() const
bae7f79e
ILT
602 { return this->do_static_search_; }
603
dbe717ef
ILT
604 // --as-needed: Whether to add a DT_NEEDED argument only if the
605 // dynamic object is used.
606 bool
607 as_needed() const
608 { return this->as_needed_; }
bae7f79e 609
4973341a
ILT
610 // --whole-archive: Whether to include the entire contents of an
611 // --archive.
612 bool
613 include_whole_archive() const
614 { return this->include_whole_archive_; }
615
bae7f79e
ILT
616 void
617 set_static_search()
618 { this->do_static_search_ = true; }
619
620 void
621 set_dynamic_search()
622 { this->do_static_search_ = false; }
623
dbe717ef
ILT
624 void
625 set_as_needed()
626 { this->as_needed_ = true; }
627
628 void
629 clear_as_needed()
630 { this->as_needed_ = false; }
631
4973341a
ILT
632 void
633 set_whole_archive()
634 { this->include_whole_archive_ = true; }
635
636 void
637 clear_whole_archive()
638 { this->include_whole_archive_ = false; }
639
dbe717ef 640 private:
bae7f79e 641 bool do_static_search_;
dbe717ef 642 bool as_needed_;
4973341a 643 bool include_whole_archive_;
bae7f79e
ILT
644};
645
646// A single file or library argument from the command line.
647
ead1e424 648class Input_file_argument
bae7f79e
ILT
649{
650 public:
51dee2fe
ILT
651 // name: file name or library name
652 // is_lib: true if name is a library name: that is, emits the leading
653 // "lib" and trailing ".so"/".a" from the name
654 // extra_search_path: an extra directory to look for the file, prior
655 // to checking the normal library search path. If this is "",
656 // then no extra directory is added.
88dd47ac 657 // just_symbols: whether this file only defines symbols.
51dee2fe 658 // options: The position dependent options at this point in the
ad2d6943 659 // command line, such as --whole-archive.
ead1e424 660 Input_file_argument()
88dd47ac
ILT
661 : name_(), is_lib_(false), extra_search_path_(""), just_symbols_(false),
662 options_()
ead1e424
ILT
663 { }
664
665 Input_file_argument(const char* name, bool is_lib,
51dee2fe 666 const char* extra_search_path,
88dd47ac 667 bool just_symbols,
ead1e424 668 const Position_dependent_options& options)
51dee2fe 669 : name_(name), is_lib_(is_lib), extra_search_path_(extra_search_path),
88dd47ac 670 just_symbols_(just_symbols), options_(options)
bae7f79e
ILT
671 { }
672
673 const char*
674 name() const
dbe717ef 675 { return this->name_.c_str(); }
bae7f79e
ILT
676
677 const Position_dependent_options&
678 options() const
679 { return this->options_; }
680
681 bool
682 is_lib() const
61ba1cf9 683 { return this->is_lib_; }
bae7f79e 684
51dee2fe
ILT
685 const char*
686 extra_search_path() const
687 {
688 return (this->extra_search_path_.empty()
689 ? NULL
690 : this->extra_search_path_.c_str());
691 }
692
88dd47ac
ILT
693 // Return whether we should only read symbols from this file.
694 bool
695 just_symbols() const
696 { return this->just_symbols_; }
697
51dee2fe
ILT
698 // Return whether this file may require a search using the -L
699 // options.
700 bool
701 may_need_search() const
702 { return this->is_lib_ || !this->extra_search_path_.empty(); }
703
bae7f79e 704 private:
dbe717ef
ILT
705 // We use std::string, not const char*, here for convenience when
706 // using script files, so that we do not have to preserve the string
707 // in that case.
708 std::string name_;
61ba1cf9 709 bool is_lib_;
51dee2fe 710 std::string extra_search_path_;
88dd47ac 711 bool just_symbols_;
bae7f79e
ILT
712 Position_dependent_options options_;
713};
714
ead1e424
ILT
715// A file or library, or a group, from the command line.
716
717class Input_argument
718{
719 public:
720 // Create a file or library argument.
721 explicit Input_argument(Input_file_argument file)
722 : is_file_(true), file_(file), group_(NULL)
723 { }
724
725 // Create a group argument.
726 explicit Input_argument(Input_file_group* group)
727 : is_file_(false), group_(group)
728 { }
729
730 // Return whether this is a file.
731 bool
732 is_file() const
733 { return this->is_file_; }
734
735 // Return whether this is a group.
736 bool
737 is_group() const
738 { return !this->is_file_; }
739
740 // Return the information about the file.
741 const Input_file_argument&
742 file() const
743 {
a3ad94ed 744 gold_assert(this->is_file_);
ead1e424
ILT
745 return this->file_;
746 }
747
748 // Return the information about the group.
749 const Input_file_group*
750 group() const
751 {
a3ad94ed 752 gold_assert(!this->is_file_);
ead1e424
ILT
753 return this->group_;
754 }
755
756 Input_file_group*
757 group()
758 {
a3ad94ed 759 gold_assert(!this->is_file_);
ead1e424
ILT
760 return this->group_;
761 }
762
763 private:
764 bool is_file_;
765 Input_file_argument file_;
766 Input_file_group* group_;
767};
768
769// A group from the command line. This is a set of arguments within
770// --start-group ... --end-group.
771
772class Input_file_group
92e059d8 773{
ead1e424
ILT
774 public:
775 typedef std::vector<Input_argument> Files;
776 typedef Files::const_iterator const_iterator;
777
778 Input_file_group()
779 : files_()
780 { }
781
782 // Add a file to the end of the group.
783 void
784 add_file(const Input_file_argument& arg)
785 { this->files_.push_back(Input_argument(arg)); }
786
787 // Iterators to iterate over the group contents.
788
789 const_iterator
790 begin() const
791 { return this->files_.begin(); }
792
793 const_iterator
794 end() const
795 { return this->files_.end(); }
796
797 private:
798 Files files_;
92e059d8
ILT
799};
800
dbe717ef
ILT
801// A list of files from the command line or a script.
802
803class Input_arguments
804{
805 public:
806 typedef std::vector<Input_argument> Input_argument_list;
807 typedef Input_argument_list::const_iterator const_iterator;
808
809 Input_arguments()
810 : input_argument_list_(), in_group_(false)
811 { }
812
813 // Add a file.
814 void
815 add_file(const Input_file_argument& arg);
816
817 // Start a group (the --start-group option).
818 void
819 start_group();
820
821 // End a group (the --end-group option).
822 void
823 end_group();
824
825 // Return whether we are currently in a group.
826 bool
827 in_group() const
828 { return this->in_group_; }
829
fe9a4c12
ILT
830 // The number of entries in the list.
831 int
832 size() const
833 { return this->input_argument_list_.size(); }
834
dbe717ef
ILT
835 // Iterators to iterate over the list of input files.
836
837 const_iterator
838 begin() const
839 { return this->input_argument_list_.begin(); }
840
841 const_iterator
842 end() const
843 { return this->input_argument_list_.end(); }
844
845 // Return whether the list is empty.
846 bool
847 empty() const
848 { return this->input_argument_list_.empty(); }
849
850 private:
851 Input_argument_list input_argument_list_;
852 bool in_group_;
853};
854
bae7f79e
ILT
855// All the information read from the command line.
856
857class Command_line
858{
859 public:
ead1e424
ILT
860 typedef Input_arguments::const_iterator const_iterator;
861
e5756efb 862 Command_line(Script_options*);
bae7f79e
ILT
863
864 // Process the command line options. This will exit with an
865 // appropriate error message if an unrecognized option is seen.
866 void
867 process(int argc, char** argv);
868
a0451b38
ILT
869 // Process one command-line option. This takes the index of argv to
870 // process, and returns the index for the next option.
871 int
872 process_one_option(int argc, char** argv, int i, bool* no_more_options);
873
61ba1cf9
ILT
874 // Handle a -l option.
875 int
3c2fafa5 876 process_l_option(int, char**, char*, bool);
61ba1cf9 877
88dd47ac
ILT
878 // Handle a -R option when it means --rpath.
879 void
880 add_to_rpath(const char* arg)
881 { this->options_.add_to_rpath(arg); }
882
883 // Add a file for which we just read the symbols.
884 void
885 add_just_symbols_file(const char* arg)
886 {
887 this->inputs_.add_file(Input_file_argument(arg, false, "", true,
888 this->position_options_));
889 }
890
ead1e424
ILT
891 // Handle a --start-group option.
892 void
893 start_group(const char* arg);
894
895 // Handle a --end-group option.
896 void
897 end_group(const char* arg);
898
3c2fafa5
ILT
899 // Get an option argument--a helper function for special processing.
900 const char*
901 get_special_argument(const char* longname, int argc, char** argv,
902 const char* arg, bool long_option,
903 int *pret);
904
61ba1cf9 905 // Get the general options.
bae7f79e
ILT
906 const General_options&
907 options() const
908 { return this->options_; }
909
3c2fafa5
ILT
910 // Get the position dependent options.
911 const Position_dependent_options&
912 position_dependent_options() const
913 { return this->position_options_; }
914
e5756efb
ILT
915 // Get the options which may be set from a linker script.
916 Script_options*
917 script_options()
918 { return this->options_.script_options(); }
919
920 const Script_options*
921 script_options() const
922 { return this->options_.script_options(); }
923
fe9a4c12
ILT
924 // The number of input files.
925 int
926 number_of_input_files() const
927 { return this->inputs_.size(); }
928
ead1e424
ILT
929 // Iterators to iterate over the list of input files.
930
931 const_iterator
932 begin() const
933 { return this->inputs_.begin(); }
934
935 const_iterator
936 end() const
937 { return this->inputs_.end(); }
bae7f79e
ILT
938
939 private:
ead1e424
ILT
940 Command_line(const Command_line&);
941 Command_line& operator=(const Command_line&);
942
943 // Report usage error.
944 void
945 usage() ATTRIBUTE_NORETURN;
946 void
947 usage(const char* msg, const char* opt) ATTRIBUTE_NORETURN;
948 void
949 usage(const char* msg, char opt) ATTRIBUTE_NORETURN;
950
951 // Apply a command line option.
952 void
953 apply_option(const gold::options::One_option&, const char*);
954
955 // Add a file.
956 void
957 add_file(const char* name, bool is_lib);
bae7f79e 958
46738c9a
ILT
959 // Examine the result of processing the command-line, and verify
960 // the flags do not contradict each other or are otherwise illegal.
961 void
962 normalize_options();
963
bae7f79e
ILT
964 General_options options_;
965 Position_dependent_options position_options_;
ead1e424 966 Input_arguments inputs_;
bae7f79e
ILT
967};
968
969} // End namespace gold.
970
971#endif // !defined(GOLD_OPTIONS_H)
This page took 0.124742 seconds and 4 git commands to generate.