|
| 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