amdgcn: Pass vector parameters in memory
authorAndrew Stubbs <ams@codesourcery.com>
Tue, 31 Mar 2020 16:46:17 +0000 (17:46 +0100)
committerAndrew Stubbs <ams@codesourcery.com>
Mon, 22 Jun 2020 10:07:52 +0000 (11:07 +0100)
gcc/ChangeLog:

* config/gcn/gcn.c (gcn_function_arg): Disallow vector arguments.
(gcn_return_in_memory): Return vectors in memory.

gcc/config/gcn/gcn.c

index b6ff0bbc2afed2f0a7dce6e738e28ea7e0076649..5693b75b67287b1c784b5302f89eef4f9c769a54 100644 (file)
@@ -2291,6 +2291,10 @@ gcn_function_arg (cumulative_args_t cum_v, const function_arg_info &arg)
       if (targetm.calls.must_pass_in_stack (arg))
        return 0;
 
+      /* Vector parameters are not supported yet.  */
+      if (VECTOR_MODE_P (arg.mode))
+       return 0;
+
       int reg_num = FIRST_PARM_REG + cum->num;
       int num_regs = num_arg_regs (arg);
       if (num_regs > 0)
@@ -2478,6 +2482,10 @@ gcn_return_in_memory (const_tree type, const_tree ARG_UNUSED (fntype))
   if (AGGREGATE_TYPE_P (type))
     return true;
 
+  /* Vector return values are not supported yet.  */
+  if (VECTOR_TYPE_P (type))
+    return true;
+
   if (mode == BLKmode)
     return true;