[new release] sail (13 packages) (0.20) - #28713
Merged
Merged
Conversation
CHANGES: In addition to bug-fixes and smaller improvements, the following changes and improvements have been made to the language: ##### Rocq Semantics The core stepwise semantics of Sail that are currently used by the interactive REPL and during optimisation passes like constant-folding are now implemented in Rocq and extracted to OCaml. ##### Improved C++ support New C++ `--cpp` backend that is a variant of the Sail C backend. It wraps the generated model in a struct, so when using C++ multiple instances can be created. PR: rems-project/sail#1437 As part of the above work, Sail always generates a separate header file for C or C++, meaning the `--c-generate-header` option is redundant and deprecated. The `--c-static` option has been removed. Small fixes to the parsing of `-` and foreach loops. Slightly breaking as `from`, `to`, and `downto` are now treated as proper keywords and cannot be used as identifiers. ##### Other changes Arguments can now be passed via the `SAIL_FLAGS` environment variable, or via `SAIL_ENCODED_FLAGS`. PR: rems-project/sail#1374
Contributor
Author
|
Not sure what the issue is with the conf-gmp package in the lower-bounds CI, I have a similar job set up in the Sail repository and it was quite happy to build with that version of conf-gmp. |
Member
|
Don't worry about |
Member
|
Looks all right, thanks! |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sail is a language for describing the instruction semantics of processors
CHANGES:
In addition to bug-fixes and smaller improvements, the following
changes and improvements have been made to the language:
Rocq Semantics
The core stepwise semantics of Sail that are currently used by the
interactive REPL and during optimisation passes like constant-folding
are now implemented in Rocq and extracted to OCaml.
Improved C++ support
New C++
--cppbackend that is a variant of the Sail C backend. Itwraps the generated model in a struct, so when using C++ multiple
instances can be created.
PR: rems-project/sail#1437
As part of the above work, Sail always generates a separate header
file for C or C++, meaning the
--c-generate-headeroption isredundant and deprecated.
The
--c-staticoption has been removed.Small fixes to the parsing of
-and foreach loops. Slightly breakingas
from,to, anddowntoare now treated as proper keywords andcannot be used as identifiers.
Other changes
Arguments can now be passed via the
SAIL_FLAGSenvironment variable,or via
SAIL_ENCODED_FLAGS.PR: rems-project/sail#1374