X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e91f4e50de913c126b42d09d227eb416bb320dae..7d9763f5619c35b79077e30f5d32de44699824a6:/src/mc/SafetyChecker.cpp diff --git a/src/mc/SafetyChecker.cpp b/src/mc/SafetyChecker.cpp index 4f527cbf39..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,7 +51,7 @@ 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->get(), current_state) == 0){ @@ -98,12 +95,8 @@ int SafetyChecker::run() { this->init(); - char *req_str = nullptr; int value; smx_simcall_t req = nullptr; - simgrid::mc::State* prev_state = nullptr; - xbt_fifo_item_t item = nullptr; - std::unique_ptr visited_state = nullptr; while (!stack_.empty()) { @@ -112,19 +105,20 @@ int SafetyChecker::run() 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); @@ -145,13 +139,13 @@ int SafetyChecker::run() std::unique_ptr next_state = std::unique_ptr(MC_state_new()); - if (_sg_mc_termination && this->checkNonDeterminism(next_state.get())){ + 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.get(), 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()) @@ -165,7 +159,7 @@ 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(std::move(next_state)); @@ -177,16 +171,14 @@ 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); @@ -195,7 +187,7 @@ int SafetyChecker::run() XBT_DEBUG("Delete state %d at depth %zi", state->num, stack_.size()); stack_.pop_back(); - visited_state = nullptr; + visitedState_ = nullptr; /* Check for deadlocks */ if (mc_model_checker->checkDeadlock()) { @@ -226,7 +218,7 @@ int SafetyChecker::run() 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.get(), &value); @@ -261,7 +253,7 @@ int SafetyChecker::run() } if (MC_state_interleave_size(state.get()) - && stack_.size() < _sg_mc_max_depth) { + && 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); @@ -331,6 +323,11 @@ SafetyChecker::SafetyChecker(Session& session) : Checker(session) SafetyChecker::~SafetyChecker() { } + +Checker* createSafetyChecker(Session& session) +{ + return new SafetyChecker(session); +} } }