X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/603c44e45e00a577bccb42cf398a924178f17768..162424b0ac640baa56b0ca9bc158ef9743f0c4ac:/src/mc/mc_record.cpp diff --git a/src/mc/mc_record.cpp b/src/mc/mc_record.cpp index 494f961248..c33e7e0201 100644 --- a/src/mc/mc_record.cpp +++ b/src/mc/mc_record.cpp @@ -1,88 +1,71 @@ -/* Copyright (c) 2014-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2014-2022. 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. */ -#include -#include -#include - -#include -#include -#include - -#include "simgrid/simix.h" - -#include "src/simix/smx_private.h" -#include "src/simix/smx_process_private.h" - -#include "src/mc/mc_replay.h" -#include "src/mc/mc_record.h" -#include "src/mc/mc_base.h" - -#if HAVE_MC -#include "src/mc/mc_request.h" -#include "src/mc/mc_private.h" -#include "src/mc/mc_state.h" -#include "src/mc/mc_smx.h" -#include "src/mc/mc_liveness.h" +#include "src/mc/mc_record.hpp" +#include "src/kernel/activity/CommImpl.hpp" +#include "src/kernel/context/Context.hpp" +#include "src/mc/api/Transition.hpp" +#include "src/mc/mc_base.hpp" +#include "src/mc/mc_replay.hpp" + +#if SIMGRID_HAVE_MC +#include "src/mc/api/State.hpp" +#include "src/mc/checker/Checker.hpp" +#include "src/mc/mc_private.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"); -extern "C" { +namespace simgrid { +namespace mc { -char* MC_record_path = nullptr; - -void MC_record_replay(mc_record_item_t start, std::size_t len) +void RecordTrace::replay() { - simgrid::mc::wait_for_requests(); - mc_record_item_t end = start + len; - - // Choose the recorded simcall and execute it: - for (mc_record_item_t item=start;item!=end; ++item) { + simgrid::mc::execute_actors(); - XBT_DEBUG("Executing %i$%i", item->pid, item->value); -/* - if (xbt_dynar_is_empty(simix_global->process_to_run)) - xbt_die("Unexpected end of application."); -*/ + for (simgrid::mc::Transition* const transition : transitions_) { + XBT_DEBUG("Executing %ld$%i", transition->aid_, transition->times_considered_); // Choose a request: - smx_process_t process = SIMIX_process_from_PID(item->pid); - if (!process) - xbt_die("Unexpected process."); - smx_simcall_t simcall = &(process->simcall); - if(!simcall || simcall->call == SIMCALL_NONE) - xbt_die("No simcall for this process."); - if (!simgrid::mc::request_is_visible(simcall) - || !simgrid::mc::request_is_enabled(simcall)) - 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, item->value); - simgrid::mc::wait_for_requests(); + simcall->issuer_->simcall_handle(transition->times_considered_); + simgrid::mc::execute_actors(); } } -xbt_dynar_t MC_record_from_string(const char* data) +void simgrid::mc::RecordTrace::replay(const std::string& path_string) { - XBT_INFO("path=%s", data); - if (!data || !data[0]) - return nullptr; + simgrid::mc::processes_time.resize(simgrid::kernel::actor::get_maxpid()); + simgrid::mc::RecordTrace trace(path_string.c_str()); + trace.replay(); + for (auto* item : trace.transitions_) + delete item; + simgrid::mc::processes_time.clear(); +} - xbt_dynar_t dynar = xbt_dynar_new(sizeof(s_mc_record_item_t), nullptr); +simgrid::mc::RecordTrace::RecordTrace(const char* data) +{ + XBT_INFO("path=%s", data); + if (data == nullptr || data[0] == '\0') + throw std::invalid_argument("Could not parse record path"); const char* current = data; while (*current) { + long aid; + int times_considered; + int count = sscanf(current, "%ld/%d", &aid, ×_considered); - s_mc_record_item_t item = { 0, 0 }; - int count = sscanf(current, "%u/%u", &item.pid, &item.value); if(count != 2 && count != 1) - goto fail; - xbt_dynar_push(dynar, &item); + throw std::invalid_argument("Could not parse record path"); + push_back(new simgrid::mc::Transition(simgrid::mc::Transition::Type::UNKNOWN, aid, times_considered)); // Find next chunk: const char* end = std::strchr(current, ';'); @@ -91,104 +74,24 @@ xbt_dynar_t MC_record_from_string(const char* data) else current = end + 1; } - - return dynar; - -fail: - xbt_dynar_free(&dynar); - return nullptr; } -#if HAVE_MC -static char* MC_record_stack_to_string_liveness(xbt_fifo_t stack) -{ - char* buffer; - std::size_t size; - std::FILE* file = open_memstream(&buffer, &size); - - xbt_fifo_item_t item; - xbt_fifo_item_t start = xbt_fifo_get_last_item(stack); - for (item = start; item; item = xbt_fifo_get_prev_item(item)) { - simgrid::mc::Pair* pair = (simgrid::mc::Pair*) xbt_fifo_get_item_content(item); - int value; - smx_simcall_t req = MC_state_get_executed_request(pair->graph_state, &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: - const char* sep = (item!=start) ? ";" : ""; - if (value) - std::fprintf(file, "%s%u/%u", sep, pid, value); - else - std::fprintf(file, "%s%u", sep, pid); - } - } - - std::fclose(file); - return buffer; -} +#if SIMGRID_HAVE_MC -char* MC_record_stack_to_string(xbt_fifo_t stack) +std::string simgrid::mc::RecordTrace::to_string() const { - if (_sg_mc_liveness) - return MC_record_stack_to_string_liveness(stack); - - xbt_fifo_item_t start = xbt_fifo_get_last_item(stack); - - if (!start) { - char* res = (char*) malloc(1 * sizeof(char)); - res[0] = '\0'; - return res; + std::ostringstream stream; + for (auto i = transitions_.begin(); i != transitions_.end(); ++i) { + if (i != transitions_.begin()) + stream << ';'; + stream << (*i)->aid_; + if ((*i)->times_considered_ > 0) + stream << '/' << (*i)->times_considered_; } - - char* buffer; - std::size_t size; - std::FILE* file = open_memstream(&buffer, &size); - - xbt_fifo_item_t item; - for (item = start; item; item = xbt_fifo_get_prev_item(item)) { - - // Find (pid, value): - mc_state_t state = (mc_state_t) xbt_fifo_get_item_content(item); - int value = 0; - smx_simcall_t saved_req = MC_state_get_executed_request(state, &value); - const smx_process_t issuer = MC_smx_simcall_get_issuer(saved_req); - const int pid = issuer->pid; - - // Serialization the (pid, value) pair: - const char* sep = (item!=start) ? ";" : ""; - if (value) - std::fprintf(file, "%s%u/%u", sep, pid, value); - else - std::fprintf(file, "%s%u", sep, pid); - } - - std::fclose(file); - return buffer; + return stream.str(); } -void MC_record_dump_path(xbt_fifo_t stack) -{ - if (MC_record_is_active()) { - char* path = MC_record_stack_to_string(stack); - XBT_INFO("Path = %s", path); - std::free(path); - } -} #endif -void MC_record_replay_from_string(const char* path_string) -{ - xbt_dynar_t path = MC_record_from_string(path_string); - mc_record_item_t start = &xbt_dynar_get_as(path, 0, s_mc_record_item_t); - MC_record_replay(start, xbt_dynar_length(path)); - xbt_dynar_free(&path); -} - -void MC_record_replay_init() -{ - simgrid::mc::processes_time.resize(simix_process_maxpid); } - }