X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9a3cb429ae07b3794fae083db1c3c78aa852fb0b..7215139acf8ac34d2b9cc0de4baba96fbbd64171:/src/mc/LivenessChecker.cpp diff --git a/src/mc/LivenessChecker.cpp b/src/mc/LivenessChecker.cpp index 552609ecee..c1ceaabb8c 100644 --- a/src/mc/LivenessChecker.cpp +++ b/src/mc/LivenessChecker.cpp @@ -51,8 +51,7 @@ VisitedPair::VisitedPair( process->get_heap()->heaplimit, process->get_malloc_info()); - this->nb_processes = - mc_model_checker->process().simix_processes().size(); + this->nb_processes = mc_model_checker->process().simix_processes().size(); this->automaton_state = automaton_state; this->num = pair_num; @@ -64,44 +63,31 @@ VisitedPair::~VisitedPair() { } -static int MC_automaton_evaluate_label( - xbt_automaton_exp_label_t l, - std::vector const& atomic_propositions_values) +static bool evaluate_label( + xbt_automaton_exp_label_t l, std::vector const& values) { - switch (l->type) { - case xbt_automaton_exp_label::AUT_OR:{ - int left_res = MC_automaton_evaluate_label( - l->u.or_and.left_exp, atomic_propositions_values); - int right_res = MC_automaton_evaluate_label( - l->u.or_and.right_exp, atomic_propositions_values); - return (left_res || right_res); - } - case xbt_automaton_exp_label::AUT_AND:{ - int left_res = MC_automaton_evaluate_label( - l->u.or_and.left_exp, atomic_propositions_values); - int right_res = MC_automaton_evaluate_label( - l->u.or_and.right_exp, atomic_propositions_values); - return (left_res && right_res); - } - case xbt_automaton_exp_label::AUT_NOT:{ - int res = MC_automaton_evaluate_label( - l->u.exp_not, atomic_propositions_values); - return (!res); - } + case xbt_automaton_exp_label::AUT_OR: + return evaluate_label(l->u.or_and.left_exp, values) + || evaluate_label(l->u.or_and.right_exp, values); + case xbt_automaton_exp_label::AUT_AND: + return evaluate_label(l->u.or_and.left_exp, values) + && evaluate_label(l->u.or_and.right_exp, values); + case xbt_automaton_exp_label::AUT_NOT: + return !evaluate_label(l->u.exp_not, values); case xbt_automaton_exp_label::AUT_PREDICAT:{ unsigned int cursor = 0; xbt_automaton_propositional_symbol_t p = nullptr; xbt_dynar_foreach(simgrid::mc::property_automaton->propositional_symbols, cursor, p) { if (std::strcmp(xbt_automaton_propositional_symbol_get_name(p), l->u.predicat) == 0) - return atomic_propositions_values[cursor]; + return values[cursor] != 0; } - return -1; + xbt_die("Missing predicate"); } case xbt_automaton_exp_label::AUT_ONE: - return 2; + return true; default: - return -1; + xbt_die("Unexpected vaue for automaton"); } } @@ -170,49 +156,27 @@ void LivenessChecker::removeAcceptancePair(int pair_num) void LivenessChecker::prepare(void) { - simgrid::mc::Pair* initial_pair = nullptr; mc_model_checker->wait_for_requests(); - initial_global_state->snapshot = simgrid::mc::take_snapshot(0); initial_global_state->prev_pair = 0; + // For each initial state of the property automaton, push a + // (application_state, automaton_state) pair to the exploration stack: unsigned int cursor = 0; xbt_automaton_state_t automaton_state; - - xbt_dynar_foreach(simgrid::mc::property_automaton->states, cursor, automaton_state) { - if (automaton_state->type == -1) { /* Initial automaton state */ - - initial_pair = new Pair(); - initial_pair->automaton_state = automaton_state; - initial_pair->graph_state = std::shared_ptr(MC_state_new()); - initial_pair->atomic_propositions = this->getPropositionValues(); - initial_pair->depth = 1; - - /* Get enabled processes and insert them in the interleave set of the graph_state */ - for (auto& p : mc_model_checker->process().simix_processes()) - if (simgrid::mc::process_is_enabled(&p.copy)) - MC_state_interleave_process(initial_pair->graph_state.get(), &p.copy); - - initial_pair->requests = MC_state_interleave_size(initial_pair->graph_state.get()); - initial_pair->search_cycle = false; - - livenessStack_.push_back(initial_pair); - } - } + xbt_dynar_foreach(simgrid::mc::property_automaton->states, cursor, automaton_state) + if (automaton_state->type == -1) + livenessStack_.push_back(this->newPair(nullptr, automaton_state)); } void LivenessChecker::replay() { - smx_simcall_t req = nullptr, saved_req = NULL; - int value, depth = 1; - char *req_str; - XBT_DEBUG("**** Begin Replay ****"); /* Intermediate backtracking */ if(_sg_mc_checkpoint > 0) { - simgrid::mc::Pair* pair = livenessStack_.back(); + simgrid::mc::Pair* pair = livenessStack_.back().get(); if(pair->graph_state->system_state){ simgrid::mc::restore_snapshot(pair->graph_state->system_state); return; @@ -223,40 +187,44 @@ void LivenessChecker::replay() simgrid::mc::restore_snapshot(initial_global_state->snapshot); /* Traverse the stack from the initial state and re-execute the transitions */ - for (simgrid::mc::Pair* pair : livenessStack_) { + int depth = 1; + for (std::shared_ptr const& pair : livenessStack_) { if (pair == livenessStack_.back()) break; - std::shared_ptr state = pair->graph_state; + std::shared_ptr state = pair->graph_state; - if (pair->exploration_started) { + if (pair->exploration_started) { - saved_req = MC_state_get_executed_request(state.get(), &value); - - if (saved_req != nullptr) { - /* because we got a copy of the executed request, we have to fetch the - real one, pointed by the request field of the issuer process */ - const smx_process_t issuer = MC_smx_simcall_get_issuer(saved_req); - req = &issuer->simcall; + int value; + smx_simcall_t saved_req = MC_state_get_executed_request(state.get(), &value); - /* Debug information */ - if (XBT_LOG_ISENABLED(mc_liveness, xbt_log_priority_debug)) { - req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix); - XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state.get()); - xbt_free(req_str); - } + smx_simcall_t req = nullptr; + if (saved_req != nullptr) { + /* because we got a copy of the executed request, we have to fetch the + real one, pointed by the request field of the issuer process */ + const smx_process_t issuer = MC_smx_simcall_get_issuer(saved_req); + req = &issuer->simcall; + + /* Debug information */ + if (XBT_LOG_ISENABLED(mc_liveness, xbt_log_priority_debug)) { + char* req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix); + XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state.get()); + xbt_free(req_str); } - simgrid::mc::handle_simcall(req, value); - mc_model_checker->wait_for_requests(); } - /* Update statistics */ - mc_stats->visited_pairs++; - mc_stats->executed_transitions++; + simgrid::mc::handle_simcall(req, value); + mc_model_checker->wait_for_requests(); + } + + /* Update statistics */ + mc_stats->visited_pairs++; + mc_stats->executed_transitions++; - depth++; + depth++; } @@ -291,8 +259,7 @@ int LivenessChecker::insertVisitedPair(std::shared_ptr visited_pair else visited_pair->other_num = pair_test->other_num; if (dot_output == nullptr) - XBT_DEBUG("Pair %d already visited ! (equal to pair %d)", - visited_pair->num, pair_test->num); + XBT_DEBUG("Pair %d already visited ! (equal to pair %d)", visited_pair->num, pair_test->num); else XBT_DEBUG("Pair %d already visited ! (equal to pair %d (pair %d in dot_output))", visited_pair->num, pair_test->num, visited_pair->other_num); @@ -301,22 +268,19 @@ int LivenessChecker::insertVisitedPair(std::shared_ptr visited_pair } visitedPairs_.insert(range.first, std::move(visited_pair)); + this->purgeVisitedPairs(); + return -1; +} - if (visitedPairs_.size() > (std::size_t) _sg_mc_visited) { - int min2 = mc_stats->expanded_pairs; - - std::list>::iterator index2; - for (auto i = visitedPairs_.begin(); i != visitedPairs_.end(); ++i) { - if ((*i)->num < min2) { - index2 = i; - min2 = (*i)->num; - } - } - - visitedPairs_.erase(index2); +void LivenessChecker::purgeVisitedPairs() +{ + if (_sg_mc_visited != 0 && visitedPairs_.size() > (std::size_t) _sg_mc_visited) { + // Remove the oldest entry with a linear search: + visitedPairs_.erase(std::min_element( + visitedPairs_.begin(), visitedPairs_.end(), + [](std::shared_ptr const a, std::shared_ptr const& b) { + return a->num < b->num; } )); } - - return -1; } LivenessChecker::LivenessChecker(Session& session) : Checker(session) @@ -330,14 +294,12 @@ LivenessChecker::~LivenessChecker() RecordTrace LivenessChecker::getRecordTrace() // override { RecordTrace res; - for (simgrid::mc::Pair* pair : livenessStack_) { + for (std::shared_ptr const& pair : livenessStack_) { int value; smx_simcall_t req = MC_state_get_executed_request(pair->graph_state.get(), &value); if (req && req->call != SIMCALL_NONE) { smx_process_t issuer = MC_smx_simcall_get_issuer(req); const int pid = issuer->pid; - - // Serialization the (pid, value) pair: res.push_back(RecordTraceElement(pid, value)); } } @@ -360,7 +322,7 @@ void LivenessChecker::showAcceptanceCycle(std::size_t depth) std::vector LivenessChecker::getTextualTrace() // override { std::vector trace; - for (simgrid::mc::Pair* pair : livenessStack_) { + for (std::shared_ptr const& pair : livenessStack_) { int value; smx_simcall_t req = MC_state_get_executed_request(pair->graph_state.get(), &value); if (req && req->call != SIMCALL_NONE) { @@ -374,17 +336,8 @@ std::vector LivenessChecker::getTextualTrace() // override int LivenessChecker::main(void) { - simgrid::mc::Pair* current_pair = nullptr; - int value, res, visited_num = -1; - smx_simcall_t req = nullptr; - xbt_automaton_transition_t transition_succ = nullptr; - int cursor = 0; - std::shared_ptr reached_pair = nullptr; - while (!livenessStack_.empty()){ - - /* Get current pair */ - current_pair = livenessStack_.back(); + std::shared_ptr current_pair = livenessStack_.back(); /* Update current state in buchi automaton */ simgrid::mc::property_automaton->current_state = current_pair->automaton_state; @@ -394,127 +347,82 @@ int LivenessChecker::main(void) MC_state_interleave_size(current_pair->graph_state.get()), current_pair->num, current_pair->requests); - if (current_pair->requests > 0) { + if (current_pair->requests == 0) { + this->backtrack(); + continue; + } + + std::shared_ptr reached_pair; + if (current_pair->automaton_state->type == 1 && !current_pair->exploration_started + && (reached_pair = this->insertAcceptancePair(current_pair.get())) == nullptr) { + this->showAcceptanceCycle(current_pair->depth); + return SIMGRID_MC_EXIT_LIVENESS; + } - if (current_pair->automaton_state->type == 1 && !current_pair->exploration_started - && (reached_pair = this->insertAcceptancePair(current_pair)) == nullptr) { - this->showAcceptanceCycle(current_pair->depth); - return SIMGRID_MC_EXIT_LIVENESS; + /* Pair already visited ? stop the exploration on the current path */ + int visited_num = -1; + if ((!current_pair->exploration_started) + && (visited_num = this->insertVisitedPair( + reached_pair, current_pair.get())) != -1) { + if (dot_output != nullptr){ + fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", initial_global_state->prev_pair, visited_num, initial_global_state->prev_req); + fflush(dot_output); } + XBT_DEBUG("Pair already visited (equal to pair %d), exploration on the current path stopped.", visited_num); + current_pair->requests = 0; + this->backtrack(); + continue; + } + + int value; + smx_simcall_t req = MC_state_get_request(current_pair->graph_state.get(), &value); - /* Pair already visited ? stop the exploration on the current path */ - if ((!current_pair->exploration_started) - && (visited_num = this->insertVisitedPair( - reached_pair, current_pair)) != -1) { + if (dot_output != nullptr) { + if (initial_global_state->prev_pair != 0 && initial_global_state->prev_pair != current_pair->num) { + fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", initial_global_state->prev_pair, current_pair->num, initial_global_state->prev_req); + xbt_free(initial_global_state->prev_req); + } + initial_global_state->prev_pair = current_pair->num; + initial_global_state->prev_req = simgrid::mc::request_get_dot_output(req, value); + if (current_pair->search_cycle) + fprintf(dot_output, "%d [shape=doublecircle];\n", current_pair->num); + fflush(dot_output); + } - if (dot_output != nullptr){ - fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", initial_global_state->prev_pair, visited_num, initial_global_state->prev_req); - fflush(dot_output); - } + char* req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix); + XBT_DEBUG("Execute: %s", req_str); + xbt_free(req_str); - XBT_DEBUG("Pair already visited (equal to pair %d), exploration on the current path stopped.", visited_num); - current_pair->requests = 0; - goto backtracking; - - }else{ - - req = MC_state_get_request(current_pair->graph_state.get(), &value); - - if (dot_output != nullptr) { - if (initial_global_state->prev_pair != 0 && initial_global_state->prev_pair != current_pair->num) { - fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", initial_global_state->prev_pair, current_pair->num, initial_global_state->prev_req); - xbt_free(initial_global_state->prev_req); - } - initial_global_state->prev_pair = current_pair->num; - initial_global_state->prev_req = simgrid::mc::request_get_dot_output(req, value); - if (current_pair->search_cycle) - fprintf(dot_output, "%d [shape=doublecircle];\n", current_pair->num); - fflush(dot_output); - } - - char* req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix); - XBT_DEBUG("Execute: %s", req_str); - xbt_free(req_str); - - /* Set request as executed */ - MC_state_set_executed_request(current_pair->graph_state.get(), req, value); - - /* Update mc_stats */ - mc_stats->executed_transitions++; - if (!current_pair->exploration_started) - mc_stats->visited_pairs++; - - /* Answer the request */ - simgrid::mc::handle_simcall(req, value); - - /* Wait for requests (schedules processes) */ - mc_model_checker->wait_for_requests(); - - current_pair->requests--; - current_pair->exploration_started = true; - - /* Get values of atomic propositions (variables used in the property formula) */ - std::vector prop_values = this->getPropositionValues(); - - /* Evaluate enabled/true transitions in automaton according to atomic propositions values and create new pairs */ - cursor = xbt_dynar_length(current_pair->automaton_state->out) - 1; - while (cursor >= 0) { - transition_succ = (xbt_automaton_transition_t)xbt_dynar_get_as(current_pair->automaton_state->out, cursor, xbt_automaton_transition_t); - res = MC_automaton_evaluate_label(transition_succ->label, prop_values); - if (res == 1 || res == 2) { /* 1 = True transition (always enabled), 2 = enabled transition according to atomic prop values */ - Pair* next_pair = new Pair(); - next_pair->graph_state = std::shared_ptr(MC_state_new()); - next_pair->automaton_state = transition_succ->dst; - next_pair->atomic_propositions = this->getPropositionValues(); - next_pair->depth = current_pair->depth + 1; - /* Get enabled processes and insert them in the interleave set of the next graph_state */ - for (auto& p : mc_model_checker->process().simix_processes()) - if (simgrid::mc::process_is_enabled(&p.copy)) - MC_state_interleave_process(next_pair->graph_state.get(), &p.copy); - - next_pair->requests = MC_state_interleave_size(next_pair->graph_state.get()); - - /* FIXME : get search_cycle value for each acceptant state */ - if (next_pair->automaton_state->type == 1 || current_pair->search_cycle) - next_pair->search_cycle = true; - - /* Add new pair to the exploration stack */ - livenessStack_.push_back(next_pair); - - } - cursor--; - } - - } /* End of visited_pair test */ + /* Set request as executed */ + MC_state_set_executed_request(current_pair->graph_state.get(), req, value); - } else { + /* Update mc_stats */ + mc_stats->executed_transitions++; + if (!current_pair->exploration_started) + mc_stats->visited_pairs++; - backtracking: - if(visited_num == -1) - XBT_DEBUG("No more request to execute. Looking for backtracking point."); - - /* Traverse the stack backwards until a pair with a non empty interleave - set is found, deleting all the pairs that have it empty in the way. */ - while (!livenessStack_.empty()) { - current_pair = livenessStack_.back(); - livenessStack_.pop_back(); - if (current_pair->requests > 0) { - /* We found a backtracking point */ - XBT_DEBUG("Backtracking to depth %d", current_pair->depth); - livenessStack_.push_back(current_pair); - this->replay(); - XBT_DEBUG("Backtracking done"); - break; - }else{ - /* Delete pair */ - XBT_DEBUG("Delete pair %d at depth %d", current_pair->num, current_pair->depth); - if (current_pair->automaton_state->type == 1) - this->removeAcceptancePair(current_pair->num); - delete current_pair; - } - } + /* Answer the request */ + simgrid::mc::handle_simcall(req, value); - } /* End of if (current_pair->requests > 0) else ... */ + /* Wait for requests (schedules processes) */ + mc_model_checker->wait_for_requests(); + + current_pair->requests--; + current_pair->exploration_started = true; + + /* Get values of atomic propositions (variables used in the property formula) */ + std::vector prop_values = this->getPropositionValues(); + + // For each enabled transition in the property automaton, push a + // (application_state, automaton_state) pair to the exploration stack: + int cursor = xbt_dynar_length(current_pair->automaton_state->out) - 1; + while (cursor >= 0) { + xbt_automaton_transition_t transition_succ = (xbt_automaton_transition_t)xbt_dynar_get_as(current_pair->automaton_state->out, cursor, xbt_automaton_transition_t); + if (evaluate_label(transition_succ->label, prop_values)) + livenessStack_.push_back(this->newPair( + current_pair.get(), transition_succ->dst)); + cursor--; + } } @@ -523,6 +431,52 @@ int LivenessChecker::main(void) return SIMGRID_MC_EXIT_SUCCESS; } +std::shared_ptr LivenessChecker::newPair(Pair* current_pair, xbt_automaton_state_t state) +{ + std::shared_ptr next_pair = std::make_shared(); + next_pair->automaton_state = state; + next_pair->graph_state = std::shared_ptr(MC_state_new()); + next_pair->atomic_propositions = this->getPropositionValues(); + if (current_pair) + next_pair->depth = current_pair->depth + 1; + else + next_pair->depth = 1; + /* Get enabled processes and insert them in the interleave set of the next graph_state */ + for (auto& p : mc_model_checker->process().simix_processes()) + if (simgrid::mc::process_is_enabled(&p.copy)) + MC_state_interleave_process(next_pair->graph_state.get(), &p.copy); + next_pair->requests = MC_state_interleave_size(next_pair->graph_state.get()); + /* FIXME : get search_cycle value for each acceptant state */ + if (next_pair->automaton_state->type == 1 || + (current_pair && current_pair->search_cycle)) + next_pair->search_cycle = true; + else + next_pair->search_cycle = false; + return std::move(next_pair); +} + +void LivenessChecker::backtrack() +{ + /* Traverse the stack backwards until a pair with a non empty interleave + set is found, deleting all the pairs that have it empty in the way. */ + while (!livenessStack_.empty()) { + std::shared_ptr current_pair = livenessStack_.back(); + livenessStack_.pop_back(); + if (current_pair->requests > 0) { + /* We found a backtracking point */ + XBT_DEBUG("Backtracking to depth %d", current_pair->depth); + livenessStack_.push_back(std::move(current_pair)); + this->replay(); + XBT_DEBUG("Backtracking done"); + break; + } else { + XBT_DEBUG("Delete pair %d at depth %d", current_pair->num, current_pair->depth); + if (current_pair->automaton_state->type == 1) + this->removeAcceptancePair(current_pair->num); + } + } +} + int LivenessChecker::run() { XBT_INFO("Check the liveness property %s", _sg_mc_property_file);