blob: b6c6f02db805eb59e3de814832fef3ed6ca69d51 [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
Mathieu Chartier02b6a782012-10-26 13:51:26 -070065 protected:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070066 ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name, size_t stack_size);
Mathieu Chartier90443472015-07-16 20:32:27 -070067 static void* Callback(void* arg) REQUIRES(!Locks::mutator_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -070068 virtual void Run();
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070069
Ian Rogersd914eb22013-04-18 16:11:15 -070070 ThreadPool* const thread_pool_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070071 const std::string name_;
Ian Rogers700a4022014-05-19 16:49:03 -070072 std::unique_ptr<MemMap> stack_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070073 pthread_t pthread_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070074
Mathieu Chartier02e25112013-08-14 16:14:24 -070075 private:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070076 friend class ThreadPool;
77 DISALLOW_COPY_AND_ASSIGN(ThreadPoolWorker);
78};
79
80class ThreadPool {
81 public:
82 // Returns the number of threads in the thread pool.
83 size_t GetThreadCount() const {
84 return threads_.size();
85 }
86
87 // Broadcast to the workers and tell them to empty out the work queue.
Mathieu Chartier90443472015-07-16 20:32:27 -070088 void StartWorkers(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070089
90 // Do not allow workers to grab any new tasks.
Mathieu Chartier90443472015-07-16 20:32:27 -070091 void StopWorkers(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070092
93 // Add a new task, the first available started worker will process it. Does not delete the task
94 // after running it, it is the caller's responsibility.
Mathieu Chartier90443472015-07-16 20:32:27 -070095 void AddTask(Thread* self, Task* task) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070096
Nicolas Geoffray629e9352015-11-04 17:22:16 +000097 // Remove all tasks in the queue.
98 void RemoveAllTasks(Thread* self) REQUIRES(!task_queue_lock_);
99
Roland Levillain3887c462015-08-12 18:15:42 +0100100 ThreadPool(const char* name, size_t num_threads);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700101 virtual ~ThreadPool();
102
103 // Wait for all tasks currently on queue to get completed.
Mathieu Chartier90443472015-07-16 20:32:27 -0700104 void Wait(Thread* self, bool do_work, bool may_hold_locks) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700105
Mathieu Chartier90443472015-07-16 20:32:27 -0700106 size_t GetTaskCount(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700107
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700108 // Returns the total amount of workers waited for tasks.
109 uint64_t GetWaitTime() const {
110 return total_wait_time_;
111 }
112
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700113 // Provides a way to bound the maximum number of worker threads, threads must be less the the
114 // thread count of the thread pool.
Mathieu Chartier90443472015-07-16 20:32:27 -0700115 void SetMaxActiveWorkers(size_t threads) REQUIRES(!task_queue_lock_);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700116
Andreas Gampee701f082016-02-29 20:49:38 -0800117 // Set the "nice" priorty for threads in the pool.
118 void SetPthreadPriority(int priority);
119
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700120 protected:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700121 // get a task to run, blocks if there are no tasks left
Mathieu Chartier90443472015-07-16 20:32:27 -0700122 virtual Task* GetTask(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700123
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700124 // Try to get a task, returning null if there is none available.
Mathieu Chartier90443472015-07-16 20:32:27 -0700125 Task* TryGetTask(Thread* self) REQUIRES(!task_queue_lock_);
126 Task* TryGetTaskLocked() REQUIRES(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700127
128 // Are we shutting down?
Mathieu Chartier90443472015-07-16 20:32:27 -0700129 bool IsShuttingDown() const REQUIRES(task_queue_lock_) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700130 return shutting_down_;
131 }
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700132
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800133 const std::string name_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700134 Mutex task_queue_lock_;
135 ConditionVariable task_queue_condition_ GUARDED_BY(task_queue_lock_);
136 ConditionVariable completion_condition_ GUARDED_BY(task_queue_lock_);
137 volatile bool started_ GUARDED_BY(task_queue_lock_);
138 volatile bool shutting_down_ GUARDED_BY(task_queue_lock_);
139 // How many worker threads are waiting on the condition.
140 volatile size_t waiting_count_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700141 std::deque<Task*> tasks_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700142 // TODO: make this immutable/const?
143 std::vector<ThreadPoolWorker*> threads_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700144 // Work balance detection.
145 uint64_t start_time_ GUARDED_BY(task_queue_lock_);
146 uint64_t total_wait_time_;
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800147 Barrier creation_barier_;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700148 size_t max_active_workers_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700149
Mathieu Chartier02e25112013-08-14 16:14:24 -0700150 private:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700151 friend class ThreadPoolWorker;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700152 friend class WorkStealingWorker;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700153 DISALLOW_COPY_AND_ASSIGN(ThreadPool);
154};
155
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700156} // namespace art
157
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700158#endif // ART_RUNTIME_THREAD_POOL_H_