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
William Mansky
Iris
Commits
85f7ca8a
Commit
85f7ca8a
authored
5 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
rename LitErased -> LitPoison
parent
b8b77e8f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/heap_lang/lang.v
+10
-4
10 additions, 4 deletions
theories/heap_lang/lang.v
with
10 additions
and
4 deletions
theories/heap_lang/lang.v
+
10
−
4
View file @
85f7ca8a
...
...
@@ -60,8 +60,13 @@ Open Scope Z_scope.
(** Expressions and vals. *)
Definition
proph_id
:=
positive
.
(** We have a notion of "poison" as a variant of unit that may not be compared
with anything. This is useful for erasure proofs: if we erased things to unit,
[<erased> == unit] would evaluate to true after erasure, changing program
behavior. So we erase to the poison value instead, making sure that no legal
comparisons could be affected. *)
Inductive
base_lit
:
Set
:=
|
LitInt
(
n
:
Z
)
|
LitBool
(
b
:
bool
)
|
LitUnit
|
Lit
Erased
|
LitInt
(
n
:
Z
)
|
LitBool
(
b
:
bool
)
|
LitUnit
|
Lit
Poison
|
LitLoc
(
l
:
loc
)
|
LitProphecy
(
p
:
proph_id
)
.
Inductive
un_op
:
Set
:=
|
NegOp
|
MinusUnOp
.
...
...
@@ -141,6 +146,7 @@ architectures). The tags have the following meaning:
6: Payload is one of the following finitely many values, which 61 bits are more
than enough to encode:
LitV LitUnit, InjLV (LitV LitUnit), InjRV (LitV LitUnit),
LitV LitPoison, InjLV (LitV LitPoison), InjRV (LitV LitPoison),
LitV (LitBool _), InjLV (LitV (LitBool _)), InjRV (LitV (LitBool _)).
7: Value is boxed, i.e., payload is a pointer to some read-only memory area on
the heap which stores whether this is a RecV, PairV, InjLV or InjRV and the
...
...
@@ -155,7 +161,7 @@ Definition lit_is_unboxed (l: base_lit) : Prop :=
match
l
with
(** Disallow comparing (erased) prophecies with (erased) prophecies, by
considering them boxed. *)
|
LitProphecy
_
|
Lit
Erased
=>
False
|
LitProphecy
_
|
Lit
Poison
=>
False
|
_
=>
True
end
.
Definition
val_is_unboxed
(
v
:
val
)
:
Prop
:=
...
...
@@ -261,14 +267,14 @@ Proof.
|
LitInt
n
=>
(
inl
(
inl
n
),
None
)
|
LitBool
b
=>
(
inl
(
inr
b
),
None
)
|
LitUnit
=>
(
inr
(
inl
false
),
None
)
|
Lit
Erased
=>
(
inr
(
inl
true
),
None
)
|
Lit
Poison
=>
(
inr
(
inl
true
),
None
)
|
LitLoc
l
=>
(
inr
(
inr
l
),
None
)
|
LitProphecy
p
=>
(
inr
(
inl
false
),
Some
p
)
end
)
(
λ
l
,
match
l
with
|
(
inl
(
inl
n
),
None
)
=>
LitInt
n
|
(
inl
(
inr
b
),
None
)
=>
LitBool
b
|
(
inr
(
inl
false
),
None
)
=>
LitUnit
|
(
inr
(
inl
true
),
None
)
=>
Lit
Erased
|
(
inr
(
inl
true
),
None
)
=>
Lit
Poison
|
(
inr
(
inr
l
),
None
)
=>
LitLoc
l
|
(_,
Some
p
)
=>
LitProphecy
p
end
)
_);
by
intros
[]
.
...
...
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