Skip to content

Commit

Permalink
Split Zilsd into Zilsd and Zcmlsd
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-herber-nxp committed Apr 16, 2024
1 parent 7e837b7 commit 63285ba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion riscv_config/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"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
9 changes: 6 additions & 3 deletions riscv_config/isa_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +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 'Zilsd' in extension_list and 'Zcf' in extension_list:
err_list.append( "Zilsd includes compressed encodings that are mutually exclusive with Zcf.")
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 63285ba

Please sign in to comment.