Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[project-description] Fix extraction of the ns-3 version.
[simgrid.git] / src / mc / mc_smx.cpp
1 /* Copyright (c) 2015-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/s4u/Host.hpp"
7
8 #include "src/mc/ModelChecker.hpp"
9 #include "src/mc/remote/RemoteProcess.hpp"
10
11 /** @file
12  *  @brief (Cross-process, MCer/MCed) Access to SMX structures
13  *
14  *  We copy some C data structure from the MCed process in the MCer process.
15  *  This is implemented by:
16  *
17  *   - `model_checker->process.smx_process_infos`
18  *      (copy of `EngineImpl::actor_list_`);
19  *
20  *   - `model_checker->hostnames`.
21  *
22  * The process lists are currently refreshed each time MCed code is executed.
23  * We don't try to give a persistent MCer address for a given MCed process.
24  * For this reason, a MCer simgrid::mc::Process* is currently not reusable after
25  * MCed code.
26  */
27
28 /** Load the remote list of processes into a vector
29  *
30  *  @param process      MCed process
31  *  @param target       Local vector (to be filled with `simgrid::mc::ActorInformation`)
32  *  @param remote_dynar Address of the process dynar in the remote list
33  */
34 static void MC_process_refresh_simix_actor_dynar(const simgrid::mc::RemoteProcess* process,
35                                                  std::vector<simgrid::mc::ActorInformation>& target,
36                                                  simgrid::mc::RemotePtr<s_xbt_dynar_t> remote_dynar)
37 {
38   target.clear();
39
40   s_xbt_dynar_t dynar;
41   process->read_bytes(&dynar, sizeof(dynar), remote_dynar);
42
43   auto* data = static_cast<simgrid::kernel::actor::ActorImpl**>(::operator new(dynar.elmsize * dynar.used));
44   process->read_bytes(data, dynar.elmsize * dynar.used, simgrid::mc::RemotePtr<void>(dynar.data));
45
46   // Load each element of the vector from the MCed process:
47   for (unsigned int i = 0; i < dynar.used; ++i) {
48     simgrid::mc::ActorInformation info;
49
50     info.address  = simgrid::mc::RemotePtr<simgrid::kernel::actor::ActorImpl>(data[i]);
51     process->read_bytes(&info.copy, sizeof(info.copy), simgrid::mc::remote(data[i]));
52     target.push_back(std::move(info));
53   }
54   ::operator delete(data);
55 }
56 namespace simgrid::mc {
57
58 void RemoteProcess::refresh_simix()
59 {
60   if (this->cache_flags_ & RemoteProcess::cache_simix_processes)
61     return;
62
63   MC_process_refresh_simix_actor_dynar(this, this->smx_actors_infos, actors_addr_);
64
65   this->cache_flags_ |= RemoteProcess::cache_simix_processes;
66 }
67
68 } // namespace simgrid::mc