| 614 | } |
| 615 | |
| 616 | void OpDispatchBuilder::FXCH(OpcodeArgs) { |
| 617 | uint8_t Offset = Op->OP & 7; |
| 618 | // fxch st0, st0 is for us essentially a nop |
| 619 | if (Offset != 0) { |
| 620 | _F80StackXchange(Offset); |
| 621 | } |
| 622 | SetRFLAG<FEXCore::X86State::X87FLAG_C1_LOC>(Constant(0)); |
| 623 | } |
| 624 | |
| 625 | void OpDispatchBuilder::X87FYL2X(OpcodeArgs, bool IsFYL2XP1) { |
| 626 | if (IsFYL2XP1) { |
nothing calls this directly
no outgoing calls
no test coverage detected