Skip to content

Commit 72406f6

Browse files
authored
Merge pull request #3 from smeenai/swift/master-next
[lldb] Fix merge after r375160
2 parents ed90f8b + 6b1e9f1 commit 72406f6

File tree

5 files changed

+27
-16
lines changed

5 files changed

+27
-16
lines changed

lldb/source/Core/ModuleList.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,8 @@ void ModuleList::FindFunctionSymbols(ConstString name,
424424
void ModuleList::FindFunctions(const RegularExpression &name,
425425
bool include_symbols, bool include_inlines,
426426
SymbolContextList &sc_list) {
427+
const size_t initial_size = sc_list.GetSize();
428+
427429
std::lock_guard<std::recursive_mutex> guard(m_modules_mutex);
428430
collection::const_iterator pos, end = m_modules.end();
429431
collection dylinker_modules;
@@ -504,6 +506,8 @@ void ModuleList::FindSymbolsWithNameAndType(ConstString name,
504506
SymbolType symbol_type,
505507
SymbolContextList &sc_list) const {
506508
std::lock_guard<std::recursive_mutex> guard(m_modules_mutex);
509+
const size_t initial_size = sc_list.GetSize();
510+
507511
collection::const_iterator pos, end = m_modules.end();
508512
collection dylinker_modules;
509513
for (pos = m_modules.begin(); pos != end; ++pos) {
@@ -528,6 +532,8 @@ void ModuleList::FindSymbolsMatchingRegExAndType(
528532
const RegularExpression &regex, lldb::SymbolType symbol_type,
529533
SymbolContextList &sc_list) const {
530534
std::lock_guard<std::recursive_mutex> guard(m_modules_mutex);
535+
const size_t initial_size = sc_list.GetSize();
536+
531537
collection::const_iterator pos, end = m_modules.end();
532538
collection dylinker_modules;
533539
for (pos = m_modules.begin(); pos != end; ++pos) {

lldb/source/Core/SourceManager.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -334,10 +334,10 @@ static lldb_private::LineEntry FindEntryPoint(Module *exe_module) {
334334
SymbolContextList sc_list;
335335
bool symbols_okay = false; // Force it to be a debug symbol.
336336
bool inlines_okay = true;
337-
bool append = false;
338-
size_t num_matches = exe_module->FindFunctions(
339-
entry_point_name, NULL, lldb::eFunctionNameTypeBase, inlines_okay,
340-
symbols_okay, append, sc_list);
337+
exe_module->FindFunctions(entry_point_name, NULL,
338+
lldb::eFunctionNameTypeBase, inlines_okay,
339+
symbols_okay, sc_list);
340+
size_t num_matches = sc_list.GetSize();
341341
for (size_t idx = 0; idx < num_matches; idx++) {
342342
SymbolContext sc;
343343
sc_list.GetContextAtIndex(idx, sc);

lldb/source/Symbol/SwiftASTContext.cpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -3846,8 +3846,9 @@ void SwiftASTContext::LoadModule(swift::ModuleDecl *swift_module,
38463846
module_spec.GetFileSpec().GetFilename() = library_cstr;
38473847
lldb_private::ModuleList matching_module_list;
38483848
bool module_already_loaded = false;
3849-
if (process.GetTarget().GetImages().FindModules(module_spec,
3850-
matching_module_list)) {
3849+
process.GetTarget().GetImages().FindModules(module_spec,
3850+
matching_module_list);
3851+
if (!matching_module_list.IsEmpty()) {
38513852
matching_module_list.ForEach(
38523853
[&module_already_loaded, &module_spec,
38533854
&framework_name](const ModuleSP &module_sp) -> bool {
@@ -4037,8 +4038,9 @@ bool SwiftASTContext::LoadLibraryUsingPaths(
40374038
module_spec.GetFileSpec().GetFilename().SetCString(library_fullname.c_str());
40384039
lldb_private::ModuleList matching_module_list;
40394040

4040-
if (process.GetTarget().GetImages().FindModules(module_spec,
4041-
matching_module_list) > 0) {
4041+
process.GetTarget().GetImages().FindModules(module_spec,
4042+
matching_module_list);
4043+
if (!matching_module_list.IsEmpty()) {
40424044
LOG_PRINTF(LIBLLDB_LOG_TYPES, "Skipping module %s as it is already loaded.",
40434045
library_fullname.c_str());
40444046
return true;

lldb/source/Target/SwiftLanguageRuntime.cpp

+9-6
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ FindSymbolForSwiftObject(Target &target, ConstString object,
192192
llvm::Optional<lldb::addr_t> retval;
193193

194194
SymbolContextList sc_list;
195-
if (target.GetImages().FindSymbolsWithNameAndType(object, sym_type,
196-
sc_list)) {
195+
target.GetImages().FindSymbolsWithNameAndType(object, sym_type, sc_list);
196+
if (!sc_list.IsEmpty()) {
197197
SymbolContext SwiftObject_Class;
198198
if (sc_list.GetSize() == 1 &&
199199
sc_list.GetContextAtIndex(0, SwiftObject_Class)) {
@@ -965,8 +965,9 @@ class LLDBMemoryReader : public swift::remote::MemoryReader {
965965

966966
ConstString name_cs(name.c_str(), name.size());
967967
SymbolContextList sc_list;
968-
if (!m_process->GetTarget().GetImages().FindSymbolsWithNameAndType(
969-
name_cs, lldb::eSymbolTypeAny, sc_list)) {
968+
m_process->GetTarget().GetImages().FindSymbolsWithNameAndType(
969+
name_cs, lldb::eSymbolTypeAny, sc_list);
970+
if (sc_list.IsEmpty()) {
970971
LLDB_LOG(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES),
971972
"[MemoryReader] symbol resoution failed {0}", name);
972973
return swift::remote::RemoteAddress(nullptr);
@@ -2516,8 +2517,10 @@ bool SwiftLanguageRuntime::GetTargetOfPartialApply(SymbolContext &curr_sc,
25162517

25172518
std::string apply_target = demangle_ctx.getThunkTarget(apply_name.GetStringRef());
25182519
if (!apply_target.empty()) {
2519-
size_t num_symbols = curr_sc.module_sp->FindFunctions(
2520-
ConstString(apply_target), NULL, eFunctionNameTypeFull, true, false, false, sc_list);
2520+
curr_sc.module_sp->FindFunctions(ConstString(apply_target), NULL,
2521+
eFunctionNameTypeFull, true, false,
2522+
sc_list);
2523+
size_t num_symbols = sc_list.GetSize();
25212524
if (num_symbols == 0)
25222525
return false;
25232526

lldb/source/Target/Target.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -3085,8 +3085,8 @@ lldb::addr_t Target::FindLoadAddrForNameInSymbolsAndPersistentVariables(
30853085
lldb::addr_t symbol_addr = LLDB_INVALID_ADDRESS;
30863086
SymbolContextList sc_list;
30873087

3088-
if (GetImages().FindSymbolsWithNameAndType(name_const_str, symbol_type,
3089-
sc_list)) {
3088+
GetImages().FindSymbolsWithNameAndType(name_const_str, symbol_type, sc_list);
3089+
if (!sc_list.IsEmpty()) {
30903090
SymbolContext desired_symbol;
30913091

30923092
if (sc_list.GetSize() == 1 &&

0 commit comments

Comments
 (0)