Skip to content

Commit

Permalink
regress fails on unknown mnemonic csrrw (#172)
Browse files Browse the repository at this point in the history
I have regression fails, tried on riscv-perf-model and on my fork. 

Please check my work. I did not see any previous reference to this error
but I could have missed it.

MavisUnit.cpp was missing this file:
isa_file_path + "/isa_rv64zicsr.json",

these tests failed for me on regress
	  1 - olympia_json_test (Subprocess aborted)
	  2 - olympia_json_test_report_text (Subprocess aborted)
	  3 - olympia_json_test_report_text_direct (Subprocess aborted)
	  4 - olympia_json_test_report_html (Subprocess aborted)

...
Exception while running
Unknown mnemonic 'csrrw' in ExtractorDirectInfo
...
terminate called after throwing an instance of 'mavis::UnknownMnemonic'
  what():  Unknown mnemonic 'csrrw' in ExtractorDirectInfo
...

Co-authored-by: Jeff Nye <jeff@www.condorcomputing.com>
  • Loading branch information
jeffnye-gh and Jeff Nye authored Jun 11, 2024
1 parent f2b68dd commit bcd1691
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/MavisUnit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ namespace olympia
isa_file_path + "/isa_rv64zba.json",
isa_file_path + "/isa_rv64zbb.json",
isa_file_path + "/isa_rv64zbs.json",
isa_file_path + "/isa_rv64zicsr.json",
isa_file_path + "/isa_rv64c.json",
isa_file_path + "/isa_rv64cf.json",
isa_file_path + "/isa_rv64cd.json"};
Expand Down

0 comments on commit bcd1691

Please sign in to comment.