aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorEdwin Lu <ewlu@rivosinc.com>2023-11-01 10:30:18 -0700
committerEdwin Lu <ewlu@rivosinc.com>2023-11-02 15:55:43 -0700
commita29ce9bf8d87e632840bacacb663ece90a5c7710 (patch)
treead68d681497571d00ba1aba52a67738018e25dd0 /gcc
parent7c1d011bc1f8b26dba4ebcbd4a429628dfb2698d (diff)
downloadgcc-a29ce9bf8d87e632840bacacb663ece90a5c7710.zip
gcc-a29ce9bf8d87e632840bacacb663ece90a5c7710.tar.gz
gcc-a29ce9bf8d87e632840bacacb663ece90a5c7710.tar.bz2
RISC-V: Add check for types without insn reservations
Now that all insns are guaranteed to have a type, ensure every insn is associated with a cpu unit/insn reservation. gcc/ChangeLog: * config/riscv/riscv.cc (riscv_sched_variable_issue): add disabled assert Signed-off-by: Edwin Lu <ewlu@rivosinc.com>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/riscv/riscv.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc
index 895a098..08ff05d 100644
--- a/gcc/config/riscv/riscv.cc
+++ b/gcc/config/riscv/riscv.cc
@@ -7751,6 +7751,12 @@ riscv_sched_variable_issue (FILE *, int, rtx_insn *insn, int more)
an assert so we can find and fix this problem. */
gcc_assert (get_attr_type (insn) != TYPE_UNKNOWN);
+ /* If we ever encounter an insn without an insn reservation, trip
+ an assert so we can find and fix this problem. */
+#if 0
+ gcc_assert (insn_has_dfa_reservation_p (insn));
+#endif
+
return more - 1;
}