mlpack  3.4.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
backtrace.hpp
Go to the documentation of this file.
1 
12 #ifndef __MLPACK_CORE_UTIL_BACKTRACE_HPP
13 #define __MLPACK_CORE_UTIL_BACKTRACE_HPP
14 
15 #include <string>
16 #include <vector>
17 
18 namespace mlpack {
19 
46 class Backtrace
47 {
48  public:
49 #ifdef HAS_BFD_DL
50 
56  Backtrace(int maxDepth = 32);
57 #else
58 
63  Backtrace();
64 #endif
67 
68  private:
74  static void GetAddress(int maxDepth);
75 
81  static void DecodeAddress(long address);
82 
84  static void DemangleFunction();
85 
87  struct Frames
88  {
89  void *address;
90  const char* function;
91  const char* file;
92  unsigned line;
93  } static frame;
94 
96  static std::vector<Frames> stack;
97 };
98 
99 }; // namespace mlpack
100 
101 #endif
std::string ToString()
Returns string of backtrace.
file(APPEND"${CMAKE_BINARY_DIR}/src/mlpack/bindings/go/src/mlpack.org/v1/mlpack/models.go""*/\n""import \"C\"\n\n""import (\n"" \"runtime\"\n"" \"unsafe\"\n"")\n\n") append_model("$
Definition: CMakeLists.txt:15
Backtrace()
Constructor initialize fields and call GetAddress to retrieve addresses for each frame of backtrace...
Provides a backtrace.
Definition: backtrace.hpp:46
src mlpack core util version hpp VERSION_HPP_CONTENTS string(REGEX REPLACE".*#define MLPACK_VERSION_MAJOR ([0-9]+).*""\\1"MLPACK_VERSION_MAJOR"${VERSION_HPP_CONTENTS}") string(REGEX REPLACE".* MLPACK_VERSION_MINOR "$
Definition: CMakeLists.txt:79