| 6242 | } |
| 6243 | |
| 6244 | void 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 | |
| 6256 | bool DecodedOp::isStringOp() { |
| 6257 | if (this->inst == Lodsb || this->inst == Lodsw || this->inst == Lodsd || |
no test coverage detected