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

Method AESImcOp

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

Source from the content-addressed store, hash-verified

181}
182
183void OpDispatchBuilder::AESImcOp(OpcodeArgs) {
184 if (!CTX->HostFeatures.SupportsAES) {
185 UnimplementedOp(Op);
186 return;
187 }
188 Ref Src = LoadSource(FPRClass, Op, Op->Src[0], Op->Flags);
189 Ref Result = _VAESImc(Src);
190 StoreResult(FPRClass, Op, Result, OpSize::iInvalid);
191}
192
193void OpDispatchBuilder::AESEncOp(OpcodeArgs) {
194 if (!CTX->HostFeatures.SupportsAES) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected