Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'udpor-phase6' into 'master'
[simgrid.git] / src / mc / mc_global.cpp
1 /* Copyright (c) 2008-2023. 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 "src/kernel/actor/ActorImpl.hpp"
7 #include "src/mc/mc.h"
8
9 #if SIMGRID_HAVE_MC
10 #include "src/mc/api/RemoteApp.hpp"
11 #include "src/mc/explo/Exploration.hpp"
12 #include "src/mc/inspect/mc_unw.hpp"
13 #include "src/mc/mc_config.hpp"
14 #include "src/mc/mc_private.hpp"
15 #include "src/mc/remote/AppSide.hpp"
16 #include "src/mc/sosp/Snapshot.hpp"
17
18 #include <array>
19 #include <boost/core/demangle.hpp>
20 #include <cerrno>
21 #include <cstring>
22 #include <libunwind.h>
23 #endif
24
25 #include <sys/time.h>
26 #include <sys/wait.h>
27 #include <unistd.h>
28
29 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_global, mc, "Logging specific to MC (global)");
30
31 namespace simgrid::mc {
32
33 std::vector<double> processes_time;
34
35 }
36
37 #if SIMGRID_HAVE_MC
38
39 namespace simgrid::mc {
40
41 /*******************************  Core of MC *******************************/
42 /**************************************************************************/
43 void dumpStack(FILE* file, unw_cursor_t* cursor)
44 {
45   int nframe = 0;
46   std::array<char, 100> buffer;
47
48   unw_word_t off;
49   do {
50     const char* name = not unw_get_proc_name(cursor, buffer.data(), buffer.size(), &off) ? buffer.data() : "?";
51     // Unmangle C++ names:
52     std::string realname = boost::core::demangle(name);
53
54 #if defined(__x86_64__)
55     unw_word_t rip = 0;
56     unw_word_t rsp = 0;
57     unw_get_reg(cursor, UNW_X86_64_RIP, &rip);
58     unw_get_reg(cursor, UNW_X86_64_RSP, &rsp);
59     fprintf(file, "  %i: %s (RIP=0x%" PRIx64 " RSP=0x%" PRIx64 ")\n", nframe, realname.c_str(), (std::uint64_t)rip,
60             (std::uint64_t)rsp);
61 #else
62     fprintf(file, "  %i: %s\n", nframe, realname.c_str());
63 #endif
64
65     ++nframe;
66   } while (unw_step(cursor));
67 }
68
69 } // namespace simgrid::mc
70 #endif
71
72 double MC_process_clock_get(const simgrid::kernel::actor::ActorImpl* process)
73 {
74   if (process) {
75     auto pid = static_cast<size_t>(process->get_pid());
76     if (pid < simgrid::mc::processes_time.size())
77       return simgrid::mc::processes_time[pid];
78   }
79   return 0.0;
80 }
81
82 void MC_process_clock_add(const simgrid::kernel::actor::ActorImpl* process, double amount)
83 {
84   simgrid::mc::processes_time.at(process->get_pid()) += amount;
85 }