| 954 | } |
| 955 | |
| 956 | void BTCpuFlushInstructionCacheHeavy(const void* Address, SIZE_T Size) { |
| 957 | std::scoped_lock Lock(ThreadCreationMutex); |
| 958 | InvalidationTracker->InvalidateAlignedInterval(reinterpret_cast<uint64_t>(Address), static_cast<uint64_t>(Size), false); |
| 959 | } |
| 960 | |
| 961 | void BTCpuNotifyMemoryDirty(void* Address, SIZE_T Size) { |
| 962 | std::scoped_lock Lock(ThreadCreationMutex); |
nothing calls this directly
no test coverage detected