Home
last modified time | relevance | path

Searched refs:PREFETCH (Results 1 - 23 of 23) sorted by relevance

/third_party/ffmpeg/libswscale/x86/
H A Dhscale_fast_bilinear_simd.c28 #define PREFETCH "prefetchnta" macro
224 PREFETCH" (%%"FF_REG_c") \n\t" in ff_hyscale_fast_mmxext()
225 PREFETCH" 32(%%"FF_REG_c") \n\t" in ff_hyscale_fast_mmxext()
226 PREFETCH" 64(%%"FF_REG_c") \n\t" in ff_hyscale_fast_mmxext()
313 PREFETCH" (%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
314 PREFETCH" 32(%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
315 PREFETCH" 64(%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
324 PREFETCH" (%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
325 PREFETCH" 32(%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
326 PREFETCH" 6 in ff_hcscale_fast_mmxext()
[all...]
H A Drgb2rgb_template.c33 #undef PREFETCH macro
39 #define PREFETCH "prefetchnta" macro
55 __asm__ volatile(PREFETCH" %0"::"m"(*s):"memory"); in rgb24tobgr32()
60 PREFETCH" 32(%1) \n\t" in rgb24tobgr32()
133 __asm__ volatile(PREFETCH" %0"::"m"(*s):"memory"); in rgb32tobgr24()
137 PREFETCH" 32(%1) \n\t" in rgb32tobgr24()
176 __asm__ volatile(PREFETCH" %0"::"m"(*s)); in rgb15to16()
181 PREFETCH" 32(%1) \n\t" in rgb15to16()
219 __asm__ volatile(PREFETCH" %0"::"m"(*s)); in rgb16to15()
225 PREFETCH" 3 in rgb16to15()
[all...]
H A Dswscale_template.c29 #undef PREFETCH macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86IntrinsicsInfo.h24 GATHER, SCATTER, PREFETCH, RDSEED, RDRAND, RDPMC, RDTSC, XTEST, XGETBV, ADX, FPCLASSS,
110 X86_INTRINSIC_DATA(avx512_gatherpf_dpd_512, PREFETCH,
112 X86_INTRINSIC_DATA(avx512_gatherpf_dps_512, PREFETCH,
114 X86_INTRINSIC_DATA(avx512_gatherpf_qpd_512, PREFETCH,
116 X86_INTRINSIC_DATA(avx512_gatherpf_qps_512, PREFETCH,
294 X86_INTRINSIC_DATA(avx512_scatterpf_dpd_512, PREFETCH, X86::VSCATTERPF0DPDm,
296 X86_INTRINSIC_DATA(avx512_scatterpf_dps_512, PREFETCH, X86::VSCATTERPF0DPSm,
298 X86_INTRINSIC_DATA(avx512_scatterpf_qpd_512, PREFETCH, X86::VSCATTERPF0QPDm,
300 X86_INTRINSIC_DATA(avx512_scatterpf_qps_512, PREFETCH, X86::VSCATTERPF0QPSm,
H A DX86ISelLowering.cpp453 setOperationAction(ISD::PREFETCH , MVT::Other, Legal); in X86TargetLowering()
24946 case PREFETCH: {
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h833 /// PREFETCH - This corresponds to a prefetch intrinsic. The first operand
837 PREFETCH, enumerator
H A DSelectionDAGNodes.h1397 N->getOpcode() == ISD::PREFETCH || in classof()
1478 /// INTRINSIC_VOID, INTRINSIC_W_CHAIN, PREFETCH, or a target-specific opcode
1493 N->getOpcode() == ISD::PREFETCH || in classof()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h369 PREFETCH
H A DSystemZISelLowering.cpp315 setOperationAction(ISD::PREFETCH, MVT::Other, Custom); in SystemZTargetLowering()
4070 return DAG.getMemIntrinsicNode(SystemZISD::PREFETCH, DL, in lowerPREFETCH()
5181 case ISD::PREFETCH:
5425 OPCODE(PREFETCH); in getTargetNodeName()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp82 case ISD::PREFETCH: return "Prefetch"; in getOperationName()
H A DSelectionDAG.cpp626 case ISD::PREFETCH: {
6691 Opcode == ISD::PREFETCH ||
H A DLegalizeDAG.cpp2771 case ISD::PREFETCH:
H A DLegalizeIntegerTypes.cpp1302 case ISD::PREFETCH: Res = PromoteIntOp_PREFETCH(N, OpNo); break; in PromoteIntegerOperand()
H A DSelectionDAGBuilder.cpp6665 SDValue Result = DAG.getMemIntrinsicNode(ISD::PREFETCH, sdl, in visitIntrinsicCall()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h182 PREFETCH,
H A DAArch64ISelLowering.cpp536 setOperationAction(ISD::PREFETCH, MVT::Other, Custom); in AArch64TargetLowering()
1336 case AArch64ISD::PREFETCH: return "AArch64ISD::PREFETCH"; in getTargetNodeName()
2512 return DAG.getNode(AArch64ISD::PREFETCH, DL, MVT::Other, Op.getOperand(0), in LowerPREFETCH()
3246 case ISD::PREFETCH: in LowerOperation()
/third_party/python/Modules/
H A D_pickle.c143 PREFETCH = 8192 * 16, enumerator
1295 if (self->peek && n < PREFETCH) { in _Unpickler_ReadFromFile()
1296 len = PyLong_FromSsize_t(PREFETCH); in _Unpickler_ReadFromFile()
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeX86_common.c237 #define PREFETCH 0x18 macro
1381 *inst++ = PREFETCH; in emit_prefetch()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp728 setOperationAction(ISD::PREFETCH, MVT::Other, Expand); in initActions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp674 // Need to transform ISD::PREFETCH into something that doesn't inherit
675 // all of the properties of ISD::PREFETCH, specifically SDNPMayLoad and
1342 // FTRUNC, PREFETCH, SIGN_EXTEND_VECTOR_INREG, ZERO_EXTEND_VECTOR_INREG, in HexagonTargetLowering()
1355 setOperationAction(ISD::PREFETCH, MVT::Other, Custom); in HexagonTargetLowering()
2937 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG); in LowerOperation()
/third_party/mesa3d/src/mesa/x86/
H A Dassyntax.h1626 #define PREFETCH(a) prefetch P_ARG1(a) macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp1272 setOperationAction(ISD::PREFETCH, MVT::Other, Custom); in ARMTargetLowering()
9302 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG, Subtarget); in LowerOperation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1123 setOperationAction(ISD::PREFETCH, MVT::Other, Legal); in PPCTargetLowering()

Completed in 189 milliseconds