Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ReLoC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Iris
ReLoC
Commits
797c363b
Commit
797c363b
authored
3 years ago
by
Dan Frumin
Browse files
Options
Downloads
Patches
Plain Diff
Bump Iris
parent
04b86154
No related branches found
No related tags found
No related merge requests found
Pipeline
#47417
failed
3 years ago
Changes
3
Pipelines
9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
opam
+1
-1
1 addition, 1 deletion
opam
theories/prelude/ctx_subst.v
+2
-0
2 additions, 0 deletions
theories/prelude/ctx_subst.v
theories/typing/types.v
+1
-1
1 addition, 1 deletion
theories/typing/types.v
with
4 additions
and
2 deletions
opam
+
1
−
1
View file @
797c363b
...
@@ -9,6 +9,6 @@ build: [make "-j%{jobs}%"]
...
@@ -9,6 +9,6 @@ build: [make "-j%{jobs}%"]
install: [make "install"]
install: [make "install"]
remove: ["rm" "-rf" "%{lib}%/coq/user-contrib/reloc"]
remove: ["rm" "-rf" "%{lib}%/coq/user-contrib/reloc"]
depends: [
depends: [
"coq-iris-heap-lang" { (= "dev.2021-0
4
-2
2.1.35e8d8
d7") | (= "dev") }
"coq-iris-heap-lang" { (= "dev.2021-0
5
-2
0.3.96191e
d7") | (= "dev") }
"coq-autosubst" { = "dev" }
"coq-autosubst" { = "dev" }
]
]
This diff is collapsed.
Click to expand it.
theories/prelude/ctx_subst.v
+
2
−
0
View file @
797c363b
...
@@ -25,6 +25,8 @@ Fixpoint subst_map_ctx_item (es : stringmap val) (K : ectx_item)
...
@@ -25,6 +25,8 @@ Fixpoint subst_map_ctx_item (es : stringmap val) (K : ectx_item)
|
LoadCtx
=>
LoadCtx
|
LoadCtx
=>
LoadCtx
|
StoreLCtx
v2
=>
StoreLCtx
v2
|
StoreLCtx
v2
=>
StoreLCtx
v2
|
StoreRCtx
e1
=>
StoreRCtx
(
subst_map
es
e1
)
|
StoreRCtx
e1
=>
StoreRCtx
(
subst_map
es
e1
)
|
XchgLCtx
v2
=>
XchgLCtx
v2
|
XchgRCtx
e1
=>
XchgRCtx
(
subst_map
es
e1
)
|
CmpXchgLCtx
v1
v2
=>
CmpXchgLCtx
v1
v2
|
CmpXchgLCtx
v1
v2
=>
CmpXchgLCtx
v1
v2
|
CmpXchgMCtx
e0
v2
=>
CmpXchgMCtx
(
subst_map
es
e0
)
v2
|
CmpXchgMCtx
e0
v2
=>
CmpXchgMCtx
(
subst_map
es
e0
)
v2
|
CmpXchgRCtx
e0
e1
=>
CmpXchgRCtx
(
subst_map
es
e0
)
(
subst_map
es
e1
)
|
CmpXchgRCtx
e0
e1
=>
CmpXchgRCtx
(
subst_map
es
e0
)
(
subst_map
es
e1
)
...
...
This diff is collapsed.
Click to expand it.
theories/typing/types.v
+
1
−
1
View file @
797c363b
...
@@ -272,7 +272,7 @@ Local Fixpoint is_closed_expr_set (X : stringset) (e : expr) : bool :=
...
@@ -272,7 +272,7 @@ Local Fixpoint is_closed_expr_set (X : stringset) (e : expr) : bool :=
|
Rec
f
x
e
=>
is_closed_expr_set
(
maybe_insert_binder
f
(
maybe_insert_binder
x
X
))
e
|
Rec
f
x
e
=>
is_closed_expr_set
(
maybe_insert_binder
f
(
maybe_insert_binder
x
X
))
e
|
UnOp
_
e
|
Fst
e
|
Snd
e
|
InjL
e
|
InjR
e
|
Fork
e
|
Free
e
|
Load
e
=>
|
UnOp
_
e
|
Fst
e
|
Snd
e
|
InjL
e
|
InjR
e
|
Fork
e
|
Free
e
|
Load
e
=>
is_closed_expr_set
X
e
is_closed_expr_set
X
e
|
App
e1
e2
|
BinOp
_
e1
e2
|
Pair
e1
e2
|
AllocN
e1
e2
|
Store
e1
e2
|
FAA
e1
e2
=>
|
App
e1
e2
|
BinOp
_
e1
e2
|
Pair
e1
e2
|
AllocN
e1
e2
|
Store
e1
e2
|
FAA
e1
e2
|
Xchg
e1
e2
=>
is_closed_expr_set
X
e1
&&
is_closed_expr_set
X
e2
is_closed_expr_set
X
e1
&&
is_closed_expr_set
X
e2
|
If
e0
e1
e2
|
Case
e0
e1
e2
|
CmpXchg
e0
e1
e2
|
Resolve
e0
e1
e2
=>
|
If
e0
e1
e2
|
Case
e0
e1
e2
|
CmpXchg
e0
e1
e2
|
Resolve
e0
e1
e2
=>
is_closed_expr_set
X
e0
&&
is_closed_expr_set
X
e1
&&
is_closed_expr_set
X
e2
is_closed_expr_set
X
e0
&&
is_closed_expr_set
X
e1
&&
is_closed_expr_set
X
e2
...
...
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