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
208141ca
Commit
208141ca
authored
8 years ago
by
Jacques-Henri Jourdan
Browse files
Options
Downloads
Patches
Plain Diff
Dereferencing : done.
parent
da5dd8a0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
typing.v
+32
-0
32 additions, 0 deletions
typing.v
with
32 additions
and
0 deletions
typing.v
+
32
−
0
View file @
208141ca
...
...
@@ -312,4 +312,36 @@ Section typing.
iModIntro
.
iExists
_
.
eauto
.
Qed
.
Lemma
typed_step_deref_uniq_borrow_borrow
ty
e
κ
κ'
κ''
q
:
typed_step
(
Valuable
.
of_expr
e
◁
&
uniq
{
κ'
}
&
uniq
{
κ''
}
ty
★
κ
⊑
κ'
★
[
κ
]{
q
}
★
κ'
⊑
κ''
)
(
*
e
)
(
λ
v
,
v
◁
&
uniq
{
κ'
}
ty
★
κ
⊑
κ'
★
[
κ
]{
q
})
%
P
.
Proof
.
iIntros
(
tid
)
"#HEAP !# [(H◁ & #H⊑1 & [Htok #Hκ'] & #H⊑2) Htl]"
.
destruct
(
Valuable
.
of_expr
e
)
eqn
:
He
;
last
by
iDestruct
"H◁"
as
"[]"
.
iDestruct
"H◁"
as
(
l
)
"[Heq H↦]"
.
iDestruct
"Heq"
as
%
[
=->
]
.
iMod
(
lft_incl_trade
with
"H⊑1 Htok"
)
as
(
q''
)
"[Htok Hclose]"
.
done
.
iMod
(
lft_borrow_exists
with
"H↦ Htok"
)
as
(
vl
)
"[Hbor Htok]"
.
done
.
iMod
(
lft_borrow_split
with
"Hbor"
)
as
"[H↦ Hbor]"
.
done
.
iMod
(
lft_borrow_exists
with
"Hbor Htok"
)
as
(
l'
)
"[Hbor Htok]"
.
done
.
iMod
(
lft_borrow_split
with
"Hbor"
)
as
"[Heq Hbor]"
.
done
.
iMod
(
lft_borrow_persistent
with
"Heq Htok"
)
as
"[>% [Htok1 Htok2]]"
.
done
.
subst
.
iMod
(
lft_borrow_open
with
"H↦ Htok1"
)
as
"[>H↦ Hclose']"
.
done
.
iMod
(
lft_borrow_open
with
"Hbor Htok2"
)
as
"[Hbor Hclose'']"
.
done
.
rewrite
heap_mapsto_vec_singleton
.
wp_bind
e
.
iApply
Valuable
.
of_expr_wp
.
done
.
wp_read
.
iMod
(
lft_borrow_close
with
"[H↦] Hclose'"
)
as
"[_ Htok1]"
.
done
.
by
auto
.
iMod
(
lft_borrow_unnest
with
"H⊑2 [Hbor Hclose'']"
)
as
"[Htok2 Hbor]"
.
done
.
by
iFrame
.
iCombine
"Htok1"
"Htok2"
as
"Htok"
.
iMod
(
"Hclose"
with
"Htok"
)
as
"$"
.
iFrame
"★#"
.
iModIntro
.
iExists
_
.
eauto
.
Qed
.
Lemma
typed_step_deref_shr_borrow_borrow
ty
e
κ
κ'
κ''
q
:
typed_step
(
Valuable
.
of_expr
e
◁
&
shr
{
κ'
}
&
uniq
{
κ''
}
ty
★
κ
⊑
κ'
★
[
κ
]{
q
}
★
κ'
⊑
κ''
)
(
*
e
)
(
λ
v
,
v
◁
&
shr
{
κ'
}
ty
★
κ
⊑
κ'
★
[
κ
]{
q
})
%
P
.
Proof
.
(* TODO : fix the definition of sharing unique borrows before. *)
Admitted
.
End
typing
.
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