binutils-gdb/gdbsupport/errors.cc
Pedro Alves f34652de0b internal_error: remove need to pass __FILE__/__LINE__
Currently, every internal_error call must be passed __FILE__/__LINE__
explicitly, like:

  internal_error (__FILE__, __LINE__, "foo %d", var);

The need to pass in explicit __FILE__/__LINE__ is there probably
because the function predates widespread and portable variadic macros
availability.  We can use variadic macros nowadays, and in fact, we
already use them in several places, including the related
gdb_assert_not_reached.

So this patch renames the internal_error function to something else,
and then reimplements internal_error as a variadic macro that expands
__FILE__/__LINE__ itself.

The result is that we now should call internal_error like so:

  internal_error ("foo %d", var);

Likewise for internal_warning.

The patch adjusts all calls sites.  99% of the adjustments were done
with a perl/sed script.

The non-mechanical changes are in gdbsupport/errors.h,
gdbsupport/gdb_assert.h, and gdb/gdbarch.py.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
Change-Id: Ia6f372c11550ca876829e8fd85048f4502bdcf06
2022-10-19 15:32:36 +01:00

124 lines
2.5 KiB
C++

/* Error reporting facilities.
Copyright (C) 1986-2022 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "common-defs.h"
#include "errors.h"
#ifdef USE_WIN32API
#include <windows.h>
#endif /* USE_WIN32API */
/* See gdbsupport/errors.h. */
void
warning (const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
vwarning (fmt, ap);
va_end (ap);
}
/* See gdbsupport/errors.h. */
void
error (const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
verror (fmt, ap);
va_end (ap);
}
/* See gdbsupport/errors.h. */
void
internal_error_loc (const char *file, int line, const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
internal_verror (file, line, fmt, ap);
va_end (ap);
}
/* See gdbsupport/errors.h. */
void
internal_warning_loc (const char *file, int line, const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
internal_vwarning (file, line, fmt, ap);
va_end (ap);
}
#ifdef USE_WIN32API
/* See errors.h. */
const char *
strwinerror (ULONGEST error)
{
static char buf[1024];
TCHAR *msgbuf;
DWORD lasterr = GetLastError ();
DWORD chars = FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
| FORMAT_MESSAGE_ALLOCATE_BUFFER,
NULL,
error,
0, /* Default language */
(LPTSTR) &msgbuf,
0,
NULL);
if (chars != 0)
{
/* If there is an \r\n appended, zap it. */
if (chars >= 2
&& msgbuf[chars - 2] == '\r'
&& msgbuf[chars - 1] == '\n')
{
chars -= 2;
msgbuf[chars] = 0;
}
if (chars > ARRAY_SIZE (buf) - 1)
{
chars = ARRAY_SIZE (buf) - 1;
msgbuf [chars] = 0;
}
#ifdef UNICODE
wcstombs (buf, msgbuf, chars + 1);
#else
strncpy (buf, msgbuf, chars + 1);
#endif
LocalFree (msgbuf);
}
else
sprintf (buf, "unknown win32 error (%u)", (unsigned) error);
SetLastError (lasterr);
return buf;
}
#endif /* USE_WIN32API */