LLDB mainline
UnwindAssembly.h
Go to the documentation of this file.
1//===-- UnwindAssembly.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_UNWINDASSEMBLY_H
10#define LLDB_TARGET_UNWINDASSEMBLY_H
11
14#include "lldb/lldb-private.h"
15
16namespace lldb_private {
17
18class UnwindAssembly : public std::enable_shared_from_this<UnwindAssembly>,
19 public PluginInterface {
20public:
21 static lldb::UnwindAssemblySP FindPlugin(const ArchSpec &arch);
22
23 virtual bool
25 UnwindPlan &unwind_plan) = 0;
26
28 UnwindPlan &unwind_plan) = 0;
29
30 virtual bool GetFastUnwindPlan(AddressRange &func, Thread &thread,
31 UnwindPlan &unwind_plan) = 0;
32
33 // thread may be NULL in which case we only use the Target (e.g. if this is
34 // called pre-process-launch).
35 virtual bool
37 const lldb_private::ExecutionContext &exe_ctx,
38 Address &first_non_prologue_insn) = 0;
39
40protected:
41 UnwindAssembly(const ArchSpec &arch);
43};
44
45} // namespace lldb_private
46
47#endif // LLDB_TARGET_UNWINDASSEMBLY_H
A section + offset based address range class.
Definition: AddressRange.h:25
A section + offset based address class.
Definition: Address.h:62
An architecture specification class.
Definition: ArchSpec.h:31
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
virtual bool FirstNonPrologueInsn(AddressRange &func, const lldb_private::ExecutionContext &exe_ctx, Address &first_non_prologue_insn)=0
virtual bool GetNonCallSiteUnwindPlanFromAssembly(AddressRange &func, Thread &thread, UnwindPlan &unwind_plan)=0
virtual bool AugmentUnwindPlanFromCallSite(AddressRange &func, Thread &thread, UnwindPlan &unwind_plan)=0
static lldb::UnwindAssemblySP FindPlugin(const ArchSpec &arch)
virtual bool GetFastUnwindPlan(AddressRange &func, Thread &thread, UnwindPlan &unwind_plan)=0
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::UnwindAssembly > UnwindAssemblySP
Definition: lldb-forward.h:470