X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f1e469ce075c0a1ad21a7fd0fdb587f9a3cb5289..2807fde4fd1f59c230d69a934634c5dfb77905f2:/src/mc/mc_smx.cpp diff --git a/src/mc/mc_smx.cpp b/src/mc/mc_smx.cpp index 85b31ed962..8be69df80c 100644 --- a/src/mc/mc_smx.cpp +++ b/src/mc/mc_smx.cpp @@ -5,8 +5,8 @@ #include "simgrid/s4u/Host.hpp" -#include "src/mc/mc_smx.h" #include "src/mc/ModelChecker.hpp" +#include "src/mc/mc_smx.hpp" using simgrid::mc::remote; @@ -31,7 +31,7 @@ static inline simgrid::mc::ActorInformation* actor_info_cast(smx_actor_t actor) * @param target Local vector (to be filled with copies of `s_smx_actor_t`) * @param remote_swag Address of the process SWAG in the remote list */ -static void MC_process_refresh_simix_process_list(simgrid::mc::Process* process, +static void MC_process_refresh_simix_process_list(simgrid::mc::RemoteClient* process, std::vector& target, simgrid::mc::RemotePtr remote_swag) { @@ -57,7 +57,7 @@ static void MC_process_refresh_simix_process_list(simgrid::mc::Process* process, assert(i == swag.count); } -static void MC_process_refresh_simix_actor_dynar(simgrid::mc::Process* process, +static void MC_process_refresh_simix_actor_dynar(simgrid::mc::RemoteClient* process, std::vector& target, simgrid::mc::RemotePtr remote_dynar) { @@ -66,7 +66,7 @@ static void MC_process_refresh_simix_actor_dynar(simgrid::mc::Process* process, s_xbt_dynar_t dynar; process->read_bytes(&dynar, sizeof(dynar), remote_dynar); - smx_actor_t* data = (smx_actor_t*)malloc(dynar.elmsize * dynar.used); + smx_actor_t* data = static_cast(::operator new(dynar.elmsize * dynar.used)); process->read_bytes(data, dynar.elmsize * dynar.used, dynar.data); // Load each element of the vector from the MCed process: @@ -78,14 +78,14 @@ static void MC_process_refresh_simix_actor_dynar(simgrid::mc::Process* process, process->read_bytes(&info.copy, sizeof(info.copy), remote(data[i])); target.push_back(std::move(info)); } - free(data); + ::operator delete(data); } namespace simgrid { namespace mc { -void Process::refresh_simix() +void RemoteClient::refresh_simix() { - if (this->cache_flags_ & Process::cache_simix_processes) + if (this->cache_flags_ & RemoteClient::cache_simix_processes) return; // TODO, avoid to reload `&simix_global`, `simix_global`, `*simix_global` @@ -97,7 +97,6 @@ void Process::refresh_simix() static_assert(sizeof(simix_global) == sizeof(simgrid::simix::Global*), "Bad size for simix_global"); - // simix_global_p = REMOTE(simix_global.get()); RemotePtr simix_global_p = this->read_variable("simix_global"); @@ -109,7 +108,7 @@ void Process::refresh_simix() MC_process_refresh_simix_process_list(this, this->smx_dead_actors_infos, remote(simix_global.getBuffer()->process_to_destroy)); - this->cache_flags_ |= Process::cache_simix_processes; + this->cache_flags_ |= RemoteClient::cache_simix_processes; } } @@ -145,9 +144,9 @@ smx_actor_t MC_smx_simcall_get_issuer(s_smx_simcall_t const* req) const char* MC_smx_actor_get_host_name(smx_actor_t actor) { if (mc_model_checker == nullptr) - return actor->host->cname(); + return actor->host->getCname(); - simgrid::mc::Process* process = &mc_model_checker->process(); + simgrid::mc::RemoteClient* process = &mc_model_checker->process(); /* HACK, Horrible hack to find the offset of the id in the simgrid::s4u::Host. @@ -161,11 +160,11 @@ const char* MC_smx_actor_get_host_name(smx_actor_t actor) */ union fake_host { simgrid::s4u::Host host; - fake_host() {} - ~fake_host() {} + fake_host() { /* Nothing to do*/} + ~fake_host() { /* Nothing to do*/} }; fake_host foo; - const size_t offset = (char*) &foo.host.name() - (char*) &foo.host; + const size_t offset = (char*)&foo.host.getName() - (char*)&foo.host; // Read the simgrid::xbt::string in the MCed process: simgrid::mc::ActorInformation* info = actor_info_cast(actor); @@ -179,20 +178,20 @@ const char* MC_smx_actor_get_host_name(smx_actor_t actor) const char* MC_smx_actor_get_name(smx_actor_t actor) { - simgrid::mc::Process* process = &mc_model_checker->process(); + simgrid::mc::RemoteClient* process = &mc_model_checker->process(); if (mc_model_checker == nullptr) return actor->name.c_str(); simgrid::mc::ActorInformation* info = actor_info_cast(actor); if (info->name.empty()) { - simgrid::xbt::string_data string_data = (simgrid::xbt::string_data&)actor->name; + simgrid::xbt::string_data string_data = simgrid::xbt::string::to_string_data(actor->name); info->name = process->read_string(remote(string_data.data), string_data.len); } return info->name.c_str(); } #if HAVE_SMPI -int MC_smpi_process_count(void) +int MC_smpi_process_count() { if (mc_model_checker == nullptr) return smpi_process_count(); @@ -203,7 +202,7 @@ int MC_smpi_process_count(void) } #endif -unsigned long MC_smx_get_maxpid(void) +unsigned long MC_smx_get_maxpid() { unsigned long maxpid; mc_model_checker->process().read_variable("simix_process_maxpid",