Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Display the stack of each actor during a MC replay (unless --log=no_log for the tests)
[simgrid.git] / src / xbt / backtrace.cpp
1 /* Copyright (c) 2005-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 "src/internal_config.h"
7
8 #include <xbt/backtrace.hpp>
9 #include <xbt/string.hpp>
10 #include <xbt/sysdep.h>
11 #include <xbt/virtu.h>
12
13 #include <cstdio>
14 #include <cstdlib>
15 #include <sstream>
16
17 #if HAVE_BOOST_STACKTRACE_BACKTRACE
18 #define BOOST_STACKTRACE_USE_BACKTRACE
19 #include <boost/stacktrace.hpp>
20 #include <boost/stacktrace/detail/frame_decl.hpp>
21 #elif HAVE_BOOST_STACKTRACE_ADDR2LINE
22 #define BOOST_STACKTRACE_USE_ADDR2LINE
23 #include <boost/stacktrace.hpp>
24 #include <boost/stacktrace/detail/frame_decl.hpp>
25 #endif
26
27 /** @brief show the backtrace of the current point (lovely while debugging) */
28 void xbt_backtrace_display_current()
29 {
30   simgrid::xbt::Backtrace().display();
31 }
32
33 namespace simgrid::xbt {
34
35 class BacktraceImpl {
36 #if HAVE_BOOST_STACKTRACE_BACKTRACE || HAVE_BOOST_STACKTRACE_ADDR2LINE
37   const boost::stacktrace::stacktrace st;
38
39 public:
40   std::string resolve() const
41   {
42     std::stringstream ss;
43
44     int frame_count = 0;
45     bool print      = false;
46
47     for (boost::stacktrace::frame const& frame : st) {
48       const std::string frame_name = frame.name();
49       if (print) {
50         if (frame_name.rfind("simgrid::xbt::MainFunction", 0) == 0 ||
51             frame_name.rfind("simgrid::kernel::context::Context::operator()()", 0) == 0)
52           break;
53         if (xbt_log_no_loc) { // Don't display file source and line if so
54           if (frame.name().empty())
55             ss << "  ->  #" << frame_count++ << " (debug info not found and log:no_loc activated)\n";
56           else
57             ss << "  ->  #" << frame_count++ << " " << frame.name() << "\n";
58         } else
59           ss << "  ->  #" << frame_count++ << " " << frame << "\n";
60         // If we are displaying the user side of a simcall, remove the crude details of context switching
61         if (frame_name.find("simgrid::kernel::actor::simcall_answered") != std::string::npos ||
62             frame_name.find("simgrid::kernel::actor::simcall_blocking") != std::string::npos ||
63             frame_name.find("simcall_run_answered") != std::string::npos ||
64             frame_name.find("simcall_run_blocking") != std::string::npos) {
65           frame_count = 0;
66           ss.str(std::string()); // This is how you clear a stringstream in C++. clear() is something else :'(
67         }
68         if (frame_name == "main")
69           break;
70       } else {
71         if (frame_name == "simgrid::xbt::Backtrace::Backtrace()")
72           print = true;
73       }
74     }
75
76     return ss.str();
77   }
78 #else
79
80 public:
81   std::string resolve() const { return ""; } // fallback value
82 #endif
83 };
84
85 Backtrace::Backtrace() : impl_(std::make_shared<BacktraceImpl>()) {}
86
87 std::string Backtrace::resolve() const
88 {
89   return impl_->resolve();
90 }
91
92 void Backtrace::display() const
93 {
94   std::string backtrace = resolve();
95   std::fprintf(stderr, "Backtrace (displayed in actor %s%s):\n%s\n", xbt_procname(),
96                (xbt_log_no_loc ? " -- short trace because of --log=no_loc" : ""),
97                backtrace.empty() ? "(backtrace not set -- did you install Boost.Stacktrace?)" : backtrace.c_str());
98 }
99
100 } // namespace simgrid::xbt