LLDB mainline
BreakpointResolverName.cpp
Go to the documentation of this file.
1//===-- BreakpointResolverName.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
10
13#include "lldb/Core/Module.h"
14#include "lldb/Symbol/Block.h"
16#include "lldb/Symbol/Symbol.h"
19#include "lldb/Target/Target.h"
21#include "lldb/Utility/Log.h"
23
24using namespace lldb;
25using namespace lldb_private;
26
28 const char *name_cstr, FunctionNameType name_type_mask,
29 LanguageType language, Breakpoint::MatchType type, lldb::addr_t offset,
30 bool skip_prologue)
31 : BreakpointResolver(bkpt, BreakpointResolver::NameResolver, offset),
32 m_match_type(type), m_language(language), m_skip_prologue(skip_prologue) {
33 if (m_match_type == Breakpoint::Regexp) {
34 m_regex = RegularExpression(name_cstr);
35 if (!m_regex.IsValid()) {
36 Log *log = GetLog(LLDBLog::Breakpoints);
37
38 if (log)
39 log->Warning("function name regexp: \"%s\" did not compile.",
40 name_cstr);
41 }
42 } else {
43 AddNameLookup(ConstString(name_cstr), name_type_mask);
44 }
45}
46
48 const BreakpointSP &bkpt, const char *names[], size_t num_names,
49 FunctionNameType name_type_mask, LanguageType language, lldb::addr_t offset,
50 bool skip_prologue)
51 : BreakpointResolver(bkpt, BreakpointResolver::NameResolver, offset),
52 m_match_type(Breakpoint::Exact), m_language(language),
53 m_skip_prologue(skip_prologue) {
54 for (size_t i = 0; i < num_names; i++) {
55 AddNameLookup(ConstString(names[i]), name_type_mask);
56 }
57}
58
60 std::vector<std::string> names,
61 FunctionNameType name_type_mask,
62 LanguageType language,
63 lldb::addr_t offset,
64 bool skip_prologue)
65 : BreakpointResolver(bkpt, BreakpointResolver::NameResolver, offset),
66 m_match_type(Breakpoint::Exact), m_language(language),
67 m_skip_prologue(skip_prologue) {
68 for (const std::string &name : names) {
69 AddNameLookup(ConstString(name.c_str(), name.size()), name_type_mask);
70 }
71}
72
74 RegularExpression func_regex,
75 lldb::LanguageType language,
76 lldb::addr_t offset,
77 bool skip_prologue)
78 : BreakpointResolver(bkpt, BreakpointResolver::NameResolver, offset),
79 m_class_name(nullptr), m_regex(std::move(func_regex)),
80 m_match_type(Breakpoint::Regexp), m_language(language),
81 m_skip_prologue(skip_prologue) {}
82
84 const BreakpointResolverName &rhs)
85 : BreakpointResolver(rhs.GetBreakpoint(), BreakpointResolver::NameResolver,
86 rhs.GetOffset()),
87 m_lookups(rhs.m_lookups), m_class_name(rhs.m_class_name),
88 m_regex(rhs.m_regex), m_match_type(rhs.m_match_type),
89 m_language(rhs.m_language), m_skip_prologue(rhs.m_skip_prologue) {}
90
92 const BreakpointSP &bkpt, const StructuredData::Dictionary &options_dict,
93 Status &error) {
95 llvm::StringRef language_name;
96 bool success = options_dict.GetValueForKeyAsString(
97 GetKey(OptionNames::LanguageName), language_name);
98 if (success) {
99 language = Language::GetLanguageTypeFromString(language_name);
100 if (language == eLanguageTypeUnknown) {
101 error.SetErrorStringWithFormatv("BRN::CFSD: Unknown language: {0}.",
102 language_name);
103 return nullptr;
104 }
105 }
106
107 lldb::offset_t offset = 0;
108 success =
110 if (!success) {
111 error.SetErrorString("BRN::CFSD: Missing offset entry.");
112 return nullptr;
113 }
114
115 bool skip_prologue;
116 success = options_dict.GetValueForKeyAsBoolean(
117 GetKey(OptionNames::SkipPrologue), skip_prologue);
118 if (!success) {
119 error.SetErrorString("BRN::CFSD: Missing Skip prologue entry.");
120 return nullptr;
121 }
122
123 llvm::StringRef regex_text;
124 success = options_dict.GetValueForKeyAsString(
125 GetKey(OptionNames::RegexString), regex_text);
126 if (success) {
127 return new BreakpointResolverName(bkpt, RegularExpression(regex_text),
128 language, offset, skip_prologue);
129 } else {
130 StructuredData::Array *names_array;
131 success = options_dict.GetValueForKeyAsArray(
133 if (!success) {
134 error.SetErrorString("BRN::CFSD: Missing symbol names entry.");
135 return nullptr;
136 }
137 StructuredData::Array *names_mask_array;
138 success = options_dict.GetValueForKeyAsArray(
139 GetKey(OptionNames::NameMaskArray), names_mask_array);
140 if (!success) {
141 error.SetErrorString("BRN::CFSD: Missing symbol names mask entry.");
142 return nullptr;
143 }
144
145 size_t num_elem = names_array->GetSize();
146 if (num_elem != names_mask_array->GetSize()) {
147 error.SetErrorString(
148 "BRN::CFSD: names and names mask arrays have different sizes.");
149 return nullptr;
150 }
151
152 if (num_elem == 0) {
153 error.SetErrorString(
154 "BRN::CFSD: no name entry in a breakpoint by name breakpoint.");
155 return nullptr;
156 }
157 std::vector<std::string> names;
158 std::vector<FunctionNameType> name_masks;
159 for (size_t i = 0; i < num_elem; i++) {
160 llvm::StringRef name;
161
162 success = names_array->GetItemAtIndexAsString(i, name);
163 if (!success) {
164 error.SetErrorString("BRN::CFSD: name entry is not a string.");
165 return nullptr;
166 }
167 std::underlying_type<FunctionNameType>::type fnt;
168 success = names_mask_array->GetItemAtIndexAsInteger(i, fnt);
169 if (!success) {
170 error.SetErrorString("BRN::CFSD: name mask entry is not an integer.");
171 return nullptr;
172 }
173 names.push_back(std::string(name));
174 name_masks.push_back(static_cast<FunctionNameType>(fnt));
175 }
176
178 bkpt, names[0].c_str(), name_masks[0], language,
179 Breakpoint::MatchType::Exact, offset, skip_prologue);
180 for (size_t i = 1; i < num_elem; i++) {
181 resolver->AddNameLookup(ConstString(names[i]), name_masks[i]);
182 }
183 return resolver;
184 }
185}
186
188 StructuredData::DictionarySP options_dict_sp(
190
191 if (m_regex.IsValid()) {
192 options_dict_sp->AddStringItem(GetKey(OptionNames::RegexString),
193 m_regex.GetText());
194 } else {
197 for (auto lookup : m_lookups) {
198 names_sp->AddItem(StructuredData::StringSP(
199 new StructuredData::String(lookup.GetName().GetStringRef())));
200 name_masks_sp->AddItem(StructuredData::UnsignedIntegerSP(
201 new StructuredData::UnsignedInteger(lookup.GetNameTypeMask())));
202 }
203 options_dict_sp->AddItem(GetKey(OptionNames::SymbolNameArray), names_sp);
204 options_dict_sp->AddItem(GetKey(OptionNames::NameMaskArray), name_masks_sp);
205 }
207 options_dict_sp->AddStringItem(
210 options_dict_sp->AddBooleanItem(GetKey(OptionNames::SkipPrologue),
212
213 return WrapOptionsDict(options_dict_sp);
214}
215
217 FunctionNameType name_type_mask) {
218
219 Module::LookupInfo lookup(name, name_type_mask, m_language);
220 m_lookups.emplace_back(lookup);
221
222 auto add_variant_funcs = [&](Language *lang) {
223 for (Language::MethodNameVariant variant :
224 lang->GetMethodNameVariants(name)) {
225 // FIXME: Should we be adding variants that aren't of type Full?
226 if (variant.GetType() & lldb::eFunctionNameTypeFull) {
227 Module::LookupInfo variant_lookup(name, variant.GetType(),
228 lang->GetLanguageType());
229 variant_lookup.SetLookupName(variant.GetName());
230 m_lookups.emplace_back(variant_lookup);
231 }
232 }
233 return true;
234 };
235
237 add_variant_funcs(lang);
238 } else {
239 // Most likely m_language is eLanguageTypeUnknown. We check each language for
240 // possible variants or more qualified names and create lookups for those as
241 // well.
242 Language::ForEach(add_variant_funcs);
243 }
244}
245
246// FIXME: Right now we look at the module level, and call the module's
247// "FindFunctions".
248// Greg says he will add function tables, maybe at the CompileUnit level to
249// accelerate function lookup. At that point, we should switch the depth to
250// CompileUnit, and look in these tables.
251
254 SymbolContext &context, Address *addr) {
256
257 if (m_class_name) {
258 if (log)
259 log->Warning("Class/method function specification not supported yet.\n");
261 }
262
263 SymbolContextList func_list;
264 bool filter_by_cu =
265 (filter.GetFilterRequiredItems() & eSymbolContextCompUnit) != 0;
266 bool filter_by_language = (m_language != eLanguageTypeUnknown);
267
268 ModuleFunctionSearchOptions function_options;
269 function_options.include_symbols = !filter_by_cu;
270 function_options.include_inlines = true;
271
272 switch (m_match_type) {
274 if (context.module_sp) {
275 for (const auto &lookup : m_lookups) {
276 const size_t start_func_idx = func_list.GetSize();
277 context.module_sp->FindFunctions(lookup, CompilerDeclContext(),
278 function_options, func_list);
279
280 const size_t end_func_idx = func_list.GetSize();
281
282 if (start_func_idx < end_func_idx)
283 lookup.Prune(func_list, start_func_idx);
284 }
285 }
286 break;
288 if (context.module_sp) {
289 context.module_sp->FindFunctions(m_regex, function_options, func_list);
290 }
291 break;
292 case Breakpoint::Glob:
293 if (log)
294 log->Warning("glob is not supported yet.");
295 break;
296 }
297
298 // If the filter specifies a Compilation Unit, remove the ones that don't
299 // pass at this point.
300 if (filter_by_cu || filter_by_language) {
301 uint32_t num_functions = func_list.GetSize();
302
303 for (size_t idx = 0; idx < num_functions; idx++) {
304 bool remove_it = false;
305 SymbolContext sc;
306 func_list.GetContextAtIndex(idx, sc);
307 if (filter_by_cu) {
308 if (!sc.comp_unit || !filter.CompUnitPasses(*sc.comp_unit))
309 remove_it = true;
310 }
311
312 if (filter_by_language) {
313 LanguageType sym_language = sc.GetLanguage();
314 if ((Language::GetPrimaryLanguage(sym_language) !=
316 (sym_language != eLanguageTypeUnknown)) {
317 remove_it = true;
318 }
319 }
320
321 if (remove_it) {
322 func_list.RemoveContextAtIndex(idx);
323 num_functions--;
324 idx--;
325 }
326 }
327 }
328
329 BreakpointSP breakpoint_sp = GetBreakpoint();
330 Breakpoint &breakpoint = *breakpoint_sp;
331 Address break_addr;
332
333 // Remove any duplicates between the function list and the symbol list
334 for (const SymbolContext &sc : func_list) {
335 bool is_reexported = false;
336
337 if (sc.block && sc.block->GetInlinedFunctionInfo()) {
338 if (!sc.block->GetStartAddress(break_addr))
339 break_addr.Clear();
340 } else if (sc.function) {
341 break_addr = sc.function->GetAddressRange().GetBaseAddress();
342 if (m_skip_prologue && break_addr.IsValid()) {
343 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize();
344 if (prologue_byte_size)
345 break_addr.SetOffset(break_addr.GetOffset() + prologue_byte_size);
346 }
347 } else if (sc.symbol) {
348 if (sc.symbol->GetType() == eSymbolTypeReExported) {
349 const Symbol *actual_symbol =
350 sc.symbol->ResolveReExportedSymbol(breakpoint.GetTarget());
351 if (actual_symbol) {
352 is_reexported = true;
353 break_addr = actual_symbol->GetAddress();
354 }
355 } else {
356 break_addr = sc.symbol->GetAddress();
357 }
358
359 if (m_skip_prologue && break_addr.IsValid()) {
360 const uint32_t prologue_byte_size = sc.symbol->GetPrologueByteSize();
361 if (prologue_byte_size)
362 break_addr.SetOffset(break_addr.GetOffset() + prologue_byte_size);
363 else {
364 const Architecture *arch =
365 breakpoint.GetTarget().GetArchitecturePlugin();
366 if (arch)
367 arch->AdjustBreakpointAddress(*sc.symbol, break_addr);
368 }
369 }
370 }
371
372 if (!break_addr.IsValid())
373 continue;
374
375 if (!filter.AddressPasses(break_addr))
376 continue;
377
378 bool new_location;
379 BreakpointLocationSP bp_loc_sp(AddLocation(break_addr, &new_location));
380 bp_loc_sp->SetIsReExported(is_reexported);
381 if (bp_loc_sp && new_location && !breakpoint.IsInternal()) {
382 if (log) {
383 StreamString s;
384 bp_loc_sp->GetDescription(&s, lldb::eDescriptionLevelVerbose);
385 LLDB_LOGF(log, "Added location: %s\n", s.GetData());
386 }
387 }
388 }
389
391}
392
395}
396
399 s->Printf("regex = '%s'", m_regex.GetText().str().c_str());
400 else {
401 size_t num_names = m_lookups.size();
402 if (num_names == 1)
403 s->Printf("name = '%s'", m_lookups[0].GetName().GetCString());
404 else {
405 s->Printf("names = {");
406 for (size_t i = 0; i < num_names; i++) {
407 s->Printf("%s'%s'", (i == 0 ? "" : ", "),
408 m_lookups[i].GetName().GetCString());
409 }
410 s->Printf("}");
411 }
412 }
414 s->Printf(", language = %s", Language::GetNameForLanguageType(m_language));
415 }
416}
417
419
420lldb::BreakpointResolverSP
422 lldb::BreakpointResolverSP ret_sp(new BreakpointResolverName(*this));
423 ret_sp->SetBreakpoint(breakpoint);
424 return ret_sp;
425}
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOGF(log,...)
Definition: Log.h:349
static llvm::StringRef GetName(XcodeSDK::Type type)
Definition: XcodeSDK.cpp:21
A section + offset based address class.
Definition: Address.h:59
void Clear()
Clear the object's state.
Definition: Address.h:178
lldb::addr_t GetOffset() const
Get the section relative offset value.
Definition: Address.h:319
bool IsValid() const
Check if the object state is valid.
Definition: Address.h:345
bool SetOffset(lldb::addr_t offset)
Set accessor for the offset.
Definition: Address.h:438
virtual void AdjustBreakpointAddress(const Symbol &func, Address &addr) const
Adjust function breakpoint address, if needed.
Definition: Architecture.h:58
"lldb/Breakpoint/BreakpointResolverName.h" This class sets breakpoints on a given function name,...
void AddNameLookup(ConstString name, lldb::FunctionNameType name_type_mask)
std::vector< Module::LookupInfo > m_lookups
void Dump(Stream *s) const override
Standard "Dump" method. At present it does nothing.
Searcher::CallbackReturn SearchCallback(SearchFilter &filter, SymbolContext &context, Address *addr) override
lldb::BreakpointResolverSP CopyForBreakpoint(lldb::BreakpointSP &breakpoint) override
StructuredData::ObjectSP SerializeToStructuredData() override
BreakpointResolverName(const lldb::BreakpointSP &bkpt, const char *name, lldb::FunctionNameType name_type_mask, lldb::LanguageType language, Breakpoint::MatchType type, lldb::addr_t offset, bool skip_prologue)
static BreakpointResolver * CreateFromStructuredData(const lldb::BreakpointSP &bkpt, const StructuredData::Dictionary &data_dict, Status &error)
void GetDescription(Stream *s) override
Prints a canonical description for the breakpoint to the stream s.
General Outline: The BreakpointResolver is a Searcher.
lldb::BreakpointLocationSP AddLocation(Address loc_addr, bool *new_location=nullptr)
static const char * GetKey(OptionNames enum_value)
StructuredData::DictionarySP WrapOptionsDict(StructuredData::DictionarySP options_dict_sp)
lldb::BreakpointSP GetBreakpoint() const
This gets the breakpoint for this resolver.
General Outline: A breakpoint has four main parts, a filter, a resolver, the list of breakpoint locat...
Definition: Breakpoint.h:81
MatchType
An enum specifying the match style for breakpoint settings.
Definition: Breakpoint.h:88
Target & GetTarget()
Accessor for the breakpoint Target.
Definition: Breakpoint.h:463
bool IsInternal() const
Tell whether this breakpoint is an "internal" breakpoint.
Definition: Breakpoint.cpp:254
Represents a generic declaration context in a program.
A uniqued constant string class.
Definition: ConstString.h:40
static Language * FindPlugin(lldb::LanguageType language)
Definition: Language.cpp:53
static const char * GetNameForLanguageType(lldb::LanguageType language)
Definition: Language.cpp:232
static lldb::LanguageType GetPrimaryLanguage(lldb::LanguageType language)
Definition: Language.cpp:331
static lldb::LanguageType GetLanguageTypeFromString(const char *string)=delete
static void ForEach(std::function< bool(Language *)> callback)
Definition: Language.cpp:100
void void void void void Warning(const char *fmt,...) __attribute__((format(printf
Definition: Log.cpp:200
A class that encapsulates name lookup information.
Definition: Module.h:950
void SetLookupName(ConstString name)
Definition: Module.h:963
bool IsValid() const
Test if this object contains a valid regular expression.
llvm::StringRef GetText() const
Access the regular expression text.
General Outline: Provides the callback and search depth for the SearchFilter search.
Definition: SearchFilter.h:83
virtual bool AddressPasses(Address &addr)
Call this method with a Address to see if address passes the filter.
virtual bool CompUnitPasses(FileSpec &fileSpec)
Call this method with a FileSpec to see if file spec passes the filter as the name of a compilation u...
virtual uint32_t GetFilterRequiredItems()
This determines which items are REQUIRED for the filter to pass.
An error handling class.
Definition: Status.h:44
const char * GetData() const
Definition: StreamString.h:43
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:107
bool GetItemAtIndexAsString(size_t idx, llvm::StringRef &result) const
bool GetItemAtIndexAsInteger(size_t idx, IntType &result) const
bool GetValueForKeyAsInteger(llvm::StringRef key, IntType &result) const
bool GetValueForKeyAsString(llvm::StringRef key, llvm::StringRef &result) const
bool GetValueForKeyAsBoolean(llvm::StringRef key, bool &result) const
bool GetValueForKeyAsArray(llvm::StringRef key, Array *&result) const
std::shared_ptr< UnsignedInteger > UnsignedIntegerSP
std::shared_ptr< Dictionary > DictionarySP
std::shared_ptr< Object > ObjectSP
std::shared_ptr< String > StringSP
std::shared_ptr< Array > ArraySP
Defines a list of symbol context objects.
bool GetContextAtIndex(size_t idx, SymbolContext &sc) const
Get accessor for a symbol context at index idx.
uint32_t GetSize() const
Get accessor for a symbol context list size.
Defines a symbol context baton that can be handed other debug core functions.
Definition: SymbolContext.h:33
lldb::LanguageType GetLanguage() const
lldb::ModuleSP module_sp
The Module for a given query.
CompileUnit * comp_unit
The CompileUnit for a given query.
Address GetAddress() const
Definition: Symbol.h:87
Symbol * ResolveReExportedSymbol(Target &target) const
Definition: Symbol.cpp:516
Architecture * GetArchitecturePlugin() const
Definition: Target.h:1046
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
Definition: Log.h:314
Definition: SBAddress.h:15
@ eDescriptionLevelVerbose
uint64_t offset_t
Definition: lldb-types.h:83
LanguageType
Programming language type.
@ eLanguageTypeUnknown
Unknown or invalid language value.
@ eSymbolTypeReExported
@ eSearchDepthModule
uint64_t addr_t
Definition: lldb-types.h:79
Options used by Module::FindFunctions.
Definition: Module.h:65
bool include_inlines
Include inlined functions.
Definition: Module.h:69
bool include_symbols
Include the symbol table.
Definition: Module.h:67