From Craig Silverstein: Add support for --demangle.
[platform/upstream/binutils.git] / gold / parameters.h
1 // parameters.h -- general parameters for a link using gold  -*- C++ -*-
2
3 // Copyright 2006, 2007 Free Software Foundation, Inc.
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
23 #ifndef GOLD_PARAMETERS_H
24 #define GOLD_PARAMETERS_H
25
26 namespace gold
27 {
28
29 class General_options;
30 class Errors;
31
32 // Here we define the Parameters class which simply holds simple
33 // general parameters which apply to the entire link.  We use a global
34 // variable for this.  This is in contrast to the General_options
35 // class, which holds the complete state of position independent
36 // command line options.  The hope is that Parameters will stay fairly
37 // simple, so that if this turns into a library it will be clear how
38 // these parameters should be set.
39
40 class Parameters
41 {
42  public:
43   Parameters(Errors*);
44
45   // Return the error object.
46   Errors*
47   errors() const
48   { return this->errors_; }
49
50   // Return the output file name.
51   const char*
52   output_file_name() const
53   {
54     gold_assert(this->options_valid_);
55     return this->output_file_name_;
56   }
57
58   // Whether we are generating a regular executable.
59   bool
60   output_is_executable() const
61   {
62     gold_assert(this->output_file_type_ != OUTPUT_INVALID);
63     return this->output_file_type_ == OUTPUT_EXECUTABLE;
64   }
65
66   // Whether we are generating a shared library.
67   bool
68   output_is_shared() const
69   {
70     gold_assert(this->output_file_type_ != OUTPUT_INVALID);
71     return this->output_file_type_ == OUTPUT_SHARED;
72   }
73
74   // Whether we are generating an object file.
75   bool
76   output_is_object() const
77   {
78     gold_assert(this->output_file_type_ != OUTPUT_INVALID);
79     return this->output_file_type_ == OUTPUT_OBJECT;
80   }
81
82   // Whether we are generating position-independent output.
83   // This is the case when generating either a shared library
84   // or a regular executable with the --pic-executable option.
85   // FIXME: support --pic-executable
86   bool
87   output_is_position_independent() const
88   { return output_is_shared(); }
89
90   // The target system root directory.  This is NULL if there isn't
91   // one.
92   const std::string&
93   sysroot() const
94   {
95     gold_assert(this->options_valid_);
96     return this->sysroot_;
97   }
98
99   // Whether to strip all symbols.
100   bool
101   strip_all() const
102   {
103     gold_assert(this->strip_ != STRIP_INVALID);
104     return this->strip_ == STRIP_ALL;
105   }
106
107   // Whether to strip debugging information.
108   bool
109   strip_debug() const
110   {
111     gold_assert(this->strip_ != STRIP_INVALID);
112     return this->strip_ == STRIP_ALL || this->strip_ == STRIP_DEBUG;
113   }
114
115   // Whether to permit unresolved references from shared libraries.
116   bool
117   allow_shlib_undefined() const
118   {
119     gold_assert(this->options_valid_);
120     return this->allow_shlib_undefined_;
121   }
122
123   // Whether we are doing a symbolic link, in which all defined
124   // symbols are bound locally.
125   bool
126   symbolic() const
127   {
128     gold_assert(this->options_valid_);
129     return this->symbolic_;
130   }
131
132   // Whether we should demangle C++ symbols in our log messages.
133   bool
134   demangle() const
135   { return this->demangle_; }
136
137   // Whether we should try to detect violations of the One Definition Rule.
138   bool
139   detect_odr_violations() const
140   {
141     gold_assert(this->options_valid_);
142     return this->detect_odr_violations_;
143   }
144
145   // The general linker optimization level.
146   int
147   optimization_level() const
148   {
149     gold_assert(this->options_valid_);
150     return this->optimization_level_;
151   }
152
153   // Whether the -E/--export-dynamic flag is set.
154   bool
155   export_dynamic() const
156   {
157     gold_assert(this->options_valid_);
158     return this->export_dynamic_;
159   }
160
161   // Whether we are doing a static link--a link in which none of the
162   // input files are shared libraries.  This is only known after we
163   // have seen all the input files.
164   bool
165   doing_static_link() const
166   {
167     gold_assert(this->is_doing_static_link_valid_);
168     return this->doing_static_link_;
169   }
170
171   // The size of the output file we are generating.  This should
172   // return 32 or 64.
173   int
174   get_size() const
175   {
176     gold_assert(this->is_size_and_endian_valid_);
177     return this->size_;
178   }
179
180   // Whether the output is big endian.
181   bool
182   is_big_endian() const
183   {
184     gold_assert(this->is_size_and_endian_valid_);
185     return this->is_big_endian_;
186   }
187
188   // Set values recorded from options.
189   void
190   set_from_options(const General_options*);
191
192   // Set whether we are doing a static link.
193   void
194   set_doing_static_link(bool doing_static_link);
195
196   // Set the size and endianness.
197   void
198   set_size_and_endianness(int size, bool is_big_endian);
199
200  private:
201   // The types of output files.
202   enum Output_file_type
203     {
204       // Uninitialized.
205       OUTPUT_INVALID,
206       // Generating executable.
207       OUTPUT_EXECUTABLE,
208       // Generating shared library.
209       OUTPUT_SHARED,
210       // Generating object file.
211       OUTPUT_OBJECT
212     };
213
214   // Which symbols to strip.
215   enum Strip
216   {
217     // Uninitialize.
218     STRIP_INVALID,
219     // Don't strip any symbols.
220     STRIP_NONE,
221     // Strip all symbols.
222     STRIP_ALL,
223     // Strip debugging information.
224     STRIP_DEBUG
225   };
226
227   // A pointer to the error handling object.
228   Errors* errors_;
229
230   // Whether the fields set from the options are valid.
231   bool options_valid_;
232   // The output file name.
233   const char* output_file_name_;
234   // The type of the output file.
235   Output_file_type output_file_type_;
236   // The target system root directory.
237   std::string sysroot_;
238   // Which symbols to strip.
239   Strip strip_;
240   // Whether to allow undefined references from shared libraries.
241   bool allow_shlib_undefined_;
242   // Whether we are doing a symbolic link.
243   bool symbolic_;
244   // Whether we should demangle C++ symbols in our log messages.
245   bool demangle_;
246   // Whether we try to detect One Definition Rule violations.
247   bool detect_odr_violations_;
248   // The optimization level.
249   int optimization_level_;
250   // Whether the -E/--export-dynamic flag is set.
251   bool export_dynamic_;
252
253   // Whether the doing_static_link_ field is valid.
254   bool is_doing_static_link_valid_;
255   // Whether we are doing a static link.
256   bool doing_static_link_;
257   // Whether the size_ and is_big_endian_ fields are valid.
258   bool is_size_and_endian_valid_;
259   // The size of the output file--32 or 64.
260   int size_;
261   // Whether the output file is big endian.
262   bool is_big_endian_;
263 };
264
265 // This is a global variable.
266 extern const Parameters* parameters;
267
268 // Initialize the global variable.
269 extern void initialize_parameters(Errors*);
270
271 // Set the options.
272 extern void set_parameters_from_options(const General_options*);
273
274 // Set the size and endianness of the global parameters variable.
275 extern void set_parameters_size_and_endianness(int size, bool is_big_endian);
276
277 // Set whether we are doing a static link.
278 extern void set_parameters_doing_static_link(bool doing_static_link);
279
280 } // End namespace gold.
281
282 #endif // !defined(GOLD_PARAMETERS_H)