From: Gabriel Corona Date: Fri, 8 Apr 2016 12:42:43 +0000 (+0200) Subject: [mc] Remove the ugly is_in_vector() hack X-Git-Tag: v3_13~115 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/cfc6d44ffc64b24ed6f03f2ecf892c14d8d70918?hp=4172b209dead18c578e5c1b2e93d27e6af8ac3b4 [mc] Remove the ugly is_in_vector() hack --- diff --git a/src/mc/mc_smx.cpp b/src/mc/mc_smx.cpp index 604cdc36e9..f1df2aa566 100644 --- a/src/mc/mc_smx.cpp +++ b/src/mc/mc_smx.cpp @@ -20,20 +20,15 @@ using simgrid::mc::remote; -extern "C" { - -static inline -bool is_in_vector(smx_process_t p, std::vector& ps) -{ - return (uintptr_t) p >= (uintptr_t) &ps[0] - && (uintptr_t) p < (uintptr_t) &ps[ps.size()]; -} - +/** Statically "upcast" a s_smx_process_t into a SimixProcessInformation + * + * This gets 'processInfo' from '&processInfo->copy'. It upcasts in the + * sense that we could achieve the same thing by having SimixProcessInformation + * inherit from s_smx_process_t but we don't really want to do that. + */ static inline -simgrid::mc::SimixProcessInformation* MC_smx_process_get_info(smx_process_t p) +simgrid::mc::SimixProcessInformation* process_info_cast(smx_process_t p) { - assert(is_in_vector(p, mc_model_checker->process().smx_process_infos) - || is_in_vector(p, mc_model_checker->process().smx_old_process_infos)); simgrid::mc::SimixProcessInformation* process_info = (simgrid::mc::SimixProcessInformation*) ((char*) p - offsetof(simgrid::mc::SimixProcessInformation, copy)); @@ -155,7 +150,7 @@ const char* MC_smx_process_get_host_name(smx_process_t p) const size_t offset = (char*) &foo.host.name() - (char*) &foo.host; // Read the simgrid::xbt::string in the MCed process: - simgrid::mc::SimixProcessInformation* info = MC_smx_process_get_info(p); + simgrid::mc::SimixProcessInformation* info = process_info_cast(p); simgrid::xbt::string_data remote_string; auto remote_string_address = remote( (simgrid::xbt::string_data*) ((char*) p->host + offset)); @@ -174,7 +169,7 @@ const char* MC_smx_process_get_name(smx_process_t p) if (!p->name) return nullptr; - simgrid::mc::SimixProcessInformation* info = MC_smx_process_get_info(p); + simgrid::mc::SimixProcessInformation* info = process_info_cast(p); if (info->name.empty()) info->name = process->read_string(p->name); return info->name.c_str(); @@ -199,5 +194,3 @@ unsigned long MC_smx_get_maxpid(void) &maxpid, sizeof(maxpid)); return maxpid; } - -}