| 161 | } |
| 162 | |
| 163 | DecodedOp* NormalCPU::decodeOneOp(U32 eip) { |
| 164 | U32 opCount = 0; |
| 165 | U32 eipLen; |
| 166 | DecodedOp* result = decodeBlock(this, eip, this->isBig(), opCount, eipLen); |
| 167 | result->pfn = getFunctionForOp(result); |
| 168 | return result; |
| 169 | } |
| 170 | |
| 171 | DecodedOp* NormalCPU::getOp(U32 startIp, U32 jumpTargetFlags) { |
| 172 | if (!this->thread->process) // exit was called, don't need to pre-cache the next block |
nothing calls this directly
no test coverage detected