-
Notifications
You must be signed in to change notification settings - Fork 685
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CVA6-DV : Add ecall instruction into generate tests (#1604)
- Loading branch information
1 parent
2c4d8b3
commit 24a8992
Showing
3 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright 2020 OpenHW Group | ||
* Copyright 2020 Silicon Labs, Inc. | ||
* Copyright 2023 Thales DIS France SAS | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* | ||
* cva6_ecall_isntr_stream: Directed test stream to inject ECALL in tests | ||
*/ | ||
|
||
class cva6_ecall_instr_stream_c extends cva6_load_store_rand_instr_stream_c; | ||
|
||
// Number of ecall instructions to generate (note: will be back-to-back) | ||
rand int unsigned ecall_cnt; | ||
|
||
constraint ecall_c { | ||
ecall_cnt inside {[1:4]}; | ||
} | ||
|
||
`uvm_object_utils(cva6_ecall_instr_stream_c) | ||
`uvm_object_new | ||
|
||
virtual function void add_mixed_instr(int instr_cnt); | ||
super.add_mixed_instr(instr_cnt); | ||
add_ecall(ecall_cnt); | ||
endfunction : add_mixed_instr | ||
|
||
virtual function void add_ecall(int unsigned cnt); | ||
riscv_instr ecall_instr; | ||
|
||
for (int i = 0; i < cnt; i++) begin | ||
ecall_instr = riscv_instr::get_rand_instr(.include_instr({ECALL})); | ||
`DV_CHECK_RANDOMIZE_FATAL(ecall_instr) | ||
ecall_instr.comment = "cva6-dv: cva6_ecall_instr_stream"; | ||
insert_instr(ecall_instr); | ||
end | ||
endfunction : add_ecall | ||
|
||
endclass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters