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

crux-mir-comp: Support nightly-2023-01-23 #1891

Merged
merged 3 commits into from
Jul 14, 2023
Merged

Commits on Jul 13, 2023

  1. crux-mir-comp: Support nightly-2023-01-23

    This patch bumps the `crucible` submodule to bring in the changes from
    GaloisInc/crucible#1096 and updates the code in `crucible-mir-comp` and
    `crux-mir-comp` accordingly. Some highlights:
    
    * All of the `crux-mir-comp` test cases now use `crux::test` instead of
      `crux_test`.
    * All of the `crux-mir-comp` test cases now scrub out the values of crate hash
      disambiguators to make their output more stable.
    * The overrides in `crux-mir-comp` no longer depend on the specific
      disambiguator values being used, which makes them work with the sometimes
      unpredictable hash values used for crate disambiguators.
    * I have added a `tyToShape` case for `TyStr` to handle new kinds of static
      values that arise in the new Rust nightly (mostly coming from constant values
      in the `fmt` crate). The code for this case is nearly identical to that in the
      `TySlice` case.
    * There are now static values of type `TyFnPtr` in the new Rust nightly (mostly
      coming from constant values in the `fmt` crate), so in order to handle them
      in `clobberGlobals`, I needed to add a `FnPtrShape` data constructor to
      `TypeShape`. This is mostly a quick hack, since I implemented all other
      functionality for `FnPtrShape` with calls to `error`. Nevertheless, that is
      enough to make all of the tests pass. We can always fill out the calls to
      `error` later if need be.
    RyanGlScott committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    1eab705 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ebc7daf View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2023

  1. Configuration menu
    Copy the full SHA
    b6b1254 View commit details
    Browse the repository at this point in the history