Skip to content
Snippets Groups Projects
Commit d200d844 authored by Petr Rockai's avatar Petr Rockai
Browse files

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
...@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment