loongarch: ignore zero-size fields in calling convention
authorXi Ruoyao <xry111@mengyan1223.wang>
Wed, 27 Apr 2022 11:45:59 +0000 (19:45 +0800)
committerLulu Cheng <chenglulu@loongson.cn>
Thu, 28 Apr 2022 01:20:40 +0000 (09:20 +0800)
gcc/

* config/loongarch/loongarch.cc
(loongarch_flatten_aggregate_field): Ignore empty fields for
RECORD_TYPE.

gcc/testsuite/

* gcc.target/loongarch/zero-size-field-pass.c: New test.
* gcc.target/loongarch/zero-size-field-ret.c: New test.

gcc/config/loongarch/loongarch.cc
gcc/testsuite/gcc.target/loongarch/zero-size-field-pass.c [new file with mode: 0644]
gcc/testsuite/gcc.target/loongarch/zero-size-field-ret.c [new file with mode: 0644]

index f22150a..80046b6 100644 (file)
@@ -329,6 +329,9 @@ loongarch_flatten_aggregate_field (const_tree type,
            if (!TYPE_P (TREE_TYPE (f)))
              return -1;
 
+           if (DECL_SIZE (f) && integer_zerop (DECL_SIZE (f)))
+             continue;
+
            HOST_WIDE_INT pos = offset + int_byte_position (f);
            n = loongarch_flatten_aggregate_field (TREE_TYPE (f), fields, n,
                                                   pos);
diff --git a/gcc/testsuite/gcc.target/loongarch/zero-size-field-pass.c b/gcc/testsuite/gcc.target/loongarch/zero-size-field-pass.c
new file mode 100644 (file)
index 0000000..999dc91
--- /dev/null
@@ -0,0 +1,30 @@
+/* Test that LoongArch backend ignores zero-sized fields of aggregates in
+   argument passing.  */
+
+/* { dg-do compile } */
+/* { dg-options "-O2 -mdouble-float -mabi=lp64d" } */
+/* { dg-final { scan-assembler "\\\$f1" } } */
+
+struct test
+{
+  int empty1[0];
+  double empty2[0];
+  int : 0;
+  float x;
+  long empty3[0];
+  long : 0;
+  float y;
+  unsigned : 0;
+  char empty4[0];
+};
+
+extern void callee (struct test);
+
+void
+caller (void)
+{
+  struct test test;
+  test.x = 114;
+  test.y = 514;
+  callee (test);
+}
diff --git a/gcc/testsuite/gcc.target/loongarch/zero-size-field-ret.c b/gcc/testsuite/gcc.target/loongarch/zero-size-field-ret.c
new file mode 100644 (file)
index 0000000..40137d9
--- /dev/null
@@ -0,0 +1,28 @@
+/* Test that LoongArch backend ignores zero-sized fields of aggregates in
+   returning.  */
+
+/* { dg-do compile } */
+/* { dg-options "-O2 -mdouble-float -mabi=lp64d" } */
+/* { dg-final { scan-assembler-not "\\\$r4" } } */
+
+struct test
+{
+  int empty1[0];
+  double empty2[0];
+  int : 0;
+  float x;
+  long empty3[0];
+  long : 0;
+  float y;
+  unsigned : 0;
+  char empty4[0];
+};
+
+extern struct test callee (void);
+
+float
+caller (void)
+{
+  struct test test = callee ();
+  return test.x + test.y;
+}