2011-05-23 17:18:52 +10:00
|
|
|
#include "backtrace.hpp"
|
|
|
|
|
|
|
|
#include "debug.hpp"
|
2012-06-13 15:47:39 +10:00
|
|
|
#include "types/casts.hpp"
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <execinfo.h>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
debug::backtrace::backtrace (void):
|
|
|
|
m_frames (DEFAULT_DEPTH) {
|
|
|
|
|
|
|
|
int final;
|
2012-06-13 15:47:39 +10:00
|
|
|
while ((final = ::backtrace (&m_frames[0], m_frames.size ())) == sign_cast<ssize_t> (m_frames.size ()))
|
2011-05-23 17:18:52 +10:00
|
|
|
m_frames.resize (m_frames.size () * 2);
|
|
|
|
|
2012-05-11 12:34:21 +10:00
|
|
|
CHECK_HARD (final > 0);
|
2011-05-23 17:18:52 +10:00
|
|
|
m_frames.resize ((unsigned)final);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ostream&
|
2012-05-10 16:53:29 +10:00
|
|
|
debug::operator <<(ostream &os, const debug::backtrace &rhs) {
|
2011-05-23 17:18:52 +10:00
|
|
|
const auto frames = rhs.frames ();
|
|
|
|
|
2012-06-13 15:47:39 +10:00
|
|
|
// We don't use the array form of unique_ptr as clang fails on ambigious constructors
|
|
|
|
typedef unique_ptr<char *, decltype(&std::free)> unique_str;
|
|
|
|
unique_str names (backtrace_symbols (frames.data (), frames.size ()), ::free);
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < frames.size (); ++i)
|
2012-06-13 15:47:39 +10:00
|
|
|
os << frames[i] << "\t" << names.get()[i] << "\n";
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|