make debug mode ~20% faster on linux
commit82952dfb79f49f8275477bb453bb7a739ed435ce
authorhubbe@chromium.org <hubbe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>
Sat, 24 May 2014 12:53:32 +0000 (24 12:53 +0000)
committerhubbe@chromium.org <hubbe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>
Sat, 24 May 2014 12:53:32 +0000 (24 12:53 +0000)
tree0f31544029e79a1565755ecc7ca13c092d600653
parent5b8f779b51cb6490611f3d92bd5404fbd5ad4b72
make debug mode ~20% faster on linux

I was doing some benchmarking on tests on linux, and noticed that 10-20% of time was
in ThreadCheckerImpl::CalledOnValidThread. I looked into it and found that we're doing
a syscall to get the thread ID, which is not needed on any platform where pthread_t
is already an integer type.  Replacing that syscall with pthread_self() makes this particular
test (End2EndTest.BasicFakeSoftwareVideo) go from 488ms to 374ms, which is a 20% speedup.
While other tests might not use ThreadChecker quite as much, it should still be a pretty
good win across a large set of tests.

Review URL: https://codereview.chromium.org/292873002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272725 0039d316-1c4b-4281-b951-d872f2087c98
base/synchronization/lock.cc
base/synchronization/lock.h
base/threading/platform_thread.h
base/threading/platform_thread_posix.cc
base/threading/platform_thread_win.cc
base/threading/thread_checker_impl.cc
base/threading/thread_checker_impl.h