Skip to content

Commit

Permalink
Add Load/Store Pair for RV32 extensions (Zilsd & Zcmlsd) (#177)
Browse files Browse the repository at this point in the history
* Adding support for Zilsd extension

* Split Zilsd into Zilsd and Zcmlsd
  • Loading branch information
christian-herber-nxp authored Jun 7, 2024
1 parent 935ba69 commit ee0dfa2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions riscv_config/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
] + Zvef_extensions + Zved_extensions

Z_extensions = [
"Zicbom", "Zicbop", "Zicboz", "Zicntr", "Zicsr", "Zicond", "Zicfilp", "Zicfiss", "Zifencei", "Zihintpause", "Zihpm", "Zimop",
"Zicbom", "Zicbop", "Zicboz", "Zicntr", "Zicsr", "Zicond", "Zicfilp", "Zicfiss", "Zifencei", "Zihintpause", "Zihpm", "Zilsd", "Zimop",
"Zmmul",
"Zam", "Zabha", "Zacas",
"Zca", "Zcb", "Zcf", "Zcd" , "Zcmp", "Zcmt", "Zcmop",
"Zca", "Zcb", "Zcf", "Zcd" , "Zcmp", "Zcmt", "Zcmop", "Zcmlsd",
"Zfh", "Zfa",
"Zfinx", "Zdinx", "Zhinx", "Zhinxmin",
"Ztso",
Expand Down
6 changes: 6 additions & 0 deletions riscv_config/isa_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ def get_extension_list(isa):
if 'S' in extension_list and not 'U' in extension_list:
err_list.append( "S cannot exist without U.")
err = True
if 'Zcmlsd' in extension_list and 'Zcf' in extension_list:
err_list.append( "Zcmlsd encodings are mutually exclusive with Zcf.")
err = True
if 'Zcmlsd' in extension_list and 'Zilsd' not in extension_list:
err_list.append( "Zcmlsd cannot exist without Zilsd.")
err = True
if 'Zkn' in extension_list and ( set(['Zbkb', 'Zbkc', 'Zbkx', 'Zkne', 'Zknd', 'Zknh']) & set(extension_list)):
err_list.append( "Zkn is a superset of Zbkb, Zbkc, Zbkx, Zkne, Zknd, Zknh. In presence of Zkn the subsets must be ignored in the ISA string.")
err = True
Expand Down

0 comments on commit ee0dfa2

Please sign in to comment.