Home
last modified time | relevance | path

Searched refs:PREFETCH (Results 1 – 25 of 36) sorted by relevance

12

/third_party/ffmpeg/libswscale/x86/
Drgb2rgb_template.c33 #undef PREFETCH
40 #define PREFETCH "prefetch" macro
43 #define PREFETCH "prefetchnta" macro
46 #define PREFETCH " # nop" macro
75 __asm__ volatile(PREFETCH" %0"::"m"(*s):"memory"); in RENAME()
80 PREFETCH" 32(%1) \n\t" in RENAME()
153 __asm__ volatile(PREFETCH" %0"::"m"(*s):"memory"); in RENAME()
157 PREFETCH" 32(%1) \n\t" in RENAME()
196 __asm__ volatile(PREFETCH" %0"::"m"(*s)); in RENAME()
201 PREFETCH" 32(%1) \n\t" in RENAME()
[all …]
Dhscale_fast_bilinear_simd.c27 #define PREFETCH "prefetchnta" macro
223 PREFETCH" (%%"FF_REG_c") \n\t" in ff_hyscale_fast_mmxext()
224 PREFETCH" 32(%%"FF_REG_c") \n\t" in ff_hyscale_fast_mmxext()
225 PREFETCH" 64(%%"FF_REG_c") \n\t" in ff_hyscale_fast_mmxext()
312 PREFETCH" (%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
313 PREFETCH" 32(%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
314 PREFETCH" 64(%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
323 PREFETCH" (%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
324 PREFETCH" 32(%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
325 PREFETCH" 64(%%"FF_REG_c") \n\t" in ff_hcscale_fast_mmxext()
Dswscale_template.c29 #undef PREFETCH
/third_party/elfutils/tests/
Drun-debuginfod-fd-prefetch-caches.sh37 PREFETCH=2
58 --fdcache-mintmp=0 --fdcache-prefetch=$PREFETCH > vlog$PORT1 2>&1 &
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86IntrinsicsInfo.h24 GATHER, SCATTER, PREFETCH, RDSEED, RDRAND, RDPMC, RDTSC, XTEST, XGETBV, ADX, FPCLASSS, enumerator
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,
DX86Instr3DNow.td94 def PREFETCH : I3DNow<0x0D, MRM0m, (outs), (ins i8mem:$addr),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DISDOpcodes.h837 PREFETCH, enumerator
DSelectionDAGNodes.h1397 N->getOpcode() == ISD::PREFETCH ||
1493 N->getOpcode() == ISD::PREFETCH ||
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZISelLowering.h369 PREFETCH enumerator
DSystemZOperators.td438 def z_prefetch : SDNode<"SystemZISD::PREFETCH", SDT_ZPrefetch,
DSystemZISelLowering.cpp315 setOperationAction(ISD::PREFETCH, MVT::Other, Custom); in SystemZTargetLowering()
4070 return DAG.getMemIntrinsicNode(SystemZISD::PREFETCH, DL, in lowerPREFETCH()
5181 case ISD::PREFETCH: in LowerOperation()
5425 OPCODE(PREFETCH); in getTargetNodeName()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h182 PREFETCH, enumerator
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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp82 case ISD::PREFETCH: return "Prefetch"; in getOperationName()
DSelectionDAG.cpp626 case ISD::PREFETCH: { in AddNodeIDCustom()
6691 Opcode == ISD::PREFETCH || in getMemIntrinsicNode()
DLegalizeDAG.cpp2771 case ISD::PREFETCH: in ExpandNode()
DLegalizeIntegerTypes.cpp1302 case ISD::PREFETCH: Res = PromoteIntOp_PREFETCH(N, OpNo); break; in PromoteIntegerOperand()
/third_party/pcre2/pcre2/src/sljit/
DsljitNativeX86_common.c240 #define PREFETCH 0x18 macro
1263 *inst++ = PREFETCH; in emit_prefetch()
/third_party/python/Modules/
D_pickle.c131 PREFETCH = 8192 * 16, enumerator
1285 if (self->peek && n < PREFETCH) { in _Unpickler_ReadFromFile()
1286 len = PyLong_FromSsize_t(PREFETCH); in _Unpickler_ReadFromFile()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
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/
DHexagonISelLowering.cpp1355 setOperationAction(ISD::PREFETCH, MVT::Other, Custom); in HexagonTargetLowering()
2937 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG); in LowerOperation()
DHexagonPatterns.td3135 // We need custom lowering of ISD::PREFETCH into HexagonISD::DCFETCH
3136 // because the SDNode ISD::PREFETCH has properties MayLoad and MayStore.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetSelectionDAG.td574 def prefetch : SDNode<"ISD::PREFETCH" , SDTPrefetch,
/third_party/mesa3d/src/mesa/x86/
Dassyntax.h1626 #define PREFETCH(a) prefetch P_ARG1(a) macro
/third_party/ffmpeg/doc/
Dmuxers.texi339 Enable Low-latency HLS(LHLS). Adds #EXT-X-PREFETCH tag with current segment's URI.

12