diff --git a/lldb/source/Core/SearchFilter.cpp b/lldb/source/Core/SearchFilter.cpp --- a/lldb/source/Core/SearchFilter.cpp +++ b/lldb/source/Core/SearchFilter.cpp @@ -208,10 +208,12 @@ return; empty_sc.target_sp = m_target_sp; - if (searcher.GetDepth() == lldb::eSearchDepthTarget) + if (searcher.GetDepth() == lldb::eSearchDepthTarget) { searcher.SearchCallback(*this, empty_sc, nullptr); - else - DoModuleIteration(empty_sc, searcher); + return; + } + + DoModuleIteration(empty_sc, searcher); } void SearchFilter::SearchInModuleList(Searcher &searcher, ModuleList &modules) { @@ -221,20 +223,20 @@ return; empty_sc.target_sp = m_target_sp; - if (searcher.GetDepth() == lldb::eSearchDepthTarget) + if (searcher.GetDepth() == lldb::eSearchDepthTarget) { searcher.SearchCallback(*this, empty_sc, nullptr); - else { - std::lock_guard guard(modules.GetMutex()); - const size_t numModules = modules.GetSize(); - - for (size_t i = 0; i < numModules; i++) { - ModuleSP module_sp(modules.GetModuleAtIndexUnlocked(i)); - if (ModulePasses(module_sp)) { - if (DoModuleIteration(module_sp, searcher) == - Searcher::eCallbackReturnStop) - return; - } - } + return; + } + + std::lock_guard guard(modules.GetMutex()); + const size_t numModules = modules.GetSize(); + + for (size_t i = 0; i < numModules; i++) { + ModuleSP module_sp(modules.GetModuleAtIndexUnlocked(i)); + if (!ModulePasses(module_sp)) + continue; + if (DoModuleIteration(module_sp, searcher) == Searcher::eCallbackReturnStop) + return; } } @@ -248,45 +250,47 @@ Searcher::CallbackReturn SearchFilter::DoModuleIteration(const SymbolContext &context, Searcher &searcher) { - if (searcher.GetDepth() >= lldb::eSearchDepthModule) { - if (context.module_sp) { - if (searcher.GetDepth() == lldb::eSearchDepthModule) { - SymbolContext matchingContext(context.module_sp.get()); - searcher.SearchCallback(*this, matchingContext, nullptr); - } else { - return DoCUIteration(context.module_sp, context, searcher); - } + if (searcher.GetDepth() < lldb::eSearchDepthModule) + return Searcher::eCallbackReturnContinue; + + if (context.module_sp) { + if (searcher.GetDepth() != lldb::eSearchDepthModule) + return DoCUIteration(context.module_sp, context, searcher); + + SymbolContext matchingContext(context.module_sp.get()); + searcher.SearchCallback(*this, matchingContext, nullptr); + return Searcher::eCallbackReturnContinue; + } + + const ModuleList &target_images = m_target_sp->GetImages(); + std::lock_guard guard(target_images.GetMutex()); + + size_t n_modules = target_images.GetSize(); + for (size_t i = 0; i < n_modules; i++) { + // If this is the last level supplied, then call the callback directly, + // otherwise descend. + ModuleSP module_sp(target_images.GetModuleAtIndexUnlocked(i)); + if (!ModulePasses(module_sp)) + continue; + + if (searcher.GetDepth() == lldb::eSearchDepthModule) { + SymbolContext matchingContext(m_target_sp, module_sp); + + Searcher::CallbackReturn shouldContinue = + searcher.SearchCallback(*this, matchingContext, nullptr); + if (shouldContinue == Searcher::eCallbackReturnStop || + shouldContinue == Searcher::eCallbackReturnPop) + return shouldContinue; } else { - const ModuleList &target_images = m_target_sp->GetImages(); - std::lock_guard guard(target_images.GetMutex()); - - size_t n_modules = target_images.GetSize(); - for (size_t i = 0; i < n_modules; i++) { - // If this is the last level supplied, then call the callback directly, - // otherwise descend. - ModuleSP module_sp(target_images.GetModuleAtIndexUnlocked(i)); - if (!ModulePasses(module_sp)) - continue; - - if (searcher.GetDepth() == lldb::eSearchDepthModule) { - SymbolContext matchingContext(m_target_sp, module_sp); - - Searcher::CallbackReturn shouldContinue = - searcher.SearchCallback(*this, matchingContext, nullptr); - if (shouldContinue == Searcher::eCallbackReturnStop || - shouldContinue == Searcher::eCallbackReturnPop) - return shouldContinue; - } else { - Searcher::CallbackReturn shouldContinue = - DoCUIteration(module_sp, context, searcher); - if (shouldContinue == Searcher::eCallbackReturnStop) - return shouldContinue; - else if (shouldContinue == Searcher::eCallbackReturnPop) - continue; - } - } + Searcher::CallbackReturn shouldContinue = + DoCUIteration(module_sp, context, searcher); + if (shouldContinue == Searcher::eCallbackReturnStop) + return shouldContinue; + else if (shouldContinue == Searcher::eCallbackReturnPop) + continue; } } + return Searcher::eCallbackReturnContinue; } @@ -294,56 +298,56 @@ SearchFilter::DoCUIteration(const ModuleSP &module_sp, const SymbolContext &context, Searcher &searcher) { Searcher::CallbackReturn shouldContinue; - if (context.comp_unit == nullptr) { - const size_t num_comp_units = module_sp->GetNumCompileUnits(); - for (size_t i = 0; i < num_comp_units; i++) { - CompUnitSP cu_sp(module_sp->GetCompileUnitAtIndex(i)); - if (cu_sp) { - if (!CompUnitPasses(*(cu_sp.get()))) - continue; - - if (searcher.GetDepth() == lldb::eSearchDepthCompUnit) { - SymbolContext matchingContext(m_target_sp, module_sp, cu_sp.get()); - - shouldContinue = - searcher.SearchCallback(*this, matchingContext, nullptr); - - if (shouldContinue == Searcher::eCallbackReturnPop) - return Searcher::eCallbackReturnContinue; - else if (shouldContinue == Searcher::eCallbackReturnStop) - return shouldContinue; - } else { - // First make sure this compile unit's functions are parsed - // since CompUnit::ForeachFunction only iterates over already - // parsed functions. - SymbolFile *sym_file = module_sp->GetSymbolFile(); - if (!sym_file) - continue; - if (!sym_file->ParseFunctions(*cu_sp)) - continue; - // If we got any functions, use ForeachFunction to do the iteration. - cu_sp->ForeachFunction([&](const FunctionSP &func_sp) { - if (!FunctionPasses(*func_sp.get())) - return false; // Didn't pass the filter, just keep going. - if (searcher.GetDepth() == lldb::eSearchDepthFunction) { - SymbolContext matchingContext(m_target_sp, module_sp, - cu_sp.get(), func_sp.get()); - shouldContinue = - searcher.SearchCallback(*this, matchingContext, nullptr); - } else { - shouldContinue = DoFunctionIteration(func_sp.get(), context, - searcher); - } - return shouldContinue != Searcher::eCallbackReturnContinue; - }); - } - } - } - } else { + if (context.comp_unit != nullptr) { if (CompUnitPasses(*context.comp_unit)) { SymbolContext matchingContext(m_target_sp, module_sp, context.comp_unit); return searcher.SearchCallback(*this, matchingContext, nullptr); } + return Searcher::eCallbackReturnContinue; + } + + const size_t num_comp_units = module_sp->GetNumCompileUnits(); + for (size_t i = 0; i < num_comp_units; i++) { + CompUnitSP cu_sp(module_sp->GetCompileUnitAtIndex(i)); + if (!cu_sp) + continue; + if (!CompUnitPasses(*(cu_sp.get()))) + continue; + + if (searcher.GetDepth() == lldb::eSearchDepthCompUnit) { + SymbolContext matchingContext(m_target_sp, module_sp, cu_sp.get()); + + shouldContinue = searcher.SearchCallback(*this, matchingContext, nullptr); + + if (shouldContinue == Searcher::eCallbackReturnPop) + return Searcher::eCallbackReturnContinue; + else if (shouldContinue == Searcher::eCallbackReturnStop) + return shouldContinue; + continue; + } + + // First make sure this compile unit's functions are parsed + // since CompUnit::ForeachFunction only iterates over already + // parsed functions. + SymbolFile *sym_file = module_sp->GetSymbolFile(); + if (!sym_file) + continue; + if (!sym_file->ParseFunctions(*cu_sp)) + continue; + // If we got any functions, use ForeachFunction to do the iteration. + cu_sp->ForeachFunction([&](const FunctionSP &func_sp) { + if (!FunctionPasses(*func_sp.get())) + return false; // Didn't pass the filter, just keep going. + if (searcher.GetDepth() == lldb::eSearchDepthFunction) { + SymbolContext matchingContext(m_target_sp, module_sp, cu_sp.get(), + func_sp.get()); + shouldContinue = + searcher.SearchCallback(*this, matchingContext, nullptr); + } else { + shouldContinue = DoFunctionIteration(func_sp.get(), context, searcher); + } + return shouldContinue != Searcher::eCallbackReturnContinue; + }); } return Searcher::eCallbackReturnContinue; } @@ -383,8 +387,7 @@ return true; else if (m_target_sp->ModuleIsExcludedForUnconstrainedSearches(module_sp)) return false; - else - return true; + return true; } lldb::SearchFilterSP SearchFilterForUnconstrainedSearches::DoCopyForBreakpoint( @@ -570,15 +573,15 @@ const size_t num_modules = target_modules.GetSize(); for (size_t i = 0; i < num_modules; i++) { Module *module = target_modules.GetModulePointerAtIndexUnlocked(i); - if (m_module_spec_list.FindFileIndex(0, module->GetFileSpec(), false) != - UINT32_MAX) { - SymbolContext matchingContext(m_target_sp, module->shared_from_this()); - Searcher::CallbackReturn shouldContinue; - - shouldContinue = DoModuleIteration(matchingContext, searcher); - if (shouldContinue == Searcher::eCallbackReturnStop) - return; - } + if (m_module_spec_list.FindFileIndex(0, module->GetFileSpec(), false) == + UINT32_MAX) + continue; + SymbolContext matchingContext(m_target_sp, module->shared_from_this()); + Searcher::CallbackReturn shouldContinue; + + shouldContinue = DoModuleIteration(matchingContext, searcher); + if (shouldContinue == Searcher::eCallbackReturnStop) + return; } } @@ -589,15 +592,16 @@ s->PutCString( m_module_spec_list.GetFileSpecAtIndex(0).GetFilename().AsCString( "")); - } else { - s->Printf(", modules(%" PRIu64 ") = ", (uint64_t)num_modules); - for (size_t i = 0; i < num_modules; i++) { - s->PutCString( - m_module_spec_list.GetFileSpecAtIndex(i).GetFilename().AsCString( - "")); - if (i != num_modules - 1) - s->PutCString(", "); - } + return; + } + + s->Printf(", modules(%" PRIu64 ") = ", (uint64_t)num_modules); + for (size_t i = 0; i < num_modules; i++) { + s->PutCString( + m_module_spec_list.GetFileSpecAtIndex(i).GetFilename().AsCString( + "")); + if (i != num_modules - 1) + s->PutCString(", "); } } @@ -619,20 +623,20 @@ bool success = data_dict.GetValueForKeyAsArray(GetKey(OptionNames::ModList), modules_array); FileSpecList modules; - if (success) { - size_t num_modules = modules_array->GetSize(); - for (size_t i = 0; i < num_modules; i++) { - llvm::StringRef module; - success = modules_array->GetItemAtIndexAsString(i, module); - if (!success) { - error.SetErrorStringWithFormat( - "SFBM::CFSD: filter module item %zu not a string.", i); - return nullptr; - } - modules.EmplaceBack(module); + if (!success) + return std::make_shared(target.shared_from_this(), + modules); + size_t num_modules = modules_array->GetSize(); + for (size_t i = 0; i < num_modules; i++) { + llvm::StringRef module; + success = modules_array->GetItemAtIndexAsString(i, module); + if (!success) { + error.SetErrorStringWithFormat( + "SFBM::CFSD: filter module item %zu not a string.", i); + return nullptr; } + modules.EmplaceBack(module); } - return std::make_shared(target.shared_from_this(), modules); } @@ -698,7 +702,7 @@ success = cus_array->GetItemAtIndexAsString(i, cu); if (!success) { error.SetErrorStringWithFormat( - "SFBM::CFSD: filter cu item %zu not a string.", i); + "SFBM::CFSD: filter CU item %zu not a string.", i); return nullptr; } cus.EmplaceBack(cu); @@ -738,15 +742,14 @@ bool SearchFilterByModuleListAndCU::CompUnitPasses(CompileUnit &compUnit) { bool in_cu_list = m_cu_spec_list.FindFileIndex(0, compUnit.GetPrimaryFile(), false) != UINT32_MAX; - if (in_cu_list) { - ModuleSP module_sp(compUnit.GetModule()); - if (module_sp) { - bool module_passes = SearchFilterByModuleList::ModulePasses(module_sp); - return module_passes; - } else - return true; - } else + if (!in_cu_list) return false; + + ModuleSP module_sp(compUnit.GetModule()); + if (!module_sp) + return true; + + return SearchFilterByModuleList::ModulePasses(module_sp); } void SearchFilterByModuleListAndCU::Search(Searcher &searcher) { @@ -771,33 +774,34 @@ bool no_modules_in_filter = m_module_spec_list.GetSize() == 0; for (size_t i = 0; i < num_modules; i++) { lldb::ModuleSP module_sp = target_images.GetModuleAtIndexUnlocked(i); - if (no_modules_in_filter || + if (!(no_modules_in_filter || m_module_spec_list.FindFileIndex(0, module_sp->GetFileSpec(), false) != - UINT32_MAX) { - SymbolContext matchingContext(m_target_sp, module_sp); - Searcher::CallbackReturn shouldContinue; + UINT32_MAX)) + continue; - if (searcher.GetDepth() == lldb::eSearchDepthModule) { - shouldContinue = DoModuleIteration(matchingContext, searcher); - if (shouldContinue == Searcher::eCallbackReturnStop) - return; - } else { - const size_t num_cu = module_sp->GetNumCompileUnits(); - for (size_t cu_idx = 0; cu_idx < num_cu; cu_idx++) { - CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex(cu_idx); - matchingContext.comp_unit = cu_sp.get(); - if (matchingContext.comp_unit) { - if (m_cu_spec_list.FindFileIndex( - 0, matchingContext.comp_unit->GetPrimaryFile(), false) != - UINT32_MAX) { - shouldContinue = - DoCUIteration(module_sp, matchingContext, searcher); - if (shouldContinue == Searcher::eCallbackReturnStop) - return; - } - } - } - } + SymbolContext matchingContext(m_target_sp, module_sp); + Searcher::CallbackReturn shouldContinue; + + if (searcher.GetDepth() == lldb::eSearchDepthModule) { + shouldContinue = DoModuleIteration(matchingContext, searcher); + if (shouldContinue == Searcher::eCallbackReturnStop) + return; + continue; + } + + const size_t num_cu = module_sp->GetNumCompileUnits(); + for (size_t cu_idx = 0; cu_idx < num_cu; cu_idx++) { + CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex(cu_idx); + matchingContext.comp_unit = cu_sp.get(); + if (!matchingContext.comp_unit) + continue; + if (m_cu_spec_list.FindFileIndex( + 0, matchingContext.comp_unit->GetPrimaryFile(), false) == + UINT32_MAX) + continue; + shouldContinue = DoCUIteration(module_sp, matchingContext, searcher); + if (shouldContinue == Searcher::eCallbackReturnStop) + return; } } }