| 915 | } |
| 916 | |
| 917 | void FlushInstructionCacheHeavy(const void* Address, SIZE_T Size) { |
| 918 | if (!InvalidationTracker || !GetCPUArea().ThreadState()) { |
| 919 | return; |
| 920 | } |
| 921 | |
| 922 | std::scoped_lock Lock(ThreadCreationMutex); |
| 923 | InvalidationTracker->InvalidateAlignedInterval(reinterpret_cast<uint64_t>(Address), static_cast<uint64_t>(Size), false); |
| 924 | } |
| 925 | |
| 926 | void BTCpu64FlushInstructionCache(const void* Address, SIZE_T Size) { |
| 927 | if (!InvalidationTracker || !GetCPUArea().ThreadState()) { |
nothing calls this directly
no test coverage detected