Elliott Hughes | 1aa246d | 2012-12-13 09:29:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 17 | #include "thread_pool.h" |
| 18 | |
Andreas Gampe | 9e927f5 | 2016-02-29 20:49:38 -0800 | [diff] [blame] | 19 | #include <pthread.h> |
| 20 | |
| 21 | #include <sys/time.h> |
| 22 | #include <sys/resource.h> |
| 23 | |
Vladimir Marko | 0b6e283 | 2015-09-24 10:41:33 +0100 | [diff] [blame] | 24 | #include "base/bit_utils.h" |
Elliott Hughes | 1aa246d | 2012-12-13 09:29:36 -0800 | [diff] [blame] | 25 | #include "base/casts.h" |
Vladimir Marko | 0b6e283 | 2015-09-24 10:41:33 +0100 | [diff] [blame] | 26 | #include "base/logging.h" |
Elliott Hughes | 1aa246d | 2012-12-13 09:29:36 -0800 | [diff] [blame] | 27 | #include "base/stl_util.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 28 | #include "base/time_utils.h" |
Elliott Hughes | 1aa246d | 2012-12-13 09:29:36 -0800 | [diff] [blame] | 29 | #include "runtime.h" |
Brian Carlstrom | a3d2718 | 2013-11-05 23:22:27 -0800 | [diff] [blame] | 30 | #include "thread-inl.h" |
Elliott Hughes | 1aa246d | 2012-12-13 09:29:36 -0800 | [diff] [blame] | 31 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 32 | namespace art { |
| 33 | |
Mathieu Chartier | 720ef76 | 2013-08-17 14:46:54 -0700 | [diff] [blame] | 34 | static constexpr bool kMeasureWaitTime = false; |
Mathieu Chartier | 94c32c5 | 2013-08-09 11:14:04 -0700 | [diff] [blame] | 35 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 36 | ThreadPoolWorker::ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, |
| 37 | size_t stack_size) |
| 38 | : thread_pool_(thread_pool), |
Mathieu Chartier | bcd5e9d | 2013-11-13 14:33:28 -0800 | [diff] [blame] | 39 | name_(name) { |
Vladimir Marko | 0b6e283 | 2015-09-24 10:41:33 +0100 | [diff] [blame] | 40 | // Add an inaccessible page to catch stack overflow. |
| 41 | stack_size += kPageSize; |
Mathieu Chartier | bcd5e9d | 2013-11-13 14:33:28 -0800 | [diff] [blame] | 42 | std::string error_msg; |
| 43 | stack_.reset(MemMap::MapAnonymous(name.c_str(), nullptr, stack_size, PROT_READ | PROT_WRITE, |
Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 44 | false, false, &error_msg)); |
Mathieu Chartier | bcd5e9d | 2013-11-13 14:33:28 -0800 | [diff] [blame] | 45 | CHECK(stack_.get() != nullptr) << error_msg; |
Vladimir Marko | 0b6e283 | 2015-09-24 10:41:33 +0100 | [diff] [blame] | 46 | CHECK_ALIGNED(stack_->Begin(), kPageSize); |
| 47 | int mprotect_result = mprotect(stack_->Begin(), kPageSize, PROT_NONE); |
| 48 | CHECK_EQ(mprotect_result, 0) << "Failed to mprotect() bottom page of thread pool worker stack."; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 49 | const char* reason = "new thread pool worker thread"; |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 50 | pthread_attr_t attr; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 51 | CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason); |
Mathieu Chartier | bcd5e9d | 2013-11-13 14:33:28 -0800 | [diff] [blame] | 52 | CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason); |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 53 | CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); |
| 54 | CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason); |
| 55 | } |
| 56 | |
| 57 | ThreadPoolWorker::~ThreadPoolWorker() { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 58 | CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown"); |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 59 | } |
| 60 | |
Andreas Gampe | 9e927f5 | 2016-02-29 20:49:38 -0800 | [diff] [blame] | 61 | void ThreadPoolWorker::SetPthreadPriority(int priority) { |
| 62 | CHECK_GE(priority, PRIO_MIN); |
| 63 | CHECK_LE(priority, PRIO_MAX); |
Bilyan Borisov | bb661c0 | 2016-04-04 16:27:32 +0100 | [diff] [blame] | 64 | #if defined(ART_TARGET_ANDROID) |
Andreas Gampe | 9e927f5 | 2016-02-29 20:49:38 -0800 | [diff] [blame] | 65 | int result = setpriority(PRIO_PROCESS, pthread_gettid_np(pthread_), priority); |
| 66 | if (result != 0) { |
| 67 | PLOG(ERROR) << "Failed to setpriority to :" << priority; |
| 68 | } |
| 69 | #else |
| 70 | UNUSED(priority); |
| 71 | #endif |
| 72 | } |
| 73 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 74 | void ThreadPoolWorker::Run() { |
| 75 | Thread* self = Thread::Current(); |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 76 | Task* task = nullptr; |
Mathieu Chartier | 35883cc | 2012-11-13 14:08:12 -0800 | [diff] [blame] | 77 | thread_pool_->creation_barier_.Wait(self); |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 78 | while ((task = thread_pool_->GetTask(self)) != nullptr) { |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 79 | task->Run(self); |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 80 | task->Finalize(); |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 81 | } |
| 82 | } |
| 83 | |
| 84 | void* ThreadPoolWorker::Callback(void* arg) { |
| 85 | ThreadPoolWorker* worker = reinterpret_cast<ThreadPoolWorker*>(arg); |
| 86 | Runtime* runtime = Runtime::Current(); |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 87 | CHECK(runtime->AttachCurrentThread(worker->name_.c_str(), true, nullptr, false)); |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 88 | // Do work until its time to shut down. |
| 89 | worker->Run(); |
| 90 | runtime->DetachCurrentThread(); |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 91 | return nullptr; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 94 | void ThreadPool::AddTask(Thread* self, Task* task) { |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 95 | MutexLock mu(self, task_queue_lock_); |
| 96 | tasks_.push_back(task); |
| 97 | // If we have any waiters, signal one. |
Mathieu Chartier | 94c32c5 | 2013-08-09 11:14:04 -0700 | [diff] [blame] | 98 | if (started_ && waiting_count_ != 0) { |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 99 | task_queue_condition_.Signal(self); |
| 100 | } |
| 101 | } |
| 102 | |
Nicolas Geoffray | 629e935 | 2015-11-04 17:22:16 +0000 | [diff] [blame] | 103 | void ThreadPool::RemoveAllTasks(Thread* self) { |
| 104 | MutexLock mu(self, task_queue_lock_); |
| 105 | tasks_.clear(); |
| 106 | } |
| 107 | |
Mathieu Chartier | bcd5e9d | 2013-11-13 14:33:28 -0800 | [diff] [blame] | 108 | ThreadPool::ThreadPool(const char* name, size_t num_threads) |
| 109 | : name_(name), |
| 110 | task_queue_lock_("task queue lock"), |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 111 | task_queue_condition_("task queue condition", task_queue_lock_), |
| 112 | completion_condition_("task completion condition", task_queue_lock_), |
| 113 | started_(false), |
| 114 | shutting_down_(false), |
Mathieu Chartier | 35883cc | 2012-11-13 14:08:12 -0800 | [diff] [blame] | 115 | waiting_count_(0), |
Ian Rogers | d914eb2 | 2013-04-18 16:11:15 -0700 | [diff] [blame] | 116 | start_time_(0), |
| 117 | total_wait_time_(0), |
Mathieu Chartier | 35883cc | 2012-11-13 14:08:12 -0800 | [diff] [blame] | 118 | // Add one since the caller of constructor waits on the barrier too. |
Mathieu Chartier | 2775ee4 | 2013-08-20 17:43:47 -0700 | [diff] [blame] | 119 | creation_barier_(num_threads + 1), |
| 120 | max_active_workers_(num_threads) { |
Mathieu Chartier | 35883cc | 2012-11-13 14:08:12 -0800 | [diff] [blame] | 121 | Thread* self = Thread::Current(); |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 122 | while (GetThreadCount() < num_threads) { |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 123 | const std::string worker_name = StringPrintf("%s worker thread %zu", name_.c_str(), |
| 124 | GetThreadCount()); |
Vladimir Marko | 0b6e283 | 2015-09-24 10:41:33 +0100 | [diff] [blame] | 125 | threads_.push_back( |
| 126 | new ThreadPoolWorker(this, worker_name, ThreadPoolWorker::kDefaultStackSize)); |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 127 | } |
Mathieu Chartier | 35883cc | 2012-11-13 14:08:12 -0800 | [diff] [blame] | 128 | // Wait for all of the threads to attach. |
| 129 | creation_barier_.Wait(self); |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 130 | } |
| 131 | |
Mathieu Chartier | 2775ee4 | 2013-08-20 17:43:47 -0700 | [diff] [blame] | 132 | void ThreadPool::SetMaxActiveWorkers(size_t threads) { |
| 133 | MutexLock mu(Thread::Current(), task_queue_lock_); |
| 134 | CHECK_LE(threads, GetThreadCount()); |
| 135 | max_active_workers_ = threads; |
| 136 | } |
| 137 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 138 | ThreadPool::~ThreadPool() { |
Mathieu Chartier | e46cd75 | 2012-10-31 16:56:18 -0700 | [diff] [blame] | 139 | { |
| 140 | Thread* self = Thread::Current(); |
| 141 | MutexLock mu(self, task_queue_lock_); |
| 142 | // Tell any remaining workers to shut down. |
| 143 | shutting_down_ = true; |
Mathieu Chartier | e46cd75 | 2012-10-31 16:56:18 -0700 | [diff] [blame] | 144 | // Broadcast to everyone waiting. |
| 145 | task_queue_condition_.Broadcast(self); |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 146 | completion_condition_.Broadcast(self); |
Mathieu Chartier | e46cd75 | 2012-10-31 16:56:18 -0700 | [diff] [blame] | 147 | } |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 148 | // Wait for the threads to finish. |
| 149 | STLDeleteElements(&threads_); |
| 150 | } |
| 151 | |
| 152 | void ThreadPool::StartWorkers(Thread* self) { |
| 153 | MutexLock mu(self, task_queue_lock_); |
| 154 | started_ = true; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 155 | task_queue_condition_.Broadcast(self); |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 156 | start_time_ = NanoTime(); |
| 157 | total_wait_time_ = 0; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | void ThreadPool::StopWorkers(Thread* self) { |
| 161 | MutexLock mu(self, task_queue_lock_); |
| 162 | started_ = false; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 165 | Task* ThreadPool::GetTask(Thread* self) { |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 166 | MutexLock mu(self, task_queue_lock_); |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 167 | while (!IsShuttingDown()) { |
Mathieu Chartier | 2775ee4 | 2013-08-20 17:43:47 -0700 | [diff] [blame] | 168 | const size_t thread_count = GetThreadCount(); |
| 169 | // Ensure that we don't use more threads than the maximum active workers. |
| 170 | const size_t active_threads = thread_count - waiting_count_; |
| 171 | // <= since self is considered an active worker. |
| 172 | if (active_threads <= max_active_workers_) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 173 | Task* task = TryGetTaskLocked(); |
| 174 | if (task != nullptr) { |
Mathieu Chartier | 2775ee4 | 2013-08-20 17:43:47 -0700 | [diff] [blame] | 175 | return task; |
| 176 | } |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Mathieu Chartier | 2775ee4 | 2013-08-20 17:43:47 -0700 | [diff] [blame] | 179 | ++waiting_count_; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 180 | if (waiting_count_ == GetThreadCount() && tasks_.empty()) { |
| 181 | // We may be done, lets broadcast to the completion condition. |
| 182 | completion_condition_.Broadcast(self); |
| 183 | } |
Mathieu Chartier | 94c32c5 | 2013-08-09 11:14:04 -0700 | [diff] [blame] | 184 | const uint64_t wait_start = kMeasureWaitTime ? NanoTime() : 0; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 185 | task_queue_condition_.Wait(self); |
Mathieu Chartier | 94c32c5 | 2013-08-09 11:14:04 -0700 | [diff] [blame] | 186 | if (kMeasureWaitTime) { |
| 187 | const uint64_t wait_end = NanoTime(); |
| 188 | total_wait_time_ += wait_end - std::max(wait_start, start_time_); |
| 189 | } |
| 190 | --waiting_count_; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 193 | // We are shutting down, return null to tell the worker thread to stop looping. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 194 | return nullptr; |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 197 | Task* ThreadPool::TryGetTask(Thread* self) { |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 198 | MutexLock mu(self, task_queue_lock_); |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 199 | return TryGetTaskLocked(); |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 202 | Task* ThreadPool::TryGetTaskLocked() { |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 203 | if (started_ && !tasks_.empty()) { |
| 204 | Task* task = tasks_.front(); |
| 205 | tasks_.pop_front(); |
| 206 | return task; |
| 207 | } |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 208 | return nullptr; |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 211 | void ThreadPool::Wait(Thread* self, bool do_work, bool may_hold_locks) { |
| 212 | if (do_work) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 213 | Task* task = nullptr; |
| 214 | while ((task = TryGetTask(self)) != nullptr) { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 215 | task->Run(self); |
| 216 | task->Finalize(); |
| 217 | } |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 218 | } |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 219 | // Wait until each thread is waiting and the task list is empty. |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 220 | MutexLock mu(self, task_queue_lock_); |
| 221 | while (!shutting_down_ && (waiting_count_ != GetThreadCount() || !tasks_.empty())) { |
Ian Rogers | 1d54e73 | 2013-05-02 21:10:01 -0700 | [diff] [blame] | 222 | if (!may_hold_locks) { |
| 223 | completion_condition_.Wait(self); |
| 224 | } else { |
| 225 | completion_condition_.WaitHoldingLocks(self); |
| 226 | } |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 227 | } |
| 228 | } |
| 229 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 230 | size_t ThreadPool::GetTaskCount(Thread* self) { |
Mathieu Chartier | 02b6a78 | 2012-10-26 13:51:26 -0700 | [diff] [blame] | 231 | MutexLock mu(self, task_queue_lock_); |
| 232 | return tasks_.size(); |
| 233 | } |
| 234 | |
Andreas Gampe | 9e927f5 | 2016-02-29 20:49:38 -0800 | [diff] [blame] | 235 | void ThreadPool::SetPthreadPriority(int priority) { |
| 236 | for (ThreadPoolWorker* worker : threads_) { |
| 237 | worker->SetPthreadPriority(priority); |
| 238 | } |
| 239 | } |
| 240 | |
Mathieu Chartier | 0e4627e | 2012-10-23 16:13:36 -0700 | [diff] [blame] | 241 | } // namespace art |