X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dc9b8feaddd53842f6204f4f24409b2382393fa9..e0e78e5fd1f74efdc62ed85e5b20d4cb70838a8f:/src/mc/mc_record.cpp diff --git a/src/mc/mc_record.cpp b/src/mc/mc_record.cpp index cdc1151fac..bc2b30c4a8 100644 --- a/src/mc/mc_record.cpp +++ b/src/mc/mc_record.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,50 +7,43 @@ #include "src/kernel/activity/CommImpl.hpp" #include "src/kernel/context/Context.hpp" #include "src/mc/Transition.hpp" -#include "src/mc/mc_base.h" +#include "src/mc/mc_base.hpp" #include "src/mc/mc_replay.hpp" -#include "src/simix/ActorImpl.hpp" #if SIMGRID_HAVE_MC #include "src/mc/checker/Checker.hpp" #include "src/mc/mc_private.hpp" -#include "src/mc/mc_request.hpp" -#include "src/mc/mc_smx.hpp" #include "src/mc/mc_state.hpp" #endif -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_record, mc, - " Logging specific to MC record/replay facility"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_record, mc, "Logging specific to MC record/replay facility"); namespace simgrid { namespace mc { void replay(RecordTrace const& trace) { - simgrid::mc::wait_for_requests(); + simgrid::mc::execute_actors(); for (simgrid::mc::Transition const& transition : trace) { - XBT_DEBUG("Executing %i$%i", transition.pid, transition.argument); + XBT_DEBUG("Executing %ld$%i", transition.aid_, transition.times_considered_); // Choose a request: - smx_actor_t process = SIMIX_process_from_PID(transition.pid); - if (not process) - xbt_die("Unexpected process (pid:%d).", transition.pid); - smx_simcall_t simcall = &(process->simcall); - if (not simcall || simcall->call == SIMCALL_NONE) - xbt_die("No simcall for process %d.", transition.pid); - if (not simgrid::mc::request_is_visible(simcall) || not simgrid::mc::actor_is_enabled(process)) - xbt_die("Unexpected simcall."); + kernel::actor::ActorImpl* actor = kernel::actor::ActorImpl::by_pid(transition.aid_); + xbt_assert(actor != nullptr, "Unexpected actor (id:%ld).", transition.aid_); + const s_smx_simcall* simcall = &(actor->simcall_); + xbt_assert(simcall->call_ != simix::Simcall::NONE, "No simcall for process %ld.", transition.aid_); + xbt_assert(simgrid::mc::request_is_visible(simcall) && simgrid::mc::actor_is_enabled(actor), "Unexpected simcall."); // Execute the request: - SIMIX_simcall_handle(simcall, transition.argument); - simgrid::mc::wait_for_requests(); + simcall->issuer_->simcall_handle(transition.times_considered_); + simgrid::mc::execute_actors(); } } void replay(const std::string& path_string) { - simgrid::mc::processes_time.resize(SIMIX_process_get_maxpid()); + simgrid::mc::processes_time.resize(simgrid::kernel::actor::get_maxpid()); simgrid::mc::RecordTrace trace = simgrid::mc::parseRecordTrace(path_string.c_str()); simgrid::mc::replay(trace); simgrid::mc::processes_time.clear(); @@ -65,9 +58,9 @@ RecordTrace parseRecordTrace(const char* data) const char* current = data; while (*current) { - simgrid::mc::Transition item; - int count = sscanf(current, "%d/%d", &item.pid, &item.argument); + int count = sscanf(current, "%ld/%d", &item.aid_, &item.times_considered_); + if(count != 2 && count != 1) throw std::invalid_argument("Could not parse record path"); res.push_back(item); @@ -91,19 +84,17 @@ std::string traceToString(simgrid::mc::RecordTrace const& trace) for (auto i = trace.begin(); i != trace.end(); ++i) { if (i != trace.begin()) stream << ';'; - stream << i->pid; - if (i->argument) - stream << '/' << i->argument; + stream << i->aid_; + if (i->times_considered_) + stream << '/' << i->times_considered_; } return stream.str(); } void dumpRecordPath() { - if (MC_record_is_active()) { - RecordTrace trace = mc_model_checker->getChecker()->getRecordTrace(); - XBT_INFO("Path = %s", traceToString(trace).c_str()); - } + RecordTrace trace = mc_model_checker->getChecker()->get_record_trace(); + XBT_INFO("Path = %s", traceToString(trace).c_str()); } #endif