This is the mail archive of the gcc-cvs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gcc/gcc ChangeLog.autovect common.opt lambda-c ...


CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	autovect-branch
Changes by:	spop@gcc.gnu.org	2005-08-01 16:50:58

Modified files:
	gcc            : ChangeLog.autovect common.opt lambda-code.c 
	                 lambda.h timevar.def tree-data-ref.c 
	                 tree-data-ref.h tree-flow.h tree-optimize.c 
	                 tree-pass.h tree-ssa-loop.c 
	gcc/doc        : invoke.texi 

Log message:
	* common.opt: Add -fcheck-data-deps.
	* lambda-code.c (lambda_vector_lexico_pos): Moved ...
	* lambda.h (lambda_vector_lexico_pos): ... here.
	Make it static inline.
	* timevar.def (TV_CHECK_DATA_DEPS): New.
	* tree-data-ref.c (compute_subscript_distance,
	initialize_data_dependence_relation, compute_affine_dependence):
	Make static.
	(initialize_data_dependence_relation): Initialize DDR_CSYS,
	DDR_POLYHEDRON, DDR_OMEGA to NULL.  Initialize DDR_SIZE_VECT,
	DDR_DIST_VECT, DDR_DIR_VECT to allocated data.
	(analyze_subscript_affine_affine, analyze_overlapping_iterations):
	Correctly print the ending parenthesis in the dump file.
	(subscript_dependence_tester): Moved after
	build_classic_dist_vector and build_classic_dir_vector.
	Computes the classic representations.  Takes a new parameter.
	(build_classic_dist_vector): Add an extra check for ensuring that
	the output is a lexicographically vector.
	(build_classic_dist_vector, build_classic_dir_vector): Don't
	initialize the DDR_SIZE_VECT, DDR_DIST_VECT and DDR_DIR_VECT.
	(compute_affine_dependence): Add code for flag_check_data_deps.
	(compute_all_dependences): Move the call compute_subscript_distance
	to a lower level, in subscript_dependence_tester.
	(compute_data_dependences_for_loop): Move the calls
	build_classic_dist_vector and build_classic_dir_vector in
	subscript_dependence_tester.
	(tree_check_data_deps): New.
	* tree-data-ref.h (initialize_data_dependence_relation,
	compute_affine_dependence, compute_subscript_distance,
	build_classic_dist_vector): Remove extern declarations.
	* tree-flow.h (tree_check_data_deps): Declared.
	* tree-optimize.c: Schedule pass_check_data_deps.
	* tree-pass.h (pass_check_data_deps): Declared.
	* tree-ssa-loop.c (check_data_deps, gate_check_data_deps): New.
	(pass_check_data_deps): Instantiated.
	* doc/invoke.texi (fcheck-data-deps): Documented.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.autovect.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=1.1.2.78&r2=1.1.2.79
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/common.opt.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=1.59.4.7&r2=1.59.4.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/lambda-code.c.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=2.18.2.5&r2=2.18.2.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/lambda.h.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=2.8.2.1&r2=2.8.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/timevar.def.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=1.39.4.4&r2=1.39.4.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-data-ref.c.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=2.15.4.31&r2=2.15.4.32
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-data-ref.h.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=2.5.4.11&r2=2.5.4.12
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-flow.h.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=2.61.2.8&r2=2.61.2.9
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-optimize.c.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=2.61.2.5&r2=2.61.2.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-pass.h.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=2.20.4.5&r2=2.20.4.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-ssa-loop.c.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=2.21.4.4&r2=2.21.4.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/doc/invoke.texi.diff?cvsroot=gcc&only_with_tag=autovect-branch&r1=1.557.2.6&r2=1.557.2.7


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]