| 6294 | } |
| 6295 | |
| 6296 | bool DecodedOp::isIndirectJump() { |
| 6297 | return this->inst == JmpE16 || this->inst == JmpE32 || this->inst == JmpR16 || this->inst == JmpR32; |
| 6298 | } |
| 6299 | |
| 6300 | bool DecodedOp::isFpuOp() { |
| 6301 | return (this->inst >= FADD_ST0_STj && this->inst <= FISTP_QWORD_INTEGER) || this->inst == Fxsave || this->inst == Fxrstor; |
no outgoing calls
no test coverage detected