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

12

/freebsd-11-stable/sys/arm/arm/
H A Dbcopyinout.S75 #define PREFETCH(rx,o) pld [ rx , HELLOCPP (o) ] define
77 #define PREFETCH(rx,o) define
136 PREFETCH(r0, 0)
137 PREFETCH(r1, 0)
235 PREFETCH(r0, 32)
236 PREFETCH(r1, 32)
383 PREFETCH(r0, 0)
384 PREFETCH(r1, 0)
479 PREFETCH(r0, 32)
480 PREFETCH(r
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dinternal_defs.h46 #define PREFETCH(X) __asm__("prefetchnta (%0)" : : "r"(X)) macro
48 #define PREFETCH(X) __builtin_prefetch(X) macro
H A Dquarantine.h287 PREFETCH(B->Batch[I]);
290 PREFETCH(B->Batch[I + NumberOfPrefetch]);
/freebsd-11-stable/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.sh31 PREFETCH="60 days"
71 "$PREFETCH"
155 PREFETCH="$OPTARG"
336 if [ -n "$FORCE" ] || ! verifySHA $LEAPFILE "$VERBOSE" || [ $EXPIRES -lt `date -d "NOW + $PREFETCH" +%s` ] ; then
H A Dupdate-leap.in58 my $PREFETCH = 60;
99 $PREFETCH = $opt{e} if defined $opt{e};
180 ( $EXPIRES lt ( $PREFETCH * 86400 + time() ) )) {
406 $PREFETCH
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h220 # define PREFETCH(x) /* _mm_prefetch(x, _MM_HINT_NTA) */ (void)0 macro
236 # define PREFETCH(x) __asm__("prefetchnta (%0)" : : "r" (x)) macro
238 # define PREFETCH(x) __builtin_prefetch(x) macro
H A Dsanitizer_quarantine.h188 PREFETCH(b->batch[i]);
191 PREFETCH(b->batch[i + kPrefetch]);
H A Dsanitizer_allocator_local_cache.h162 PREFETCH(c->batch[c->count - 1]);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h833 /// PREFETCH - This corresponds to a prefetch intrinsic. The first operand
837 PREFETCH, enumerator in enum:llvm::ISD::NodeType
H A DSelectionDAGNodes.h1397 N->getOpcode() == ISD::PREFETCH ||
1478 /// INTRINSIC_VOID, INTRINSIC_W_CHAIN, PREFETCH, or a target-specific opcode
1493 N->getOpcode() == ISD::PREFETCH ||
/freebsd-11-stable/contrib/llvm-project/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,
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dregex.c5293 #define PREFETCH() \
6130 PREFETCH ();
6155 PREFETCH ();
6168 PREFETCH ();
6197 PREFETCH ();
6815 PREFETCH ();
7392 PREFETCH ();
7409 PREFETCH ();
7420 PREFETCH ();
7429 PREFETCH ();
5277 #define PREFETCH macro
8182 # undef PREFETCH macro
[all...]
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dregex.c5293 #define PREFETCH() \
6130 PREFETCH ();
6155 PREFETCH ();
6168 PREFETCH ();
6197 PREFETCH ();
6815 PREFETCH ();
7392 PREFETCH ();
7409 PREFETCH ();
7420 PREFETCH ();
7429 PREFETCH ();
5277 #define PREFETCH macro
8182 # undef PREFETCH macro
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dsched-vis.c357 case PREFETCH:
H A Dsystem.h239 # undef PREFETCH macro
H A Drtlanal.c697 case PREFETCH:
1421 case PREFETCH:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h369 PREFETCH
H A DSystemZISelLowering.cpp315 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
4070 return DAG.getMemIntrinsicNode(SystemZISD::PREFETCH, DL,
5181 case ISD::PREFETCH:
5425 OPCODE(PREFETCH);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h182 PREFETCH,
H A DAArch64ISelLowering.cpp536 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
1336 case AArch64ISD::PREFETCH: return "AArch64ISD::PREFETCH";
2512 return DAG.getNode(AArch64ISD::PREFETCH, DL, MVT::Other, Op.getOperand(0),
3246 case ISD::PREFETCH:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp82 case ISD::PREFETCH: return "Prefetch";
H A DLegalizeDAG.cpp2771 case ISD::PREFETCH:
H A DLegalizeIntegerTypes.cpp1314 case ISD::PREFETCH: Res = PromoteIntOp_PREFETCH(N, OpNo); break;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp728 setOperationAction(ISD::PREFETCH, MVT::Other, Expand);
/freebsd-11-stable/contrib/llvm-project/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,
1355 setOperationAction(ISD::PREFETCH, MVT::Other, Custom);
2937 case ISD::PREFETCH: return LowerPREFETCH(Op, DAG);

Completed in 439 milliseconds

12