Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lambda-rust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Iris
lambda-rust
Commits
505d86a5
There was a problem fetching the pipeline mini graph.
Commit
505d86a5
authored
6 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
show save conversion from &mut T to &mut Cell<T>
parent
380be93b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/typing/lib/cell.v
+20
-4
20 additions, 4 deletions
theories/typing/lib/cell.v
with
20 additions
and
4 deletions
theories/typing/lib/cell.v
+
20
−
4
View file @
505d86a5
...
...
@@ -82,6 +82,8 @@ End cell.
Section
typing
.
Context
`{
typeG
Σ
}
.
(** The next couple functions essentially show owned-type equalities, as they
are all different types for the identity function. *)
(* Constructing a cell. *)
Definition
cell_new
:
val
:=
funrec
:
<>
[
"x"
]
:=
return
:
[
"x"
]
.
...
...
@@ -118,7 +120,20 @@ Section typing.
by
iIntros
"$"
.
Qed
.
(* Reading from a cell *)
Definition
cell_from_mut
:
val
:=
funrec
:
<>
[
"x"
]
:=
return
:
[
"x"
]
.
Lemma
cell_from_mut_type
ty
`{
!
TyWf
ty
}
:
typed_val
cell_get_mut
(
fn
(
∀
α
,
∅
;
&
uniq
{
α
}
ty
)
→
&
uniq
{
α
}
(
cell
ty
))
.
Proof
.
intros
E
L
.
iApply
type_fn
;
[
solve_typing
..|]
.
iIntros
"/= !#"
.
iIntros
(
α
ϝ
ret
arg
)
.
inv_vec
arg
=>
x
.
simpl_subst
.
iApply
type_jump
;
[
solve_typing
..|]
.
rewrite
/
tctx_incl
/=.
iIntros
(??)
"_ _ $"
.
rewrite
!
tctx_interp_singleton
/
tctx_elt_interp
/=.
by
iIntros
"$"
.
Qed
.
(** Reading from a cell *)
Definition
cell_get
ty
:
val
:=
funrec
:
<>
[
"x"
]
:=
let
:
"x'"
:=
!
"x"
in
...
...
@@ -137,7 +152,7 @@ Section typing.
iApply
type_jump
;
solve_typing
.
Qed
.
(* Writing to a cell *)
(*
*
Writing to a cell *)
Definition
cell_replace
ty
:
val
:=
funrec
:
<>
[
"c"
;
"x"
]
:=
let
:
"c'"
:=
!
"c"
in
...
...
@@ -189,8 +204,9 @@ Section typing.
iApply
type_jump
;
solve_typing
.
Qed
.
(* Create a shared cell from a mutable borrow.
Called alias::one in Rust. *)
(** Create a shared cell from a mutable borrow.
Called alias::one in Rust.
This is really just [cell_from_mut] followed by sharing. *)
Definition
fake_shared_cell
:
val
:=
funrec
:
<>
[
"x"
]
:=
let
:
"x'"
:=
!
"x"
in
...
...
This diff is collapsed.
Click to expand it.
Ralf Jung
@jung
mentioned in issue
#2 (closed)
·
6 years ago
mentioned in issue
#2 (closed)
mentioned in issue #2
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment