*** empty log message ***
[deliverable/binutils-gdb.git] / gold / gold.h
CommitLineData
bae7f79e
ILT
1// gold.h -- general definitions for gold -*- C++ -*-
2
6cb15b7f
ILT
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
bae7f79e 23#ifndef GOLD_GOLD_H
6724bacc 24#define GOLD_GOLD_H
bae7f79e
ILT
25
26#include "config.h"
27#include "ansidecl.h"
28
29#ifdef ENABLE_NLS
30# include <libintl.h>
31# define _(String) gettext (String)
32# ifdef gettext_noop
33# define N_(String) gettext_noop (String)
34# else
35# define N_(String) (String)
36# endif
37#else
38# define gettext(Msgid) (Msgid)
39# define dgettext(Domainname, Msgid) (Msgid)
40# define dcgettext(Domainname, Msgid, Category) (Msgid)
41# define textdomain(Domainname) while (0) /* nothing */
42# define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
43# define _(String) (String)
44# define N_(String) (String)
45#endif
46
54dc6425
ILT
47// Figure out how to get a hash set and a hash map.
48
d288e464 49#if defined(HAVE_TR1_UNORDERED_SET) && defined(HAVE_TR1_UNORDERED_MAP)
bae7f79e
ILT
50
51#include <tr1/unordered_set>
52#include <tr1/unordered_map>
53
54// We need a template typedef here.
55
56#define Unordered_set std::tr1::unordered_set
57#define Unordered_map std::tr1::unordered_map
58
d288e464 59#elif defined(HAVE_EXT_HASH_MAP) && defined(HAVE_EXT_HASH_SET)
54dc6425
ILT
60
61#include <ext/hash_map>
62#include <ext/hash_set>
274e99f9 63#include <string>
54dc6425
ILT
64
65#define Unordered_set __gnu_cxx::hash_set
66#define Unordered_map __gnu_cxx::hash_map
67
274e99f9
ILT
68namespace __gnu_cxx
69{
70
71template<>
72struct hash<std::string>
73{
74 size_t
75 operator()(std::string s) const
76 { return __stl_hash_string(s.c_str()); }
77};
78
79template<typename T>
80struct hash<T*>
81{
82 size_t
83 operator()(T* p) const
84 { return reinterpret_cast<size_t>(p); }
85};
86
87}
88
54dc6425
ILT
89#else
90
91// The fallback is to just use set and map.
92
93#include <set>
94#include <map>
95
96#define Unordered_set std::set
97#define Unordered_map std::map
98
99#endif
100
82dcae9d
ILT
101#ifndef HAVE_PREAD
102extern "C" ssize_t pread(int, void*, size_t, off_t);
103#endif
104
5482377d
ILT
105namespace gold
106{
107// This is a hack to work around a problem with older versions of g++.
108// The problem is that they don't support calling a member template by
109// specifying the template parameters. It works to pass in an
110// argument for argument dependent lookup.
111
112// To use this, the member template method declaration should put
113// ACCEPT_SIZE or ACCEPT_SIZE_ENDIAN after the last parameter. If the
114// method takes no parameters, use ACCEPT_SIZE_ONLY or
115// ACCEPT_SIZE_ENDIAN_ONLY.
116
117// When calling the method, instead of using fn<size>, use fn
118// SELECT_SIZE_NAME or SELECT_SIZE_ENDIAN_NAME. And after the last
119// argument, put SELECT_SIZE(size) or SELECT_SIZE_ENDIAN(size,
120// big_endian). If there is only one argment, use the _ONLY variants.
121
122#ifdef HAVE_MEMBER_TEMPLATE_SPECIFICATIONS
123
593f47df 124#define SELECT_SIZE_NAME(size) <size>
5482377d
ILT
125#define SELECT_SIZE(size)
126#define SELECT_SIZE_ONLY(size)
127#define ACCEPT_SIZE
128#define ACCEPT_SIZE_ONLY
91da9340 129#define ACCEPT_SIZE_EXPLICIT(size)
5482377d 130
593f47df 131#define SELECT_SIZE_ENDIAN_NAME(size, big_endian) <size, big_endian>
5482377d
ILT
132#define SELECT_SIZE_ENDIAN(size, big_endian)
133#define SELECT_SIZE_ENDIAN_ONLY(size, big_endian)
134#define ACCEPT_SIZE_ENDIAN
135#define ACCEPT_SIZE_ENDIAN_ONLY
91da9340 136#define ACCEPT_SIZE_ENDIAN_EXPLICIT(size, big_endian)
5482377d
ILT
137
138#else // !defined(HAVE_MEMBER_TEMPLATE_SPECIFICATIONS)
139
140template<int size>
141class Select_size { };
142template<int size, bool big_endian>
143class Select_size_endian { };
144
593f47df 145#define SELECT_SIZE_NAME(size)
5482377d
ILT
146#define SELECT_SIZE(size) , Select_size<size>()
147#define SELECT_SIZE_ONLY(size) Select_size<size>()
148#define ACCEPT_SIZE , Select_size<size>
149#define ACCEPT_SIZE_ONLY Select_size<size>
91da9340 150#define ACCEPT_SIZE_EXPLICIT(size) , Select_size<size>
5482377d 151
593f47df 152#define SELECT_SIZE_ENDIAN_NAME(size, big_endian)
5482377d
ILT
153#define SELECT_SIZE_ENDIAN(size, big_endian) \
154 , Select_size_endian<size, big_endian>()
155#define SELECT_SIZE_ENDIAN_ONLY(size, big_endian) \
156 Select_size_endian<size, big_endian>()
157#define ACCEPT_SIZE_ENDIAN , Select_size_endian<size, big_endian>
158#define ACCEPT_SIZE_ENDIAN_ONLY Select_size_endian<size, big_endian>
91da9340
ILT
159#define ACCEPT_SIZE_ENDIAN_EXPLICIT(size, big_endian) \
160 , Select_size_endian<size, big_endian>
5482377d
ILT
161
162#endif // !defined(HAVE_MEMBER_TEMPLATE_SPECIFICATIONS)
163
164} // End namespace gold.
165
bae7f79e
ILT
166namespace gold
167{
168
61ba1cf9 169class General_options;
5a6f7e2d 170class Command_line;
92e059d8
ILT
171class Input_argument_list;
172class Dirsearch;
61ba1cf9 173class Input_objects;
75f2446e 174class Symbol;
61ba1cf9
ILT
175class Symbol_table;
176class Layout;
17a1d0a9 177class Task;
61ba1cf9
ILT
178class Workqueue;
179class Output_file;
75f2446e
ILT
180template<int size, bool big_endian>
181struct Relocate_info;
61ba1cf9 182
bae7f79e
ILT
183// The name of the program as used in error messages.
184extern const char* program_name;
185
186// This function is called to exit the program. Status is true to
187// exit success (0) and false to exit failure (1).
188extern void
189gold_exit(bool status) ATTRIBUTE_NORETURN;
190
75f2446e
ILT
191// This function is called to emit an error message and then
192// immediately exit with failure.
193extern void
194gold_fatal(const char* format, ...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF_1;
195
196// This function is called to issue an error. This will cause gold to
197// eventually exit with failure.
198extern void
199gold_error(const char* msg, ...) ATTRIBUTE_PRINTF_1;
200
201// This function is called to issue a warning.
202extern void
203gold_warning(const char* msg, ...) ATTRIBUTE_PRINTF_1;
204
205// This function is called to issue an error at the location of a
206// reloc.
207template<int size, bool big_endian>
208extern void
209gold_error_at_location(const Relocate_info<size, big_endian>*,
210 size_t, off_t, const char* format, ...)
211 ATTRIBUTE_PRINTF_4;
212
213// This function is called to issue a warning at the location of a
214// reloc.
215template<int size, bool big_endian>
216extern void
217gold_warning_at_location(const Relocate_info<size, big_endian>*,
218 size_t, off_t, const char* format, ...)
219 ATTRIBUTE_PRINTF_4;
220
221// This function is called to report an undefined symbol.
222template<int size, bool big_endian>
bae7f79e 223extern void
75f2446e
ILT
224gold_undefined_symbol(const Symbol*,
225 const Relocate_info<size, big_endian>*,
226 size_t, off_t);
bae7f79e
ILT
227
228// This is function is called in some cases if we run out of memory.
229extern void
230gold_nomem() ATTRIBUTE_NORETURN;
231
a3ad94ed
ILT
232// This macro and function are used in cases which can not arise if
233// the code is written correctly.
234
235#define gold_unreachable() \
236 (gold::do_gold_unreachable(__FILE__, __LINE__, __FUNCTION__))
237
238extern void do_gold_unreachable(const char*, int, const char*)
239 ATTRIBUTE_NORETURN;
240
241// Assertion check.
242
243#define gold_assert(expr) ((void)(!(expr) ? gold_unreachable(), 0 : 0))
bae7f79e 244
8486ee48
ILT
245// Print version information.
246extern void
247print_version(bool print_short);
248
4f211c8b
ILT
249// Get the version string.
250extern const char*
251get_version_string();
252
92e059d8
ILT
253// Queue up the first set of tasks.
254extern void
255queue_initial_tasks(const General_options&,
17a1d0a9 256 Dirsearch&,
5a6f7e2d 257 const Command_line&,
92e059d8
ILT
258 Workqueue*,
259 Input_objects*,
260 Symbol_table*,
261 Layout*);
262
263// Queue up the middle set of tasks.
264extern void
265queue_middle_tasks(const General_options&,
17a1d0a9 266 const Task*,
92e059d8
ILT
267 const Input_objects*,
268 Symbol_table*,
269 Layout*,
270 Workqueue*);
271
272// Queue up the final set of tasks.
61ba1cf9
ILT
273extern void
274queue_final_tasks(const General_options&,
275 const Input_objects*,
276 const Symbol_table*,
27bc2bce 277 Layout*,
61ba1cf9
ILT
278 Workqueue*,
279 Output_file* of);
280
bae7f79e
ILT
281} // End namespace gold.
282
283#endif // !defined(GOLD_GOLD_H)
This page took 0.081478 seconds and 4 git commands to generate.