| 4797 | } |
| 4798 | |
| 4799 | void OpDispatchBuilder::CLZeroOp(OpcodeArgs) { |
| 4800 | if (!CTX->HostFeatures.SupportsCLZERO) { |
| 4801 | UnimplementedOp(Op); |
| 4802 | return; |
| 4803 | } |
| 4804 | Ref DestMem = LoadSource(GPRClass, Op, Op->Src[0], Op->Flags, {.LoadData = false}); |
| 4805 | _CacheLineZero(DestMem); |
| 4806 | } |
| 4807 | |
| 4808 | void OpDispatchBuilder::Prefetch(OpcodeArgs, bool ForStore, bool Stream, uint8_t Level) { |
| 4809 | Ref DestMem = LoadSource(GPRClass, Op, Op->Src[0], Op->Flags, {.LoadData = false}); |
nothing calls this directly
no outgoing calls
no test coverage detected