Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'add_remaining_comm_sync_bindings' into 'master'
[simgrid.git] / src / mc / mc_global.cpp
1 /* Copyright (c) 2008-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 "mc/mc.h"
7 #include "src/kernel/actor/ActorImpl.hpp"
8
9 #if SIMGRID_HAVE_MC
10 #include "src/mc/Session.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/mc_safety.hpp"
16 #include "src/mc/remote/AppSide.hpp"
17 #include "src/mc/sosp/Snapshot.hpp"
18
19 #include <array>
20 #include <boost/core/demangle.hpp>
21 #include <cerrno>
22 #include <cstring>
23 #include <libunwind.h>
24 #endif
25
26 #ifndef _WIN32
27 #include <sys/time.h>
28 #include <sys/wait.h>
29 #include <unistd.h>
30 #endif
31
32 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_global, mc, "Logging specific to MC (global)");
33
34 namespace simgrid {
35 namespace mc {
36
37 std::vector<double> processes_time;
38
39 }
40 }
41
42 #if SIMGRID_HAVE_MC
43
44 /* Dot output */
45 FILE *dot_output = nullptr;
46
47 void MC_init_dot_output()
48 {
49   dot_output = fopen(_sg_mc_dot_output_file.get().c_str(), "w");
50   xbt_assert(dot_output != nullptr, "Error open dot output file: %s", strerror(errno));
51
52   fprintf(dot_output,
53           "digraph graphname{\n fixedsize=true; rankdir=TB; ranksep=.25; edge [fontsize=12]; node [fontsize=10, shape=circle,width=.5 ]; graph [resolution=20, fontsize=10];\n");
54 }
55
56
57 namespace simgrid {
58 namespace mc {
59
60 /* Liveness */
61 xbt_automaton_t property_automaton = nullptr;
62
63 /*******************************  Core of MC *******************************/
64 /**************************************************************************/
65 void dumpStack(FILE* file, unw_cursor_t* cursor)
66 {
67   int nframe = 0;
68   std::array<char, 100> buffer;
69
70   unw_word_t off;
71   do {
72     const char* name = not unw_get_proc_name(cursor, buffer.data(), buffer.size(), &off) ? buffer.data() : "?";
73     // Unmangle C++ names:
74     std::string realname = boost::core::demangle(name);
75
76 #if defined(__x86_64__)
77     unw_word_t rip = 0;
78     unw_word_t rsp = 0;
79     unw_get_reg(cursor, UNW_X86_64_RIP, &rip);
80     unw_get_reg(cursor, UNW_X86_64_RSP, &rsp);
81     fprintf(file, "  %i: %s (RIP=0x%" PRIx64 " RSP=0x%" PRIx64 ")\n", nframe, realname.c_str(), (std::uint64_t)rip,
82             (std::uint64_t)rsp);
83 #else
84     fprintf(file, "  %i: %s\n", nframe, realname.c_str());
85 #endif
86
87     ++nframe;
88   } while (unw_step(cursor));
89 }
90
91 }
92 }
93 #endif
94
95 double MC_process_clock_get(const simgrid::kernel::actor::ActorImpl* process)
96 {
97   if (simgrid::mc::processes_time.empty())
98     return 0;
99   if (process != nullptr)
100     return simgrid::mc::processes_time[process->get_pid()];
101   return -1;
102 }
103
104 void MC_process_clock_add(const simgrid::kernel::actor::ActorImpl* process, double amount)
105 {
106   simgrid::mc::processes_time[process->get_pid()] += amount;
107 }