| 181 | } |
| 182 | |
| 183 | void 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 | |
| 193 | void OpDispatchBuilder::AESEncOp(OpcodeArgs) { |
| 194 | if (!CTX->HostFeatures.SupportsAES) { |
nothing calls this directly
no outgoing calls
no test coverage detected