Skip to content
Snippets Groups Projects
Commit 7f20c471 authored by Ralf Jung's avatar Ralf Jung
Browse files

RefCell: add comments explaining the data layout

parent da5a7b83
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -11,6 +11,14 @@ Definition refcell_refN := refcellN .@ "ref". ...@@ -11,6 +11,14 @@ Definition refcell_refN := refcellN .@ "ref".
Section ref. Section ref.
Context `{typeG Σ, refcellG Σ}. Context `{typeG Σ, refcellG Σ}.
(* The Rust type looks as follows (after some unfolding):
pub struct Ref<'b, T: ?Sized + 'b> {
value: &'b T,
borrow: &'b Cell<BorrowFlag>,
}
*)
Program Definition ref (α : lft) (ty : type) := Program Definition ref (α : lft) (ty : type) :=
{| ty_size := 2; {| ty_size := 2;
ty_own tid vl := ty_own tid vl :=
......
...@@ -83,6 +83,13 @@ End refcell_inv. ...@@ -83,6 +83,13 @@ End refcell_inv.
Section refcell. Section refcell.
Context `{typeG Σ, refcellG Σ}. Context `{typeG Σ, refcellG Σ}.
(* Original Rust type:
pub struct RefCell<T: ?Sized> {
borrow: Cell<BorrowFlag>,
value: UnsafeCell<T>,
}
*)
Program Definition refcell (ty : type) := Program Definition refcell (ty : type) :=
{| ty_size := S ty.(ty_size); {| ty_size := S ty.(ty_size);
ty_own tid vl := ty_own tid vl :=
......
...@@ -9,6 +9,16 @@ Set Default Proof Using "Type". ...@@ -9,6 +9,16 @@ Set Default Proof Using "Type".
Section refmut. Section refmut.
Context `{typeG Σ, refcellG Σ}. Context `{typeG Σ, refcellG Σ}.
(* The Rust type looks as follows (after some unfolding):
pub struct RefMut<'b, T: ?Sized + 'b> {
value: &'b mut T,
borrow: &'b Cell<BorrowFlag>,
}
In other words, we have a pointer to the data, and a pointer
to the refcount field of the RefCell. *)
Program Definition refmut (α : lft) (ty : type) := Program Definition refmut (α : lft) (ty : type) :=
{| ty_size := 2; {| ty_size := 2;
ty_own tid vl := ty_own tid vl :=
......
...@@ -173,7 +173,7 @@ Section refmut_functions. ...@@ -173,7 +173,7 @@ Section refmut_functions.
Lemma refmut_map_type ty1 ty2 envty E : Lemma refmut_map_type ty1 ty2 envty E :
typed_instruction_ty [] [] [] refmut_map typed_instruction_ty [] [] [] refmut_map
(fn( β, [β] ++ E; refmut β ty1, (fn( β, [β] ++ E; refmut β ty1,
fn( α, [α] ++ E; envty, &uniq{α}ty1) &uniq{α}ty2, fn( α, [α] ++ E; envty, &uniq{α} ty1) &uniq{α} ty2,
envty) envty)
refmut β ty2). refmut β ty2).
Proof. Proof.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment