Skip to content

Commit 515ea80

Browse files
author
pascalgouedo
authored
Merge pull request #2473 from XavierAubert/cv32e40p/fix_another_compress_reg_issue
CV32E40Pv2 another case of conflict around compress reg fixed
2 parents c755500 + 947e888 commit 515ea80

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

cv32e40p/env/corev-dv/cv32e40p_instr_base_test.sv

+6
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ class cv32e40p_instr_base_test extends corev_instr_base_test;
4646
override_debug_rom_gen();
4747
override_instr_stream();
4848
override_load_store_lib();
49+
override_loop_instr();
4950
super.build_phase(phase);
5051
endfunction
5152

@@ -133,6 +134,11 @@ class cv32e40p_instr_base_test extends corev_instr_base_test;
133134
uvm_factory::get().set_type_override_by_type(riscv_mem_region_stress_test::get_type(), cv32e40p_mem_region_stress_test::get_type());
134135
endfunction
135136

137+
// to avoid loop tests to reserve all S0:A5 regs used by compressed instructions
138+
virtual function void override_loop_instr();
139+
uvm_factory::get().set_type_override_by_type(riscv_loop_instr::get_type(), cv32e40p_loop_instr::get_type());
140+
endfunction
141+
136142
virtual function void apply_directed_instr();
137143
endfunction
138144

cv32e40p/env/corev-dv/cv32e40p_instr_test_pkg.sv

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ package cv32e40p_instr_test_pkg;
114114
`include "cv32e40p_debug_rom_gen.sv"
115115
`include "cv32e40p_asm_program_gen.sv"
116116
`include "cv32e40p_load_store_instr_lib.sv"
117+
`include "cv32e40p_loop_instr.sv"
117118

118119
`include "cv32e40p_instr_base_test.sv"
119120

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
/*
2+
* Copyright 2018 Google LLC
3+
* Copyright 2024 Dolphin Design
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
class cv32e40p_loop_instr extends riscv_loop_instr;
19+
rand int loop_cnt_has_taken_avail_comp_reg[];
20+
rand int loop_limit_has_taken_avail_comp_reg[];
21+
riscv_reg_t s0_a5_avail_regs[];
22+
23+
constraint with_compress_instructions_c {
24+
loop_cnt_has_taken_avail_comp_reg.size() == loop_cnt_reg.size();
25+
loop_limit_has_taken_avail_comp_reg.size() == loop_limit_reg.size();
26+
foreach(loop_cnt_reg[i]) {
27+
if (loop_cnt_reg[i] inside {s0_a5_avail_regs}) {
28+
loop_cnt_has_taken_avail_comp_reg[i] == 1;
29+
} else {
30+
loop_cnt_has_taken_avail_comp_reg[i] == 0;
31+
}
32+
}
33+
foreach(loop_limit_reg[i]) {
34+
if (loop_limit_reg[i] inside {s0_a5_avail_regs}) {
35+
loop_limit_has_taken_avail_comp_reg[i] == 1;
36+
} else {
37+
loop_limit_has_taken_avail_comp_reg[i] == 0;
38+
}
39+
}
40+
// to make sure at least one is left for compress instructions
41+
// count the number of ones (= taken comp regs), and contraint it to be less than the number of avail regs
42+
if (cfg.disable_compressed_instr == 0) {
43+
loop_cnt_has_taken_avail_comp_reg.sum() + loop_limit_has_taken_avail_comp_reg.sum() < s0_a5_avail_regs.size();
44+
}
45+
}
46+
47+
`uvm_object_utils(cv32e40p_loop_instr)
48+
`uvm_object_new
49+
50+
function void pre_randomize();
51+
super.pre_randomize();
52+
s0_a5_avail_regs = {S0, S1, A0, A1, A2, A3, A4, A5};
53+
s0_a5_avail_regs = s0_a5_avail_regs.find() with (!(item inside {cfg.reserved_regs, reserved_rd}));
54+
endfunction
55+
56+
endclass

0 commit comments

Comments
 (0)