Home
last modified time | relevance | path

Searched refs:prefetch_count (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-loop-prefetch.c1142 int prefetch_count = 0; in estimate_prefetch_count() local
1150 prefetch_count += n_prefetches; in estimate_prefetch_count()
1153 return prefetch_count; in estimate_prefetch_count()
1848 insn_to_prefetch_ratio_too_small_p (unsigned ninsns, unsigned prefetch_count, in insn_to_prefetch_ratio_too_small_p() argument
1865 insn_to_prefetch_ratio = (unroll_factor * ninsns) / prefetch_count; in insn_to_prefetch_ratio_too_small_p()
1890 unsigned prefetch_count; in loop_prefetch_arrays() local
1941 prefetch_count = estimate_prefetch_count (refs, unroll_factor); in loop_prefetch_arrays()
1942 if (prefetch_count == 0) in loop_prefetch_arrays()
1950 ninsns, mem_ref_count, prefetch_count); in loop_prefetch_arrays()
1954 if (insn_to_prefetch_ratio_too_small_p (ninsns, prefetch_count, in loop_prefetch_arrays()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-loop-prefetch.cc1144 int prefetch_count = 0; in estimate_prefetch_count() local
1152 prefetch_count += n_prefetches; in estimate_prefetch_count()
1155 return prefetch_count; in estimate_prefetch_count()
1847 insn_to_prefetch_ratio_too_small_p (unsigned ninsns, unsigned prefetch_count, in insn_to_prefetch_ratio_too_small_p() argument
1864 insn_to_prefetch_ratio = (unroll_factor * ninsns) / prefetch_count; in insn_to_prefetch_ratio_too_small_p()
1889 unsigned prefetch_count; in loop_prefetch_arrays() local
1940 prefetch_count = estimate_prefetch_count (refs, unroll_factor); in loop_prefetch_arrays()
1941 if (prefetch_count == 0) in loop_prefetch_arrays()
1949 ninsns, mem_ref_count, prefetch_count); in loop_prefetch_arrays()
1953 if (insn_to_prefetch_ratio_too_small_p (ninsns, prefetch_count, in loop_prefetch_arrays()
H A DChangeLog-201025837 estimate the prefetch_count.