LLDB mainline
AppleObjCTrampolineHandler.h
Go to the documentation of this file.
1//===-- AppleObjCTrampolineHandler.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_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCTRAMPOLINEHANDLER_H
10#define LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCTRAMPOLINEHANDLER_H
11
12#include <map>
13#include <mutex>
14#include <vector>
15
17#include "lldb/lldb-public.h"
18
19namespace lldb_private {
20
22public:
24 const lldb::ModuleSP &objc_module_sp);
25
27
29 bool stop_others);
30
32
33 bool AddrIsMsgForward(lldb::addr_t addr) const {
34 return (addr == m_msg_forward_addr || addr == m_msg_forward_stret_addr);
35 }
36
38 public:
40
41 const char *name = nullptr;
42 bool stret_return = false;
43 bool is_super = false;
44 bool is_super2 = false;
46 };
47
49 ValueList &dispatch_values);
51 void ForEachDispatchFunction(std::function<void(lldb::addr_t,
52 const DispatchFunction &)>);
53
54private:
55 /// These hold the code for the function that finds the implementation of
56 /// an ObjC message send given the class & selector and the kind of dispatch.
57 /// There are two variants depending on whether the platform uses a separate
58 /// _stret passing convention (e.g. Intel) or not (e.g. ARM). The difference
59 /// is only at the very end of the function, so the code is broken into the
60 /// common prefix and the suffix, which get composed appropriately before
61 /// the function gets compiled.
62 /// \{
67 /// \}
68
70 public:
71 // These come from objc-gdb.h.
73 eOBJC_TRAMPOLINE_MESSAGE = (1 << 0), // trampoline acts like objc_msgSend
74 eOBJC_TRAMPOLINE_STRET = (1 << 1), // trampoline is struct-returning
75 eOBJC_TRAMPOLINE_VTABLE = (1 << 2) // trampoline is vtable dispatcher
76 };
77
78 private:
80 VTableDescriptor(uint32_t in_flags, lldb::addr_t in_code_start)
81 : flags(in_flags), code_start(in_code_start) {}
82
83 uint32_t flags;
85 };
86
88 public:
89 VTableRegion() = default;
90
91 VTableRegion(AppleObjCVTables *owner, lldb::addr_t header_addr);
92
93 void SetUpRegion();
94
96
98
100
101 uint32_t GetFlagsForVTableAtAddress(lldb::addr_t address) { return 0; }
102
103 bool IsValid() { return m_valid; }
104
105 bool AddressInRegion(lldb::addr_t addr, uint32_t &flags);
106
107 void Dump(Stream &s);
108
109 bool m_valid = false;
114 std::vector<VTableDescriptor> m_descriptors;
116 };
117
118 public:
119 AppleObjCVTables(const lldb::ProcessSP &process_sp,
120 const lldb::ModuleSP &objc_module_sp);
121
123
125
126 static bool RefreshTrampolines(void *baton,
128 lldb::user_id_t break_id,
129 lldb::user_id_t break_loc_id);
130 bool ReadRegions();
131
132 bool ReadRegions(lldb::addr_t region_addr);
133
134 bool IsAddressInVTables(lldb::addr_t addr, uint32_t &flags);
135
137
138 private:
140 typedef std::vector<VTableRegion> region_collection;
145 };
146
148 static const char *g_opt_dispatch_names[];
149
150 using MsgsendMap = std::map<lldb::addr_t, int>; // This table maps an dispatch
151 // fn address to the index in
152 // g_dispatch_functions
158 std::unique_ptr<UtilityFunction> m_impl_code;
164 std::unique_ptr<AppleObjCVTables> m_vtables_up;
165};
166
167} // namespace lldb_private
168
169#endif // LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCTRAMPOLINEHANDLER_H
static bool RefreshTrampolines(void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id)
static const char * g_lookup_implementation_function_name
These hold the code for the function that finds the implementation of an ObjC message send given the ...
static const DispatchFunction g_dispatch_functions[]
lldb::addr_t SetupDispatchFunction(Thread &thread, ValueList &dispatch_values)
std::unique_ptr< AppleObjCVTables > m_vtables_up
std::unique_ptr< UtilityFunction > m_impl_code
void ForEachDispatchFunction(std::function< void(lldb::addr_t, const DispatchFunction &)>)
lldb::ThreadPlanSP GetStepThroughDispatchPlan(Thread &thread, bool stop_others)
const DispatchFunction * FindDispatchFunction(lldb::addr_t addr)
Encapsulates a function that can be called.
General Outline: When we hit a breakpoint we need to package up whatever information is needed to eva...
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
#define LLDB_INVALID_ADDRESS
Definition: lldb-defines.h:82
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
std::shared_ptr< lldb_private::ThreadPlan > ThreadPlanSP
Definition: lldb-forward.h:441
int32_t break_id_t
Definition: lldb-types.h:84
std::shared_ptr< lldb_private::Process > ProcessSP
Definition: lldb-forward.h:381
std::weak_ptr< lldb_private::Process > ProcessWP
Definition: lldb-forward.h:384
uint64_t user_id_t
Definition: lldb-types.h:80
uint64_t addr_t
Definition: lldb-types.h:79
std::shared_ptr< lldb_private::Module > ModuleSP
Definition: lldb-forward.h:365