Tom Tromey
6ad036d703
Fix handling of DW_AT_data_bit_offset
...
A newer version of GCC will now emit member locations using just
DW_AT_data_bit_offset, like:
<3><14fe>: Abbrev Number: 1 (DW_TAG_member)
<14ff> DW_AT_name : (indirect string, offset: 0x215e): nb_bytes
<1503> DW_AT_decl_file : 1
<1503> DW_AT_decl_line : 10
<1504> DW_AT_decl_column : 7
<1505> DW_AT_type : <0x150b>
<1509> DW_AT_bit_size : 31
<150a> DW_AT_data_bit_offset: 64
whereas earlier versions would emit something like:
<3><164f>: Abbrev Number: 7 (DW_TAG_member)
<1650> DW_AT_name : (indirect string, offset: 0x218d): nb_bytes
<1654> DW_AT_decl_file : 1
<1655> DW_AT_decl_line : 10
<1656> DW_AT_decl_column : 7
<1657> DW_AT_type : <0x165f>
<165b> DW_AT_byte_size : 4
<165c> DW_AT_bit_size : 31
<165d> DW_AT_bit_offset : 1
<165e> DW_AT_data_member_location: 8
That is, DW_AT_data_member_location is not emitted any more. This is
a change due to the switch to DWARF 5 by default.
This change pointed out an existing bug in gdb, namely that the
attr_to_dynamic_prop depends on the presence of
DW_AT_data_member_location. This patch moves the handling of
DW_AT_data_bit_offset into handle_data_member_location, and updates
attr_to_dynamic_prop to handle this new case.
A new test case is included. This test fails with GCC 11, but passes
with an earlier version of GCC.
2021-09-24 09:29:09 -06:00
..
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-06-04 13:51:23 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-15 06:23:12 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-08-02 10:11:22 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-04-30 07:33:01 -06:00
2021-08-02 10:11:23 -06:00
2021-03-15 06:23:12 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-25 08:13:51 -07:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-25 07:38:21 -07:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-04-28 10:19:57 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-15 06:23:13 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-09-24 09:29:09 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-15 06:23:13 -06:00
2021-01-01 12:12:21 +04:00
2021-01-08 12:20:43 -07:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-06-04 13:51:23 -06:00
2021-01-01 12:12:21 +04:00
2021-07-27 16:56:23 +02:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-07-21 14:19:51 +02:00
2021-01-01 12:12:21 +04:00
2021-03-15 06:23:12 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-09-20 15:07:57 +02:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-02-11 07:23:42 +10:30
2021-01-01 12:12:21 +04:00
2021-08-02 10:11:22 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-08-02 10:48:30 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-04-30 07:33:01 -06:00
2021-08-02 10:11:23 -06:00
2021-03-15 06:23:12 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-07-21 14:19:51 +02:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-15 08:20:24 -06:00
2021-01-01 12:12:21 +04:00
2021-07-22 14:36:31 +02:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-09-21 00:54:08 +02:00
2021-07-22 14:36:31 +02:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-25 07:38:21 -07:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-09-21 00:41:26 +02:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-04-28 10:19:57 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-15 06:23:13 -06:00
2021-01-01 12:12:21 +04:00
2021-01-28 08:14:58 +01:00
2021-07-21 14:19:51 +02:00
2021-01-01 12:12:21 +04:00
2021-09-24 09:29:09 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-07-22 14:36:31 +02:00
2021-01-01 12:12:21 +04:00
2021-05-07 10:56:20 -04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-06-25 08:07:21 -06:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-03-15 06:23:13 -06:00
2021-01-01 12:12:21 +04:00
2021-01-08 12:20:43 -07:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00
2021-01-01 12:12:21 +04:00