diff options
author | emaste <emaste@FreeBSD.org> | 2013-08-23 18:06:42 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2013-08-23 18:06:42 +0000 |
commit | 424d4dadd208e2a1e9a43c3d55f47f03ba0c4509 (patch) | |
tree | 05d762b98a499804ce690e6ce04033f1ddf4dee6 /contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp | |
parent | cde487f27a84e02a560384f75178fddca68740f6 (diff) | |
parent | dcd15f81789e389c1cb27d264fcdddfd0a6002bd (diff) | |
download | FreeBSD-src-424d4dadd208e2a1e9a43c3d55f47f03ba0c4509.zip FreeBSD-src-424d4dadd208e2a1e9a43c3d55f47f03ba0c4509.tar.gz |
Merge lldb r188801 to contrib/llvm/tools/lldb/
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp | 158 |
1 files changed, 158 insertions, 0 deletions
diff --git a/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp b/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp new file mode 100644 index 0000000..f64d7e3 --- /dev/null +++ b/contrib/llvm/tools/lldb/source/Utility/SharingPtr.cpp @@ -0,0 +1,158 @@ +//===---------------------SharingPtr.cpp ------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "lldb/Utility/SharingPtr.h" + +#if defined (ENABLE_SP_LOGGING) + +// If ENABLE_SP_LOGGING is defined, then log all shared pointer assignements +// and allow them to be queried using a pointer by a call to: +#include <execinfo.h> +#include <map> +#include <assert.h> +#include "lldb/Host/Mutex.h" + +#include <vector> + +class Backtrace +{ +public: + Backtrace (); + + ~Backtrace (); + + void + GetFrames (); + + void + Dump () const; + +private: + void *m_sp_this; + std::vector<void *> m_frames; +}; + + +Backtrace::Backtrace () : m_frames() +{ +} + +Backtrace::~Backtrace () +{ +} + +void +Backtrace::GetFrames () +{ + void *frames[1024]; + const int count = ::backtrace (frames, sizeof(frames)/sizeof(void*)); + if (count > 2) + m_frames.assign (frames + 2, frames + (count - 2)); +} + +void +Backtrace::Dump () const +{ + if (!m_frames.empty()) + ::backtrace_symbols_fd (m_frames.data(), m_frames.size(), STDOUT_FILENO); + write (STDOUT_FILENO, "\n\n", 2); +} + +extern "C" void track_sp (void *sp_this, void *ptr, long use_count) +{ + typedef std::pair<void *, Backtrace> PtrBacktracePair; + typedef std::map<void *, PtrBacktracePair> PtrToBacktraceMap; + static lldb_private::Mutex g_mutex(lldb_private::Mutex::eMutexTypeNormal); + lldb_private::Mutex::Locker locker (g_mutex); + static PtrToBacktraceMap g_map; + + if (sp_this) + { + printf ("sp(%p) -> %p %lu\n", sp_this, ptr, use_count); + + if (ptr) + { + Backtrace bt; + bt.GetFrames(); + g_map[sp_this] = std::make_pair(ptr, bt); + } + else + { + g_map.erase (sp_this); + } + } + else + { + if (ptr) + printf ("Searching for shared pointers that are tracking %p: ", ptr); + else + printf ("Dump all live shared pointres: "); + + uint32_t matches = 0; + PtrToBacktraceMap::iterator pos, end = g_map.end(); + for (pos = g_map.begin(); pos != end; ++pos) + { + if (ptr == NULL || pos->second.first == ptr) + { + ++matches; + printf ("\nsp(%p): %p\n", pos->first, pos->second.first); + pos->second.second.Dump(); + } + } + if (matches == 0) + { + printf ("none.\n"); + } + } +} +// Put dump_sp_refs in the lldb namespace to it gets through our exports lists filter in the LLDB.framework or lldb.so +namespace lldb { + + void dump_sp_refs (void *ptr) + { + // Use a specially crafted call to "track_sp" which will + // dump info on all live shared pointers that reference "ptr" + track_sp (NULL, ptr, 0); + } + +} + +#endif + +namespace lldb_private { + +namespace imp +{ + + + shared_count::~shared_count() + { + } + + void + shared_count::add_shared() + { + increment(shared_owners_); + } + + void + shared_count::release_shared() + { + if (decrement(shared_owners_) == -1) + { + on_zero_shared(); + delete this; + } + } + +} // imp + + +} // namespace lldb + |