| 73 | } |
| 74 | |
| 75 | void LookupCache::ClearThreadLocalCaches() { |
| 76 | auto lk = Shared->AcquireLock(); |
| 77 | |
| 78 | // Clear L1 and L2 by clearing the full cache. |
| 79 | FEXCore::Allocator::VirtualDontNeed(reinterpret_cast<void*>(PagePointer), TotalCacheSize, false); |
| 80 | } |
| 81 | |
| 82 | void LookupCache::ClearCache() { |
| 83 | auto lk = Shared->AcquireLock(); |
nothing calls this directly
no test coverage detected