| 2666 | } |
| 2667 | |
| 2668 | void OpDispatchBuilder::FXRStoreOp(OpcodeArgs) { |
| 2669 | Ref Mem = MakeSegmentAddress(Op, Op->Src[0]); |
| 2670 | |
| 2671 | RestoreX87State(Mem); |
| 2672 | RestoreSSEState(Mem); |
| 2673 | |
| 2674 | Ref MXCSR = _LoadMem(GPRClass, OpSize::i32Bit, Mem, Constant(24), OpSize::i32Bit, MEM_OFFSET_SXTX, 1); |
| 2675 | RestoreMXCSRState(MXCSR); |
| 2676 | } |
| 2677 | |
| 2678 | void OpDispatchBuilder::XRstorOpImpl(OpcodeArgs) { |
| 2679 | const auto OpSize = GetGPROpSize(); |
nothing calls this directly
no outgoing calls
no test coverage detected