Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Dmitry Khalanskiy
Iris
Commits
8bb5541f
Commit
8bb5541f
authored
Oct 05, 2018
by
Ralf Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whitespace tweaks
parent
3dc789f2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
theories/heap_lang/lang.v
theories/heap_lang/lang.v
+12
-3
theories/heap_lang/proofmode.v
theories/heap_lang/proofmode.v
+0
-1
No files found.
theories/heap_lang/lang.v
View file @
8bb5541f
...
...
@@ -477,7 +477,10 @@ Inductive head_step : expr → state → option observation -> expr → state
head_step
(
Load
(
Lit
$
LitLoc
l
))
σ
None
(
of_val
v
)
σ
[]
|
StoreS
l
e
v
σ
:
to_val
e
=
Some
v
→
is_Some
(
σ
.
1
!!
l
)
→
head_step
(
Store
(
Lit
$
LitLoc
l
)
e
)
σ
None
(
Lit
LitUnit
)
(<[
l
:
=
v
]>
σ
.
1
,
σ
.
2
)
[]
head_step
(
Store
(
Lit
$
LitLoc
l
)
e
)
σ
None
(
Lit
LitUnit
)
(<[
l
:
=
v
]>
σ
.
1
,
σ
.
2
)
[]
|
CasFailS
l
e1
v1
e2
v2
vl
σ
:
to_val
e1
=
Some
v1
→
to_val
e2
=
Some
v2
→
σ
.
1
!!
l
=
Some
vl
→
vl
≠
v1
→
...
...
@@ -487,11 +490,17 @@ Inductive head_step : expr → state → option observation -> expr → state
to_val
e1
=
Some
v1
→
to_val
e2
=
Some
v2
→
σ
.
1
!!
l
=
Some
v1
→
vals_cas_compare_safe
v1
v1
→
head_step
(
CAS
(
Lit
$
LitLoc
l
)
e1
e2
)
σ
None
(
Lit
$
LitBool
true
)
(<[
l
:
=
v2
]>
σ
.
1
,
σ
.
2
)
[]
head_step
(
CAS
(
Lit
$
LitLoc
l
)
e1
e2
)
σ
None
(
Lit
$
LitBool
true
)
(<[
l
:
=
v2
]>
σ
.
1
,
σ
.
2
)
[]
|
FaaS
l
i1
e2
i2
σ
:
to_val
e2
=
Some
(
LitV
(
LitInt
i2
))
→
σ
.
1
!!
l
=
Some
(
LitV
(
LitInt
i1
))
→
head_step
(
FAA
(
Lit
$
LitLoc
l
)
e2
)
σ
None
(
Lit
$
LitInt
i1
)
(<[
l
:
=
LitV
(
LitInt
(
i1
+
i2
))]>
σ
.
1
,
σ
.
2
)
[]
head_step
(
FAA
(
Lit
$
LitLoc
l
)
e2
)
σ
None
(
Lit
$
LitInt
i1
)
(<[
l
:
=
LitV
(
LitInt
(
i1
+
i2
))]>
σ
.
1
,
σ
.
2
)
[]
|
NewProphS
σ
p
:
p
∉
σ
.
2
→
head_step
NewProph
σ
None
(
Lit
$
LitProphecy
p
)
(
σ
.
1
,
{[
p
]}
∪
σ
.
2
)
[]
...
...
theories/heap_lang/proofmode.v
View file @
8bb5541f
...
...
@@ -40,7 +40,6 @@ Proof.
rewrite
envs_entails_eq
=>
???
H
Δ
'
.
rewrite
into_laterN_env_sound
/=.
rewrite
H
Δ
'
-
lifting
.
wp_pure_step_later
//.
Qed
.
Lemma
tac_twp_pure
`
{
heapG
Σ
}
Δ
s
E
e1
e2
φ
Φ
:
PureExec
φ
e1
e2
→
φ
→
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment