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

Method AESKeyGenAssist

FEXCore/Source/Interface/Core/OpcodeDispatcher/Crypto.cpp:301–309  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

299}
300
301void OpDispatchBuilder::AESKeyGenAssist(OpcodeArgs) {
302 if (!CTX->HostFeatures.SupportsAES) {
303 UnimplementedOp(Op);
304 return;
305 }
306
307 Ref Result = AESKeyGenAssistImpl(Op);
308 StoreResult(FPRClass, Op, Result, OpSize::iInvalid);
309}
310
311void OpDispatchBuilder::PCLMULQDQOp(OpcodeArgs) {
312 if (!CTX->HostFeatures.SupportsPMULL_128Bit) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected