* layout.cc (Layout::set_segment_offsets): Don't adjust layout
[deliverable/binutils-gdb.git] / gold / gold.h
CommitLineData
bae7f79e
ILT
1// gold.h -- general definitions for gold -*- C++ -*-
2
88597d34 3// Copyright 2006, 2007, 2008, 2009, 2010, 2011 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 23#ifndef GOLD_GOLD_H
6724bacc 24#define GOLD_GOLD_H
bae7f79e
ILT
25
26#include "config.h"
27#include "ansidecl.h"
28
cbb93e63 29#include <cstddef>
e0ebcf42
ILT
30#include <cstring>
31#include <stdint.h>
cbb93e63
ILT
32#include <sys/types.h>
33
801647d1
ILT
34#ifndef ENABLE_NLS
35 // The Solaris version of locale.h always includes libintl.h. If we
36 // have been configured with --disable-nls then ENABLE_NLS will not
37 // be defined and the dummy definitions of bindtextdomain (et al)
9b547ce6 38 // below will conflict with the definitions in libintl.h. So we
801647d1
ILT
39 // define these values to prevent the bogus inclusion of libintl.h.
40# define _LIBINTL_H
41# define _LIBGETTEXT_H
42#endif
43
44// Always include <clocale> first to avoid conflicts with the macros
45// used when ENABLE_NLS is not defined.
46#include <clocale>
47
bae7f79e
ILT
48#ifdef ENABLE_NLS
49# include <libintl.h>
50# define _(String) gettext (String)
51# ifdef gettext_noop
52# define N_(String) gettext_noop (String)
53# else
54# define N_(String) (String)
55# endif
56#else
57# define gettext(Msgid) (Msgid)
58# define dgettext(Domainname, Msgid) (Msgid)
59# define dcgettext(Domainname, Msgid, Category) (Msgid)
60# define textdomain(Domainname) while (0) /* nothing */
61# define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
62# define _(String) (String)
63# define N_(String) (String)
64#endif
65
54dc6425
ILT
66// Figure out how to get a hash set and a hash map.
67
40fde488
CD
68#if defined(HAVE_TR1_UNORDERED_SET) && defined(HAVE_TR1_UNORDERED_MAP) \
69 && defined(HAVE_TR1_UNORDERED_MAP_REHASH)
bae7f79e
ILT
70
71#include <tr1/unordered_set>
72#include <tr1/unordered_map>
73
74// We need a template typedef here.
75
76#define Unordered_set std::tr1::unordered_set
77#define Unordered_map std::tr1::unordered_map
ef15dade 78#define Unordered_multimap std::tr1::unordered_multimap
bae7f79e 79
e55bde5e
ILT
80#define reserve_unordered_map(map, n) ((map)->rehash(n))
81
d288e464 82#elif defined(HAVE_EXT_HASH_MAP) && defined(HAVE_EXT_HASH_SET)
54dc6425
ILT
83
84#include <ext/hash_map>
85#include <ext/hash_set>
274e99f9 86#include <string>
54dc6425
ILT
87
88#define Unordered_set __gnu_cxx::hash_set
89#define Unordered_map __gnu_cxx::hash_map
ef15dade 90#define Unordered_multimap __gnu_cxx::hash_multimap
54dc6425 91
274e99f9
ILT
92namespace __gnu_cxx
93{
94
95template<>
96struct hash<std::string>
97{
98 size_t
99 operator()(std::string s) const
100 { return __stl_hash_string(s.c_str()); }
101};
102
103template<typename T>
104struct hash<T*>
105{
106 size_t
107 operator()(T* p) const
108 { return reinterpret_cast<size_t>(p); }
109};
110
111}
112
e55bde5e
ILT
113#define reserve_unordered_map(map, n) ((map)->resize(n))
114
54dc6425
ILT
115#else
116
117// The fallback is to just use set and map.
118
119#include <set>
120#include <map>
121
122#define Unordered_set std::set
123#define Unordered_map std::map
e1e82ea4 124#define Unordered_multimap std::multimap
54dc6425 125
e55bde5e
ILT
126#define reserve_unordered_map(map, n)
127
54dc6425
ILT
128#endif
129
82dcae9d
ILT
130#ifndef HAVE_PREAD
131extern "C" ssize_t pread(int, void*, size_t, off_t);
132#endif
133
9201d894
ILT
134#ifndef HAVE_FTRUNCATE
135extern "C" int ftruncate(int, off_t);
136#endif
137
fd03461a
ILT
138#ifndef HAVE_FFSLL
139extern "C" int ffsll(long long);
2f35ab9b
ILT
140#endif
141
3d857b98
DK
142#if !HAVE_DECL_MEMMEM
143extern "C" void *memmem(const void *, size_t, const void *, size_t);
144#endif
145
146#if !HAVE_DECL_STRNDUP
147extern "C" char *strndup(const char *, size_t);
148#endif
149
5482377d
ILT
150namespace gold
151{
5482377d 152
8383303e 153// General declarations.
bae7f79e 154
61ba1cf9 155class General_options;
5a6f7e2d 156class Command_line;
92e059d8 157class Dirsearch;
61ba1cf9 158class Input_objects;
7d9e3d98 159class Mapfile;
75f2446e 160class Symbol;
61ba1cf9
ILT
161class Symbol_table;
162class Layout;
17a1d0a9 163class Task;
61ba1cf9
ILT
164class Workqueue;
165class Output_file;
75f2446e
ILT
166template<int size, bool big_endian>
167struct Relocate_info;
61ba1cf9 168
8383303e
ILT
169// Some basic types. For these we use lower case initial letters.
170
171// For an offset in an input or output file, use off_t. Note that
172// this will often be a 64-bit type even for a 32-bit build.
173
174// The size of a section if we are going to look at the contents.
175typedef size_t section_size_type;
176
177// An offset within a section when we are looking at the contents.
178typedef ptrdiff_t section_offset_type;
179
bae7f79e
ILT
180// The name of the program as used in error messages.
181extern const char* program_name;
182
183// This function is called to exit the program. Status is true to
184// exit success (0) and false to exit failure (1).
185extern void
186gold_exit(bool status) ATTRIBUTE_NORETURN;
187
75f2446e
ILT
188// This function is called to emit an error message and then
189// immediately exit with failure.
190extern void
191gold_fatal(const char* format, ...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF_1;
192
193// This function is called to issue an error. This will cause gold to
194// eventually exit with failure.
195extern void
196gold_error(const char* msg, ...) ATTRIBUTE_PRINTF_1;
197
198// This function is called to issue a warning.
199extern void
200gold_warning(const char* msg, ...) ATTRIBUTE_PRINTF_1;
201
c5818ff1
CC
202// This function is called to print an informational message.
203extern void
204gold_info(const char* msg, ...) ATTRIBUTE_PRINTF_1;
205
04bf7072
ILT
206// Work around a bug in gcc 4.3.0. http://gcc.gnu.org/PR35546 . This
207// can probably be removed after the bug has been fixed for a while.
208#ifdef HAVE_TEMPLATE_ATTRIBUTES
209#define TEMPLATE_ATTRIBUTE_PRINTF_4 ATTRIBUTE_PRINTF_4
210#else
211#define TEMPLATE_ATTRIBUTE_PRINTF_4
212#endif
213
75f2446e
ILT
214// This function is called to issue an error at the location of a
215// reloc.
216template<int size, bool big_endian>
217extern void
218gold_error_at_location(const Relocate_info<size, big_endian>*,
219 size_t, off_t, const char* format, ...)
04bf7072 220 TEMPLATE_ATTRIBUTE_PRINTF_4;
75f2446e
ILT
221
222// This function is called to issue a warning at the location of a
223// reloc.
224template<int size, bool big_endian>
225extern void
226gold_warning_at_location(const Relocate_info<size, big_endian>*,
227 size_t, off_t, const char* format, ...)
04bf7072 228 TEMPLATE_ATTRIBUTE_PRINTF_4;
75f2446e 229
f073bbf7
CD
230// This function is called to report an undefined symbol without
231// a relocation (e.g., referenced by a dynamic object). SYM is
232// the undefined symbol. The file name associated with the SYM
233// is used to print a location for the undefined symbol.
234extern void
235gold_undefined_symbol(const Symbol*);
236
237// This function is called to report an undefined symbol resulting
238// from a relocation. SYM is the undefined symbol. RELINFO is the
239// general relocation info. RELNUM is the number of the reloc,
240// and RELOFFSET is the reloc's offset.
75f2446e 241template<int size, bool big_endian>
bae7f79e 242extern void
f073bbf7
CD
243gold_undefined_symbol_at_location(const Symbol*,
244 const Relocate_info<size, big_endian>*,
245 size_t, off_t);
bae7f79e
ILT
246
247// This is function is called in some cases if we run out of memory.
248extern void
249gold_nomem() ATTRIBUTE_NORETURN;
250
cc70f101
ILT
251// In versions of gcc before 4.3, using __FUNCTION__ in a template
252// function can cause gcc to get confused about whether or not the
253// function can return. See http://gcc.gnu.org/PR30988. Use a macro
254// to avoid the problem. This can be removed when we no longer need
255// to care about gcc versions before 4.3.
256#if defined(__GNUC__) && GCC_VERSION < 4003
257#define FUNCTION_NAME static_cast<const char*>(__FUNCTION__)
258#else
259#define FUNCTION_NAME __FUNCTION__
260#endif
261
a3ad94ed
ILT
262// This macro and function are used in cases which can not arise if
263// the code is written correctly.
264
265#define gold_unreachable() \
cc70f101 266 (gold::do_gold_unreachable(__FILE__, __LINE__, FUNCTION_NAME))
a3ad94ed
ILT
267
268extern void do_gold_unreachable(const char*, int, const char*)
269 ATTRIBUTE_NORETURN;
270
271// Assertion check.
272
273#define gold_assert(expr) ((void)(!(expr) ? gold_unreachable(), 0 : 0))
bae7f79e 274
8486ee48
ILT
275// Print version information.
276extern void
277print_version(bool print_short);
278
4f211c8b
ILT
279// Get the version string.
280extern const char*
281get_version_string();
282
8383303e
ILT
283// Convert numeric types without unnoticed loss of precision.
284template<typename To, typename From>
285inline To
286convert_types(const From from)
287{
288 To to = from;
9bb53bf8 289 gold_assert(static_cast<From>(to) == from);
8383303e
ILT
290 return to;
291}
292
293// A common case of convert_types<>: convert to section_size_type.
294template<typename From>
295inline section_size_type
296convert_to_section_size_type(const From from)
297{ return convert_types<section_size_type, From>(from); }
298
92e059d8
ILT
299// Queue up the first set of tasks.
300extern void
301queue_initial_tasks(const General_options&,
17a1d0a9 302 Dirsearch&,
5a6f7e2d 303 const Command_line&,
92e059d8
ILT
304 Workqueue*,
305 Input_objects*,
306 Symbol_table*,
7d9e3d98
ILT
307 Layout*,
308 Mapfile*);
92e059d8 309
6d03d481
ST
310// Queue up the set of tasks to be done before
311// the middle set of tasks. Only used when garbage
072fe7ce 312// collection is to be done.
6d03d481
ST
313extern void
314queue_middle_gc_tasks(const General_options&,
315 const Task*,
316 const Input_objects*,
317 Symbol_table*,
318 Layout*,
319 Workqueue*,
320 Mapfile*);
321
92e059d8
ILT
322// Queue up the middle set of tasks.
323extern void
324queue_middle_tasks(const General_options&,
17a1d0a9 325 const Task*,
92e059d8
ILT
326 const Input_objects*,
327 Symbol_table*,
328 Layout*,
7d9e3d98
ILT
329 Workqueue*,
330 Mapfile*);
92e059d8
ILT
331
332// Queue up the final set of tasks.
61ba1cf9
ILT
333extern void
334queue_final_tasks(const General_options&,
335 const Input_objects*,
336 const Symbol_table*,
27bc2bce 337 Layout*,
61ba1cf9
ILT
338 Workqueue*,
339 Output_file* of);
340
6d03d481
ST
341inline bool
342is_prefix_of(const char* prefix, const char* str)
343{
344 return strncmp(prefix, str, strlen(prefix)) == 0;
345}
346
f1ec9ded
ST
347const char* const cident_section_start_prefix = "__start_";
348const char* const cident_section_stop_prefix = "__stop_";
349
350// Returns true if the name is a valid C identifier
351inline bool
352is_cident(const char* name)
353{
354 return (name[strspn(name,
355 ("0123456789"
356 "ABCDEFGHIJKLMNOPWRSTUVWXYZ"
357 "abcdefghijklmnopqrstuvwxyz"
358 "_"))]
359 == '\0');
360}
361
b569affa
DK
362// We sometimes need to hash strings. Ideally we should use std::tr1::hash or
363// __gnu_cxx::hash on some systems but there is no guarantee that either
364// one is available. For portability, we define simple string hash functions.
365
366template<typename Char_type>
367inline size_t
368string_hash(const Char_type* s, size_t length)
369{
370 // This is the hash function used by the dynamic linker for
371 // DT_GNU_HASH entries. I compared this to a Fowler/Noll/Vo hash
372 // for a C++ program with 385,775 global symbols. This hash
373 // function was very slightly worse. However, it is much faster to
374 // compute. Overall wall clock time was a win.
375 const unsigned char* p = reinterpret_cast<const unsigned char*>(s);
376 size_t h = 5381;
377 for (size_t i = 0; i < length * sizeof(Char_type); ++i)
378 h = h * 33 + *p++;
379 return h;
380}
381
382// Same as above except we expect the string to be zero terminated.
383
384template<typename Char_type>
385inline size_t
386string_hash(const Char_type* s)
387{
388 const unsigned char* p = reinterpret_cast<const unsigned char*>(s);
389 size_t h = 5381;
390 for (size_t i = 0; s[i] != 0; ++i)
391 {
392 for (size_t j = 0; j < sizeof(Char_type); j++)
393 h = h * 33 + *p++;
394 }
395
396 return h;
397}
398
6e9ba2ca
ST
399// Return whether STRING contains a wildcard character. This is used
400// to speed up matching.
401
402inline bool
403is_wildcard_string(const char* s)
404{
405 return strpbrk(s, "?*[") != NULL;
406}
407
bae7f79e
ILT
408} // End namespace gold.
409
410#endif // !defined(GOLD_GOLD_H)
This page took 0.225851 seconds and 4 git commands to generate.