LLDB mainline
Unwind.h
Go to the documentation of this file.
1//===-- Unwind.h ------------------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_TARGET_UNWIND_H
10#define LLDB_TARGET_UNWIND_H
11
12#include <mutex>
13
14#include "lldb/lldb-private.h"
15
16namespace lldb_private {
17
18class Unwind {
19protected:
20 // Classes that inherit from Unwind can see and modify these
21 Unwind(Thread &thread) : m_thread(thread) {}
22
23public:
24 virtual ~Unwind() = default;
25
26 void Clear() {
27 std::lock_guard<std::recursive_mutex> guard(m_unwind_mutex);
28 DoClear();
29 }
30
31 uint32_t GetFrameCount() {
32 std::lock_guard<std::recursive_mutex> guard(m_unwind_mutex);
33 return DoGetFrameCount();
34 }
35
36 uint32_t GetFramesUpTo(uint32_t end_idx) {
37 lldb::addr_t cfa;
39 uint32_t idx;
40 bool behaves_like_zeroth_frame = (end_idx == 0);
41
42 for (idx = 0; idx < end_idx; idx++) {
43 if (!DoGetFrameInfoAtIndex(idx, cfa, pc, behaves_like_zeroth_frame)) {
44 break;
45 }
46 }
47 return idx;
48 }
49
50 bool GetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
51 lldb::addr_t &pc, bool &behaves_like_zeroth_frame) {
52 std::lock_guard<std::recursive_mutex> guard(m_unwind_mutex);
53 return DoGetFrameInfoAtIndex(frame_idx, cfa, pc, behaves_like_zeroth_frame);
54 }
55
57 std::lock_guard<std::recursive_mutex> guard(m_unwind_mutex);
59 }
60
61 Thread &GetThread() { return m_thread; }
62
63protected:
64 // Classes that inherit from Unwind can see and modify these
65 virtual void DoClear() = 0;
66
67 virtual uint32_t DoGetFrameCount() = 0;
68
69 virtual bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa,
71 bool &behaves_like_zeroth_frame) = 0;
72
75
77 std::recursive_mutex m_unwind_mutex;
78
79private:
80 Unwind(const Unwind &) = delete;
81 const Unwind &operator=(const Unwind &) = delete;
82};
83
84} // namespace lldb_private
85
86#endif // LLDB_TARGET_UNWIND_H
This base class provides an interface to stack frames.
Definition: StackFrame.h:42
Unwind(const Unwind &)=delete
std::recursive_mutex m_unwind_mutex
Definition: Unwind.h:77
virtual void DoClear()=0
const Unwind & operator=(const Unwind &)=delete
lldb::RegisterContextSP CreateRegisterContextForFrame(StackFrame *frame)
Definition: Unwind.h:56
virtual uint32_t DoGetFrameCount()=0
Thread & m_thread
Definition: Unwind.h:76
virtual ~Unwind()=default
Unwind(Thread &thread)
Definition: Unwind.h:21
Thread & GetThread()
Definition: Unwind.h:61
bool GetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa, lldb::addr_t &pc, bool &behaves_like_zeroth_frame)
Definition: Unwind.h:50
uint32_t GetFrameCount()
Definition: Unwind.h:31
virtual lldb::RegisterContextSP DoCreateRegisterContextForFrame(StackFrame *frame)=0
uint32_t GetFramesUpTo(uint32_t end_idx)
Definition: Unwind.h:36
virtual bool DoGetFrameInfoAtIndex(uint32_t frame_idx, lldb::addr_t &cfa, lldb::addr_t &pc, bool &behaves_like_zeroth_frame)=0
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
uint64_t addr_t
Definition: lldb-types.h:79
std::shared_ptr< lldb_private::RegisterContext > RegisterContextSP
Definition: lldb-forward.h:386