LLDB mainline
UnwindTable.h
Go to the documentation of this file.
1//===-- UnwindTable.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_SYMBOL_UNWINDTABLE_H
10#define LLDB_SYMBOL_UNWINDTABLE_H
11
12#include <atomic>
13#include <map>
14#include <mutex>
15#include <optional>
16
17#include "lldb/lldb-private.h"
18
19namespace lldb_private {
20
21// A class which holds all the FuncUnwinders objects for a given ObjectFile.
22// The UnwindTable is populated with FuncUnwinders objects lazily during the
23// debug session.
24
26public:
27 /// Create an Unwind table using the data in the given module.
28 explicit UnwindTable(Module &module);
29
31
33
36
38
41
44 const SymbolContext &sc);
45
47
48 // Normally when we create a new FuncUnwinders object we track it in this
49 // UnwindTable so it can be reused later. But for the target modules show-
50 // unwind we want to create brand new UnwindPlans for the function of
51 // interest - so ignore any existing FuncUnwinders for that function and
52 // don't add this new one to our UnwindTable. This FuncUnwinders object does
53 // have a reference to the UnwindTable but the lifetime of this uncached
54 // FuncUnwinders is expected to be short so in practice this will not be a
55 // problem.
58 const SymbolContext &sc);
59
61
62 /// Called after an ObjectFile/SymbolFile has been added to a Module to add
63 /// any new unwind sections that may now be available.
64 void ModuleWasUpdated();
65
66private:
67 void Dump(Stream &s);
68
69 void Initialize();
71
72 typedef std::map<lldb::addr_t, lldb::FuncUnwindersSP> collection;
73 typedef collection::iterator iterator;
74 typedef collection::const_iterator const_iterator;
75
78
79 /// This is true when we have looked at the ObjectFile and SymbolFile for all
80 /// sources of unwind information; false if we haven't done that yet, or one
81 /// of the files has been updated in the Module.
83 std::mutex m_mutex;
84
85 std::unique_ptr<CallFrameInfo> m_object_file_unwind_up;
86 std::unique_ptr<DWARFCallFrameInfo> m_eh_frame_up;
87 std::unique_ptr<DWARFCallFrameInfo> m_debug_frame_up;
88 std::unique_ptr<CompactUnwindInfo> m_compact_unwind_up;
89 std::unique_ptr<ArmUnwindInfo> m_arm_unwind_up;
90
91 UnwindTable(const UnwindTable &) = delete;
92 const UnwindTable &operator=(const UnwindTable &) = delete;
93};
94
95} // namespace lldb_private
96
97#endif // LLDB_SYMBOL_UNWINDTABLE_H
A section + offset based address class.
Definition Address.h:62
An architecture specification class.
Definition ArchSpec.h:32
A class that describes an executable image and its associated object and symbol files.
Definition Module.h:90
A stream class that can stream formatted output to a file.
Definition Stream.h:28
Defines a symbol context baton that can be handed other debug core functions.
Provides public interface for all SymbolFiles.
Definition SymbolFile.h:51
AddressRanges GetAddressRanges(const Address &addr, const SymbolContext &sc)
lldb_private::DWARFCallFrameInfo * GetEHFrameInfo()
std::unique_ptr< DWARFCallFrameInfo > m_debug_frame_up
Definition UnwindTable.h:87
std::unique_ptr< CallFrameInfo > m_object_file_unwind_up
Definition UnwindTable.h:85
ArmUnwindInfo * GetArmUnwindInfo()
std::unique_ptr< DWARFCallFrameInfo > m_eh_frame_up
Definition UnwindTable.h:86
UnwindTable(Module &module)
Create an Unwind table using the data in the given module.
std::unique_ptr< CompactUnwindInfo > m_compact_unwind_up
Definition UnwindTable.h:88
const UnwindTable & operator=(const UnwindTable &)=delete
collection::const_iterator const_iterator
Definition UnwindTable.h:74
lldb::FuncUnwindersSP GetFuncUnwindersContainingAddress(const Address &addr, const SymbolContext &sc)
void ModuleWasUpdated()
Called after an ObjectFile/SymbolFile has been added to a Module to add any new unwind sections that ...
std::atomic< bool > m_scanned_all_unwind_sources
This is true when we have looked at the ObjectFile and SymbolFile for all sources of unwind informati...
Definition UnwindTable.h:82
std::map< lldb::addr_t, lldb::FuncUnwindersSP > collection
Definition UnwindTable.h:72
UnwindTable(const UnwindTable &)=delete
lldb_private::DWARFCallFrameInfo * GetDebugFrameInfo()
lldb::FuncUnwindersSP GetUncachedFuncUnwindersContainingAddress(const Address &addr, const SymbolContext &sc)
lldb_private::CompactUnwindInfo * GetCompactUnwindInfo()
lldb_private::CallFrameInfo * GetObjectFileUnwindInfo()
collection::iterator iterator
Definition UnwindTable.h:73
std::unique_ptr< ArmUnwindInfo > m_arm_unwind_up
Definition UnwindTable.h:89
A class that represents a running process on the host machine.
std::shared_ptr< lldb_private::FuncUnwinders > FuncUnwindersSP