Searched refs:nontemporal (Results 1 - 4 of 4) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Dtree-ssa-loop-prefetch.c238 /* We consider a memory access nontemporal if it is not reused sooner than
241 so that we use nontemporal prefetches e.g. if single memory location
246 uses nontemporal stores, this defines the builtin to use. */
319 nontemporal one. */
1033 /* Do not prefetch nontemporal stores. */
1037 fprintf (dump_file, "Ignoring nontemporal store %p\n", (void *) ref);
1161 bool nontemporal = ref->reuse_distance >= L2_CACHE_SIZE_BYTES; local
1165 nontemporal ? " nontemporal" : "",
1176 local = nontemporal
[all...]
H A Dexpr.c4761 is true, try generating a nontemporal store. */
4764 expand_assignment (tree to, tree from, bool nontemporal)
4950 result = store_expr (from, to_rtx, false, nontemporal);
4954 nontemporal);
4959 get_alias_set (to), nontemporal);
4965 get_alias_set (to), nontemporal);
4986 get_alias_set (to), nontemporal);
5012 get_alias_set (to), nontemporal);
5166 result = store_expr_with_bounds (from, to_rtx, 0, nontemporal, to);
5172 /* Emits nontemporal stor
4752 expand_assignment(tree to, tree from, bool nontemporal) argument
5197 store_expr_with_bounds(tree exp, rtx target, int call_param_p, bool nontemporal, tree btarget) argument
5566 store_expr(tree exp, rtx target, int call_param_p, bool nontemporal) argument
6551 store_field(rtx target, HOST_WIDE_INT bitsize, HOST_WIDE_INT bitpos, unsigned HOST_WIDE_INT bitregion_start, unsigned HOST_WIDE_INT bitregion_end, machine_mode mode, tree exp, alias_set_type alias_set, bool nontemporal) argument
[all...]
H A Dcfgexpand.c3431 bool nontemporal = gimple_assign_nontemporal_move_p (assign_stmt); local
3457 /* If we want to use a nontemporal store, force the value to
3460 temp = nontemporal || promoted ? NULL_RTX : target;
3482 else if (nontemporal && emit_storent_insn (target, temp))
H A Dgimple.h2477 /* Returns true if GS is a nontemporal move. */
2485 /* Sets nontemporal move flag of GS to NONTEMPORAL. */
2488 gimple_assign_set_nontemporal_move (gimple gs, bool nontemporal)
2491 gs->nontemporal_move = nontemporal;

Completed in 121 milliseconds