[PATCH] [mips] Zero-sized structs cannot be ignored in MipsABIInfo::classifyReturnType() for O32

Daniel Sanders daniel.sanders at imgtec.com
Wed Aug 6 09:30:34 PDT 2014


They are returned indirectly which causes the other arguments to move to
the next argument slot.

With this, utils/ABITest does not discover any failing cases in the first
500 attempts on big/little endian for O32. Previously some of these failed.
Also tested N32/N64 little endian (big endian has other known issues) with
no issues.

http://reviews.llvm.org/D4811

Files:
  lib/CodeGen/TargetInfo.cpp
  test/CodeGen/mips-zero-sized-struct.c

Index: lib/CodeGen/TargetInfo.cpp
===================================================================
--- lib/CodeGen/TargetInfo.cpp
+++ lib/CodeGen/TargetInfo.cpp
@@ -5519,7 +5519,7 @@
 ABIArgInfo MipsABIInfo::classifyReturnType(QualType RetTy) const {
   uint64_t Size = getContext().getTypeSize(RetTy);
 
-  if (RetTy->isVoidType() || Size == 0)
+  if (RetTy->isVoidType())
     return ABIArgInfo::getIgnore();
 
   if (isAggregateTypeForABI(RetTy) || RetTy->isVectorType()) {
Index: test/CodeGen/mips-zero-sized-struct.c
===================================================================
--- /dev/null
+++ test/CodeGen/mips-zero-sized-struct.c
@@ -0,0 +1,12 @@
+// RUN: %clang -target mips-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck %s
+// RUN: %clang -target mipsel-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck %s
+// RUN: %clang -target mips64-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck %s
+// RUN: %clang -target mips64el-unknown-linux-gnu -S -emit-llvm -o - %s | FileCheck %s
+
+// CHECK: define void @fn28(%struct.T2* noalias sret %agg.result, i8 signext %arg0)
+
+typedef struct T2 {  } T2;
+T2 T2_retval;
+T2 fn28(char arg0) {
+  return T2_retval;
+}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D4811.12240.patch
Type: text/x-patch
Size: 1188 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20140806/cee9c0e4/attachment.bin>


More information about the cfe-commits mailing list