aboutsummaryrefslogtreecommitdiff
path: root/gdb/inferior.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2021-06-11 18:29:33 -0400
committerSimon Marchi <simon.marchi@polymtl.ca>2021-07-12 20:46:53 -0400
commit922cc93d5da6a6dc422b7e7a09ee745414d67457 (patch)
tree4963b5066e4c34a8b7b2331195c977254e55973e /gdb/inferior.c
parent71a2349005e74e0d64554f5c88e3632f3ace167a (diff)
downloadgdb-922cc93d5da6a6dc422b7e7a09ee745414d67457.zip
gdb-922cc93d5da6a6dc422b7e7a09ee745414d67457.tar.gz
gdb-922cc93d5da6a6dc422b7e7a09ee745414d67457.tar.bz2
gdb: maintain ptid -> thread map, optimize find_thread_ptid
When debugging a large number of threads (thousands), looking up a thread by ptid_t using the inferior::thread_list linked list can add up. Add inferior::thread_map, an std::unordered_map indexed by ptid_t, and change the find_thread_ptid function to look up a thread using std::unordered_map::find, instead of iterating on all of the inferior's threads. This should make it faster to look up a thread from its ptid. Change-Id: I3a8da0a839e18dee5bb98b8b7dbeb7f3dfa8ae1c Co-Authored-By: Pedro Alves <pedro@palves.net>
Diffstat (limited to 'gdb/inferior.c')
-rw-r--r--gdb/inferior.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/inferior.c b/gdb/inferior.c
index 3c569f4..74b1c65 100644
--- a/gdb/inferior.c
+++ b/gdb/inferior.c
@@ -186,6 +186,7 @@ inferior::clear_thread_list (bool silent)
if (thr->deletable ())
delete thr;
});
+ ptid_thread_map.clear ();
}
void