Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DIVINE
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
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
paradise
mirror
DIVINE
Commits
d200d844
There was an error fetching the commit references. Please try again later.
Commit
d200d844
authored
5 years ago
by
Petr Rockai
Browse files
Options
Downloads
Patches
Plain Diff
MC: Re-implement 'divine exec' in terms of mc::machine.
parent
30b906cf
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
divine/mc/exec.cpp
+27
-22
27 additions, 22 deletions
divine/mc/exec.cpp
with
27 additions
and
22 deletions
divine/mc/exec.cpp
+
27
−
22
View file @
d200d844
...
@@ -16,44 +16,49 @@
...
@@ -16,44 +16,49 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
*/
#include
<divine/mc/ctx-assume.hpp>
#include
<divine/mc/exec.hpp>
#include
<divine/mc/exec.hpp>
#include
<divine/mc/search.hpp>
#include
<divine/mc/bitcode.hpp>
#include
<divine/mc/bitcode.hpp>
#include
<divine/mc/machine.hpp>
#include
<divine/mc/weaver.hpp>
#include
<divine/vm/eval.hpp>
#include
<divine/vm/eval.hpp>
#include
<divine/vm/setup.hpp>
#include
<divine/vm/setup.hpp>
#include
<divine/vm/eval.tpp>
#include
<divine/vm/eval.tpp>
#include
<divine/vm/ctx-debug.tpp>
#include
<divine/dbg/stepper.tpp>
#include
<divine/dbg/stepper.tpp>
#include
<divine/dbg/print.tpp>
#include
<divine/dbg/print.tpp>
namespace
divine
::
mc
namespace
divine
::
mc
{
{
template
<
typename
next
>
void
Exec
::
run
()
struct
print_trace
:
next
{
{
using
Eval
=
vm
::
Eval
<
ExecContext
>
;
using
next
::
trace
;
auto
&
program
=
_bc
->
program
();
void
trace
(
std
::
string
s
)
{
std
::
cout
<<
s
<<
std
::
endl
;
}
ExecContext
_ctx
;
};
_ctx
.
program
(
program
);
Eval
eval
(
_ctx
);
vm
::
setup
::
boot
(
_ctx
);
namespace
ctx
=
vm
::
ctx
;
_ctx
.
enable_debug
();
struct
ctx_exec
:
brq
::
compose_stack
<
ctx_assume
,
ctx_choice
,
brq
::
module
<
print_trace
>
,
eval
.
run
();
ctx
::
with_debug
,
ctx
::
with_tracking
,
if
(
!
_ctx
.
flags_any
(
_VM_CF_Cancel
|
_VM_CF_Error
)
)
ctx
::
common
<
vm
::
Program
,
vm
::
CowHeap
>
>
{};
ASSERT
(
!
_ctx
.
state_ptr
().
null
()
);
while
(
!
_ctx
.
flags_any
(
_VM_CF_Cancel
|
_VM_CF_Error
)
)
struct
mach_exec
:
brq
::
compose_stack
<
machine
::
graph_dispatch
,
{
machine
::
compute
,
vm
::
setup
::
scheduler
(
_ctx
);
machine
::
tree_search
,
eval
.
run
();
machine
::
choose_random
,
machine
::
choose
,
}
machine
::
with_context
<
ctx_exec
>
,
machine
::
base
<
smt
::
NoSolver
>
>
{};
if
(
_ctx
.
flags_any
(
_VM_CF_Cancel
)
)
struct
search
:
mc
::
Search
<
mc
::
State
,
mc
::
Label
>
{};
std
::
cerr
<<
"encountered an infeasible path (execution cancelled)"
<<
std
::
endl
;
if
(
_ctx
.
flags_any
(
_VM_CF_Error
)
)
void
Exec
::
run
()
std
::
cerr
<<
"execution stopped due to a program error"
<<
std
::
endl
;
{
mach_exec
m
;
m
.
bc
(
_bc
);
m
.
context
().
enable_debug
();
weave
(
m
).
extend
(
search
()
).
start
();
}
}
void
Exec
::
trace
()
void
Exec
::
trace
()
...
...
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