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

Method DefaultSSEState

FEXCore/Source/Interface/Core/OpcodeDispatcher/Vector.cpp:2810–2817  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2808}
2809
2810void 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
2819void OpDispatchBuilder::DefaultAVXState() {
2820 const auto NumRegs = Is64BitMode ? 16U : 8U;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected