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

Method dealloc

source/emulation/cpu/decoder.cpp:6244–6254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6242}
6243
6244void DecodedOp::dealloc() {
6245 if (this == doneOp) {
6246 return;
6247 }
6248#ifdef _DEBUG
6249 if (this->inst == InstructionCount) {
6250 kpanic("tried to dealloc a DecodedOp that was already deallocated");
6251 }
6252#endif
6253 freeOps.put(this);
6254}
6255
6256bool DecodedOp::isStringOp() {
6257 if (this->inst == Lodsb || this->inst == Lodsw || this->inst == Lodsd ||

Callers 3

~DecodedOpPageCacheMethod · 0.80
clearMethod · 0.80
clearPendingDeallocsMethod · 0.80

Calls 2

kpanicFunction · 0.85
putMethod · 0.45

Tested by

no test coverage detected