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

Method InsertCVTGPR_To_FPR

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

Source from the content-addressed store, hash-verified

453
454template<IR::OpSize DstElementSize>
455void OpDispatchBuilder::InsertCVTGPR_To_FPR(OpcodeArgs) {
456 const auto DstSize = GetGuestVectorLength();
457 auto Result = InsertCVTGPR_To_FPRImpl(Op, DstSize, DstElementSize, Op->Dest, Op->Src[0], false);
458 StoreResult_WithOpSize(FPRClass, Op, Op->Dest, Result, DstSize, OpSize::iInvalid);
459}
460
461template void OpDispatchBuilder::InsertCVTGPR_To_FPR<OpSize::i32Bit>(OpcodeArgs);
462template void OpDispatchBuilder::InsertCVTGPR_To_FPR<OpSize::i64Bit>(OpcodeArgs);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected