| 2808 | } |
| 2809 | |
| 2810 | void OpDispatchBuilder::DefaultSSEState() { |
| 2811 | const auto NumRegs = Is64BitMode ? 16U : 8U; |
| 2812 | |
| 2813 | Ref ZeroVector = LoadZeroVector(OpSize::i128Bit); |
| 2814 | for (uint32_t i = 0; i < NumRegs; ++i) { |
| 2815 | StoreXMMRegister(i, ZeroVector); |
| 2816 | } |
| 2817 | } |
| 2818 | |
| 2819 | void OpDispatchBuilder::DefaultAVXState() { |
| 2820 | const auto NumRegs = Is64BitMode ? 16U : 8U; |
nothing calls this directly
no outgoing calls
no test coverage detected