MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / clearPendingDeallocs

Method clearPendingDeallocs

source/emulation/softmmu/codePageData.cpp:178–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178void DecodedOpCache::clearPendingDeallocs(U32 threadId) {
179 if (pendingDeallocs.count(threadId)) {
180 for (auto& op : pendingDeallocs[threadId]) {
181 op->dealloc();
182 }
183 pendingDeallocs.erase(threadId);
184 }
185}
186
187void DecodedOpCache::iterateOps(U32 address, U32 len, OpCacheCallback callback, void* pData) {
188 U32 previousOpAddress = 0;

Callers

nothing calls this directly

Calls 3

deallocMethod · 0.80
countMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected