Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Maxime Dénès
iris-coq
Commits
5fb53667
Commit
5fb53667
authored
9 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Try-out with new lines.
parent
b91562fe
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
barrier/heap_lang.v
+6
-0
6 additions, 0 deletions
barrier/heap_lang.v
with
6 additions
and
0 deletions
barrier/heap_lang.v
+
6
−
0
View file @
5fb53667
...
...
@@ -208,6 +208,7 @@ Proof.
Qed
.
Instance
:
Injective
(
=
)
(
=
)
of_val
.
Proof
.
by
intros
??
Hv
;
apply
(
injective
Some
);
rewrite
-!
to_of_val
Hv
.
Qed
.
Instance
ectx_item_fill_inj
Ki
:
Injective
(
=
)
(
=
)
(
ectx_item_fill
Ki
)
.
Proof
.
destruct
Ki
;
intros
???;
simplify_equality'
;
auto
with
f_equal
.
Qed
.
Instance
ectx_fill_inj
K
:
Injective
(
=
)
(
=
)
(
fill
K
)
.
...
...
@@ -221,11 +222,13 @@ Proof.
Qed
.
Lemma
fill_not_val
K
e
:
to_val
e
=
None
→
to_val
(
fill
K
e
)
=
None
.
Proof
.
rewrite
!
eq_None_not_Some
;
eauto
using
fill_val
.
Qed
.
Lemma
values_head_stuck
e1
σ1
e2
σ2
ef
:
head_step
e1
σ1
e2
σ2
ef
→
to_val
e1
=
None
.
Proof
.
destruct
1
;
naive_solver
.
Qed
.
Lemma
values_stuck
e1
σ1
e2
σ2
ef
:
prim_step
e1
σ1
e2
σ2
ef
→
to_val
e1
=
None
.
Proof
.
intros
[???
->
->
?];
eauto
using
fill_not_val
,
values_head_stuck
.
Qed
.
Lemma
atomic_not_val
e
:
atomic
e
→
to_val
e
=
None
.
Proof
.
destruct
e
;
naive_solver
.
Qed
.
Lemma
atomic_fill
K
e
:
atomic
(
fill
K
e
)
→
to_val
e
=
None
→
K
=
[]
.
...
...
@@ -243,9 +246,11 @@ Proof.
assert
(
K
=
[])
as
->
by
eauto
10
using
atomic_fill
,
values_head_stuck
.
naive_solver
eauto
using
atomic_head_step
.
Qed
.
Lemma
head_ctx_step_val
Ki
e
σ1
e2
σ2
ef
:
head_step
(
ectx_item_fill
Ki
e
)
σ1
e2
σ2
ef
→
is_Some
(
to_val
e
)
.
Proof
.
destruct
Ki
;
inversion_clear
1
;
simplify_option_equality
;
eauto
.
Qed
.
Lemma
fill_item_inj
Ki1
Ki2
e1
e2
:
to_val
e1
=
None
→
to_val
e2
=
None
→
ectx_item_fill
Ki1
e1
=
ectx_item_fill
Ki2
e2
→
Ki1
=
Ki2
.
...
...
@@ -270,6 +275,7 @@ Proof.
cut
(
Ki
=
Ki'
);
[
naive_solver
eauto
using
prefix_of_cons
|]
.
eauto
using
fill_item_inj
,
values_head_stuck
,
fill_not_val
.
Qed
.
Lemma
alloc_fresh
e
v
σ
:
let
l
:=
fresh
(
dom
_
σ
)
in
to_val
e
=
Some
v
→
head_step
(
Alloc
e
)
σ
(
Loc
l
)
(
<
[
l
:=
v
]
>
σ
)
None
.
...
...
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