|
|
@ -17,21 +17,21 @@ ResourcePool::~ResourcePool() = default;
|
|
|
|
size_t ResourcePool::CommitResource() {
|
|
|
|
size_t ResourcePool::CommitResource() {
|
|
|
|
// Refresh semaphore to query updated results
|
|
|
|
// Refresh semaphore to query updated results
|
|
|
|
master_semaphore.Refresh();
|
|
|
|
master_semaphore.Refresh();
|
|
|
|
|
|
|
|
const u64 gpu_tick = master_semaphore.KnownGpuTick();
|
|
|
|
const auto search = [this](size_t begin, size_t end) -> std::optional<size_t> {
|
|
|
|
const auto search = [this, gpu_tick](size_t begin, size_t end) -> std::optional<size_t> {
|
|
|
|
for (size_t iterator = begin; iterator < end; ++iterator) {
|
|
|
|
for (size_t iterator = begin; iterator < end; ++iterator) {
|
|
|
|
if (master_semaphore.IsFree(ticks[iterator])) {
|
|
|
|
if (gpu_tick >= ticks[iterator]) {
|
|
|
|
ticks[iterator] = master_semaphore.CurrentTick();
|
|
|
|
ticks[iterator] = master_semaphore.CurrentTick();
|
|
|
|
return iterator;
|
|
|
|
return iterator;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
return std::nullopt;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
// Try to find a free resource from the hinted position to the end.
|
|
|
|
// Try to find a free resource from the hinted position to the end.
|
|
|
|
auto found = search(free_iterator, ticks.size());
|
|
|
|
std::optional<size_t> found = search(hint_iterator, ticks.size());
|
|
|
|
if (!found) {
|
|
|
|
if (!found) {
|
|
|
|
// Search from beginning to the hinted position.
|
|
|
|
// Search from beginning to the hinted position.
|
|
|
|
found = search(0, free_iterator);
|
|
|
|
found = search(0, hint_iterator);
|
|
|
|
if (!found) {
|
|
|
|
if (!found) {
|
|
|
|
// Both searches failed, the pool is full; handle it.
|
|
|
|
// Both searches failed, the pool is full; handle it.
|
|
|
|
const size_t free_resource = ManageOverflow();
|
|
|
|
const size_t free_resource = ManageOverflow();
|
|
|
@ -41,7 +41,7 @@ size_t ResourcePool::CommitResource() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Free iterator is hinted to the resource after the one that's been commited.
|
|
|
|
// Free iterator is hinted to the resource after the one that's been commited.
|
|
|
|
free_iterator = (*found + 1) % ticks.size();
|
|
|
|
hint_iterator = (*found + 1) % ticks.size();
|
|
|
|
return *found;
|
|
|
|
return *found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|