blob: 79b57afedd19cc6d93a6c0f6e46c9b41889a364e [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
Mathieu Chartier02b6a782012-10-26 13:51:26 -070062 protected:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070063 ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
64 static void* Callback(void* arg) LOCKS_EXCLUDED(Locks::mutator_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -070065 virtual void Run();
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070066
Ian Rogersd914eb22013-04-18 16:11:15 -070067 ThreadPool* const thread_pool_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070068 const std::string name_;
Ian Rogers700a4022014-05-19 16:49:03 -070069 std::unique_ptr<MemMap> stack_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070070 pthread_t pthread_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070071
Mathieu Chartier02e25112013-08-14 16:14:24 -070072 private:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070073 friend class ThreadPool;
74 DISALLOW_COPY_AND_ASSIGN(ThreadPoolWorker);
75};
76
77class ThreadPool {
78 public:
79 // Returns the number of threads in the thread pool.
80 size_t GetThreadCount() const {
81 return threads_.size();
82 }
83
84 // Broadcast to the workers and tell them to empty out the work queue.
85 void StartWorkers(Thread* self);
86
87 // Do not allow workers to grab any new tasks.
88 void StopWorkers(Thread* self);
89
90 // Add a new task, the first available started worker will process it. Does not delete the task
91 // after running it, it is the caller's responsibility.
Mathieu Chartier02b6a782012-10-26 13:51:26 -070092 void AddTask(Thread* self, Task* task);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070093
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -080094 explicit ThreadPool(const char* name, size_t num_threads);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070095 virtual ~ThreadPool();
96
97 // Wait for all tasks currently on queue to get completed.
Ian Rogers1d54e732013-05-02 21:10:01 -070098 void Wait(Thread* self, bool do_work, bool may_hold_locks);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070099
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700100 size_t GetTaskCount(Thread* self);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700101
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700102 // Returns the total amount of workers waited for tasks.
103 uint64_t GetWaitTime() const {
104 return total_wait_time_;
105 }
106
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700107 // Provides a way to bound the maximum number of worker threads, threads must be less the the
108 // thread count of the thread pool.
109 void SetMaxActiveWorkers(size_t threads);
110
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700111 protected:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700112 // get a task to run, blocks if there are no tasks left
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700113 virtual Task* GetTask(Thread* self);
114
115 // Try to get a task, returning NULL if there is none available.
116 Task* TryGetTask(Thread* self);
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700117 Task* TryGetTaskLocked() EXCLUSIVE_LOCKS_REQUIRED(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700118
119 // Are we shutting down?
120 bool IsShuttingDown() const EXCLUSIVE_LOCKS_REQUIRED(task_queue_lock_) {
121 return shutting_down_;
122 }
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700123
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800124 const std::string name_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700125 Mutex task_queue_lock_;
126 ConditionVariable task_queue_condition_ GUARDED_BY(task_queue_lock_);
127 ConditionVariable completion_condition_ GUARDED_BY(task_queue_lock_);
128 volatile bool started_ GUARDED_BY(task_queue_lock_);
129 volatile bool shutting_down_ GUARDED_BY(task_queue_lock_);
130 // How many worker threads are waiting on the condition.
131 volatile size_t waiting_count_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700132 std::deque<Task*> tasks_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700133 // TODO: make this immutable/const?
134 std::vector<ThreadPoolWorker*> threads_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700135 // Work balance detection.
136 uint64_t start_time_ GUARDED_BY(task_queue_lock_);
137 uint64_t total_wait_time_;
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800138 Barrier creation_barier_;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700139 size_t max_active_workers_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700140
Mathieu Chartier02e25112013-08-14 16:14:24 -0700141 private:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700142 friend class ThreadPoolWorker;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700143 friend class WorkStealingWorker;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700144 DISALLOW_COPY_AND_ASSIGN(ThreadPool);
145};
146
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700147class WorkStealingTask : public Task {
148 public:
Brian Carlstrom0cd7ec22013-07-17 23:40:20 -0700149 WorkStealingTask() : ref_count_(0) {}
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700150
151 size_t GetRefCount() const {
152 return ref_count_;
153 }
154
155 virtual void StealFrom(Thread* self, WorkStealingTask* source) = 0;
156
157 private:
158 // How many people are referencing this task.
159 size_t ref_count_;
160
161 friend class WorkStealingWorker;
162};
163
164class WorkStealingWorker : public ThreadPoolWorker {
165 public:
166 virtual ~WorkStealingWorker();
167
168 bool IsRunningTask() const {
169 return task_ != NULL;
170 }
171
172 protected:
173 WorkStealingTask* task_;
174
175 WorkStealingWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
176 virtual void Run();
177
Mathieu Chartier02e25112013-08-14 16:14:24 -0700178 private:
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700179 friend class WorkStealingThreadPool;
180 DISALLOW_COPY_AND_ASSIGN(WorkStealingWorker);
181};
182
183class WorkStealingThreadPool : public ThreadPool {
184 public:
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800185 explicit WorkStealingThreadPool(const char* name, size_t num_threads);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700186 virtual ~WorkStealingThreadPool();
187
188 private:
189 Mutex work_steal_lock_;
190 // Which thread we are stealing from (round robin).
191 size_t steal_index_;
192
193 // Find a task to steal from
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700194 WorkStealingTask* FindTaskToStealFrom() EXCLUSIVE_LOCKS_REQUIRED(work_steal_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700195
196 friend class WorkStealingWorker;
197};
198
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700199} // namespace art
200
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700201#endif // ART_RUNTIME_THREAD_POOL_H_