Implement --whole-archive.
[binutils.git] / gold / options.h
blob3c13deb0b034477306d763ead7aaf8df06dacd8e
1 // options.h -- handle command line options for gold -*- C++ -*-
3 // Command_line
4 // Holds everything we get from the command line.
5 // General_options (from Command_line::options())
6 // Options which are not position dependent.
7 // Input_argument (from Command_line::inputs())
8 // The list of input files, including -l options.
9 // Position_dependent_options (from Input_argument::options())
10 // Position dependent options which apply to this argument.
12 #ifndef GOLD_OPTIONS_H
13 #define GOLD_OPTIONS_H
15 #include <list>
16 #include <string>
17 #include <vector>
19 namespace gold
22 class Command_line;
23 class Input_file_group;
25 namespace options {
27 class Command_line_options;
28 struct One_option;
30 } // End namespace gold::options.
32 // The position independent options which apply to the whole link.
33 // There are a lot of them.
35 class General_options
37 public:
38 General_options();
40 // -I: dynamic linker name.
41 const char*
42 dynamic_linker() const
43 { return this->dynamic_linker_; }
45 // -L: Library search path.
46 typedef std::vector<const char*> Dir_list;
48 const Dir_list&
49 search_path() const
50 { return this->search_path_; }
52 // -o: Output file name.
53 const char*
54 output_file_name() const
55 { return this->output_file_name_; }
57 // -r: Whether we are doing a relocatable link.
58 bool
59 is_relocatable() const
60 { return this->is_relocatable_; }
62 // --rpath: The runtime search path.
63 const Dir_list&
64 rpath() const
65 { return this->rpath_; }
67 // --shared: Whether generating a shared object.
68 bool
69 is_shared() const
70 { return this->is_shared_; }
72 // --static: Whether doing a static link.
73 bool
74 is_static() const
75 { return this->is_static_; }
77 private:
78 // Don't copy this structure.
79 General_options(const General_options&);
80 General_options& operator=(const General_options&);
82 friend class Command_line;
83 friend class options::Command_line_options;
85 void
86 set_dynamic_linker(const char* arg)
87 { this->dynamic_linker_ = arg; }
89 void
90 add_to_search_path(const char* arg)
91 { this->search_path_.push_back(arg); }
93 void
94 set_output_file_name(const char* arg)
95 { this->output_file_name_ = arg; }
97 void
98 set_relocatable()
99 { this->is_relocatable_ = true; }
101 void
102 add_to_rpath(const char* arg)
103 { this->rpath_.push_back(arg); }
105 void
106 set_shared()
107 { this->is_shared_ = true; }
109 void
110 set_static()
111 { this->is_static_ = true; }
113 void
114 ignore(const char*)
117 const char* dynamic_linker_;
118 Dir_list search_path_;
119 const char* output_file_name_;
120 bool is_relocatable_;
121 Dir_list rpath_;
122 bool is_shared_;
123 bool is_static_;
126 // The current state of the position dependent options.
128 class Position_dependent_options
130 public:
131 Position_dependent_options();
133 // -Bstatic: Whether we are searching for a static archive rather
134 // than a shared object.
135 bool
136 do_static_search() const
137 { return this->do_static_search_; }
139 // --as-needed: Whether to add a DT_NEEDED argument only if the
140 // dynamic object is used.
141 bool
142 as_needed() const
143 { return this->as_needed_; }
145 // --whole-archive: Whether to include the entire contents of an
146 // --archive.
147 bool
148 include_whole_archive() const
149 { return this->include_whole_archive_; }
151 void
152 set_static_search()
153 { this->do_static_search_ = true; }
155 void
156 set_dynamic_search()
157 { this->do_static_search_ = false; }
159 void
160 set_as_needed()
161 { this->as_needed_ = true; }
163 void
164 clear_as_needed()
165 { this->as_needed_ = false; }
167 void
168 set_whole_archive()
169 { this->include_whole_archive_ = true; }
171 void
172 clear_whole_archive()
173 { this->include_whole_archive_ = false; }
175 private:
176 bool do_static_search_;
177 bool as_needed_;
178 bool include_whole_archive_;
181 // A single file or library argument from the command line.
183 class Input_file_argument
185 public:
186 Input_file_argument()
187 : name_(), is_lib_(false), options_()
190 Input_file_argument(const char* name, bool is_lib,
191 const Position_dependent_options& options)
192 : name_(name), is_lib_(is_lib), options_(options)
195 const char*
196 name() const
197 { return this->name_.c_str(); }
199 const Position_dependent_options&
200 options() const
201 { return this->options_; }
203 bool
204 is_lib() const
205 { return this->is_lib_; }
207 private:
208 // We use std::string, not const char*, here for convenience when
209 // using script files, so that we do not have to preserve the string
210 // in that case.
211 std::string name_;
212 bool is_lib_;
213 Position_dependent_options options_;
216 // A file or library, or a group, from the command line.
218 class Input_argument
220 public:
221 // Create a file or library argument.
222 explicit Input_argument(Input_file_argument file)
223 : is_file_(true), file_(file), group_(NULL)
226 // Create a group argument.
227 explicit Input_argument(Input_file_group* group)
228 : is_file_(false), group_(group)
231 // Return whether this is a file.
232 bool
233 is_file() const
234 { return this->is_file_; }
236 // Return whether this is a group.
237 bool
238 is_group() const
239 { return !this->is_file_; }
241 // Return the information about the file.
242 const Input_file_argument&
243 file() const
245 gold_assert(this->is_file_);
246 return this->file_;
249 // Return the information about the group.
250 const Input_file_group*
251 group() const
253 gold_assert(!this->is_file_);
254 return this->group_;
257 Input_file_group*
258 group()
260 gold_assert(!this->is_file_);
261 return this->group_;
264 private:
265 bool is_file_;
266 Input_file_argument file_;
267 Input_file_group* group_;
270 // A group from the command line. This is a set of arguments within
271 // --start-group ... --end-group.
273 class Input_file_group
275 public:
276 typedef std::vector<Input_argument> Files;
277 typedef Files::const_iterator const_iterator;
279 Input_file_group()
280 : files_()
283 // Add a file to the end of the group.
284 void
285 add_file(const Input_file_argument& arg)
286 { this->files_.push_back(Input_argument(arg)); }
288 // Iterators to iterate over the group contents.
290 const_iterator
291 begin() const
292 { return this->files_.begin(); }
294 const_iterator
295 end() const
296 { return this->files_.end(); }
298 private:
299 Files files_;
302 // A list of files from the command line or a script.
304 class Input_arguments
306 public:
307 typedef std::vector<Input_argument> Input_argument_list;
308 typedef Input_argument_list::const_iterator const_iterator;
310 Input_arguments()
311 : input_argument_list_(), in_group_(false)
314 // Add a file.
315 void
316 add_file(const Input_file_argument& arg);
318 // Start a group (the --start-group option).
319 void
320 start_group();
322 // End a group (the --end-group option).
323 void
324 end_group();
326 // Return whether we are currently in a group.
327 bool
328 in_group() const
329 { return this->in_group_; }
331 // Iterators to iterate over the list of input files.
333 const_iterator
334 begin() const
335 { return this->input_argument_list_.begin(); }
337 const_iterator
338 end() const
339 { return this->input_argument_list_.end(); }
341 // Return whether the list is empty.
342 bool
343 empty() const
344 { return this->input_argument_list_.empty(); }
346 private:
347 Input_argument_list input_argument_list_;
348 bool in_group_;
351 // All the information read from the command line.
353 class Command_line
355 public:
356 typedef Input_arguments::const_iterator const_iterator;
358 Command_line();
360 // Process the command line options. This will exit with an
361 // appropriate error message if an unrecognized option is seen.
362 void
363 process(int argc, char** argv);
365 // Handle a -l option.
367 process_l_option(int, char**, char*);
369 // Handle a --start-group option.
370 void
371 start_group(const char* arg);
373 // Handle a --end-group option.
374 void
375 end_group(const char* arg);
377 // Get the general options.
378 const General_options&
379 options() const
380 { return this->options_; }
382 // Iterators to iterate over the list of input files.
384 const_iterator
385 begin() const
386 { return this->inputs_.begin(); }
388 const_iterator
389 end() const
390 { return this->inputs_.end(); }
392 private:
393 Command_line(const Command_line&);
394 Command_line& operator=(const Command_line&);
396 // Report usage error.
397 void
398 usage() ATTRIBUTE_NORETURN;
399 void
400 usage(const char* msg, const char* opt) ATTRIBUTE_NORETURN;
401 void
402 usage(const char* msg, char opt) ATTRIBUTE_NORETURN;
404 // Apply a command line option.
405 void
406 apply_option(const gold::options::One_option&, const char*);
408 // Add a file.
409 void
410 add_file(const char* name, bool is_lib);
412 General_options options_;
413 Position_dependent_options position_options_;
414 Input_arguments inputs_;
417 } // End namespace gold.
419 #endif // !defined(GOLD_OPTIONS_H)