| 76 | } |
| 77 | |
| 78 | void OpDispatchBuilder::FBLD(OpcodeArgs) { |
| 79 | // Read from memory |
| 80 | Ref Data = LoadSource_WithOpSize(FPRClass, Op, Op->Src[0], OpSize::f80Bit, Op->Flags); |
| 81 | Ref ConvertedData = _F80BCDLoad(Data); |
| 82 | _PushStack(ConvertedData, Data, OpSize::i128Bit, true); |
| 83 | } |
| 84 | |
| 85 | void OpDispatchBuilder::FBSTP(OpcodeArgs) { |
| 86 | Ref converted = _F80BCDStore(_ReadStackValue(0)); |
nothing calls this directly
no outgoing calls
no test coverage detected