Create dwarf2/leb.[ch]
This moves some scalar-unpacking code into a couple of new files,
dwarf2/leb.h and dwarf2/leb.c.
gdb/ChangeLog
2020-02-08 Tom Tromey <tom@tromey.com>
* dwarf2read.h (read_unsigned_leb128): Don't declare.
* dwarf2read.c (read_1_byte, read_1_signed_byte, read_2_bytes)
(read_2_signed_bytes, read_3_bytes, read_4_bytes)
(read_4_signed_bytes, read_8_bytes): Move to dwarf2/leb.h.
(read_unsigned_leb128, read_signed_leb128): Move to dwarf2/leb.c.
* dwarf2/leb.h: New file, from dwarf2read.c.
* dwarf2/leb.c: New file, from dwarf2read.c.
* dwarf2-frame.c (read_1_byte, read_4_bytes, read_8_bytes):
Remove.
* Makefile.in (CONFIG_SRC_SUBDIR): Add dwarf2.
(COMMON_SFILES): Add dwarf2/leb.c.
Change-Id: Idd19647686c8f959d226a95fdfca4db47c6e96d0
2020-02-09 04:40:54 +08:00
|
|
|
/* Low-level DWARF 2 reading code
|
|
|
|
|
2023-01-01 20:49:04 +08:00
|
|
|
Copyright (C) 1994-2023 Free Software Foundation, Inc.
|
Create dwarf2/leb.[ch]
This moves some scalar-unpacking code into a couple of new files,
dwarf2/leb.h and dwarf2/leb.c.
gdb/ChangeLog
2020-02-08 Tom Tromey <tom@tromey.com>
* dwarf2read.h (read_unsigned_leb128): Don't declare.
* dwarf2read.c (read_1_byte, read_1_signed_byte, read_2_bytes)
(read_2_signed_bytes, read_3_bytes, read_4_bytes)
(read_4_signed_bytes, read_8_bytes): Move to dwarf2/leb.h.
(read_unsigned_leb128, read_signed_leb128): Move to dwarf2/leb.c.
* dwarf2/leb.h: New file, from dwarf2read.c.
* dwarf2/leb.c: New file, from dwarf2read.c.
* dwarf2-frame.c (read_1_byte, read_4_bytes, read_8_bytes):
Remove.
* Makefile.in (CONFIG_SRC_SUBDIR): Add dwarf2.
(COMMON_SFILES): Add dwarf2/leb.c.
Change-Id: Idd19647686c8f959d226a95fdfca4db47c6e96d0
2020-02-09 04:40:54 +08:00
|
|
|
|
|
|
|
Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
|
|
|
|
Inc. with support from Florida State University (under contract
|
|
|
|
with the Ada Joint Program Office), and Silicon Graphics, Inc.
|
|
|
|
Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
|
|
|
|
based on Fred Fish's (Cygnus Support) implementation of DWARF 1
|
|
|
|
support.
|
|
|
|
|
|
|
|
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 "defs.h"
|
|
|
|
#include "dwarf2/leb.h"
|
|
|
|
|
|
|
|
ULONGEST
|
|
|
|
read_unsigned_leb128 (bfd *abfd, const gdb_byte *buf,
|
|
|
|
unsigned int *bytes_read_ptr)
|
|
|
|
{
|
|
|
|
ULONGEST result;
|
|
|
|
unsigned int num_read;
|
|
|
|
int shift;
|
|
|
|
unsigned char byte;
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
shift = 0;
|
|
|
|
num_read = 0;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
byte = bfd_get_8 (abfd, buf);
|
|
|
|
buf++;
|
|
|
|
num_read++;
|
|
|
|
result |= ((ULONGEST) (byte & 127) << shift);
|
|
|
|
if ((byte & 128) == 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
shift += 7;
|
|
|
|
}
|
|
|
|
*bytes_read_ptr = num_read;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
LONGEST
|
|
|
|
read_signed_leb128 (bfd *abfd, const gdb_byte *buf,
|
|
|
|
unsigned int *bytes_read_ptr)
|
|
|
|
{
|
|
|
|
ULONGEST result;
|
|
|
|
int shift, num_read;
|
|
|
|
unsigned char byte;
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
shift = 0;
|
|
|
|
num_read = 0;
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
byte = bfd_get_8 (abfd, buf);
|
|
|
|
buf++;
|
|
|
|
num_read++;
|
|
|
|
result |= ((ULONGEST) (byte & 127) << shift);
|
|
|
|
shift += 7;
|
|
|
|
if ((byte & 128) == 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((shift < 8 * sizeof (result)) && (byte & 0x40))
|
|
|
|
result |= -(((ULONGEST) 1) << shift);
|
|
|
|
*bytes_read_ptr = num_read;
|
|
|
|
return result;
|
|
|
|
}
|
2020-02-09 04:40:54 +08:00
|
|
|
|
|
|
|
/* See leb.h. */
|
|
|
|
|
|
|
|
LONGEST
|
|
|
|
read_initial_length (bfd *abfd, const gdb_byte *buf, unsigned int *bytes_read,
|
|
|
|
bool handle_nonstd)
|
|
|
|
{
|
|
|
|
LONGEST length = bfd_get_32 (abfd, buf);
|
|
|
|
|
|
|
|
if (length == 0xffffffff)
|
|
|
|
{
|
|
|
|
length = bfd_get_64 (abfd, buf + 4);
|
|
|
|
*bytes_read = 12;
|
|
|
|
}
|
|
|
|
else if (handle_nonstd && length == 0)
|
|
|
|
{
|
|
|
|
/* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
|
|
|
|
length = bfd_get_64 (abfd, buf);
|
|
|
|
*bytes_read = 8;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*bytes_read = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
2020-02-09 04:40:54 +08:00
|
|
|
|
|
|
|
/* See leb.h. */
|
|
|
|
|
|
|
|
LONGEST
|
|
|
|
read_offset (bfd *abfd, const gdb_byte *buf, unsigned int offset_size)
|
|
|
|
{
|
|
|
|
LONGEST retval = 0;
|
|
|
|
|
|
|
|
switch (offset_size)
|
|
|
|
{
|
|
|
|
case 4:
|
|
|
|
retval = bfd_get_32 (abfd, buf);
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
retval = bfd_get_64 (abfd, buf);
|
|
|
|
break;
|
|
|
|
default:
|
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-18 00:12:20 +08:00
|
|
|
internal_error (_("read_offset_1: bad switch [in module %s]"),
|
2020-02-09 04:40:54 +08:00
|
|
|
bfd_get_filename (abfd));
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|