File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -970,7 +970,6 @@ void Module::FindTypes_Impl(
970
970
size_t max_matches,
971
971
llvm::DenseSet<lldb_private::SymbolFile *> &searched_symbol_files,
972
972
TypeMap &types) {
973
- LLDB_SCOPED_TIMER ();
974
973
if (SymbolFile *symbols = GetSymbolFile ())
975
974
symbols->FindTypes (name, parent_decl_ctx, max_matches,
976
975
searched_symbol_files, types);
@@ -1376,9 +1375,6 @@ void Module::FindSymbolsWithNameAndType(ConstString name,
1376
1375
SymbolContextList &sc_list) {
1377
1376
// No need to protect this call using m_mutex all other method calls are
1378
1377
// already thread safe.
1379
- LLDB_SCOPED_TIMERF (
1380
- " Module::FindSymbolsWithNameAndType (name = %s, type = %i)" ,
1381
- name.AsCString (), symbol_type);
1382
1378
if (Symtab *symtab = GetSymtab ()) {
1383
1379
std::vector<uint32_t > symbol_indexes;
1384
1380
symtab->FindAllSymbolsWithNameAndType (name, symbol_type, symbol_indexes);
Original file line number Diff line number Diff line change @@ -659,7 +659,6 @@ uint32_t Symtab::AppendSymbolIndexesWithName(ConstString symbol_name,
659
659
std::vector<uint32_t > &indexes) {
660
660
std::lock_guard<std::recursive_mutex> guard (m_mutex);
661
661
662
- LLDB_SCOPED_TIMER ();
663
662
if (symbol_name) {
664
663
if (!m_name_indexes_computed)
665
664
InitNameIndexes ();
@@ -806,7 +805,6 @@ Symtab::FindAllSymbolsWithNameAndType(ConstString name,
806
805
std::vector<uint32_t > &symbol_indexes) {
807
806
std::lock_guard<std::recursive_mutex> guard (m_mutex);
808
807
809
- LLDB_SCOPED_TIMER ();
810
808
// Initialize all of the lookup by name indexes before converting NAME to a
811
809
// uniqued string NAME_STR below.
812
810
if (!m_name_indexes_computed)
You can’t perform that action at this time.
0 commit comments