Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Actris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
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
tlsomers
Actris
Commits
2e68d717
Commit
2e68d717
authored
4 years ago
by
Jonas Kastberg
Browse files
Options
Downloads
Patches
Plain Diff
WIP: Changed typing judgement to have a pre and post-context
parent
2f1e2d96
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
theories/logrel/ltyping.v
+13
-7
13 additions, 7 deletions
theories/logrel/ltyping.v
theories/logrel/types.v
+27
-31
27 additions, 31 deletions
theories/logrel/types.v
with
40 additions
and
38 deletions
theories/logrel/ltyping.v
+
13
−
7
View file @
2e68d717
...
...
@@ -66,10 +66,12 @@ Section Environment.
Lemma
env_ltyped_lookup
Γ
vs
x
A
:
Γ
!!
x
=
Some
A
→
env_ltyped
Γ
vs
-∗
∃
v
,
⌜
vs
!!
x
=
Some
v
⌝
∗
A
v
.
env_ltyped
Γ
vs
-∗
∃
v
,
⌜
vs
!!
x
=
Some
v
⌝
∗
A
v
∗
env_ltyped
(
delete
x
Γ
)
vs
.
Proof
.
iIntros
(
HΓx
)
"HΓ"
.
iPoseProof
(
big_sepM_lookup
with
"HΓ"
)
as
"H"
;
eauto
.
iPoseProof
(
big_sepM_delete
with
"HΓ"
)
as
"[H1 H2]"
;
eauto
.
iDestruct
"H1"
as
(
v
)
"H1"
.
eauto
with
iFrame
.
Qed
.
Lemma
env_ltyped_insert
Γ
vs
x
A
v
:
...
...
@@ -179,14 +181,18 @@ End Environment.
(* The semantic typing judgement *)
Definition
ltyped
`{
!
heapG
Σ
}
(
Γ
:
gmap
string
(
lty
Σ
))
(
e
:
expr
)
(
A
:
lty
Σ
)
:
iProp
Σ
:=
□
∀
vs
,
env_ltyped
Γ
vs
-∗
WP
subst_map
vs
e
{{
A
}}
.
(
Γ
Γ'
:
gmap
string
(
lty
Σ
))
(
e
:
expr
)
(
A
:
lty
Σ
)
:
iProp
Σ
:=
□
∀
vs
,
env_ltyped
Γ
vs
-∗
WP
subst_map
vs
e
{{
v
,
A
v
∗
env_ltyped
Γ'
vs
}}
.
Notation
"Γ ⊨ e : A"
:=
(
ltyped
Γ
e
A
)
Notation
"Γ ⊨ e : A
⫤ Γ'
"
:=
(
ltyped
Γ
Γ'
e
A
)
(
at
level
100
,
e
at
next
level
,
A
at
level
200
)
.
Lemma
ltyped_safety
`{
heapPreG
Σ
}
e
σ
es
σ'
e'
:
(
∀
`{
heapG
Σ
},
∃
A
,
⊢
∅
⊨
e
:
A
)
→
Notation
"Γ ⊨ e : A"
:=
(
ltyped
Γ
Γ
e
A
)
(
at
level
100
,
e
at
next
level
,
A
at
level
200
)
.
Lemma
ltyped_safety
`{
heapPreG
Σ
}
e
σ
es
σ'
e'
Γ'
:
(
∀
`{
heapG
Σ
},
∃
A
,
⊢
∅
⊨
e
:
A
⫤
Γ'
)
→
rtc
erased_step
([
e
],
σ
)
(
es
,
σ'
)
→
e'
∈
es
→
is_Some
(
to_val
e'
)
∨
reducible
e'
σ'
.
Proof
.
...
...
This diff is collapsed.
Click to expand it.
theories/logrel/types.v
+
27
−
31
View file @
2e68d717
...
...
@@ -101,11 +101,11 @@ Section properties.
Proof
.
iIntros
(
v
)
.
apply
_
.
Qed
.
Lemma
ltyped_unit
Γ
:
⊢
Γ
⊨
#
()
:
()
.
Proof
.
iIntros
"!>"
(
vs
)
"
_
/="
.
by
iApply
wp_value
.
Qed
.
Proof
.
iIntros
"!>"
(
vs
)
"
Henv
/="
.
iApply
wp_value
.
eauto
.
Qed
.
Lemma
ltyped_bool
Γ
(
b
:
bool
)
:
⊢
Γ
⊨
#
b
:
lty_bool
.
Proof
.
iIntros
"!>"
(
vs
)
"
_
/="
.
iApply
wp_value
.
rewrite
/
lty_car
/=.
eauto
.
Qed
.
Proof
.
iIntros
"!>"
(
vs
)
"
Henv
/="
.
iApply
wp_value
.
eauto
.
Qed
.
Lemma
ltyped_nat
Γ
(
n
:
Z
)
:
⊢
Γ
⊨
#
n
:
lty_int
.
Proof
.
iIntros
"!>"
(
vs
)
"
_
/="
.
iApply
wp_value
.
rewrite
/
lty_car
/=.
eauto
.
Qed
.
Proof
.
iIntros
"!>"
(
vs
)
"
Henv
/="
.
iApply
wp_value
.
eauto
.
Qed
.
(** Operator Properties *)
Global
Instance
lty_bin_op_eq
A
:
LTyUnboxed
A
→
@
LTyBinOp
Σ
EqOp
A
A
lty_bool
.
...
...
@@ -143,12 +143,12 @@ Section properties.
(** Variable properties *)
Lemma
ltyped_var
Γ
(
x
:
string
)
A
:
Γ
!!
x
=
Some
A
→
⊢
Γ
⊨
x
:
A
.
Γ
!!
x
=
Some
A
→
⊢
Γ
⊨
x
:
A
⫤
delete
x
Γ
.
Proof
.
iIntros
(
HΓx
)
"!>"
.
iIntros
(
vs
)
"HΓ /="
.
iDestruct
(
env_ltyped_lookup
with
"HΓ"
)
as
(
v
->
)
"HA"
;
first
done
.
by
iApply
wp_value
.
iDestruct
(
env_ltyped_lookup
with
"HΓ"
)
as
(
v
->
)
"
[
HA
HΓ]
"
;
first
done
.
iApply
wp_value
.
eauto
with
iFrame
.
Qed
.
(** Copy properties *)
...
...
@@ -180,24 +180,23 @@ Section properties.
Global
Instance
lty_arr_ne
:
NonExpansive2
(
@
lty_arr
Σ
_)
.
Proof
.
solve_proper
.
Qed
.
Lemma
ltyped_app
Γ
Γ1
Γ2
e1
e2
A1
A2
:
env_split
Γ
Γ1
Γ2
-∗
(
Γ1
⊨
e1
:
A1
⊸
A2
)
-∗
(
Γ2
⊨
e2
:
A1
)
-∗
Γ
⊨
e1
e2
:
A2
.
Lemma
ltyped_app
Γ1
Γ2
Γ3
e1
e2
A1
A2
:
(
Γ2
⊨
e1
:
A1
⊸
A2
⫤
Γ3
)
-∗
(
Γ1
⊨
e2
:
A1
⫤
Γ2
)
-∗
Γ1
⊨
e1
e2
:
A2
⫤
Γ3
.
Proof
.
iIntros
"#Hsplit #H1 #H2"
.
iIntros
(
vs
)
"!> HΓ /="
.
iDestruct
(
"Hsplit"
with
"HΓ"
)
as
"HΓ"
.
iMod
(
fupd_mask_mono
with
"HΓ"
)
as
"[HΓ1 HΓ2]"
;
first
done
.
wp_apply
(
wp_wand
with
"(H2 [HΓ2 //])"
)
.
iIntros
(
v
)
"HA1"
.
wp_apply
(
wp_wand
with
"(H1 [HΓ1 //])"
)
.
iIntros
(
f
)
"Hf"
.
iApply
(
"Hf"
$!
v
with
"HA1"
)
.
iIntros
"#H1 #H2"
.
iIntros
(
vs
)
"!> HΓ /="
.
wp_apply
(
wp_wand
with
"(H2 [HΓ //])"
)
.
iIntros
(
v
)
"[HA1 HΓ]"
.
wp_apply
(
wp_wand
with
"(H1 [HΓ //])"
)
.
iIntros
(
f
)
"[Hf HΓ]"
.
iApply
wp_frame_r
.
iFrame
"HΓ"
.
iApply
(
"Hf"
$!
v
with
"HA1"
)
.
Qed
.
Lemma
ltyped_lam
Γ
x
e
A1
A2
:
(
binder_insert
x
A1
Γ
⊨
e
:
A2
)
-∗
Γ
⊨
(
λ
:
x
,
e
)
:
A1
⊸
A2
.
Lemma
ltyped_lam
Γ
Γ2
x
e
A1
A2
:
(
binder_insert
x
A1
Γ
⊨
e
:
A2
⫤
Γ2
)
-∗
Γ
⊨
(
λ
:
x
,
e
)
:
A1
⊸
A2
⫤
binder_delete
x
Γ2
.
Proof
.
iIntros
"#He"
(
vs
)
"!> HΓ /="
.
wp_pures
.
iIntros
"#He"
(
vs
)
"!> HΓ /="
.
wp_pures
.
(* Unprovable *)
iIntros
(
v
)
"HA1"
.
wp_pures
.
iDestruct
(
"He"
$!
((
binder_insert
x
v
vs
))
with
"[HΓ HA1]"
)
as
"He'"
.
{
iApply
(
env_ltyped_insert
with
"[HA1 //] [HΓ //]"
)
.
}
...
...
@@ -287,17 +286,14 @@ Section properties.
Global
Instance
lty_prod_ne
:
NonExpansive2
(
@
lty_prod
Σ
)
.
Proof
.
solve_proper
.
Qed
.
Lemma
ltyped_pair
Γ
Γ1
Γ2
e1
e2
A1
A2
:
env_split
Γ
Γ1
Γ2
-∗
(
Γ1
⊨
e1
:
A1
)
-∗
(
Γ2
⊨
e2
:
A2
)
-∗
Γ
⊨
(
e1
,
e2
)
:
A1
*
A2
.
Proof
.
iIntros
"#Hsplit #H1 #H2"
.
iIntros
(
vs
)
"!> HΓ /="
.
iApply
wp_fupd
.
iDestruct
(
"Hsplit"
with
"HΓ"
)
as
"HΓ"
.
iMod
(
fupd_mask_mono
with
"HΓ"
)
as
"[HΓ1 HΓ2]"
;
first
done
.
wp_apply
(
wp_wand
with
"(H2 [HΓ2 //])"
);
iIntros
(
w2
)
"HA2"
.
wp_apply
(
wp_wand
with
"(H1 [HΓ1 //])"
);
iIntros
(
w1
)
"HA1"
.
wp_pures
.
iExists
w1
,
w2
.
by
iFrame
.
Lemma
ltyped_pair
Γ1
Γ2
Γ3
e1
e2
A1
A2
:
(
Γ2
⊨
e1
:
A1
⫤
Γ3
)
-∗
(
Γ1
⊨
e2
:
A2
⫤
Γ2
)
-∗
Γ1
⊨
(
e1
,
e2
)
:
A1
*
A2
⫤
Γ3
.
Proof
.
iIntros
"#H1 #H2"
.
iIntros
(
vs
)
"!> HΓ /="
.
wp_apply
(
wp_wand
with
"(H2 [HΓ //])"
);
iIntros
(
w2
)
"[HA2 HΓ]"
.
wp_apply
(
wp_wand
with
"(H1 [HΓ //])"
);
iIntros
(
w1
)
"[HA1 HΓ]"
.
wp_pures
.
iFrame
"HΓ"
.
iExists
w1
,
w2
.
by
iFrame
.
Qed
.
Definition
split
:
val
:=
λ
:
"pair"
"f"
,
"f"
(
Fst
"pair"
)
(
Snd
"pair"
)
.
...
...
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