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

Method HSUBP

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

Source from the content-addressed store, hash-verified

3380
3381template<IR::OpSize ElementSize>
3382void OpDispatchBuilder::HSUBP(OpcodeArgs) {
3383 Ref Src1 = LoadSource(FPRClass, Op, Op->Dest, Op->Flags);
3384 Ref Src2 = LoadSource(FPRClass, Op, Op->Src[0], Op->Flags);
3385 Ref Result = HSUBPOpImpl(OpSizeFromSrc(Op), ElementSize, Src1, Src2);
3386 StoreResult(FPRClass, Op, Result, OpSize::iInvalid);
3387}
3388
3389template void OpDispatchBuilder::HSUBP<OpSize::i32Bit>(OpcodeArgs);
3390template void OpDispatchBuilder::HSUBP<OpSize::i64Bit>(OpcodeArgs);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected