MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / FXCH

Method FXCH

FEXCore/Source/Interface/Core/OpcodeDispatcher/X87.cpp:616–623  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

614}
615
616void 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
625void OpDispatchBuilder::X87FYL2X(OpcodeArgs, bool IsFYL2XP1) {
626 if (IsFYL2XP1) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected