1 // gold.h -- general definitions for gold -*- C++ -*-
3 // Copyright (C) 2006-2023 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
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.
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.
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.
33 #include <sys/types.h>
40 // General declarations.
42 class General_options
;
53 template<int size
, bool big_endian
>
60 GOLD_OK
= EXIT_SUCCESS
,
61 GOLD_ERR
= EXIT_FAILURE
,
62 GOLD_FALLBACK
= EXIT_FAILURE
+ 1
65 // Some basic types. For these we use lower case initial letters.
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.
70 // The size of a section if we are going to look at the contents.
71 typedef size_t section_size_type
;
73 // An offset within a section when we are looking at the contents.
74 typedef ptrdiff_t section_offset_type
;
76 // The name of the program as used in error messages.
77 extern const char* program_name
;
79 // This function is called to exit the program. Status is true to
80 // exit success (0) and false to exit failure (1).
82 gold_exit(Exit_status status
) ATTRIBUTE_NORETURN
;
84 // This function is called to emit an error message and then
85 // immediately exit with failure.
87 gold_fatal(const char* format
, ...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF_1
;
89 // This function is called to issue an error. This will cause gold to
90 // eventually exit with failure.
92 gold_error(const char* msg
, ...) ATTRIBUTE_PRINTF_1
;
94 // This function is called to issue a warning.
96 gold_warning(const char* msg
, ...) ATTRIBUTE_PRINTF_1
;
98 // This function is called to print an informational message.
100 gold_info(const char* msg
, ...) ATTRIBUTE_PRINTF_1
;
102 // This function is called to print a trace message.
104 gold_trace(const char* msg
, ...) ATTRIBUTE_PRINTF_1
;
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).
111 gold_fallback(const char* format
, ...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF_1
;
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
118 #define TEMPLATE_ATTRIBUTE_PRINTF_4
121 // This function is called to issue an error at the location of a
123 template<int size
, bool big_endian
>
125 gold_error_at_location(const Relocate_info
<size
, big_endian
>*,
126 size_t, off_t
, const char* format
, ...)
127 TEMPLATE_ATTRIBUTE_PRINTF_4
;
129 // This function is called to issue a warning at the location of a
131 template<int size
, bool big_endian
>
133 gold_warning_at_location(const Relocate_info
<size
, big_endian
>*,
134 size_t, off_t
, const char* format
, ...)
135 TEMPLATE_ATTRIBUTE_PRINTF_4
;
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.
142 gold_undefined_symbol(const Symbol
*);
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.
148 template<int size
, bool big_endian
>
150 gold_undefined_symbol_at_location(const Symbol
*,
151 const Relocate_info
<size
, big_endian
>*,
154 // This is function is called in some cases if we run out of memory.
156 gold_nomem() ATTRIBUTE_NORETURN
;
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__)
166 #define FUNCTION_NAME __func__
169 // This macro and function are used in cases which can not arise if
170 // the code is written correctly.
172 #define gold_unreachable() \
173 (gold::do_gold_unreachable(__FILE__, __LINE__, FUNCTION_NAME))
175 extern void do_gold_unreachable(const char*, int, const char*)
180 #define gold_assert(expr) ((void)(!(expr) ? gold_unreachable(), 0 : 0))
182 // Print version information.
184 print_version(bool print_short
);
186 // Get the version string.
188 get_version_string();
190 // Convert numeric types without unnoticed loss of precision.
191 template<typename To
, typename From
>
193 convert_types(const From from
)
196 gold_assert(static_cast<From
>(to
) == from
);
200 // A common case of convert_types<>: convert to section_size_type.
201 template<typename From
>
202 inline section_size_type
203 convert_to_section_size_type(const From from
)
204 { return convert_types
<section_size_type
, From
>(from
); }
206 // Queue up the first set of tasks.
208 queue_initial_tasks(const General_options
&,
217 // Queue up the set of tasks to be done before
218 // the middle set of tasks. Only used when garbage
219 // collection is to be done.
221 queue_middle_gc_tasks(const General_options
&,
223 const Input_objects
*,
229 // Queue up the middle set of tasks.
231 queue_middle_tasks(const General_options
&,
233 const Input_objects
*,
239 // Queue up the final set of tasks.
241 queue_final_tasks(const General_options
&,
242 const Input_objects
*,
249 is_prefix_of(const char* prefix
, const char* str
)
251 return strncmp(prefix
, str
, strlen(prefix
)) == 0;
254 const char* const cident_section_start_prefix
= "__start_";
255 const char* const cident_section_stop_prefix
= "__stop_";
257 // Returns true if the name is a valid C identifier
259 is_cident(const char* name
)
261 return (name
[strspn(name
,
263 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
264 "abcdefghijklmnopqrstuvwxyz"
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.
273 template<typename Char_type
>
275 string_hash(const Char_type
* s
, size_t length
)
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
);
284 for (size_t i
= 0; i
< length
* sizeof(Char_type
); ++i
)
289 // Same as above except we expect the string to be zero terminated.
291 template<typename Char_type
>
293 string_hash(const Char_type
* s
)
295 const unsigned char* p
= reinterpret_cast<const unsigned char*>(s
);
297 for (size_t i
= 0; s
[i
] != 0; ++i
)
299 for (size_t j
= 0; j
< sizeof(Char_type
); j
++)
306 // Return whether STRING contains a wildcard character. This is used
307 // to speed up matching.
310 is_wildcard_string(const char* s
)
312 return strpbrk(s
, "?*[") != NULL
;
315 } // End namespace gold.
317 #endif // !defined(GOLD_GOLD_H)