LLDB mainline
|
A class that encapsulates name lookup information. More...
#include "lldb/Core/Module.h"
Public Member Functions | |
LookupInfo ()=default | |
LookupInfo (ConstString name, lldb::FunctionNameType name_type_mask, lldb::LanguageType language) | |
ConstString | GetName () const |
void | SetName (ConstString name) |
ConstString | GetLookupName () const |
void | SetLookupName (ConstString name) |
lldb::FunctionNameType | GetNameTypeMask () const |
void | SetNameTypeMask (lldb::FunctionNameType mask) |
lldb::LanguageType | GetLanguageType () const |
bool | NameMatchesLookupInfo (ConstString function_name, lldb::LanguageType language_type=lldb::eLanguageTypeUnknown) const |
void | Prune (SymbolContextList &sc_list, size_t start_idx) const |
Protected Attributes | |
ConstString | m_name |
What the user originally typed. | |
ConstString | m_lookup_name |
The actual name will lookup when calling in the object or symbol file. | |
lldb::LanguageType | m_language = lldb::eLanguageTypeUnknown |
Limit matches to only be for this language. | |
lldb::FunctionNameType | m_name_type_mask = lldb::eFunctionNameTypeNone |
One or more bits from lldb::FunctionNameType that indicate what kind of names we are looking for. | |
bool | m_match_name_after_lookup = false |
A class that encapsulates name lookup information.
Users can type a wide variety of partial names when setting breakpoints by name or when looking for functions by name. The SymbolFile object is only required to implement name lookup for function basenames and for fully mangled names. This means if the user types in a partial name, we must reduce this to a name lookup that will work with all SymbolFile objects. So we might reduce a name lookup to look for a basename, and then prune out any results that don't match.
The "m_name" member variable represents the name as it was typed by the user. "m_lookup_name" will be the name we actually search for through the symbol or objects files. Lanaguage is included in case we need to filter results by language at a later date. The "m_name_type_mask" member variable tells us what kinds of names we are looking for and can help us prune out unwanted results.
Function lookups are done in Module.cpp, ModuleList.cpp and in BreakpointResolverName.cpp and they all now use this class to do lookups correctly.
|
default |
lldb_private::Module::LookupInfo::LookupInfo | ( | ConstString | name, |
lldb::FunctionNameType | name_type_mask, | ||
lldb::LanguageType | language | ||
) |
|
inline |
Definition at line 925 of file Module.h.
References m_language.
Referenced by lldb_private::plugin::dwarf::DWARFIndex::ProcessFunctionDIE().
|
inline |
Definition at line 915 of file Module.h.
References m_lookup_name.
Referenced by lldb_private::SymbolFileOnDemand::FindFunctions(), lldb_private::SymbolFileCTF::FindFunctions(), SymbolFilePDB::FindFunctions(), lldb_private::Module::FindFunctions(), lldb_private::breakpad::SymbolFileBreakpad::FindFunctions(), lldb_private::plugin::dwarf::SymbolFileDWARF::FindFunctions(), lldb_private::plugin::dwarf::SymbolFileDWARFDebugMap::FindFunctions(), lldb_private::npdb::SymbolFileNativePDB::FindFunctions(), lldb_private::ModuleList::FindFunctionSymbols(), lldb_private::plugin::dwarf::AppleDWARFIndex::GetFunctions(), lldb_private::plugin::dwarf::DebugNamesDWARFIndex::GetFunctions(), lldb_private::plugin::dwarf::ManualDWARFIndex::GetFunctions(), and lldb_private::plugin::dwarf::DWARFIndex::ProcessFunctionDIE().
|
inline |
Definition at line 911 of file Module.h.
References m_name.
Referenced by SymbolFilePDB::FindFunctions(), and lldb_private::npdb::SymbolFileNativePDB::FindFunctions().
|
inline |
Definition at line 919 of file Module.h.
References m_name_type_mask.
Referenced by lldb_private::SymbolFileOnDemand::FindFunctions(), SymbolFilePDB::FindFunctions(), lldb_private::Module::FindFunctions(), lldb_private::plugin::dwarf::SymbolFileDWARF::FindFunctions(), lldb_private::npdb::SymbolFileNativePDB::FindFunctions(), lldb_private::ModuleList::FindFunctionSymbols(), lldb_private::plugin::dwarf::ManualDWARFIndex::GetFunctions(), and lldb_private::plugin::dwarf::DWARFIndex::ProcessFunctionDIE().
bool Module::LookupInfo::NameMatchesLookupInfo | ( | ConstString | function_name, |
lldb::LanguageType | language_type = lldb::eLanguageTypeUnknown |
||
) | const |
Definition at line 738 of file Module.cpp.
References lldb_private::Mangled::eManglingSchemeNone, lldb_private::Language::FindPlugin(), lldb_private::Mangled::GetDemangledName(), lldb_private::Mangled::GetManglingScheme(), and m_name.
Referenced by lldb_private::plugin::dwarf::DWARFIndex::ProcessFunctionDIE().
void Module::LookupInfo::Prune | ( | SymbolContextList & | sc_list, |
size_t | start_idx | ||
) | const |
Definition at line 771 of file Module.cpp.
References lldb_private::Mangled::ePreferMangled, lldb_private::CPlusPlusLanguage::MethodName::GetBasename(), lldb_private::CPlusPlusLanguage::MethodName::GetContext(), lldb_private::SymbolContextList::GetContextAtIndex(), lldb_private::SymbolContext::GetFunctionName(), lldb_private::SymbolContext::GetLanguage(), lldb_private::CPlusPlusLanguage::MethodName::GetScopeQualifiedName(), lldb_private::SymbolContextList::GetSize(), lldb_private::CPlusPlusLanguage::MethodName::IsValid(), and lldb_private::SymbolContextList::RemoveContextAtIndex().
Referenced by lldb_private::ModuleList::FindFunctionSymbols().
|
inline |
Definition at line 917 of file Module.h.
References m_lookup_name.
Referenced by lldb_private::BreakpointResolverName::AddNameLookup(), and lldb_private::plugin::dwarf::SymbolFileDWARF::FindFunctions().
|
inline |
|
inline |
Definition at line 921 of file Module.h.
References m_name_type_mask.
|
protected |
Limit matches to only be for this language.
Definition at line 941 of file Module.h.
Referenced by GetLanguageType().
|
protected |
The actual name will lookup when calling in the object or symbol file.
Definition at line 938 of file Module.h.
Referenced by GetLookupName(), and SetLookupName().
|
protected |
|
protected |
What the user originally typed.
Definition at line 935 of file Module.h.
Referenced by GetName(), NameMatchesLookupInfo(), and SetName().
|
protected |
One or more bits from lldb::FunctionNameType that indicate what kind of names we are looking for.
If true, then demangled names that match will need to contain "m_name" in order to be considered a match
Definition at line 945 of file Module.h.
Referenced by GetNameTypeMask(), and SetNameTypeMask().