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

Method CLZeroOp

FEXCore/Source/Interface/Core/OpcodeDispatcher.cpp:4799–4806  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4797}
4798
4799void 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
4808void OpDispatchBuilder::Prefetch(OpcodeArgs, bool ForStore, bool Stream, uint8_t Level) {
4809 Ref DestMem = LoadSource(GPRClass, Op, Op->Src[0], Op->Flags, {.LoadData = false});

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected