blob: eaadfe0215e19e90154230b7a43c1ecef8ccd1d6 [file] [log] [blame]
Mathieu Chartier0e4627e2012-10-23 16:13:36 -07001/*
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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_THREAD_POOL_H_
18#define ART_RUNTIME_THREAD_POOL_H_
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070019
20#include <deque>
21#include <vector>
22
Mathieu Chartier35883cc2012-11-13 14:08:12 -080023#include "barrier.h"
Elliott Hughes76b61672012-12-12 17:47:30 -080024#include "base/mutex.h"
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -080025#include "mem_map.h"
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070026
27namespace art {
28
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070029class ThreadPool;
30
Ian Rogers14317f02014-12-03 10:48:05 -080031class Closure {
32 public:
33 virtual ~Closure() { }
34 virtual void Run(Thread* self) = 0;
35};
36
Mathieu Chartier02b6a782012-10-26 13:51:26 -070037class Task : public Closure {
Brian Carlstrom02c8cc62013-07-18 15:54:44 -070038 public:
Mathieu Chartiera5eae692014-12-17 17:56:03 -080039 // Called after Closure::Run has been called.
Mathieu Chartier02b6a782012-10-26 13:51:26 -070040 virtual void Finalize() { }
41};
42
Mathieu Chartiera5eae692014-12-17 17:56:03 -080043class SelfDeletingTask : public Task {
44 public:
45 virtual ~SelfDeletingTask() { }
46 virtual void Finalize() {
47 delete this;
48 }
49};
50
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070051class ThreadPoolWorker {
52 public:
53 static const size_t kDefaultStackSize = 1 * MB;
54
55 size_t GetStackSize() const {
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -080056 DCHECK(stack_.get() != nullptr);
57 return stack_->Size();
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070058 }
59
60 virtual ~ThreadPoolWorker();
61
Andreas Gampee701f082016-02-29 20:49:38 -080062 // Set the "nice" priorty for this worker.
63 void SetPthreadPriority(int priority);
64
Nicolas Geoffray340dafa2016-11-18 16:03:10 +000065 Thread* GetThread() const { return thread_; }
66
Mathieu Chartier02b6a782012-10-26 13:51:26 -070067 protected:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070068 ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
Mathieu Chartier90443472015-07-16 20:32:27 -070069 static void* Callback(void* arg) REQUIRES(!Locks::mutator_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -070070 virtual void Run();
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070071
Ian Rogersd914eb22013-04-18 16:11:15 -070072 ThreadPool* const thread_pool_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070073 const std::string name_;
Ian Rogers700a4022014-05-19 16:49:03 -070074 std::unique_ptr<MemMap> stack_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070075 pthread_t pthread_;
Nicolas Geoffray340dafa2016-11-18 16:03:10 +000076 Thread* thread_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070077
Mathieu Chartier02e25112013-08-14 16:14:24 -070078 private:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070079 friend class ThreadPool;
80 DISALLOW_COPY_AND_ASSIGN(ThreadPoolWorker);
81};
82
83class ThreadPool {
84 public:
85 // Returns the number of threads in the thread pool.
86 size_t GetThreadCount() const {
87 return threads_.size();
88 }
89
Nicolas Geoffray340dafa2016-11-18 16:03:10 +000090 const std::vector<ThreadPoolWorker*>& GetWorkers() const {
91 return threads_;
92 }
93
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070094 // Broadcast to the workers and tell them to empty out the work queue.
Mathieu Chartier90443472015-07-16 20:32:27 -070095 void StartWorkers(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070096
97 // Do not allow workers to grab any new tasks.
Mathieu Chartier90443472015-07-16 20:32:27 -070098 void StopWorkers(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070099
100 // Add a new task, the first available started worker will process it. Does not delete the task
101 // after running it, it is the caller's responsibility.
Mathieu Chartier90443472015-07-16 20:32:27 -0700102 void AddTask(Thread* self, Task* task) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700103
Nicolas Geoffray629e9352015-11-04 17:22:16 +0000104 // Remove all tasks in the queue.
105 void RemoveAllTasks(Thread* self) REQUIRES(!task_queue_lock_);
106
Roland Levillain3887c462015-08-12 18:15:42 +0100107 ThreadPool(const char* name, size_t num_threads);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700108 virtual ~ThreadPool();
109
Andreas Gampe6f3a70f2016-11-16 13:58:05 -0800110 // Wait for all tasks currently on queue to get completed. If the pool has been stopped, only
111 // wait till all already running tasks are done.
Mathieu Chartier90443472015-07-16 20:32:27 -0700112 void Wait(Thread* self, bool do_work, bool may_hold_locks) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700113
Mathieu Chartier90443472015-07-16 20:32:27 -0700114 size_t GetTaskCount(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700115
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700116 // Returns the total amount of workers waited for tasks.
117 uint64_t GetWaitTime() const {
118 return total_wait_time_;
119 }
120
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700121 // Provides a way to bound the maximum number of worker threads, threads must be less the the
122 // thread count of the thread pool.
Mathieu Chartier90443472015-07-16 20:32:27 -0700123 void SetMaxActiveWorkers(size_t threads) REQUIRES(!task_queue_lock_);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700124
Andreas Gampee701f082016-02-29 20:49:38 -0800125 // Set the "nice" priorty for threads in the pool.
126 void SetPthreadPriority(int priority);
127
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700128 protected:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700129 // get a task to run, blocks if there are no tasks left
Mathieu Chartier90443472015-07-16 20:32:27 -0700130 virtual Task* GetTask(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700131
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700132 // Try to get a task, returning null if there is none available.
Mathieu Chartier90443472015-07-16 20:32:27 -0700133 Task* TryGetTask(Thread* self) REQUIRES(!task_queue_lock_);
134 Task* TryGetTaskLocked() REQUIRES(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700135
136 // Are we shutting down?
Mathieu Chartier90443472015-07-16 20:32:27 -0700137 bool IsShuttingDown() const REQUIRES(task_queue_lock_) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700138 return shutting_down_;
139 }
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700140
Andreas Gampe6f3a70f2016-11-16 13:58:05 -0800141 bool HasOutstandingTasks() const REQUIRES(task_queue_lock_) {
142 return started_ && !tasks_.empty();
143 }
144
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800145 const std::string name_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700146 Mutex task_queue_lock_;
147 ConditionVariable task_queue_condition_ GUARDED_BY(task_queue_lock_);
148 ConditionVariable completion_condition_ GUARDED_BY(task_queue_lock_);
149 volatile bool started_ GUARDED_BY(task_queue_lock_);
150 volatile bool shutting_down_ GUARDED_BY(task_queue_lock_);
151 // How many worker threads are waiting on the condition.
152 volatile size_t waiting_count_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700153 std::deque<Task*> tasks_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700154 // TODO: make this immutable/const?
155 std::vector<ThreadPoolWorker*> threads_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700156 // Work balance detection.
157 uint64_t start_time_ GUARDED_BY(task_queue_lock_);
158 uint64_t total_wait_time_;
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800159 Barrier creation_barier_;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700160 size_t max_active_workers_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700161
Mathieu Chartier02e25112013-08-14 16:14:24 -0700162 private:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700163 friend class ThreadPoolWorker;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700164 friend class WorkStealingWorker;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700165 DISALLOW_COPY_AND_ASSIGN(ThreadPool);
166};
167
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700168} // namespace art
169
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700170#endif // ART_RUNTIME_THREAD_POOL_H_