Fix build failure in d10v sim
authorLuis Machado <luis.machado@linaro.org>
Mon, 10 May 2021 19:06:50 +0000 (16:06 -0300)
committerLuis Machado <luis.machado@linaro.org>
Wed, 12 May 2021 03:57:46 +0000 (00:57 -0300)
While building all targets on Ubuntu 20.04/aarch64, I ran into the following
build error:

In file included from /usr/include/string.h:495,
                 from ../../bfd/bfd.h:48,
                 from ../../../../repos/binutils-gdb/sim/d10v/interp.c:4:
In function memset,
    inlined from sim_create_inferior at ../../../../repos/binutils-gdb/sim/d10v/interp.c:1146:3:
/usr/include/aarch64-linux-gnu/bits/string_fortified.h:71:10: error: __builtin_memset offset [33, 616] from the object at State is out of the bounds of referenced subobject regs with type reg_t[16] {aka short unsigned int[16]} at offset 0 [-Werror=array-bounds]
   71 |   return __builtin___memset_chk (__dest, __ch, __len, __bos0 (__dest));
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
make[3]: *** [Makefile:558: interp.o] Error 1

The following patch fixes this.

sim/ChangeLog:

2021-05-12  Luis Machado  <luis.machado@linaro.org>

* d10v/interp.c (sim_create_inferior): Fix memset call.

sim/ChangeLog
sim/d10v/interp.c

index 469e768aee03a865fb87e59b0b5ad6c54e41b4b8..96588c7a78057076e62e004fbc4cdf94ead9a253 100644 (file)
@@ -1,3 +1,7 @@
+2021-05-12  Luis Machado  <luis.machado@linaro.org>
+
+       * d10v/interp.c (sim_create_inferior): Fix memset call.
+
 2021-05-07  Dimitar Dimitrov  <dimitar@dinux.eu>
 
        * Makefile.in: Rebuild.
index 86e566a79fb836fdcde6c7e21d274ac1eaf85df6..62507760af945bc9918811167085f676ab1a7a4b 100644 (file)
@@ -13,6 +13,7 @@
 
 #include <string.h>
 #include <stdlib.h>
+#include <assert.h>
 
 enum _leftright { LEFT_FIRST, RIGHT_FIRST };
 
@@ -1142,8 +1143,12 @@ sim_create_inferior (SIM_DESC sd, struct bfd *abfd,
 {
   bfd_vma start_address;
 
-  /* reset all state information */
-  memset (&State.regs, 0, (uintptr_t)&State.mem - (uintptr_t)&State.regs);
+  /* Make sure we have the right structure for the following memset.  */
+  static_assert ((uintptr_t) &State == (uintptr_t) &State.regs,
+                "&State != &State.regs");
+
+  /* Reset state from the regs field until the mem field.  */
+  memset (&State, 0, (uintptr_t) &State.mem - (uintptr_t) &State.regs);
 
   /* There was a hack here to copy the values of argc and argv into r0
      and r1.  The values were also saved into some high memory that