Hi, I updated some of the info in tree-parloops.c, like adding myself to the contributors, and updating the TODO list, both long overdue...
I also update the wiki http://gcc.gnu.org/wiki/AutoParInGCC and added a link to it from tree-parloops.c. If there are no objections, I will commit as obvious, 2012-05-20 Razya Ladelsky <ra...@il.ibm.com> * tree-parloops.c : Add myself to contributors, update TODO list, add link to wiki. Thanks, Razya
Index: tree-parloops.c =================================================================== --- tree-parloops.c (revision 187694) +++ tree-parloops.c (working copy) @@ -1,8 +1,8 @@ /* Loop autoparallelization. Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. - Contributed by Sebastian Pop <p...@cri.ensmp.fr> and - Zdenek Dvorak <dvor...@suse.cz>. + Contributed by Sebastian Pop <p...@cri.ensmp.fr> + Zdenek Dvorak <dvor...@suse.cz> and Razya Ladelsky <ra...@il.ibm.com>. This file is part of GCC. @@ -54,9 +54,9 @@ along with GCC; see the file COPYING3. If not see -- if there are several parallelizable loops in a function, it may be possible to generate the threads just once (using synchronization to ensure that cross-loop dependences are obeyed). - -- handling of common scalar dependence patterns (accumulation, ...) - -- handling of non-innermost loops */ - + -- handling of common reduction patterns for outer loops. + + More info can also be found at http://gcc.gnu.org/wiki/AutoParInGCC */ /* Reduction handling: currently we use vect_force_simple_reduction() to detect reduction patterns. =