Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
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
Package Registry
Model registry
Operate
Terraform modules
Monitor
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
Pierre Roux
Iris
Commits
32300303
Commit
32300303
authored
3 years ago
by
Simon Hudon
Browse files
Options
Downloads
Patches
Plain Diff
Add test case for Xchg
parent
1229cc72
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/heap_lang.ref
+31
-0
31 additions, 0 deletions
tests/heap_lang.ref
tests/heap_lang.v
+25
-1
25 additions, 1 deletion
tests/heap_lang.v
with
56 additions
and
1 deletion
tests/heap_lang.ref
+
31
−
0
View file @
32300303
...
@@ -267,6 +267,37 @@ goal 2 is:
...
@@ -267,6 +267,37 @@ goal 2 is:
--------------------------------------∗
--------------------------------------∗
WP #() #() @ E ∖ ↑N {{ _, |={E ∖ ↑N}=> ▷ P ∗ True }}
WP #() #() @ E ∖ ↑N {{ _, |={E ∖ ↑N}=> ▷ P ∗ True }}
"xchg_example"
: string
1 goal
Σ : gFunctors
heapG0 : heapG Σ
l : loc
v₁, v₂ : val
Φ : val → iPropI Σ
============================
"Hl" : l ↦ v₂
"HΦ" : l ↦ v₂ -∗ Φ v₁
--------------------------------------∗
|={⊤}=> Φ v₁
1 goal
Σ : gFunctors
heapG0 : heapG Σ
N : namespace
l : loc
v : val
Φ : language.val heap_lang → iPropI Σ
v' : val
============================
"HΦ" : ∀ v'0 : language.val heap_lang, True -∗ Φ v'0
"Hl" : l ↦ v
"Hclose" : ▷ (∃ v0 : val, l ↦ v0) ={⊤ ∖ ↑N,⊤}=∗ emp
--------------------------------------∗
|={⊤ ∖ ↑N,⊤}=> Φ v'
1 goal
1 goal
Σ : gFunctors
Σ : gFunctors
...
...
This diff is collapsed.
Click to expand it.
tests/heap_lang.v
+
25
−
1
View file @
32300303
...
@@ -333,7 +333,7 @@ Section mapsto_tests.
...
@@ -333,7 +333,7 @@ Section mapsto_tests.
(* Loading from the general mapsto for any [dfrac]. *)
(* Loading from the general mapsto for any [dfrac]. *)
Lemma
general_mapsto
dq
l
v
:
Lemma
general_mapsto
dq
l
v
:
[[{
l
↦
{
dq
}
v
}]]
!
#
l
[[{
RET
v
;
True
}]]
.
[[{
l
↦
{
dq
}
v
}]]
!
#
l
[[{
RET
v
;
True
}]]
.
Proof
.
Proof
.
iIntros
(
Φ
)
"Hl HΦ"
.
Show
.
wp_load
.
by
iApply
"HΦ"
.
iIntros
(
Φ
)
"Hl HΦ"
.
Show
.
wp_load
.
by
iApply
"HΦ"
.
Qed
.
Qed
.
...
@@ -382,6 +382,30 @@ Section atomic.
...
@@ -382,6 +382,30 @@ Section atomic.
(* Test if a side-condition for [Atomic] is generated *)
(* Test if a side-condition for [Atomic] is generated *)
iIntros
(?)
"H"
.
iInv
"H"
as
"H"
.
Show
.
iIntros
(?)
"H"
.
iInv
"H"
as
"H"
.
Show
.
Abort
.
Abort
.
Check
"xchg_example"
.
Lemma
xchg_example
l
(
v₁
v₂
:
val
)
:
{{{
l
↦
v₁
}}}
Xchg
#
l
v₂
{{{
RET
v₁
;
l
↦
v₂
}}}
.
Proof
.
iIntros
(
Φ
)
"Hl HΦ"
.
wp_xchg
.
Show
.
Abort
.
Lemma
xchg_inv_example
N
l
(
v
:
val
)
:
{{{
inv
N
(
∃
v
,
l
↦
v
)
}}}
Xchg
#
l
v
{{{
v'
,
RET
v'
;
True
}}}
.
Proof
.
iIntros
(
Φ
)
"Hl HΦ"
.
iInv
"Hl"
as
(
v'
)
"Hl"
"Hclose"
.
wp_xchg
.
Show
.
Abort
.
End
atomic
.
End
atomic
.
Section
printing_tests
.
Section
printing_tests
.
...
...
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