diff options
author | Ghassan Shobaki <ghassan.shobaki@amd.com> | 2009-06-08 16:00:13 +0000 |
---|---|---|
committer | Dwarakanath Rajagopal <dwarak@gcc.gnu.org> | 2009-06-08 16:00:13 +0000 |
commit | db34470d17bd803cf74f747e7714f6029abd9b38 (patch) | |
tree | c5aeb746f699ff4f72e543b2dfe4227803de6a85 /gcc/doc | |
parent | b01630bb3d498de236ebcfffdeb243431776f311 (diff) | |
download | gcc-db34470d17bd803cf74f747e7714f6029abd9b38.zip gcc-db34470d17bd803cf74f747e7714f6029abd9b38.tar.gz gcc-db34470d17bd803cf74f747e7714f6029abd9b38.tar.bz2 |
2009-06-08 Ghassan Shobaki <ghassan.shobaki@amd.com>
Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
* tree-ssa-loop-prefetch.c
(gather_memory_references): Introduced a counter for the number of
memory references.
(anything_to_prefetch_p): Introduced a counter for the number of
prefetches.
(is_loop_prefetching_profitable): New function with a cost model
for prefetching.
(loop_prefetch_arrays): Use the new cost model to determine if
prefetching is profitable.
* params.def (MIN_INSN_TO_PREFETCH_RATIO,
PREFETCH_MIN_INSN_TO_MEM_RATIO): New parameters.
* params.h (MIN_INSN_TO_PREFETCH_RATIO,
PREFETCH_MIN_INSN_TO_MEM_RATIO): New parameters.
* doc/invoke.texi (MIN_INSN_TO_PREFETCH_RATIO,
PREFETCH_MIN_INSN_TO_MEM_RATIO): New parameters.
Co-Authored-By: Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
From-SVN: r148277
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/invoke.texi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 99aa2ca..8109cf3 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -7914,6 +7914,15 @@ The size of L1 cache, in kilobytes. @item l2-cache-size The size of L2 cache, in kilobytes. +@item min-insn-to-prefetch-ratio +The minimum ratio between the number of instructions and the +number of prefetches to enable prefetching in a loop with an +unknown trip count. + +@item prefetch-min-insn-to-mem-ratio +The minimum ratio between the number of instructions and the +number of memory references to enable prefetching in a loop. + @item use-canonical-types Whether the compiler should use the ``canonical'' type system. By default, this should always be 1, which uses a more efficient internal |