LLDB mainline
LanguageRuntime.cpp
Go to the documentation of this file.
1//===-- LanguageRuntime.cpp -----------------------------------------------===//
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
14#include "lldb/Target/Target.h"
15
16using namespace lldb;
17using namespace lldb_private;
18
19char LanguageRuntime::ID = 0;
20
22 lldb::LanguageType language,
23 bool update_module_list)
24 : SearchFilter(target_sp, FilterTy::Exception), m_language(language),
25 m_language_runtime(nullptr), m_filter_sp() {
26 if (update_module_list)
28}
29
32 if (m_filter_sp)
33 return m_filter_sp->ModulePasses(module_sp);
34 return false;
35}
36
39 if (m_filter_sp)
40 return m_filter_sp->ModulePasses(spec);
41 return false;
42}
43
46 if (m_filter_sp)
47 m_filter_sp->Search(searcher);
48}
49
52 if (m_filter_sp)
53 m_filter_sp->GetDescription(s);
54}
55
57 ProcessSP process_sp(m_target_sp->GetProcessSP());
58 if (process_sp) {
59 bool refreash_filter = !m_filter_sp;
60 if (m_language_runtime == nullptr) {
61 m_language_runtime = process_sp->GetLanguageRuntime(m_language);
62 refreash_filter = true;
63 } else {
64 LanguageRuntime *language_runtime =
65 process_sp->GetLanguageRuntime(m_language);
66 if (m_language_runtime != language_runtime) {
67 m_language_runtime = language_runtime;
68 refreash_filter = true;
69 }
70 }
71
72 if (refreash_filter && m_language_runtime) {
74 }
75 } else {
76 m_filter_sp.reset();
77 m_language_runtime = nullptr;
78 }
79}
80
82 return SearchFilterSP(
84}
85
87 Target &target, const StructuredData::Dictionary &data_dict,
88 Status &error) {
89 SearchFilter *result = nullptr;
90 return result;
91}
92
95
96 return result_sp;
97}
98
99// The Target is the one that knows how to create breakpoints, so this function
100// is meant to be used either by the target or internally in
101// Set/ClearExceptionBreakpoints.
103public:
105 bool throw_bp)
106 : BreakpointResolver(nullptr, BreakpointResolver::ExceptionResolver),
107 m_language(language), m_catch_bp(catch_bp), m_throw_bp(throw_bp) {}
108
109 ~ExceptionBreakpointResolver() override = default;
110
112 SymbolContext &context,
113 Address *addr) override {
114
115 if (SetActualResolver())
116 return m_actual_resolver_sp->SearchCallback(filter, context, addr);
117 else
118 return eCallbackReturnStop;
119 }
120
122 if (SetActualResolver())
123 return m_actual_resolver_sp->GetDepth();
124 else
126 }
127
128 void GetDescription(Stream *s) override {
129 Language *language_plugin = Language::FindPlugin(m_language);
130 if (language_plugin)
131 language_plugin->GetExceptionResolverDescription(m_catch_bp, m_throw_bp,
132 *s);
133 else
135 *s);
136
137 SetActualResolver();
138 if (m_actual_resolver_sp) {
139 s->Printf(" using: ");
140 m_actual_resolver_sp->GetDescription(s);
141 } else
142 s->Printf(" the correct runtime exception handler will be determined "
143 "when you run");
144 }
145
146 void Dump(Stream *s) const override {}
147
148 /// Methods for support type inquiry through isa, cast, and dyn_cast:
149 static inline bool classof(const BreakpointResolverName *) { return true; }
150 static inline bool classof(const BreakpointResolver *V) {
152 }
153
154protected:
157 new ExceptionBreakpointResolver(m_language, m_catch_bp, m_throw_bp));
158 ret_sp->SetBreakpoint(breakpoint);
159 return ret_sp;
160 }
161
163 BreakpointSP breakpoint_sp = GetBreakpoint();
164 if (breakpoint_sp) {
165 ProcessSP process_sp = breakpoint_sp->GetTarget().GetProcessSP();
166 if (process_sp) {
167 bool refreash_resolver = !m_actual_resolver_sp;
168 if (m_language_runtime == nullptr) {
169 m_language_runtime = process_sp->GetLanguageRuntime(m_language);
170 refreash_resolver = true;
171 } else {
172 LanguageRuntime *language_runtime =
173 process_sp->GetLanguageRuntime(m_language);
174 if (m_language_runtime != language_runtime) {
175 m_language_runtime = language_runtime;
176 refreash_resolver = true;
177 }
178 }
179
180 if (refreash_resolver && m_language_runtime) {
181 m_actual_resolver_sp = m_language_runtime->CreateExceptionResolver(
182 breakpoint_sp, m_catch_bp, m_throw_bp);
183 }
184 } else {
185 m_actual_resolver_sp.reset();
186 m_language_runtime = nullptr;
187 }
188 } else {
189 m_actual_resolver_sp.reset();
190 m_language_runtime = nullptr;
191 }
192 return (bool)m_actual_resolver_sp;
193 }
194
197 LanguageRuntime *m_language_runtime = nullptr;
200};
201
203 lldb::LanguageType language) {
204 LanguageRuntimeCreateInstance create_callback;
205 for (uint32_t idx = 0;
206 (create_callback =
208 nullptr;
209 ++idx) {
210 if (LanguageRuntime *runtime = create_callback(process, language))
211 return runtime;
212 }
213 return nullptr;
214}
215
217
220 bool throw_bp) {
221 LanguageRuntimeCreateInstance create_callback;
222 for (uint32_t idx = 0;
223 (create_callback =
225 nullptr;
226 idx++) {
227 if (auto precondition_callback =
229 idx)) {
230 if (BreakpointPreconditionSP precond =
231 precondition_callback(language, throw_bp))
232 return precond;
233 }
234 }
236}
237
239 Target &target, lldb::LanguageType language, bool catch_bp, bool throw_bp,
240 bool is_internal) {
241 BreakpointResolverSP resolver_sp(
242 new ExceptionBreakpointResolver(language, catch_bp, throw_bp));
243 SearchFilterSP filter_sp(
244 new ExceptionSearchFilter(target.shared_from_this(), language));
245 bool hardware = false;
246 bool resolve_indirect_functions = false;
247 BreakpointSP exc_breakpt_sp(
248 target.CreateBreakpoint(filter_sp, resolver_sp, is_internal, hardware,
249 resolve_indirect_functions));
250 if (exc_breakpt_sp) {
251 if (auto precond = GetExceptionPrecondition(language, throw_bp))
252 exc_breakpt_sp->SetPrecondition(precond);
253
254 if (is_internal)
255 exc_breakpt_sp->SetBreakpointKind("exception");
256 }
257
258 return exc_breakpt_sp;
259}
260
263 bool &behaves_like_zeroth_frame) {
264 ProcessSP process_sp = thread.GetProcess();
265 if (!process_sp.get())
266 return UnwindPlanSP();
267 if (process_sp->GetDisableLangRuntimeUnwindPlans() == true)
268 return UnwindPlanSP();
269 for (const lldb::LanguageType lang_type : Language::GetSupportedLanguages()) {
270 if (LanguageRuntime *runtime = process_sp->GetLanguageRuntime(lang_type)) {
271 UnwindPlanSP plan_sp = runtime->GetRuntimeUnwindPlan(
272 process_sp, regctx, behaves_like_zeroth_frame);
273 if (plan_sp.get())
274 return plan_sp;
275 }
276 }
277 return UnwindPlanSP();
278}
279
281 if (!parent)
282 return;
283
284 if (!parent->IsMultiwordObject())
285 return;
286
287 LanguageRuntimeCreateInstance create_callback;
288
289 for (uint32_t idx = 0;
290 (create_callback =
292 nullptr;
293 ++idx) {
294 if (LanguageRuntimeGetCommandObject command_callback =
296 CommandObjectSP command =
297 command_callback(parent->GetCommandInterpreter());
298 if (command) {
299 // the CommandObject vended by a Language plugin cannot be created once
300 // and cached because we may create multiple debuggers and need one
301 // instance of the command each - the implementing function is meant to
302 // create a new instance of the command each time it is invoked.
303 parent->LoadSubCommand(command->GetCommandName().str().c_str(), command);
304 }
305 }
306 }
307}
static llvm::raw_ostream & error(Stream &strm)
static bool classof(const BreakpointResolver *V)
void GetDescription(Stream *s) override
Prints a canonical description for the breakpoint to the stream s.
static bool classof(const BreakpointResolverName *)
Methods for support type inquiry through isa, cast, and dyn_cast:
lldb::BreakpointResolverSP m_actual_resolver_sp
ExceptionBreakpointResolver(lldb::LanguageType language, bool catch_bp, bool throw_bp)
lldb::SearchDepth GetDepth() override
BreakpointResolverSP CopyForBreakpoint(BreakpointSP &breakpoint) override
Searcher::CallbackReturn SearchCallback(SearchFilter &filter, SymbolContext &context, Address *addr) override
void Dump(Stream *s) const override
Standard "Dump" method. At present it does nothing.
~ExceptionBreakpointResolver() override=default
A section + offset based address class.
Definition: Address.h:62
"lldb/Breakpoint/BreakpointResolverName.h" This class sets breakpoints on a given function name,...
General Outline: The BreakpointResolver is a Searcher.
unsigned getResolverID() const
getResolverID - Return an ID for the concrete type of this object.
virtual bool IsMultiwordObject()
CommandInterpreter & GetCommandInterpreter()
virtual bool LoadSubCommand(llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_obj)
static SearchFilter * CreateFromStructuredData(Target &target, const StructuredData::Dictionary &data_dict, Status &error)
bool ModulePasses(const lldb::ModuleSP &module_sp) override
Call this method with a Module to see if that module passes the filter.
lldb::SearchFilterSP DoCreateCopy() override
ExceptionSearchFilter(const lldb::TargetSP &target_sp, lldb::LanguageType language, bool update_module_list=true)
void Search(Searcher &searcher) override
Call this method to do the search using the Searcher.
StructuredData::ObjectSP SerializeToStructuredData() override
void GetDescription(Stream *s) override
Prints a canonical description for the search filter to the stream s.
A file utility class.
Definition: FileSpec.h:56
static LanguageRuntime * FindPlugin(Process *process, lldb::LanguageType language)
static lldb::UnwindPlanSP GetRuntimeUnwindPlan(lldb_private::Thread &thread, lldb_private::RegisterContext *regctx, bool &behaves_like_zeroth_frame)
A language runtime may be able to provide a special UnwindPlan for the frame represented by the regis...
static lldb::BreakpointSP CreateExceptionBreakpoint(Target &target, lldb::LanguageType language, bool catch_bp, bool throw_bp, bool is_internal=false)
static void InitializeCommands(CommandObject *parent)
virtual lldb::SearchFilterSP CreateExceptionSearchFilter()
virtual lldb::BreakpointResolverSP CreateExceptionResolver(const lldb::BreakpointSP &bkpt, bool catch_bp, bool throw_bp)=0
static lldb::BreakpointPreconditionSP GetExceptionPrecondition(lldb::LanguageType language, bool throw_bp)
static Language * FindPlugin(lldb::LanguageType language)
Definition: Language.cpp:83
static void GetDefaultExceptionResolverDescription(bool catch_on, bool throw_on, Stream &s)
Definition: Language.cpp:524
virtual void GetExceptionResolverDescription(bool catch_on, bool throw_on, Stream &s)
Definition: Language.cpp:519
static std::set< lldb::LanguageType > GetSupportedLanguages()
Definition: Language.cpp:414
static LanguageRuntimeCreateInstance GetLanguageRuntimeCreateCallbackAtIndex(uint32_t idx)
static LanguageRuntimeGetCommandObject GetLanguageRuntimeGetCommandObjectAtIndex(uint32_t idx)
static LanguageRuntimeGetExceptionPrecondition GetLanguageRuntimeGetExceptionPreconditionAtIndex(uint32_t idx)
A plug-in interface definition class for debugging a process.
Definition: Process.h:341
General Outline: Provides the callback and search depth for the SearchFilter search.
Definition: SearchFilter.h:83
lldb::TargetSP m_target_sp
Definition: SearchFilter.h:278
General Outline: Provides the callback and search depth for the SearchFilter search.
Definition: SearchFilter.h:42
An error handling class.
Definition: Status.h:44
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition: Stream.cpp:134
std::shared_ptr< Object > ObjectSP
Defines a symbol context baton that can be handed other debug core functions.
Definition: SymbolContext.h:34
lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules, const FileSpec &file, uint32_t line_no, uint32_t column, lldb::addr_t offset, LazyBool check_inlines, LazyBool skip_prologue, bool internal, bool request_hardware, LazyBool move_to_nearest_code)
Definition: Target.cpp:395
lldb::ProcessSP GetProcess() const
Definition: Thread.h:154
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
lldb::CommandObjectSP(* LanguageRuntimeGetCommandObject)(CommandInterpreter &interpreter)
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::SearchFilter > SearchFilterSP
Definition: lldb-forward.h:410
std::shared_ptr< lldb_private::BreakpointResolver > BreakpointResolverSP
Definition: lldb-forward.h:320
std::shared_ptr< lldb_private::CommandObject > CommandObjectSP
Definition: lldb-forward.h:325
LanguageType
Programming language type.
std::shared_ptr< lldb_private::Breakpoint > BreakpointSP
Definition: lldb-forward.h:313
std::shared_ptr< lldb_private::Process > ProcessSP
Definition: lldb-forward.h:381
std::shared_ptr< lldb_private::BreakpointPrecondition > BreakpointPreconditionSP
Definition: lldb-forward.h:319
std::shared_ptr< lldb_private::UnwindPlan > UnwindPlanSP
Definition: lldb-forward.h:471
@ eSearchDepthTarget
std::shared_ptr< lldb_private::Target > TargetSP
Definition: lldb-forward.h:436
std::shared_ptr< lldb_private::Module > ModuleSP
Definition: lldb-forward.h:365