| 241 | } |
| 242 | |
| 243 | void OpDispatchBuilder::AESDecOp(OpcodeArgs) { |
| 244 | if (!CTX->HostFeatures.SupportsAES) { |
| 245 | UnimplementedOp(Op); |
| 246 | return; |
| 247 | } |
| 248 | Ref Dest = LoadSource(FPRClass, Op, Op->Dest, Op->Flags); |
| 249 | Ref Src = LoadSource(FPRClass, Op, Op->Src[0], Op->Flags); |
| 250 | Ref Result = _VAESDec(OpSize::i128Bit, Dest, Src, LoadZeroVector(OpSize::i128Bit)); |
| 251 | StoreResult(FPRClass, Op, Result, OpSize::iInvalid); |
| 252 | } |
| 253 | |
| 254 | void OpDispatchBuilder::VAESDecOp(OpcodeArgs) { |
| 255 | const auto DstSize = OpSizeFromDst(Op); |
nothing calls this directly
no outgoing calls
no test coverage detected