]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
compiler, libgo: don't pad sparc64-linux epollevent
authorIan Lance Taylor <iant@golang.org>
Wed, 29 Dec 2021 23:08:32 +0000 (15:08 -0800)
committerIan Lance Taylor <iant@golang.org>
Wed, 29 Dec 2021 23:52:23 +0000 (15:52 -0800)
Change the compiler to not add zero padding because of zero-sized
fields named "_", since those can't be referenced anyhow.

Change the sparc-linux64 epollevent struct to name the alignment
field "_", to avoid zero padding.

Fixes PR go/103847

PR go/103847
* godump.c (go_force_record_alignment): Name the alignment
field "_".

Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/374914

gcc/go/gofrontend/MERGE
gcc/go/gofrontend/types.cc
gcc/godump.c
libgo/mkrsysinfo.sh

index 05e47ec3fa9a1d4f876ac33d926d941aff4ecc1b..2d04f4b01c0d09e8286547607acb74d5cf81aab2 100644 (file)
@@ -1,4 +1,4 @@
-3e9f4ee16683883ccfb8661d99318c74bb7a4bef
+d3be41f0a1fca20e241e1db62b4b0f5262caac55
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index 0f66661937cde3c870cc24da523b84eddc77b4ca..57c02a97ef096ee5b8eef48cfd3e6fde90416659 100644 (file)
@@ -6454,9 +6454,18 @@ get_backend_struct_fields(Gogo* gogo, Struct_type* type, bool use_placeholder,
                             ? p->type()->get_backend_placeholder(gogo)
                             : p->type()->get_backend(gogo));
       (*bfields)[i].location = p->location();
-      lastsize = gogo->backend()->type_size((*bfields)[i].btype);
-      if (lastsize != 0)
-        saw_nonzero = true;
+      int64_t size = gogo->backend()->type_size((*bfields)[i].btype);
+      if (size != 0)
+       saw_nonzero = true;
+
+      if (size > 0 || !Gogo::is_sink_name(p->field_name()))
+       lastsize = size;
+      else
+       {
+         // There is an unreferenceable field of zero size.  This
+         // doesn't affect whether we may need zero padding, so leave
+         // lastsize unchanged.
+       }
     }
   go_assert(i == fields->size());
   if (saw_nonzero && lastsize == 0 && !type->is_results_struct())
index a50aef1f5fa0a85f06ae591d4bfeca8fc417607b..f016989c93f0b9c8bd2c565146b6c98416d06f20 100644 (file)
@@ -651,7 +651,7 @@ go_force_record_alignment (struct obstack *ob, const char *type_string,
                           unsigned int index, const char *error_string)
 {
   index = go_append_artificial_name (ob, index);
-  obstack_grow (ob, "_align ", 7);
+  obstack_grow (ob, "_ ", 2);
   if (type_string == NULL)
     obstack_grow (ob, error_string, strlen (error_string));
   else
index 18643370645727eb690109766dc73e5948438370..be150905f91750b5d014848cae35d86cad82a047 100755 (executable)
@@ -98,7 +98,7 @@ if grep '^const _epoll_data_offset ' ${OUT} >/dev/null 2>&1; then
       echo 'type epollevent struct { events uint32; data [8]byte }' >> ${OUT}
   elif test "$val" = "8"; then
       if test "$GOARCH" = "sparc64" -a "$GOOS" = "linux"; then
-          echo 'type epollevent struct { events uint32; pad [4]byte; data [8]byte; _align [0]int64 }' >> ${OUT}
+          echo 'type epollevent struct { events uint32; pad [4]byte; data [8]byte; _ [0]int64 }' >> ${OUT}
       else
           echo 'type epollevent struct { events uint32; pad [4]byte; data [8]byte }' >> ${OUT}
       fi