LLDB mainline
UnwindAssemblyInstEmulation.h
Go to the documentation of this file.
1//===-- UnwindAssemblyInstEmulation.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_SOURCE_PLUGINS_UNWINDASSEMBLY_INSTEMULATION_UNWINDASSEMBLYINSTEMULATION_H
10#define LLDB_SOURCE_PLUGINS_UNWINDASSEMBLY_INSTEMULATION_UNWINDASSEMBLYINSTEMULATION_H
11
16#include "lldb/lldb-private.h"
17
19public:
20 ~UnwindAssemblyInstEmulation() override = default;
21
24 lldb_private::UnwindPlan &unwind_plan) override;
25
26 bool
28 uint8_t *opcode_data, size_t opcode_size,
29 lldb_private::UnwindPlan &unwind_plan);
30
31 bool
34 lldb_private::UnwindPlan &unwind_plan) override;
35
38 lldb_private::UnwindPlan &unwind_plan) override;
39
40 // thread may be NULL in which case we only use the Target (e.g. if this is
41 // called pre-process-launch).
42 bool
44 const lldb_private::ExecutionContext &exe_ctx,
45 lldb_private::Address &first_non_prologue_insn) override;
46
49
50 // PluginInterface protocol
51 static void Initialize();
52
53 static void Terminate();
54
55 static llvm::StringRef GetPluginNameStatic() { return "inst-emulation"; }
56
57 static llvm::StringRef GetPluginDescriptionStatic();
58
59 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }
60
61private:
62 // Call CreateInstance to get an instance of this class
65 : UnwindAssembly(arch), m_inst_emulator_up(inst_emulator),
66 m_range_ptr(nullptr), m_unwind_plan_ptr(nullptr), m_curr_row(),
71 m_inst_emulator_up->SetBaton(this);
74 }
75 }
76
77 static size_t
78 ReadMemory(lldb_private::EmulateInstruction *instruction, void *baton,
80 lldb::addr_t addr, void *dst, size_t length);
81
82 static size_t
83 WriteMemory(lldb_private::EmulateInstruction *instruction, void *baton,
85 lldb::addr_t addr, const void *dst, size_t length);
86
87 static bool ReadRegister(lldb_private::EmulateInstruction *instruction,
88 void *baton,
89 const lldb_private::RegisterInfo *reg_info,
91
92 static bool
93 WriteRegister(lldb_private::EmulateInstruction *instruction, void *baton,
95 const lldb_private::RegisterInfo *reg_info,
96 const lldb_private::RegisterValue &reg_value);
97
98 // size_t
99 // ReadMemory (lldb_private::EmulateInstruction *instruction,
100 // const lldb_private::EmulateInstruction::Context &context,
101 // lldb::addr_t addr,
102 // void *dst,
103 // size_t length);
104
107 lldb::addr_t addr, const void *dst, size_t length);
108
110 const lldb_private::RegisterInfo *reg_info,
111 lldb_private::RegisterValue &reg_value);
112
115 const lldb_private::RegisterInfo *reg_info,
116 const lldb_private::RegisterValue &reg_value);
117
118 static uint64_t
120
121 void SetRegisterValue(const lldb_private::RegisterInfo &reg_info,
122 const lldb_private::RegisterValue &reg_value);
123
124 bool GetRegisterValue(const lldb_private::RegisterInfo &reg_info,
125 lldb_private::RegisterValue &reg_value);
126
127 std::unique_ptr<lldb_private::EmulateInstruction> m_inst_emulator_up;
131 typedef std::map<uint64_t, uint64_t> PushedRegisterToAddrMap;
132 uint64_t m_initial_sp;
135 typedef std::map<uint64_t, lldb_private::RegisterValue> RegisterValueMap;
138
139 // While processing the instruction stream, we need to communicate some state
140 // change
141 // information up to the higher level loop that makes decisions about how to
142 // push
143 // the unwind instructions for the UnwindPlan we're constructing.
144
145 // The instruction we're processing updated the UnwindPlan::Row contents
147 // The instruction is branching forward with the given offset. 0 value means
148 // no branching.
150};
151
152#endif // LLDB_SOURCE_PLUGINS_UNWINDASSEMBLY_INSTEMULATION_UNWINDASSEMBLYINSTEMULATION_H
bool GetRegisterValue(const lldb_private::RegisterInfo &reg_info, lldb_private::RegisterValue &reg_value)
static llvm::StringRef GetPluginNameStatic()
bool GetFastUnwindPlan(lldb_private::AddressRange &func, lldb_private::Thread &thread, lldb_private::UnwindPlan &unwind_plan) override
lldb_private::UnwindPlan::RowSP m_curr_row
std::map< uint64_t, uint64_t > PushedRegisterToAddrMap
std::unique_ptr< lldb_private::EmulateInstruction > m_inst_emulator_up
lldb_private::UnwindPlan * m_unwind_plan_ptr
lldb_private::RegisterInfo m_cfa_reg_info
static size_t WriteMemory(lldb_private::EmulateInstruction *instruction, void *baton, const lldb_private::EmulateInstruction::Context &context, lldb::addr_t addr, const void *dst, size_t length)
std::map< uint64_t, lldb_private::RegisterValue > RegisterValueMap
~UnwindAssemblyInstEmulation() override=default
static bool WriteRegister(lldb_private::EmulateInstruction *instruction, void *baton, const lldb_private::EmulateInstruction::Context &context, const lldb_private::RegisterInfo *reg_info, const lldb_private::RegisterValue &reg_value)
static llvm::StringRef GetPluginDescriptionStatic()
bool AugmentUnwindPlanFromCallSite(lldb_private::AddressRange &func, lldb_private::Thread &thread, lldb_private::UnwindPlan &unwind_plan) override
static size_t ReadMemory(lldb_private::EmulateInstruction *instruction, void *baton, const lldb_private::EmulateInstruction::Context &context, lldb::addr_t addr, void *dst, size_t length)
lldb_private::AddressRange * m_range_ptr
llvm::StringRef GetPluginName() override
static bool ReadRegister(lldb_private::EmulateInstruction *instruction, void *baton, const lldb_private::RegisterInfo *reg_info, lldb_private::RegisterValue &reg_value)
static uint64_t MakeRegisterKindValuePair(const lldb_private::RegisterInfo &reg_info)
static lldb_private::UnwindAssembly * CreateInstance(const lldb_private::ArchSpec &arch)
bool GetNonCallSiteUnwindPlanFromAssembly(lldb_private::AddressRange &func, lldb_private::Thread &thread, lldb_private::UnwindPlan &unwind_plan) override
void SetRegisterValue(const lldb_private::RegisterInfo &reg_info, const lldb_private::RegisterValue &reg_value)
UnwindAssemblyInstEmulation(const lldb_private::ArchSpec &arch, lldb_private::EmulateInstruction *inst_emulator)
bool FirstNonPrologueInsn(lldb_private::AddressRange &func, const lldb_private::ExecutionContext &exe_ctx, lldb_private::Address &first_non_prologue_insn) override
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/Core/EmulateInstruction.h" A class that allows emulation of CPU opcodes.
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
UnwindAssembly(const ArchSpec &arch)
std::shared_ptr< Row > RowSP
Definition: UnwindPlan.h:395
uint64_t addr_t
Definition: lldb-types.h:79
Every register is described in detail including its name, alternate name (optional),...