blob: 7ecfcd1289fdbd2147695a08c01dcf88b96d07d2 [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
Calin Juravleccd56952016-12-15 17:57:38 +000083// Note that thread pool workers will set Thread#setCanCallIntoJava to false.
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070084class ThreadPool {
85 public:
86 // Returns the number of threads in the thread pool.
87 size_t GetThreadCount() const {
88 return threads_.size();
89 }
90
Nicolas Geoffray340dafa2016-11-18 16:03:10 +000091 const std::vector<ThreadPoolWorker*>& GetWorkers() const {
92 return threads_;
93 }
94
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070095 // Broadcast to the workers and tell them to empty out the work queue.
Mathieu Chartier90443472015-07-16 20:32:27 -070096 void StartWorkers(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070097
98 // Do not allow workers to grab any new tasks.
Mathieu Chartier90443472015-07-16 20:32:27 -070099 void StopWorkers(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700100
101 // Add a new task, the first available started worker will process it. Does not delete the task
102 // after running it, it is the caller's responsibility.
Mathieu Chartier90443472015-07-16 20:32:27 -0700103 void AddTask(Thread* self, Task* task) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700104
Nicolas Geoffray629e9352015-11-04 17:22:16 +0000105 // Remove all tasks in the queue.
106 void RemoveAllTasks(Thread* self) REQUIRES(!task_queue_lock_);
107
Roland Levillain3887c462015-08-12 18:15:42 +0100108 ThreadPool(const char* name, size_t num_threads);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700109 virtual ~ThreadPool();
110
Andreas Gampe6f3a70f2016-11-16 13:58:05 -0800111 // Wait for all tasks currently on queue to get completed. If the pool has been stopped, only
112 // wait till all already running tasks are done.
Mathieu Chartier90443472015-07-16 20:32:27 -0700113 void Wait(Thread* self, bool do_work, bool may_hold_locks) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700114
Mathieu Chartier90443472015-07-16 20:32:27 -0700115 size_t GetTaskCount(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700116
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700117 // Returns the total amount of workers waited for tasks.
118 uint64_t GetWaitTime() const {
119 return total_wait_time_;
120 }
121
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700122 // Provides a way to bound the maximum number of worker threads, threads must be less the the
123 // thread count of the thread pool.
Mathieu Chartier90443472015-07-16 20:32:27 -0700124 void SetMaxActiveWorkers(size_t threads) REQUIRES(!task_queue_lock_);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700125
Andreas Gampee701f082016-02-29 20:49:38 -0800126 // Set the "nice" priorty for threads in the pool.
127 void SetPthreadPriority(int priority);
128
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700129 protected:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700130 // get a task to run, blocks if there are no tasks left
Mathieu Chartier90443472015-07-16 20:32:27 -0700131 virtual Task* GetTask(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700132
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700133 // Try to get a task, returning null if there is none available.
Mathieu Chartier90443472015-07-16 20:32:27 -0700134 Task* TryGetTask(Thread* self) REQUIRES(!task_queue_lock_);
135 Task* TryGetTaskLocked() REQUIRES(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700136
137 // Are we shutting down?
Mathieu Chartier90443472015-07-16 20:32:27 -0700138 bool IsShuttingDown() const REQUIRES(task_queue_lock_) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700139 return shutting_down_;
140 }
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700141
Andreas Gampe6f3a70f2016-11-16 13:58:05 -0800142 bool HasOutstandingTasks() const REQUIRES(task_queue_lock_) {
143 return started_ && !tasks_.empty();
144 }
145
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800146 const std::string name_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700147 Mutex task_queue_lock_;
148 ConditionVariable task_queue_condition_ GUARDED_BY(task_queue_lock_);
149 ConditionVariable completion_condition_ GUARDED_BY(task_queue_lock_);
150 volatile bool started_ GUARDED_BY(task_queue_lock_);
151 volatile bool shutting_down_ GUARDED_BY(task_queue_lock_);
152 // How many worker threads are waiting on the condition.
153 volatile size_t waiting_count_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700154 std::deque<Task*> tasks_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700155 // TODO: make this immutable/const?
156 std::vector<ThreadPoolWorker*> threads_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700157 // Work balance detection.
158 uint64_t start_time_ GUARDED_BY(task_queue_lock_);
159 uint64_t total_wait_time_;
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800160 Barrier creation_barier_;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700161 size_t max_active_workers_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700162
Mathieu Chartier02e25112013-08-14 16:14:24 -0700163 private:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700164 friend class ThreadPoolWorker;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700165 friend class WorkStealingWorker;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700166 DISALLOW_COPY_AND_ASSIGN(ThreadPool);
167};
168
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700169} // namespace art
170
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700171#endif // ART_RUNTIME_THREAD_POOL_H_