| 138 | } |
| 139 | |
| 140 | void OpDispatchBuilder::FSTToStack(OpcodeArgs) { |
| 141 | const uint8_t Offset = Op->OP & 7; |
| 142 | if (Offset != 0) { |
| 143 | _StoreStackToStack(Offset); |
| 144 | } |
| 145 | |
| 146 | if (Op->TableInfo->Flags & X86Tables::InstFlags::FLAGS_POP) { |
| 147 | _PopStackDestroy(); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // Store integer to memory (possibly with truncation) |
| 152 | void OpDispatchBuilder::FIST(OpcodeArgs, bool Truncate) { |
nothing calls this directly
no outgoing calls
no test coverage detected