blob: 6cd4ad3cdc0065d9b801276e8003cfcfacb411dd [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);
Mathieu Chartier90443472015-07-16 20:32:27 -070064 static void* Callback(void* arg) REQUIRES(!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.
Mathieu Chartier90443472015-07-16 20:32:27 -070085 void StartWorkers(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070086
87 // Do not allow workers to grab any new tasks.
Mathieu Chartier90443472015-07-16 20:32:27 -070088 void StopWorkers(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070089
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 Chartier90443472015-07-16 20:32:27 -070092 void AddTask(Thread* self, Task* task) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070093
Nicolas Geoffray629e9352015-11-04 17:22:16 +000094 // Remove all tasks in the queue.
95 void RemoveAllTasks(Thread* self) REQUIRES(!task_queue_lock_);
96
Roland Levillain3887c462015-08-12 18:15:42 +010097 ThreadPool(const char* name, size_t num_threads);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070098 virtual ~ThreadPool();
99
100 // Wait for all tasks currently on queue to get completed.
Mathieu Chartier90443472015-07-16 20:32:27 -0700101 void Wait(Thread* self, bool do_work, bool may_hold_locks) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700102
Mathieu Chartier90443472015-07-16 20:32:27 -0700103 size_t GetTaskCount(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700104
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700105 // Returns the total amount of workers waited for tasks.
106 uint64_t GetWaitTime() const {
107 return total_wait_time_;
108 }
109
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700110 // Provides a way to bound the maximum number of worker threads, threads must be less the the
111 // thread count of the thread pool.
Mathieu Chartier90443472015-07-16 20:32:27 -0700112 void SetMaxActiveWorkers(size_t threads) REQUIRES(!task_queue_lock_);
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700113
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700114 protected:
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700115 // get a task to run, blocks if there are no tasks left
Mathieu Chartier90443472015-07-16 20:32:27 -0700116 virtual Task* GetTask(Thread* self) REQUIRES(!task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700117
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700118 // Try to get a task, returning null if there is none available.
Mathieu Chartier90443472015-07-16 20:32:27 -0700119 Task* TryGetTask(Thread* self) REQUIRES(!task_queue_lock_);
120 Task* TryGetTaskLocked() REQUIRES(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700121
122 // Are we shutting down?
Mathieu Chartier90443472015-07-16 20:32:27 -0700123 bool IsShuttingDown() const REQUIRES(task_queue_lock_) {
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700124 return shutting_down_;
125 }
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700126
Mathieu Chartierbcd5e9d2013-11-13 14:33:28 -0800127 const std::string name_;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700128 Mutex task_queue_lock_;
129 ConditionVariable task_queue_condition_ GUARDED_BY(task_queue_lock_);
130 ConditionVariable completion_condition_ GUARDED_BY(task_queue_lock_);
131 volatile bool started_ GUARDED_BY(task_queue_lock_);
132 volatile bool shutting_down_ GUARDED_BY(task_queue_lock_);
133 // How many worker threads are waiting on the condition.
134 volatile size_t waiting_count_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700135 std::deque<Task*> tasks_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700136 // TODO: make this immutable/const?
137 std::vector<ThreadPoolWorker*> threads_;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700138 // Work balance detection.
139 uint64_t start_time_ GUARDED_BY(task_queue_lock_);
140 uint64_t total_wait_time_;
Mathieu Chartier35883cc2012-11-13 14:08:12 -0800141 Barrier creation_barier_;
Mathieu Chartier2775ee42013-08-20 17:43:47 -0700142 size_t max_active_workers_ GUARDED_BY(task_queue_lock_);
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700143
Mathieu Chartier02e25112013-08-14 16:14:24 -0700144 private:
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700145 friend class ThreadPoolWorker;
Mathieu Chartier02b6a782012-10-26 13:51:26 -0700146 friend class WorkStealingWorker;
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700147 DISALLOW_COPY_AND_ASSIGN(ThreadPool);
148};
149
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700150} // namespace art
151
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700152#endif // ART_RUNTIME_THREAD_POOL_H_