| 924 | } |
| 925 | |
| 926 | void BTCpu64FlushInstructionCache(const void* Address, SIZE_T Size) { |
| 927 | if (!InvalidationTracker || !GetCPUArea().ThreadState()) { |
| 928 | return; |
| 929 | } |
| 930 | |
| 931 | std::scoped_lock Lock(ThreadCreationMutex); |
| 932 | InvalidationTracker->InvalidateAlignedInterval(reinterpret_cast<uint64_t>(Address), static_cast<uint64_t>(Size), false); |
| 933 | } |
| 934 | |
| 935 | void BTCpu64NotifyMemoryDirty(void* Address, SIZE_T Size) { |
| 936 | if (!InvalidationTracker || !GetCPUArea().ThreadState()) { |
nothing calls this directly
no test coverage detected