Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify bidirectional mapping clause restrictions #651

Open
ThinkOpenly opened this issue Jul 29, 2024 · 0 comments
Open

Clarify bidirectional mapping clause restrictions #651

ThinkOpenly opened this issue Jul 29, 2024 · 0 comments

Comments

@ThinkOpenly
Copy link
Contributor

Section "Mappings" says:

Sometimes, because the subset of Sail allowed in bidirectional mapping clauses is quite restrictive, it can be useful to specify the forwards and backwards part of a mapping separately

It would be helpful to specify the restrictions more precisely.

For example, apparently, mappings are OK, but function calls are not:

default Order dec
$include <vector.sail>
function rb5 () : unit -> bits(5) = 0b00000
function x() : unit -> bits(16) = rb5() @ 0b00000000000
enum word_width = { BYTE, HALF, WORD, DOUBLE }
enum bzenum = { BZ5, BZ12, BZ16 }
mapping bz5 : bzenum <-> bits(5) = { BZ5 <-> 0b00000 }
mapping size_bits : word_width <-> bits(5) = {
  BYTE   <-> rb5(),
Type error:
  |          ^---^
  | rb5 is not a union constructor or mapping in mapping-pattern rb5(())

  forwards HALF => rb5(),
  backwards rb5() => HALF,
Type error:
   |        ^---^
   | rb5 is not a union constructor or mapping in pattern rb5(())

  WORD   <-> bz5(BZ5),
  DOUBLE <-> 0b0 @ 0b0 @ 0b011
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants