| 949 | } |
| 950 | |
| 951 | void BTCpuFlushInstructionCache2(const void* Address, SIZE_T Size) { |
| 952 | std::scoped_lock Lock(ThreadCreationMutex); |
| 953 | InvalidationTracker->InvalidateAlignedInterval(reinterpret_cast<uint64_t>(Address), static_cast<uint64_t>(Size), false); |
| 954 | } |
| 955 | |
| 956 | void BTCpuFlushInstructionCacheHeavy(const void* Address, SIZE_T Size) { |
| 957 | std::scoped_lock Lock(ThreadCreationMutex); |
nothing calls this directly
no test coverage detected