invoke.texi (max-stores-to-sink): Document.
authorIra Rosen <ira.rosen@linaro.org>
Thu, 24 Mar 2011 08:23:39 +0000 (08:23 +0000)
committerIra Rosen <irar@gcc.gnu.org>
Thu, 24 Mar 2011 08:23:39 +0000 (08:23 +0000)
commitbfe068c3d311b07208084f3259929187f29ed37b
treeafb8a3198cdee843553c12f114920b4078828339
parent3137991dfc4e0b6023c4b75b2ae1eb86bea32241
invoke.texi (max-stores-to-sink): Document.

        * doc/invoke.texi (max-stores-to-sink): Document.
        * params.h (MAX_STORES_TO_SINK): Define.
        * opts.c (finish_options): Set MAX_STORES_TO_SINK to 0
        if either vectorization or if-conversion is disabled.
        * tree-data-ref.c (dr_equal_offsets_p1): Moved and renamed from
        tree-vect-data-refs.c vect_equal_offsets.
        (dr_equal_offsets_p): New function.
        (find_data_references_in_bb): Remove static.
        * tree-data-ref.h (find_data_references_in_bb): Declare.
        (dr_equal_offsets_p): Likewise.
        * tree-vect-data-refs.c (vect_equal_offsets): Move to
        tree-data-ref.c.
        (vect_drs_dependent_in_basic_block): Update calls to
        vect_equal_offsets.
        (vect_check_interleaving): Likewise.
        * tree-ssa-phiopt.c: Include cfgloop.h and tree-data-ref.h.
        (cond_if_else_store_replacement): Rename to...
        (cond_if_else_store_replacement_1): ... this.  Change arguments
        and documentation.
        (cond_if_else_store_replacement): New function.
        * Makefile.in (tree-ssa-phiopt.o): Adjust dependencies.
        * params.def (PARAM_MAX_STORES_TO_SINK): Define.

From-SVN: r171381
13 files changed:
gcc/ChangeLog
gcc/Makefile.in
gcc/doc/invoke.texi
gcc/opts.c
gcc/params.def
gcc/params.h
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/vect-cselim-1.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/vect/vect-cselim-2.c [new file with mode: 0644]
gcc/tree-data-ref.c
gcc/tree-data-ref.h
gcc/tree-ssa-phiopt.c
gcc/tree-vect-data-refs.c