summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-04 08:17:44 +0200
committerGitHub <noreply@github.com>2018-08-04 08:17:44 +0200
commitb0129489ea99dbc383ac946ce79c0e8f94343c88 (patch)
tree556306b92701b703071ae89e9f3ac361b16d61c4 /src/core
parentMerge pull request #914 from lioncash/codeset (diff)
parentmemory: Remove unused GetSpecialHandlers() function (diff)
downloadyuzu-b0129489ea99dbc383ac946ce79c0e8f94343c88.tar
yuzu-b0129489ea99dbc383ac946ce79c0e8f94343c88.tar.gz
yuzu-b0129489ea99dbc383ac946ce79c0e8f94343c88.tar.bz2
yuzu-b0129489ea99dbc383ac946ce79c0e8f94343c88.tar.lz
yuzu-b0129489ea99dbc383ac946ce79c0e8f94343c88.tar.xz
yuzu-b0129489ea99dbc383ac946ce79c0e8f94343c88.tar.zst
yuzu-b0129489ea99dbc383ac946ce79c0e8f94343c88.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/memory.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp
index 0d41b2527..4b3bb7b31 100644
--- a/src/core/memory.cpp
+++ b/src/core/memory.cpp
@@ -99,22 +99,6 @@ void RemoveDebugHook(PageTable& page_table, VAddr base, u64 size, MemoryHookPoin
}
/**
- * This function should only be called for virtual addreses with attribute `PageType::Special`.
- */
-static std::set<MemoryHookPointer> GetSpecialHandlers(const PageTable& page_table, VAddr vaddr,
- u64 size) {
- std::set<MemoryHookPointer> result;
- auto interval = boost::icl::discrete_interval<VAddr>::closed(vaddr, vaddr + size - 1);
- auto interval_list = page_table.special_regions.equal_range(interval);
- for (auto it = interval_list.first; it != interval_list.second; ++it) {
- for (const auto& region : it->second) {
- result.insert(region.handler);
- }
- }
- return result;
-}
-
-/**
* Gets a pointer to the exact memory at the virtual address (i.e. not page aligned)
* using a VMA from the current process
*/