MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / BTCpu64NotifyMemoryDirty

Function BTCpu64NotifyMemoryDirty

Source/Windows/ARM64EC/Module.cpp:935–942  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

933}
934
935void BTCpu64NotifyMemoryDirty(void* Address, SIZE_T Size) {
936 if (!InvalidationTracker || !GetCPUArea().ThreadState()) {
937 return;
938 }
939
940 std::scoped_lock Lock(ThreadCreationMutex);
941 InvalidationTracker->InvalidateAlignedInterval(reinterpret_cast<uint64_t>(Address), static_cast<uint64_t>(Size), false);
942}
943
944void BTCpu64NotifyReadFile(HANDLE Handle, void* Address, SIZE_T Size, BOOL After, NTSTATUS Status) {}
945

Callers

nothing calls this directly

Calls 2

GetCPUAreaFunction · 0.85

Tested by

no test coverage detected