mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 20:58:01 -05:00
freezer: Move entry finding to its own function
Cleans up the callsites in other functions.
This commit is contained in:
@ -113,19 +113,15 @@ void Freezer::Unfreeze(VAddr address) {
|
||||
bool Freezer::IsFrozen(VAddr address) const {
|
||||
std::lock_guard lock{entries_mutex};
|
||||
|
||||
return std::find_if(entries.begin(), entries.end(), [address](const Entry& entry) {
|
||||
return entry.address == address;
|
||||
}) != entries.end();
|
||||
return FindEntry(address) != entries.cend();
|
||||
}
|
||||
|
||||
void Freezer::SetFrozenValue(VAddr address, u64 value) {
|
||||
std::lock_guard lock{entries_mutex};
|
||||
|
||||
const auto iter = std::find_if(entries.begin(), entries.end(), [address](const Entry& entry) {
|
||||
return entry.address == address;
|
||||
});
|
||||
const auto iter = FindEntry(address);
|
||||
|
||||
if (iter == entries.end()) {
|
||||
if (iter == entries.cend()) {
|
||||
LOG_ERROR(Common_Memory,
|
||||
"Tried to set freeze value for address={:016X} that is not frozen!", address);
|
||||
return;
|
||||
@ -140,11 +136,9 @@ void Freezer::SetFrozenValue(VAddr address, u64 value) {
|
||||
std::optional<Freezer::Entry> Freezer::GetEntry(VAddr address) const {
|
||||
std::lock_guard lock{entries_mutex};
|
||||
|
||||
const auto iter = std::find_if(entries.begin(), entries.end(), [address](const Entry& entry) {
|
||||
return entry.address == address;
|
||||
});
|
||||
const auto iter = FindEntry(address);
|
||||
|
||||
if (iter == entries.end()) {
|
||||
if (iter == entries.cend()) {
|
||||
return std::nullopt;
|
||||
}
|
||||
|
||||
@ -157,6 +151,16 @@ std::vector<Freezer::Entry> Freezer::GetEntries() const {
|
||||
return entries;
|
||||
}
|
||||
|
||||
Freezer::Entries::iterator Freezer::FindEntry(VAddr address) {
|
||||
return std::find_if(entries.begin(), entries.end(),
|
||||
[address](const Entry& entry) { return entry.address == address; });
|
||||
}
|
||||
|
||||
Freezer::Entries::const_iterator Freezer::FindEntry(VAddr address) const {
|
||||
return std::find_if(entries.begin(), entries.end(),
|
||||
[address](const Entry& entry) { return entry.address == address; });
|
||||
}
|
||||
|
||||
void Freezer::FrameCallback(std::uintptr_t, std::chrono::nanoseconds ns_late) {
|
||||
if (!IsActive()) {
|
||||
LOG_DEBUG(Common_Memory, "Memory freezer has been deactivated, ending callback events.");
|
||||
|
Reference in New Issue
Block a user