]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/gold.h
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gold / gold.h
CommitLineData
bae7f79e
ILT
1// gold.h -- general definitions for gold -*- C++ -*-
2
d87bef3a 3// Copyright (C) 2006-2023 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>
e6455dfb 30#include <cstdlib>
e0ebcf42
ILT
31#include <cstring>
32#include <stdint.h>
cbb93e63
ILT
33#include <sys/types.h>
34
77429909 35#include "system.h"
3d857b98 36
5482377d
ILT
37namespace gold
38{
5482377d 39
8383303e 40// General declarations.
bae7f79e 41
61ba1cf9 42class General_options;
5a6f7e2d 43class Command_line;
92e059d8 44class Dirsearch;
61ba1cf9 45class Input_objects;
7d9e3d98 46class Mapfile;
75f2446e 47class Symbol;
61ba1cf9
ILT
48class Symbol_table;
49class Layout;
17a1d0a9 50class Task;
61ba1cf9
ILT
51class Workqueue;
52class Output_file;
75f2446e
ILT
53template<int size, bool big_endian>
54struct Relocate_info;
61ba1cf9 55
e6455dfb
CC
56// Exit status codes.
57
58enum Exit_status
59{
60 GOLD_OK = EXIT_SUCCESS,
61 GOLD_ERR = EXIT_FAILURE,
62 GOLD_FALLBACK = EXIT_FAILURE + 1
63};
64
8383303e
ILT
65// Some basic types. For these we use lower case initial letters.
66
67// For an offset in an input or output file, use off_t. Note that
68// this will often be a 64-bit type even for a 32-bit build.
69
70// The size of a section if we are going to look at the contents.
71typedef size_t section_size_type;
72
73// An offset within a section when we are looking at the contents.
74typedef ptrdiff_t section_offset_type;
75
bae7f79e
ILT
76// The name of the program as used in error messages.
77extern const char* program_name;
78
79// This function is called to exit the program. Status is true to
80// exit success (0) and false to exit failure (1).
81extern void
e6455dfb 82gold_exit(Exit_status status) ATTRIBUTE_NORETURN;
bae7f79e 83
75f2446e
ILT
84// This function is called to emit an error message and then
85// immediately exit with failure.
86extern void
87gold_fatal(const char* format, ...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF_1;
88
89// This function is called to issue an error. This will cause gold to
90// eventually exit with failure.
91extern void
92gold_error(const char* msg, ...) ATTRIBUTE_PRINTF_1;
93
94// This function is called to issue a warning.
95extern void
96gold_warning(const char* msg, ...) ATTRIBUTE_PRINTF_1;
97
c5818ff1
CC
98// This function is called to print an informational message.
99extern void
100gold_info(const char* msg, ...) ATTRIBUTE_PRINTF_1;
101
35891b47
CC
102// This function is called to print a trace message.
103extern void
104gold_trace(const char* msg, ...) ATTRIBUTE_PRINTF_1;
105
e6455dfb
CC
106// This function is called to emit an error message and then
107// immediately exit with fallback status (e.g., when
108// --incremental-update fails and the link needs to be restarted
109// with --incremental-full).
110extern void
111gold_fallback(const char* format, ...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF_1;
112
04bf7072
ILT
113// Work around a bug in gcc 4.3.0. http://gcc.gnu.org/PR35546 . This
114// can probably be removed after the bug has been fixed for a while.
115#ifdef HAVE_TEMPLATE_ATTRIBUTES
116#define TEMPLATE_ATTRIBUTE_PRINTF_4 ATTRIBUTE_PRINTF_4
117#else
118#define TEMPLATE_ATTRIBUTE_PRINTF_4
119#endif
120
75f2446e
ILT
121// This function is called to issue an error at the location of a
122// reloc.
123template<int size, bool big_endian>
124extern void
125gold_error_at_location(const Relocate_info<size, big_endian>*,
126 size_t, off_t, const char* format, ...)
04bf7072 127 TEMPLATE_ATTRIBUTE_PRINTF_4;
75f2446e
ILT
128
129// This function is called to issue a warning at the location of a
130// reloc.
131template<int size, bool big_endian>
132extern void
133gold_warning_at_location(const Relocate_info<size, big_endian>*,
134 size_t, off_t, const char* format, ...)
04bf7072 135 TEMPLATE_ATTRIBUTE_PRINTF_4;
75f2446e 136
f073bbf7
CD
137// This function is called to report an undefined symbol without
138// a relocation (e.g., referenced by a dynamic object). SYM is
139// the undefined symbol. The file name associated with the SYM
140// is used to print a location for the undefined symbol.
141extern void
142gold_undefined_symbol(const Symbol*);
143
144// This function is called to report an undefined symbol resulting
145// from a relocation. SYM is the undefined symbol. RELINFO is the
146// general relocation info. RELNUM is the number of the reloc,
147// and RELOFFSET is the reloc's offset.
75f2446e 148template<int size, bool big_endian>
bae7f79e 149extern void
f073bbf7
CD
150gold_undefined_symbol_at_location(const Symbol*,
151 const Relocate_info<size, big_endian>*,
152 size_t, off_t);
bae7f79e
ILT
153
154// This is function is called in some cases if we run out of memory.
155extern void
156gold_nomem() ATTRIBUTE_NORETURN;
157
cc70f101
ILT
158// In versions of gcc before 4.3, using __FUNCTION__ in a template
159// function can cause gcc to get confused about whether or not the
160// function can return. See http://gcc.gnu.org/PR30988. Use a macro
161// to avoid the problem. This can be removed when we no longer need
162// to care about gcc versions before 4.3.
163#if defined(__GNUC__) && GCC_VERSION < 4003
164#define FUNCTION_NAME static_cast<const char*>(__FUNCTION__)
165#else
166#define FUNCTION_NAME __FUNCTION__
167#endif
168
a3ad94ed
ILT
169// This macro and function are used in cases which can not arise if
170// the code is written correctly.
171
172#define gold_unreachable() \
cc70f101 173 (gold::do_gold_unreachable(__FILE__, __LINE__, FUNCTION_NAME))
a3ad94ed
ILT
174
175extern void do_gold_unreachable(const char*, int, const char*)
176 ATTRIBUTE_NORETURN;
177
178// Assertion check.
179
180#define gold_assert(expr) ((void)(!(expr) ? gold_unreachable(), 0 : 0))
bae7f79e 181
8486ee48
ILT
182// Print version information.
183extern void
184print_version(bool print_short);
185
4f211c8b
ILT
186// Get the version string.
187extern const char*
188get_version_string();
189
8383303e
ILT
190// Convert numeric types without unnoticed loss of precision.
191template<typename To, typename From>
192inline To
193convert_types(const From from)
194{
195 To to = from;
9bb53bf8 196 gold_assert(static_cast<From>(to) == from);
8383303e
ILT
197 return to;
198}
199
200// A common case of convert_types<>: convert to section_size_type.
201template<typename From>
202inline section_size_type
203convert_to_section_size_type(const From from)
204{ return convert_types<section_size_type, From>(from); }
205
92e059d8
ILT
206// Queue up the first set of tasks.
207extern void
208queue_initial_tasks(const General_options&,
17a1d0a9 209 Dirsearch&,
5a6f7e2d 210 const Command_line&,
92e059d8
ILT
211 Workqueue*,
212 Input_objects*,
213 Symbol_table*,
7d9e3d98
ILT
214 Layout*,
215 Mapfile*);
92e059d8 216
6d03d481
ST
217// Queue up the set of tasks to be done before
218// the middle set of tasks. Only used when garbage
072fe7ce 219// collection is to be done.
6d03d481
ST
220extern void
221queue_middle_gc_tasks(const General_options&,
222 const Task*,
223 const Input_objects*,
224 Symbol_table*,
225 Layout*,
226 Workqueue*,
227 Mapfile*);
228
92e059d8
ILT
229// Queue up the middle set of tasks.
230extern void
231queue_middle_tasks(const General_options&,
17a1d0a9 232 const Task*,
92e059d8
ILT
233 const Input_objects*,
234 Symbol_table*,
235 Layout*,
7d9e3d98
ILT
236 Workqueue*,
237 Mapfile*);
92e059d8
ILT
238
239// Queue up the final set of tasks.
61ba1cf9
ILT
240extern void
241queue_final_tasks(const General_options&,
242 const Input_objects*,
243 const Symbol_table*,
27bc2bce 244 Layout*,
61ba1cf9
ILT
245 Workqueue*,
246 Output_file* of);
247
6d03d481
ST
248inline bool
249is_prefix_of(const char* prefix, const char* str)
250{
251 return strncmp(prefix, str, strlen(prefix)) == 0;
252}
253
f1ec9ded
ST
254const char* const cident_section_start_prefix = "__start_";
255const char* const cident_section_stop_prefix = "__stop_";
256
257// Returns true if the name is a valid C identifier
258inline bool
259is_cident(const char* name)
260{
261 return (name[strspn(name,
970cdef2
DI
262 ("0123456789"
263 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
f1ec9ded
ST
264 "abcdefghijklmnopqrstuvwxyz"
265 "_"))]
266 == '\0');
267}
268
b569affa
DK
269// We sometimes need to hash strings. Ideally we should use std::tr1::hash or
270// __gnu_cxx::hash on some systems but there is no guarantee that either
271// one is available. For portability, we define simple string hash functions.
272
273template<typename Char_type>
274inline size_t
275string_hash(const Char_type* s, size_t length)
276{
277 // This is the hash function used by the dynamic linker for
278 // DT_GNU_HASH entries. I compared this to a Fowler/Noll/Vo hash
279 // for a C++ program with 385,775 global symbols. This hash
280 // function was very slightly worse. However, it is much faster to
281 // compute. Overall wall clock time was a win.
282 const unsigned char* p = reinterpret_cast<const unsigned char*>(s);
283 size_t h = 5381;
284 for (size_t i = 0; i < length * sizeof(Char_type); ++i)
285 h = h * 33 + *p++;
286 return h;
287}
288
289// Same as above except we expect the string to be zero terminated.
290
291template<typename Char_type>
292inline size_t
293string_hash(const Char_type* s)
294{
295 const unsigned char* p = reinterpret_cast<const unsigned char*>(s);
296 size_t h = 5381;
297 for (size_t i = 0; s[i] != 0; ++i)
298 {
299 for (size_t j = 0; j < sizeof(Char_type); j++)
300 h = h * 33 + *p++;
301 }
302
303 return h;
304}
305
6e9ba2ca
ST
306// Return whether STRING contains a wildcard character. This is used
307// to speed up matching.
308
309inline bool
310is_wildcard_string(const char* s)
311{
312 return strpbrk(s, "?*[") != NULL;
313}
314
bae7f79e
ILT
315} // End namespace gold.
316
317#endif // !defined(GOLD_GOLD_H)