1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <err.h>
#include <errno.h>
#include <pthread.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <unistd.h>
#include <new>
#include "Alloc.h"
#include "Pointers.h"
#include "Thread.h"
#include "Threads.h"
void* ThreadRunner(void* data) {
Thread* thread = reinterpret_cast<Thread*>(data);
while (true) {
thread->WaitForPending();
const AllocEntry& entry = thread->GetAllocEntry();
thread->AddTimeNsecs(AllocExecute(entry, thread->pointers()));
bool thread_done = entry.type == THREAD_DONE;
thread->ClearPending();
if (thread_done) {
break;
}
}
return nullptr;
}
Threads::Threads(Pointers* pointers, size_t max_threads)
: pointers_(pointers), max_threads_(max_threads) {
size_t pagesize = getpagesize();
data_size_ = (max_threads_ * sizeof(Thread) + pagesize - 1) & ~(pagesize - 1);
max_threads_ = data_size_ / sizeof(Thread);
void* memory = mmap(nullptr, data_size_, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
if (memory == MAP_FAILED) {
err(1, "Failed to map in memory for Threads: map size %zu, max threads %zu\n",
data_size_, max_threads_);
}
threads_ = new (memory) Thread[max_threads_];
}
Threads::~Threads() {
if (threads_) {
munmap(threads_, data_size_);
threads_ = nullptr;
data_size_ = 0;
}
}
Thread* Threads::CreateThread(pid_t tid) {
if (num_threads_ == max_threads_) {
err(1, "Too many threads created, current max %zu.\n", num_threads_);
}
Thread* thread = FindEmptyEntry(tid);
if (thread == nullptr) {
err(1, "No empty entries found, current max %zu, num threads %zu\n",
max_threads_, num_threads_);
}
thread->tid_ = tid;
thread->pointers_ = pointers_;
thread->total_time_nsecs_ = 0;
if ((errno = pthread_create(&thread->thread_id_, nullptr, ThreadRunner, thread)) != 0) {
err(1, "Failed to create thread %d: %s\n", tid, strerror(errno));
}
num_threads_++;
return thread;
}
Thread* Threads::FindThread(pid_t tid) {
size_t index = GetHashEntry(tid);
for (size_t entries = num_threads_; entries != 0; ) {
pid_t cur_tid = threads_[index].tid_;
if (cur_tid == tid) {
return threads_ + index;
}
if (cur_tid != 0) {
entries--;
}
if (++index == max_threads_) {
index = 0;
}
}
return nullptr;
}
void Threads::WaitForAllToQuiesce() {
for (size_t i = 0, threads = 0; threads < num_threads_; i++) {
pid_t cur_tid = threads_[i].tid_;
if (cur_tid != 0) {
threads++;
threads_[i].WaitForReady();
}
}
}
size_t Threads::GetHashEntry(pid_t tid) {
return tid % max_threads_;
}
Thread* Threads::FindEmptyEntry(pid_t tid) {
size_t index = GetHashEntry(tid);
for (size_t entries = 0; entries < max_threads_; entries++) {
if (threads_[index].tid_ == 0) {
return threads_ + index;
}
if (++index == max_threads_) {
index = 0;
}
}
return nullptr;
}
void Threads::Finish(Thread* thread) {
int ret = pthread_join(thread->thread_id_, nullptr);
if (ret != 0) {
fprintf(stderr, "pthread_join failed: %s\n", strerror(ret));
exit(1);
}
total_time_nsecs_ += thread->total_time_nsecs_;
thread->tid_ = 0;
num_threads_--;
}
void Threads::FinishAll() {
AllocEntry thread_done = {.type = THREAD_DONE};
for (size_t i = 0; i < max_threads_; i++) {
if (threads_[i].tid_ != 0) {
threads_[i].SetAllocEntry(&thread_done);
threads_[i].SetPending();
Finish(threads_ + i);
}
}
}
|