-
Notifications
You must be signed in to change notification settings - Fork 125
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
Lean: Partially fix remove_e_assign rewrite #1181
Conversation
Test Results 13 files 27 suites 0s ⏱️ Results for commit 57a1570. ♻️ This comment has been updated with latest results. |
Thank you for this update. This is amazing. I just tested this. While it does not regress, it seemingly does not resolve the issue that have seen for the following code: This patch still leads the following two warnings:
in the following code: def loop (_ : Unit) : SailM Unit := do
let insns_per_tick := (plat_insns_per_tick ())
let i : Int := 0
let step_no : Int := 0
let (u__3, i, step_no) ← (( do
let mut loop_vars := (i, step_no)
while (← (λ (i, step_no) => do (pure (not (← readReg htif_done)))) loop_vars) do
let (i, step_no) := loop_vars
loop_vars ← do
let stepped ← do (step step_no)
let step_no ← (( do
if stepped
then
let step_no : Int := (step_no +i 1)
let _ : Unit :=
if (get_config_print_instr ())
then (print_step ())
else ()
(cycle_count ())
(pure step_no)
else (pure step_no) ) : SailM Int )
(pure ((← do
if (← readReg htif_done)
then
let exit_val ← do (pure (BitVec.toNat (← readReg htif_exit_code)))
if (BEq.beq exit_val 0)
then (pure (print "SUCCESS"))
else (pure (print_int "FAILURE: " exit_val))
else
let i := ((i +i 1) : Int)
if (BEq.beq i insns_per_tick)
then
(tick_clock ())
(tick_platform ())
let i := (0 : Int)
(pure ())
else (pure ())), i, step_no))
(pure loop_vars) ) : SailM (Unit × Int × Int) ) |
I am currently still applying the following patch to risc-v, but if I drop it I get another well-known error:
Error without patch:
|
It fixes the snippet @Alasdair mentions above. On the RISC-V code I still get
But @Alasdair also didn't claim it resolves the issue there. |
8315e6f
to
64e9ad9
Compare
It seems like sometimes we end up rewriting to a while statement into something of type |
Ah, it's not that it's an extra unit type, it's just that |
64e9ad9
to
74ff42a
Compare
We do have some test cases working for updating variables ( |
Looks like it has to do with purity of the loop in combination with updating variables. Adding a print statement inside the loop breaks it right now. |
74ff42a
to
1b8fcb2
Compare
Might be fixed now... I have the tests I added |
Fixes one of the broken cases for the remove_e_assign rewrite. See issue 1003 for details. Adjusts the type system so it can handle nested type variables better, and check things like: ``` val f : nat -> unit val main : unit -> unit function main() = let i : nat = 0 in let j = let k : nat = i + 1 in k in let _ = f(j) in print_int("j = ", j) ``` where the constraint and type variable for `k` goes upwards to the variable `j` in the outer scope. This kind of pattern is introduced by the rewrite.
1b8fcb2
to
57a1570
Compare
I tried this, and it now works flawlessly. Let's get this in? |
Fixes one of the broken cases for the remove_e_assign rewrite. See issue #1003 for details.
Adjusts the type system so it can handle nested type variables better, and check things like:
where the constraint and type variable for
k
goes upwards to the variablej
in the outer scope.This kind of pattern is introduced by the rewrite.