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
548c068c
Commit
548c068c
authored
8 years ago
by
Jacques-Henri Jourdan
Browse files
Options
Downloads
Patches
Plain Diff
Faking a shared box.
parent
193f21b9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
_CoqProject
+1
-0
1 addition, 0 deletions
_CoqProject
theories/typing/unsafe/fake_shared_box.v
+40
-0
40 additions, 0 deletions
theories/typing/unsafe/fake_shared_box.v
with
41 additions
and
0 deletions
_CoqProject
+
1
−
0
View file @
548c068c
...
...
@@ -46,6 +46,7 @@ theories/typing/type_sum.v
theories/typing/typing.v
theories/typing/soundness.v
theories/typing/option.v
theories/typing/unsafe/fake_shared_box.v
theories/typing/unsafe/cell.v
theories/typing/unsafe/spawn.v
theories/typing/unsafe/refcell/refcell.v
...
...
This diff is collapsed.
Click to expand it.
theories/typing/unsafe/fake_shared_box.v
0 → 100644
+
40
−
0
View file @
548c068c
From
iris
.
proofmode
Require
Import
tactics
.
From
iris
.
base_logic
Require
Import
big_op
.
From
lrust
.
typing
Require
Import
typing
.
Set
Default
Proof
Using
"Type"
.
Section
fake_shared_box
.
Context
`{
typeG
Σ
}
.
Definition
fake_shared_box
:
val
:=
funrec
:
<>
[
"x"
]
:=
Skip
;;
"return"
[
"x"
]
.
Lemma
cell_replace_type
ty
:
typed_val
fake_shared_box
(
fn
(
fun
'
(
α
,
β
)
=>
[
☀
α
;
☀
β
;
α
⊑
β
])
%
EL
(
fun
'
(
α
,
β
)
=>
[
#
&
shr
{
α
}(
&
shr
{
β
}
ty
)]
%
T
)
(
fun
'
(
α
,
β
)
=>
&
shr
{
α
}
box
ty
)
%
T
)
.
Proof
.
intros
.
iApply
type_fn
;
[
solve_typing
..|]
.
iIntros
"/= !#"
.
iIntros
([
α
β
]
ret
arg
)
.
inv_vec
arg
=>
x
.
simpl_subst
.
iIntros
(
tid
qE
)
"#LFT Hna HE HL Hk HT"
.
rewrite
tctx_interp_singleton
tctx_hasty_val
.
rewrite
{
1
}
/
elctx_interp
2
!
big_sepL_cons
big_sepL_singleton
.
iDestruct
"HE"
as
"(Hα & Hβ & #Hαβ)"
.
iAssert
(
▷
ty_own
(
own_ptr
1
(
&
shr
{
α
}
box
ty
))
tid
[
x
])
%
I
with
"[HT]"
as
"HT"
.
{
destruct
x
as
[[|
l
|]|]=>
//=.
iDestruct
"HT"
as
"[H $]"
.
iNext
.
iDestruct
"H"
as
([|[[]|][]])
"[H↦ H]"
;
try
done
.
iExists
_
.
iFrame
.
iDestruct
"H"
as
(
vl
)
"[#Hf H]"
.
iNext
.
destruct
vl
as
[|[[|
l'
|]|][]];
try
done
.
iExists
l'
.
iSplit
.
{
iApply
frac_bor_iff
;
last
done
.
iIntros
"!>!# *"
.
rewrite
heap_mapsto_vec_singleton
.
iSplit
;
auto
.
}
iDestruct
"H"
as
"#H"
.
iIntros
"!# * % $"
.
iApply
step_fupd_intro
.
set_solver
.
by
iApply
ty_shr_mono
.
}
wp_seq
.
iApply
(
type_type
_
_
_
[
x
◁
box
(
&
shr
{
α
}
box
ty
)
]
%
TC
with
"[] LFT Hna [Hα Hβ Hαβ] HL Hk [HT]"
);
last
first
.
{
by
rewrite
tctx_interp_singleton
tctx_hasty_val
.
}
{
rewrite
/
elctx_interp
2
!
big_sepL_cons
big_sepL_singleton
.
by
iFrame
.
}
iApply
(
type_jump
[_]);
simpl
;
solve_typing
.
Qed
.
End
fake_shared_box
.
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