Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
storebuffer
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tacoq
storebuffer
Commits
658b618b
Commit
658b618b
authored
2 years ago
by
Alban Gruin
Browse files
Options
Downloads
Patches
Plain Diff
correct_store_buffer: specify how the store buffer can evolve
Signed-off-by:
Alban Gruin
<
alban.gruin@irit.fr
>
parent
236fb32e
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/correct_store_buffer.v
+22
-0
22 additions, 0 deletions
src/correct_store_buffer.v
with
22 additions
and
0 deletions
src/correct_store_buffer.v
+
22
−
0
View file @
658b618b
...
...
@@ -107,6 +107,28 @@ Section can_advance.
Qed
.
End
can_advance
.
Definition
legal_sb_transitions
st
sbState
sbState
'
:=
match
st
,
sbState
with
|
Su
,
NotEmpty
=>
sbState
'
=
NotEmpty
\
/
sbState
'
=
Empty
|
Su
,
Empty
=>
sbState
'
=
Empty
|
_
,
_
=>
sbState
'
=
Full
\
/
sbState
'
=
NotEmpty
\
/
sbState
'
=
Empty
end
.
Definition
legal_sb_transitions_P
suE
suE
'
sbState
sbState
'
:=
match
suE
,
suE
'
,
sbState
with
|
true
,
true
,
Full
=>
sbState
'
=
Full
|
true
,
true
,
_
=>
sbState
'
=
NotEmpty
\
/
sbState
'
=
Full
|
true
,
false
,
Full
=>
True
|
true
,
false
,
NotEmpty
=>
sbState
'
=
NotEmpty
\
/
sbState
'
=
Empty
|
true
,
false
,
Empty
=>
sbState
'
=
Empty
|
false
,
true
,
Empty
=>
sbState
'
=
Empty
|
false
,
true
,
Full
=>
sbState
'
=
Full
|
false
,
true
,
_
=>
sbState
'
=
NotEmpty
\
/
sbState
'
=
Full
|
false
,
false
,
Full
=>
True
|
false
,
false
,
NotEmpty
=>
sbState
'
=
NotEmpty
\
/
sbState
'
=
Empty
|
false
,
false
,
Empty
=>
sbState
'
=
Empty
end
.
Section
constrained
.
Variable
opc
:
opcode
.
Variable
e
d
:
instr_kind
.
...
...
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