* elf32-spu.c (build_stub): Fix malloc under-allocation.
[binutils.git] / gold / errors.cc
blobb79764bd1d8285308e7bef6468e929c3279b18ef
1 // errors.cc -- handle errors for gold
3 // Copyright 2006, 2007, 2008, 2009, 2010, 2011 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.
23 #include "gold.h"
25 #include <cstdarg>
26 #include <cstdio>
28 #include "gold-threads.h"
29 #include "parameters.h"
30 #include "object.h"
31 #include "symtab.h"
32 #include "errors.h"
34 namespace gold
37 // Class Errors.
39 const int Errors::max_undefined_error_report;
41 Errors::Errors(const char* program_name)
42 : program_name_(program_name), lock_(NULL), initialize_lock_(&this->lock_),
43 error_count_(0), warning_count_(0), undefined_symbols_()
47 // Initialize the lock_ field. If we have not yet processed the
48 // parameters, then we can't initialize, since we don't yet know
49 // whether we are using threads. That is OK, since if we haven't
50 // processed the parameters, we haven't created any threads, and we
51 // don't need a lock. Return true if the lock is now initialized.
53 bool
54 Errors::initialize_lock()
56 return this->initialize_lock_.initialize();
59 // Increment a counter, holding the lock if available.
61 void
62 Errors::increment_counter(int *counter)
64 if (!this->initialize_lock())
66 // The lock does not exist, which means that we don't need it.
67 ++*counter;
69 else
71 Hold_lock h(*this->lock_);
72 ++*counter;
76 // Report a fatal error.
78 void
79 Errors::fatal(const char* format, va_list args)
81 fprintf(stderr, _("%s: fatal error: "), this->program_name_);
82 vfprintf(stderr, format, args);
83 fputc('\n', stderr);
84 gold_exit(GOLD_ERR);
87 // Report a fallback error.
89 void
90 Errors::fallback(const char* format, va_list args)
92 fprintf(stderr, _("%s: fatal error: "), this->program_name_);
93 vfprintf(stderr, format, args);
94 fputc('\n', stderr);
95 gold_exit(GOLD_FALLBACK);
98 // Report an error.
100 void
101 Errors::error(const char* format, va_list args)
103 fprintf(stderr, _("%s: error: "), this->program_name_);
104 vfprintf(stderr, format, args);
105 fputc('\n', stderr);
107 this->increment_counter(&this->error_count_);
110 // Report a warning.
112 void
113 Errors::warning(const char* format, va_list args)
115 fprintf(stderr, _("%s: warning: "), this->program_name_);
116 vfprintf(stderr, format, args);
117 fputc('\n', stderr);
119 this->increment_counter(&this->warning_count_);
122 // Print an informational message.
124 void
125 Errors::info(const char* format, va_list args)
127 vfprintf(stderr, format, args);
128 fputc('\n', stderr);
131 // Report an error at a reloc location.
133 template<int size, bool big_endian>
134 void
135 Errors::error_at_location(const Relocate_info<size, big_endian>* relinfo,
136 size_t relnum, off_t reloffset,
137 const char* format, va_list args)
139 fprintf(stderr, _("%s: error: "),
140 relinfo->location(relnum, reloffset).c_str());
141 vfprintf(stderr, format, args);
142 fputc('\n', stderr);
144 this->increment_counter(&this->error_count_);
147 // Report a warning at a reloc location.
149 template<int size, bool big_endian>
150 void
151 Errors::warning_at_location(const Relocate_info<size, big_endian>* relinfo,
152 size_t relnum, off_t reloffset,
153 const char* format, va_list args)
155 fprintf(stderr, _("%s: warning: "),
156 relinfo->location(relnum, reloffset).c_str());
157 vfprintf(stderr, format, args);
158 fputc('\n', stderr);
160 this->increment_counter(&this->warning_count_);
163 // Issue an undefined symbol error with a caller-supplied location string.
165 void
166 Errors::undefined_symbol(const Symbol* sym, const std::string& location)
168 bool initialized = this->initialize_lock();
169 gold_assert(initialized);
171 const char* zmsg;
173 Hold_lock h(*this->lock_);
174 if (++this->undefined_symbols_[sym] >= max_undefined_error_report)
175 return;
176 if (parameters->options().warn_unresolved_symbols())
178 ++this->warning_count_;
179 zmsg = _("warning");
181 else
183 ++this->error_count_;
184 zmsg = _("error");
188 const char* const version = sym->version();
189 if (version == NULL)
190 fprintf(stderr, _("%s: %s: undefined reference to '%s'\n"),
191 location.c_str(), zmsg, sym->demangled_name().c_str());
192 else
193 fprintf(stderr,
194 _("%s: %s: undefined reference to '%s', version '%s'\n"),
195 location.c_str(), zmsg, sym->demangled_name().c_str(), version);
198 // Issue a debugging message.
200 void
201 Errors::debug(const char* format, ...)
203 fprintf(stderr, _("%s: "), this->program_name_);
205 va_list args;
206 va_start(args, format);
207 vfprintf(stderr, format, args);
208 va_end(args);
210 fputc('\n', stderr);
213 // The functions which the rest of the code actually calls.
215 // Report a fatal error.
217 void
218 gold_fatal(const char* format, ...)
220 va_list args;
221 va_start(args, format);
222 parameters->errors()->fatal(format, args);
223 va_end(args);
226 // Report a fallback error.
228 void
229 gold_fallback(const char* format, ...)
231 va_list args;
232 va_start(args, format);
233 parameters->errors()->fallback(format, args);
234 va_end(args);
237 // Report an error.
239 void
240 gold_error(const char* format, ...)
242 va_list args;
243 va_start(args, format);
244 parameters->errors()->error(format, args);
245 va_end(args);
248 // Report a warning.
250 void
251 gold_warning(const char* format, ...)
253 va_list args;
254 va_start(args, format);
255 parameters->errors()->warning(format, args);
256 va_end(args);
259 // Print an informational message.
261 void
262 gold_info(const char* format, ...)
264 va_list args;
265 va_start(args, format);
266 parameters->errors()->info(format, args);
267 va_end(args);
270 // Report an error at a location.
272 template<int size, bool big_endian>
273 void
274 gold_error_at_location(const Relocate_info<size, big_endian>* relinfo,
275 size_t relnum, off_t reloffset,
276 const char* format, ...)
278 va_list args;
279 va_start(args, format);
280 parameters->errors()->error_at_location(relinfo, relnum, reloffset,
281 format, args);
282 va_end(args);
285 // Report a warning at a location.
287 template<int size, bool big_endian>
288 void
289 gold_warning_at_location(const Relocate_info<size, big_endian>* relinfo,
290 size_t relnum, off_t reloffset,
291 const char* format, ...)
293 va_list args;
294 va_start(args, format);
295 parameters->errors()->warning_at_location(relinfo, relnum, reloffset,
296 format, args);
297 va_end(args);
300 // Report an undefined symbol.
302 void
303 gold_undefined_symbol(const Symbol* sym)
305 parameters->errors()->undefined_symbol(sym, sym->object()->name().c_str());
308 // Report an undefined symbol at a reloc location
310 template<int size, bool big_endian>
311 void
312 gold_undefined_symbol_at_location(const Symbol* sym,
313 const Relocate_info<size, big_endian>* relinfo,
314 size_t relnum, off_t reloffset)
316 parameters->errors()->undefined_symbol(sym,
317 relinfo->location(relnum, reloffset));
320 #ifdef HAVE_TARGET_32_LITTLE
321 template
322 void
323 gold_error_at_location<32, false>(const Relocate_info<32, false>* relinfo,
324 size_t relnum, off_t reloffset,
325 const char* format, ...);
326 #endif
328 #ifdef HAVE_TARGET_32_BIG
329 template
330 void
331 gold_error_at_location<32, true>(const Relocate_info<32, true>* relinfo,
332 size_t relnum, off_t reloffset,
333 const char* format, ...);
334 #endif
336 #ifdef HAVE_TARGET_64_LITTLE
337 template
338 void
339 gold_error_at_location<64, false>(const Relocate_info<64, false>* relinfo,
340 size_t relnum, off_t reloffset,
341 const char* format, ...);
342 #endif
344 #ifdef HAVE_TARGET_64_BIG
345 template
346 void
347 gold_error_at_location<64, true>(const Relocate_info<64, true>* relinfo,
348 size_t relnum, off_t reloffset,
349 const char* format, ...);
350 #endif
352 #ifdef HAVE_TARGET_32_LITTLE
353 template
354 void
355 gold_warning_at_location<32, false>(const Relocate_info<32, false>* relinfo,
356 size_t relnum, off_t reloffset,
357 const char* format, ...);
358 #endif
360 #ifdef HAVE_TARGET_32_BIG
361 template
362 void
363 gold_warning_at_location<32, true>(const Relocate_info<32, true>* relinfo,
364 size_t relnum, off_t reloffset,
365 const char* format, ...);
366 #endif
368 #ifdef HAVE_TARGET_64_LITTLE
369 template
370 void
371 gold_warning_at_location<64, false>(const Relocate_info<64, false>* relinfo,
372 size_t relnum, off_t reloffset,
373 const char* format, ...);
374 #endif
376 #ifdef HAVE_TARGET_64_BIG
377 template
378 void
379 gold_warning_at_location<64, true>(const Relocate_info<64, true>* relinfo,
380 size_t relnum, off_t reloffset,
381 const char* format, ...);
382 #endif
384 #ifdef HAVE_TARGET_32_LITTLE
385 template
386 void
387 gold_undefined_symbol_at_location<32, false>(
388 const Symbol* sym,
389 const Relocate_info<32, false>* relinfo,
390 size_t relnum, off_t reloffset);
391 #endif
393 #ifdef HAVE_TARGET_32_BIG
394 template
395 void
396 gold_undefined_symbol_at_location<32, true>(
397 const Symbol* sym,
398 const Relocate_info<32, true>* relinfo,
399 size_t relnum, off_t reloffset);
400 #endif
402 #ifdef HAVE_TARGET_64_LITTLE
403 template
404 void
405 gold_undefined_symbol_at_location<64, false>(
406 const Symbol* sym,
407 const Relocate_info<64, false>* relinfo,
408 size_t relnum, off_t reloffset);
409 #endif
411 #ifdef HAVE_TARGET_64_BIG
412 template
413 void
414 gold_undefined_symbol_at_location<64, true>(
415 const Symbol* sym,
416 const Relocate_info<64, true>* relinfo,
417 size_t relnum, off_t reloffset);
418 #endif
420 } // End namespace gold.