public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-2330] RISC-V: Add vector registers in TARGET_CONDITIONAL_REGISTER_USAGE
@ 2022-09-01  2:04 Kito Cheng
  0 siblings, 0 replies; only message in thread
From: Kito Cheng @ 2022-09-01  2:04 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:e8c83ab9d5142a305bbd75c7ff0e41eae38433df

commit r13-2330-ge8c83ab9d5142a305bbd75c7ff0e41eae38433df
Author: zhongjuzhe <juzhe.zhong@rivai.ai>
Date:   Tue Aug 30 14:27:52 2022 +0800

    RISC-V: Add vector registers in TARGET_CONDITIONAL_REGISTER_USAGE
    
    gcc/ChangeLog:
    
            * config/riscv/riscv.cc (riscv_conditional_register_usage): Add vector
            registers.

Diff:
---
 gcc/config/riscv/riscv.cc | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc
index 30cbf00542e..675d92c0961 100644
--- a/gcc/config/riscv/riscv.cc
+++ b/gcc/config/riscv/riscv.cc
@@ -5438,6 +5438,15 @@ riscv_conditional_register_usage (void)
       for (int regno = FP_REG_FIRST; regno <= FP_REG_LAST; regno++)
 	call_used_regs[regno] = 1;
     }
+
+  if (!TARGET_VECTOR)
+    {
+      for (int regno = V_REG_FIRST; regno <= V_REG_LAST; regno++)
+	fixed_regs[regno] = call_used_regs[regno] = 1;
+
+      fixed_regs[VTYPE_REGNUM] = call_used_regs[VTYPE_REGNUM] = 1;
+      fixed_regs[VL_REGNUM] = call_used_regs[VL_REGNUM] = 1;
+    }
 }
 
 /* Return a register priority for hard reg REGNO.  */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-09-01  2:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-01  2:04 [gcc r13-2330] RISC-V: Add vector registers in TARGET_CONDITIONAL_REGISTER_USAGE Kito Cheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).