X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f7a4833f1a704ef0be1ef00f9de84ad8d5975426..7d9763f5619c35b79077e30f5d32de44699824a6:/src/mc/SafetyChecker.cpp diff --git a/src/mc/SafetyChecker.cpp b/src/mc/SafetyChecker.cpp index 58e9a1644e..68d89d75f3 100644 --- a/src/mc/SafetyChecker.cpp +++ b/src/mc/SafetyChecker.cpp @@ -10,9 +10,6 @@ #include #include -#include -#include -#include #include #include "src/mc/mc_state.h" @@ -54,10 +51,10 @@ static int snapshot_compare(simgrid::mc::State* state1, simgrid::mc::State* stat return snapshot_compare(num1, s1, num2, s2); } -bool SafetyChecker::checkNonDeterminism(simgrid::mc::State* current_state) +bool SafetyChecker::checkNonTermination(simgrid::mc::State* current_state) { for (auto i = stack_.rbegin(); i != stack_.rend(); ++i) - if(snapshot_compare(*i, current_state) == 0){ + if (snapshot_compare(i->get(), current_state) == 0){ XBT_INFO("Non-progressive cycle : state %d -> state %d", (*i)->num, current_state->num); return true; @@ -68,9 +65,9 @@ bool SafetyChecker::checkNonDeterminism(simgrid::mc::State* current_state) RecordTrace SafetyChecker::getRecordTrace() // override { RecordTrace res; - for (simgrid::mc::State* state : stack_) { + for (auto const& state : stack_) { int value = 0; - smx_simcall_t saved_req = MC_state_get_executed_request(state, &value); + smx_simcall_t saved_req = MC_state_get_executed_request(state.get(), &value); const smx_process_t issuer = MC_smx_simcall_get_issuer(saved_req); const int pid = issuer->pid; res.push_back(RecordTraceElement(pid, value)); @@ -81,9 +78,9 @@ RecordTrace SafetyChecker::getRecordTrace() // override std::vector SafetyChecker::getTextualTrace() // override { std::vector trace; - for (simgrid::mc::State* state : stack_) { + for (auto const& state : stack_) { int value; - smx_simcall_t req = MC_state_get_executed_request(state, &value); + smx_simcall_t req = MC_state_get_executed_request(state.get(), &value); if (req) { char* req_str = simgrid::mc::request_to_string( req, value, simgrid::mc::RequestType::executed); @@ -98,34 +95,30 @@ int SafetyChecker::run() { this->init(); - char *req_str = nullptr; int value; smx_simcall_t req = nullptr; - simgrid::mc::State* prev_state = nullptr; - simgrid::mc::State* next_state = nullptr; - xbt_fifo_item_t item = nullptr; - std::unique_ptr visited_state = nullptr; while (!stack_.empty()) { /* Get current state */ - simgrid::mc::State* state = stack_.back(); + simgrid::mc::State* state = stack_.back().get(); XBT_DEBUG("**************************************************"); XBT_DEBUG( - "Exploration depth=%zi (state=%p, num %d)(%u interleave, user_max_depth %d)", + "Exploration depth=%zi (state=%p, num %d)(%u interleave)", stack_.size(), state, state->num, - MC_state_interleave_size(state), user_max_depth_reached); + MC_state_interleave_size(state)); /* Update statistics */ mc_stats->visited_states++; /* If there are processes to interleave and the maximum depth has not been reached then perform one step of the exploration algorithm */ - if (stack_.size() <= _sg_mc_max_depth && !user_max_depth_reached - && (req = MC_state_get_request(state, &value)) && visited_state == nullptr) { + if (stack_.size() <= (std::size_t) _sg_mc_max_depth + && (req = MC_state_get_request(state, &value)) != nullptr + && visitedState_ == nullptr) { - req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix); + char* req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix); XBT_DEBUG("Execute: %s", req_str); xbt_free(req_str); @@ -143,20 +136,21 @@ int SafetyChecker::run() mc_model_checker->wait_for_requests(); /* Create the new expanded state */ - next_state = MC_state_new(); + std::unique_ptr next_state = + std::unique_ptr(MC_state_new()); - if (_sg_mc_termination && this->checkNonDeterminism(next_state)){ + if (_sg_mc_termination && this->checkNonTermination(next_state.get())) { MC_show_non_termination(); return SIMGRID_MC_EXIT_NON_TERMINATION; } if (_sg_mc_visited == 0 - || (visited_state = visitedStates_.addVisitedState(next_state, true)) == nullptr) { + || (visitedState_ = visitedStates_.addVisitedState(next_state.get(), true)) == nullptr) { /* Get an enabled process and insert it in the interleave set of the next state */ for (auto& p : mc_model_checker->process().simix_processes()) if (simgrid::mc::process_is_enabled(&p.copy)) { - MC_state_interleave_process(next_state, &p.copy); + MC_state_interleave_process(next_state.get(), &p.copy); if (reductionMode_ != simgrid::mc::ReductionMode::none) break; } @@ -165,9 +159,9 @@ int SafetyChecker::run() std::fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num, next_state->num, req_str); } else if (dot_output != nullptr) - std::fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num, visited_state->other_num == -1 ? visited_state->num : visited_state->other_num, req_str); + std::fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num, visitedState_->other_num == -1 ? visitedState_->num : visitedState_->other_num, req_str); - stack_.push_back(next_state); + stack_.push_back(std::move(next_state)); if (dot_output != nullptr) xbt_free(req_str); @@ -177,26 +171,23 @@ int SafetyChecker::run() /* The interleave set is empty or the maximum depth is reached, let's back-track */ } else { - if (stack_.size() > _sg_mc_max_depth || user_max_depth_reached - || visited_state != nullptr) { - - if (user_max_depth_reached && visited_state == nullptr) - XBT_DEBUG("User max depth reached !"); - else if (visited_state == nullptr) + if (stack_.size() > (std::size_t) _sg_mc_max_depth + || visitedState_ != nullptr) { + if (visitedState_ == nullptr) XBT_WARN("/!\\ Max depth reached ! /!\\ "); else - XBT_DEBUG("State already visited (equal to state %d), exploration stopped on this path.", visited_state->other_num == -1 ? visited_state->num : visited_state->other_num); - + XBT_DEBUG("State already visited (equal to state %d)," + " exploration stopped on this path.", + visitedState_->other_num == -1 ? visitedState_->num : visitedState_->other_num); } else XBT_DEBUG("There are no more processes to interleave. (depth %zi)", stack_.size() + 1); /* Trash the current state, no longer needed */ + XBT_DEBUG("Delete state %d at depth %zi", state->num, stack_.size()); stack_.pop_back(); - XBT_DEBUG("Delete state %d at depth %zi", state->num, stack_.size() + 1); - MC_state_delete(state, !state->in_visited_states ? 1 : 0); - visited_state = nullptr; + visitedState_ = nullptr; /* Check for deadlocks */ if (mc_model_checker->checkDeadlock()) { @@ -212,25 +203,25 @@ int SafetyChecker::run() state that executed that previous request. */ while (!stack_.empty()) { - state = stack_.back(); + std::unique_ptr state = std::move(stack_.back()); stack_.pop_back(); if (reductionMode_ == simgrid::mc::ReductionMode::dpor) { - req = MC_state_get_internal_request(state); + req = MC_state_get_internal_request(state.get()); if (req->call == SIMCALL_MUTEX_LOCK || req->call == SIMCALL_MUTEX_TRYLOCK) xbt_die("Mutex is currently not supported with DPOR, " "use --cfg=model-check/reduction:none"); const smx_process_t issuer = MC_smx_simcall_get_issuer(req); for (auto i = stack_.rbegin(); i != stack_.rend(); ++i) { - simgrid::mc::State* prev_state = *i; + simgrid::mc::State* prev_state = i->get(); if (reductionMode_ != simgrid::mc::ReductionMode::none && simgrid::mc::request_depend(req, MC_state_get_internal_request(prev_state))) { if (XBT_LOG_ISENABLED(mc_safety, xbt_log_priority_debug)) { XBT_DEBUG("Dependent Transitions:"); smx_simcall_t prev_req = MC_state_get_executed_request(prev_state, &value); - req_str = simgrid::mc::request_to_string(prev_req, value, simgrid::mc::RequestType::internal); + char* req_str = simgrid::mc::request_to_string(prev_req, value, simgrid::mc::RequestType::internal); XBT_DEBUG("%s (state=%d)", req_str, prev_state->num); xbt_free(req_str); - prev_req = MC_state_get_executed_request(state, &value); + prev_req = MC_state_get_executed_request(state.get(), &value); req_str = simgrid::mc::request_to_string(prev_req, value, simgrid::mc::RequestType::executed); XBT_DEBUG("%s (state=%d)", req_str, state->num); xbt_free(req_str); @@ -261,20 +252,19 @@ int SafetyChecker::run() } } - if (MC_state_interleave_size(state) - && stack_.size() < _sg_mc_max_depth) { + if (MC_state_interleave_size(state.get()) + && stack_.size() < (std::size_t) _sg_mc_max_depth) { /* We found a back-tracking point, let's loop */ XBT_DEBUG("Back-tracking to state %d at depth %zi", state->num, stack_.size() + 1); - stack_.push_back(state); + stack_.push_back(std::move(state)); simgrid::mc::replay(stack_); XBT_DEBUG("Back-tracking to state %d at depth %zi done", - state->num, stack_.size()); + stack_.back()->num, stack_.size()); break; } else { XBT_DEBUG("Delete state %d at depth %zi", state->num, stack_.size() + 1); - MC_state_delete(state, !state->in_visited_states ? 1 : 0); } } } @@ -302,7 +292,8 @@ void SafetyChecker::init() XBT_DEBUG("Starting the safety algorithm"); - simgrid::mc::State* initial_state = MC_state_new(); + std::unique_ptr initial_state = + std::unique_ptr(MC_state_new()); XBT_DEBUG("**************************************************"); XBT_DEBUG("Initial state"); @@ -313,12 +304,12 @@ void SafetyChecker::init() /* Get an enabled process and insert it in the interleave set of the initial state */ for (auto& p : mc_model_checker->process().simix_processes()) if (simgrid::mc::process_is_enabled(&p.copy)) { - MC_state_interleave_process(initial_state, &p.copy); + MC_state_interleave_process(initial_state.get(), &p.copy); if (reductionMode_ != simgrid::mc::ReductionMode::none) break; } - stack_.push_back(initial_state); + stack_.push_back(std::move(initial_state)); /* Save the initial state */ initial_global_state = std::unique_ptr(new s_mc_global_t()); @@ -332,6 +323,11 @@ SafetyChecker::SafetyChecker(Session& session) : Checker(session) SafetyChecker::~SafetyChecker() { } + +Checker* createSafetyChecker(Session& session) +{ + return new SafetyChecker(session); +} } }