[gdb/testsuite] Fix .debug_aranges in gdb.dlang/watch-loc.c
authorTom de Vries <tdevries@suse.de>
Wed, 22 Apr 2020 11:17:32 +0000 (13:17 +0200)
committerTom de Vries <tdevries@suse.de>
Wed, 22 Apr 2020 11:17:32 +0000 (13:17 +0200)
While investigating PR25862 (an assertion failure with target board
cc-with-debug-names), I noticed that the .debug_aranges section in
gdb.dlang/watch-loc.c contains a hardcoded 0x1000:
...
"      .4byte  _Dmain \n"      // Address
"      .4byte  0x1000 \n"      // Length
...

Fix this by using the actual length of _Dmain, along the lines of how that
is done in gdb.mi/dw2-ref-missing-frame-func.c:
...
"      .4byte  _Dmain_end - _Dmain \n" // Length
...
such that the .debug_aranges entry:
...
    Address    Length
    004004a7 0000000b
    00000000 00000000
...
matches the addresses found in the corresponding CU:
...
 <2><fd>: Abbrev Number: 6 (DW_TAG_subprogram)
    <fe>   DW_AT_name        : _Dmain
    <105>   DW_AT_low_pc      : 0x4004a7
    <10d>   DW_AT_high_pc     : 0x4004b2
...

With this fix the assertion failure is no longer triggered for
gdb.dlang/watch-loc.exp.

Tested on x86_64-linux.

gdb/testsuite/ChangeLog:

2020-04-22  Tom de Vries  <tdevries@suse.de>

* gdb.dlang/watch-loc.c (.debug_aranges): Fix _Dmain length.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.dlang/watch-loc.c

index 26a15d5d0e40e7794cdea205a044753dd96444f6..33ba594e19a6c484112725c29319dda264731061 100644 (file)
@@ -1,3 +1,7 @@
+2020-04-22  Tom de Vries  <tdevries@suse.de>
+
+       * gdb.dlang/watch-loc.c (.debug_aranges): Fix _Dmain length.
+
 2020-02-18  Mihails Strasuns  <mihails.strasuns@intel.com>
 
        * gdb.base/jit-attach-pie.c: Use jit-protocol.h.
index c3159ce107975ea2a9964f7c94ed26e2eb73bffa..de594f35ae6378c788365f1701ab02c6705afa0c 100644 (file)
@@ -28,6 +28,8 @@ int _Dmain (void)
   return 0;
 }
 
+asm ("_Dmain_end: .globl _Dmain_end");
+
 int
 main (void)
 {
@@ -51,7 +53,7 @@ asm (
 "      .2byte  0 \n"   // Pad to 16 byte boundary
 "      .2byte  0 \n"
 "      .4byte  _Dmain \n"      // Address
-"      .4byte  0x1000 \n"      // Length
+"      .4byte  _Dmain_end - _Dmain \n" // Length
 "      .4byte  0 \n"
 "      .4byte  0 \n"
 ".Laranges_end: \n"