| 299 | } |
| 300 | |
| 301 | void 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 | |
| 311 | void OpDispatchBuilder::PCLMULQDQOp(OpcodeArgs) { |
| 312 | if (!CTX->HostFeatures.SupportsPMULL_128Bit) { |
nothing calls this directly
no outgoing calls
no test coverage detected