Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use std::fill instead of memset.
[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         ss << "  ->  " << frame_count++ << "# " << frame << "\n";
54         if (frame_name == "main")
55           break;
56       } else {
57         if (frame_name == "simgrid::xbt::Backtrace::Backtrace()")
58           print = true;
59       }
60     }
61
62     return ss.str();
63   }
64 #else
65
66 public:
67   std::string resolve() const { return ""; } // fallback value
68 #endif
69 };
70
71 Backtrace::Backtrace() : impl_(std::make_shared<BacktraceImpl>()) {}
72
73 std::string Backtrace::resolve() const
74 {
75   return impl_->resolve();
76 }
77
78 void Backtrace::display() const
79 {
80   std::string backtrace = resolve();
81   std::fprintf(stderr, "Backtrace (displayed in actor %s):\n%s\n", xbt_procname(),
82                backtrace.empty() ? "(backtrace not set -- did you install Boost.Stacktrace?)" : backtrace.c_str());
83 }
84
85 } // namespace simgrid::xbt