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
7ed93b4c
Commit
7ed93b4c
authored
4 years ago
by
Michael Sammler
Browse files
Options
Downloads
Patches
Plain Diff
changes for rustverify talk
parent
9f72ef66
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/typing/lib/cell.v
+34
-30
34 additions, 30 deletions
theories/typing/lib/cell.v
with
34 additions
and
30 deletions
theories/typing/lib/cell.v
+
34
−
30
View file @
7ed93b4c
...
@@ -8,10 +8,18 @@ Set Default Proof Using "Type".
...
@@ -8,10 +8,18 @@ Set Default Proof Using "Type".
Section
cell
.
Section
cell
.
Context
`{
!
typeG
Σ
}
.
Context
`{
!
typeG
Σ
}
.
Program
Definition
cell
(
ty
:
type
)
:=
{|
ty_size
:=
ty
.(
ty_size
);
ty_own
:=
ty
.(
ty_own
);
Program
Definition
cell
(
ty
:
type
)
:=
{|
ty_shr
κ
tid
l
:=
(
&
na
{
κ
,
tid
,
shrN
.
@
l
}(
l
↦∗:
ty
.(
ty_own
)
tid
))
%
I
|}
.
ty_size
:=
ty
.(
ty_size
);
ty_own
:=
ty
.(
ty_own
);
ty_shr
κ
tid
l
:=
&
na
{
κ
,
tid
,
shrN
.
@
l
}
(
∃
v
,
l
↦∗
v
∗
ty
.(
ty_own
)
tid
v
)
|}
%
I
.
Next
Obligation
.
apply
ty_size_eq
.
Qed
.
Next
Obligation
.
apply
ty_size_eq
.
Qed
.
Next
Obligation
.
Next
Obligation
.
iIntros
(
ty
E
κ
l
tid
q
?)
"#LFT Hown $"
.
by
iApply
(
bor_na
with
"Hown"
)
.
iIntros
(
ty
E
κ
l
tid
q
?)
"#LFT Hown $"
.
by
iApply
(
bor_na
with
"Hown"
)
.
...
@@ -84,14 +92,18 @@ Section typing.
...
@@ -84,14 +92,18 @@ Section typing.
(** The next couple functions essentially show owned-type equalities, as they
(** The next couple functions essentially show owned-type equalities, as they
are all different types for the identity function. *)
are all different types for the identity function. *)
(* Constructing a cell. *)
(* Constructing a cell. *)
Definition
cell_new
:
val
:=
funrec
:
<>
[
"x"
]
:=
return
:
[
"x"
]
.
Lemma
cell_new_type
ty
`{
!
TyWf
ty
}
:
typed_val
cell_new
(
fn
(
∅
;
ty
)
→
cell
ty
)
.
Definition
cell_new
:
val
:=
funrec
:
<>
[
"x"
]
:=
return
:
[
"x"
]
.
Lemma
cell_new_type
ty
`{
!
TyWf
ty
}
:
typed_val
cell_new
(
fn
(
∅
;
ty
)
→
cell
ty
)
.
Proof
.
Proof
.
intros
E
L
.
iApply
type_fn
;
[
solve_typing
..|]
.
iIntros
"/= !#"
.
intros
E
L
.
iApply
type_fn
;
[
solve_typing
..|]
.
iIntros
(_
ϝ
ret
arg
)
.
inv_vec
arg
=>
x
.
simpl_subst
.
iIntros
"/= !#"
.
iIntros
(_
ϝ
ret
arg
)
.
inv_vec
arg
=>
x
.
iApply
type_jump
;
[
solve_typing
..|]
.
simpl_subst
.
iApply
type_jump
;
[
solve_typing
..|]
.
iIntros
(???)
"#LFT _ $ Hty"
.
rewrite
!
tctx_interp_singleton
/=.
done
.
iIntros
(???)
"#LFT _ $ Hty"
.
rewrite
!
tctx_interp_singleton
/=.
done
.
Qed
.
Qed
.
(* The other direction: getting ownership out of a cell. *)
(* The other direction: getting ownership out of a cell. *)
...
@@ -181,49 +193,41 @@ Section typing.
...
@@ -181,49 +193,41 @@ Section typing.
let
:
"c'"
:=
!
"c"
in
let
:
"c'"
:=
!
"c"
in
letalloc
:
"r"
<-
{
ty
.(
ty_size
)}
!
"c'"
in
letalloc
:
"r"
<-
{
ty
.(
ty_size
)}
!
"c'"
in
"c'"
<-
{
ty
.(
ty_size
)}
!
"x"
;;
"c'"
<-
{
ty
.(
ty_size
)}
!
"x"
;;
delete
[
#
1
;
"c"
]
;;
delete
[
#
ty
.(
ty_size
);
"x"
]
;;
return
:
[
"r"
]
.
delete
[
#
1
;
"c"
]
;;
delete
[
#
ty
.(
ty_size
);
"x"
]
;;
return
:
[
"r"
]
.
Lemma
cell_replace_type
ty
`{
!
TyWf
ty
}
:
Lemma
cell_replace_type
ty
`{
!
TyWf
ty
}
:
typed_val
(
cell_replace
ty
)
(
fn
(
∀
α
,
∅
;
&
shr
{
α
}(
cell
ty
),
ty
)
→
ty
)
.
typed_val
(
cell_replace
ty
)
(
fn
(
∀
α
,
∅
;
&
shr
{
α
}(
cell
ty
),
ty
)
→
ty
)
.
Proof
.
Proof
.
intros
E
L
.
iApply
type_fn
;
[
solve_typing
..|]
.
iIntros
"/= !#"
.
intros
E
L
.
iApply
type_fn
;
[
solve_typing
..|]
.
iIntros
"/= !#"
.
iIntros
(
α
ϝ
ret
arg
)
.
inv_vec
arg
=>
c
x
.
simpl_subst
.
iIntros
(
α
ϝ
ret
arg
)
.
inv_vec
arg
=>
c
x
.
simpl_subst
.
iApply
type_deref
;
[
solve_typing
..|]
.
iApply
type_deref
;
[
solve_typing
..|]
.
iIntros
(
c'
);
simpl_subst
.
iIntros
(
c'
);
simpl_subst
.
iApply
type_new
;
[
solve_typing
..|];
iIntros
(
r
);
simpl_subst
.
iApply
type_new
;
[
solve_typing
..|];
iIntros
(
r
);
simpl_subst
.
(* Drop to Iris level. *)
(* Drop to Iris level. *)
iIntros
(
tid
qmax
)
"#LFT #HE Htl HL HC"
.
iIntros
(
tid
qmax
)
"#LFT #HE Htl HL HC"
.
rewrite
3
!
tctx_interp_cons
tctx_interp_singleton
!
tctx_hasty_val
.
rewrite
3
!
tctx_interp_cons
tctx_interp_singleton
!
tctx_hasty_val
.
iIntros
"(Hr & Hc & #Hc' & Hx)"
.
iIntros
"(Hr & Hc & #Hc' & Hx)"
.
destruct
c'
as
[[|
c'
|]|];
try
done
.
destruct
x
as
[[|
x
|]|];
try
done
.
destruct
c'
as
[[|
c'
|]|];
try
done
.
destruct
x
as
[[|
x
|]|];
try
done
.
destruct
r
as
[[|
r
|]|];
try
done
.
destruct
r
as
[[|
r
|]|];
try
done
.
iMod
(
lctx_lft_alive_tok
α
with
"HE HL"
)
as
(
q'
)
"(Htok & HL & Hclose1)"
;
[
solve_typing
..|]
.
iMod
(
lctx_lft_alive_tok
α
with
"HE HL"
)
as
(
q'
)
"(Htok & HL & Hclose1)"
;
[
solve_typing
..|]
.
iMod
(
na_bor_acc
with
"LFT Hc' Htok Htl"
)
as
"(Hc'↦ & Htl & Hclose2)"
;
[
solve_ndisj
..|]
.
iMod
(
na_bor_acc
with
"LFT Hc' Htok Htl"
)
as
"(Hc'↦ & Htl & Hclose2)"
;
[
solve_ndisj
..|]
.
iDestruct
"Hc'↦"
as
(
vc'
)
"[>Hc'↦ Hc'own]"
.
iDestruct
"Hc'↦"
as
(
vc'
)
"[>Hc'↦ Hc'own]"
.
iDestruct
(
ty_size_eq
with
"Hc'own"
)
as
"#>%"
.
iDestruct
(
ty_size_eq
with
"Hc'own"
)
as
"#>%"
.
iDestruct
"Hr"
as
"[Hr↦ Hr†]"
.
iDestruct
"Hr↦"
as
(
vr
)
"[>Hr↦ Hrown]"
.
iDestruct
"Hr"
as
"[Hr↦ Hr†]"
.
iDestruct
"Hr↦"
as
(
vr
)
"[>Hr↦ Hrown]"
.
iDestruct
(
ty_size_eq
with
"Hrown"
)
as
">Heq"
.
iDestruct
"Heq"
as
%
Heq
.
iDestruct
(
ty_size_eq
with
"Hrown"
)
as
">Heq"
.
iDestruct
"Heq"
as
%
Heq
.
(* FIXME: Changing the order of $Hr↦ $Hc'↦ breaks applying...?? *)
wp_apply
(
wp_memcpy
with
"[$Hr↦ $Hc'↦]"
)
.
{
by
rewrite
Heq
.
}
{
f_equal
.
done
.
}
wp_apply
(
wp_memcpy
with
"[$Hr↦ $Hc'↦]"
)
.
iIntros
"[Hr↦ Hc'↦]"
.
wp_seq
.
iDestruct
"Hx"
as
"[Hx↦ Hx†]"
.
{
by
rewrite
Heq
.
}
iDestruct
"Hx↦"
as
(
vx
)
"[Hx↦ Hxown]"
.
iDestruct
(
ty_size_eq
with
"Hxown"
)
as
"#%"
.
{
f_equal
.
done
.
}
wp_apply
(
wp_memcpy
with
"[$Hc'↦ $Hx↦]"
);
try
by
f_equal
.
iIntros
"[Hc'↦ Hx↦]"
.
wp_seq
.
iIntros
"[Hr↦ Hc'↦]"
.
wp_seq
.
iDestruct
"Hx"
as
"[Hx↦ Hx†]"
.
iDestruct
"Hx↦"
as
(
vx
)
"[Hx↦ Hxown]"
.
iDestruct
(
ty_size_eq
with
"Hxown"
)
as
"#%"
.
wp_apply
(
wp_memcpy
with
"[$Hc'↦ $Hx↦]"
);
try
by
f_equal
.
iIntros
"[Hc'↦ Hx↦]"
.
wp_seq
.
iMod
(
"Hclose2"
with
"[Hc'↦ Hxown] Htl"
)
as
"[Htok Htl]"
;
first
by
auto
with
iFrame
.
iMod
(
"Hclose2"
with
"[Hc'↦ Hxown] Htl"
)
as
"[Htok Htl]"
;
first
by
auto
with
iFrame
.
iMod
(
"Hclose1"
with
"Htok HL"
)
as
"HL"
.
iMod
(
"Hclose1"
with
"Htok HL"
)
as
"HL"
.
(* Now go back to typing level. *)
(* Now go back to typing level. *)
iApply
(
type_type
_
_
_
iApply
(
type_type
_
_
_
[
c
◁
box
(
&
shr
{
α
}(
cell
ty
));
#
x
◁
box
(
uninit
ty
.(
ty_size
));
#
r
◁
box
ty
]
[
c
◁
box
(
&
shr
{
α
}(
cell
ty
));
#
x
◁
box
(
uninit
ty
.(
ty_size
));
#
r
◁
box
ty
]
with
"[] LFT HE Htl HL HC"
);
last
first
.
with
"[] LFT HE Htl HL HC"
);
last
first
.
{
rewrite
2
!
tctx_interp_cons
tctx_interp_singleton
!
tctx_hasty_val
.
{
rewrite
2
!
tctx_interp_cons
tctx_interp_singleton
!
tctx_hasty_val
.
iFrame
"Hc"
.
rewrite
!
tctx_hasty_val'
//.
iSplitL
"Hx↦ Hx†"
.
iFrame
"Hc"
.
rewrite
!
tctx_hasty_val'
//.
iSplitL
"Hx↦ Hx†"
.
-
iFrame
.
iExists
_
.
iFrame
.
iNext
.
iApply
uninit_own
.
done
.
-
iFrame
.
iExists
_
.
iFrame
.
iNext
.
iApply
uninit_own
.
done
.
-
iFrame
.
iExists
_
.
iFrame
.
}
-
iFrame
.
iExists
_
.
iFrame
.
}
iApply
type_delete
;
[
solve_typing
..|]
.
iApply
type_delete
;
[
solve_typing
..|]
.
iApply
type_delete
;
[
solve_typing
..|]
.
iApply
type_delete
;
[
solve_typing
..|]
.
iApply
type_jump
;
solve_typing
.
iApply
type_jump
;
solve_typing
.
Qed
.
Qed
.
...
...
This diff is collapsed.
Click to expand it.
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