This is the mail archive of the gcc-patches@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]

[patch] lno branch merge -- doloop optimization rewrite


Hello,

this patch moves the doloop optimization to the new loop optimizer; thus
it may benefit from better simple loop analysis, and also it now works
correctly together with unrolling.

There is no principial change in how the optimization works, which
probably is not ideal, since the transformation it does usually won't
bring much benefit; this definitely should be improved later.

Bootstrapped and regtested on i686 (with -march=k6), ia64 and ppc64.

Zdenek

	* doloop.c: Removed.
	* loop-doloop.c: New file.
	* Makefile.in (doloop.o): Remove.
	(loop-doloop.o): New.
	* cfgloop.h (get_loop_level, doloop_optimize_loops): Declare.
	* cfgloopanal.c (get_loop_level): New function.
	* loop-iv.c (iv_number_of_iterations): Handle case when loop
	is leaved immediatelly.
	* loop.c (strength_reduce): Do not call doloop optimization.
	* loop.h (LOOP_BCT): Removed.
	* toplev.c (rest_of_handle_loop_optimize): Do not use LOOP_BCT.
	(rest_of_handle_loop2): Call doloop_optimize_loops.
	(rest_of_compilation): Test for optimizations moved to
	rest_of_handle_loop2.

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1251
diff -c -3 -p -r1.1251 Makefile.in
*** Makefile.in	18 Feb 2004 07:00:54 -0000	1.1251
--- Makefile.in	18 Feb 2004 23:50:33 -0000
*************** OBJS-common = \
*** 847,853 ****
   cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfglayout.o cfgloop.o		   \
   cfgloopanal.o cfgloopmanip.o loop-init.o loop-unswitch.o loop-unroll.o	   \
   cfgrtl.o combine.o conflict.o convert.o coverage.o cse.o cselib.o 	   \
!  dbxout.o debug.o df.o diagnostic.o dojump.o doloop.o dominance.o	   \
   dwarf2asm.o dwarf2out.o emit-rtl.o except.o explow.o loop-iv.o		   \
   expmed.o expr.o final.o flow.o fold-const.o function.o gcse.o		   \
   genrtl.o ggc-common.o global.o graph.o gtype-desc.o			   \
--- 847,853 ----
   cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfglayout.o cfgloop.o		   \
   cfgloopanal.o cfgloopmanip.o loop-init.o loop-unswitch.o loop-unroll.o	   \
   cfgrtl.o combine.o conflict.o convert.o coverage.o cse.o cselib.o 	   \
!  dbxout.o debug.o df.o diagnostic.o dojump.o dominance.o loop-doloop.o	   \
   dwarf2asm.o dwarf2out.o emit-rtl.o except.o explow.o loop-iv.o		   \
   expmed.o expr.o final.o flow.o fold-const.o function.o gcse.o		   \
   genrtl.o ggc-common.o global.o graph.o gtype-desc.o			   \
*************** loop.o : loop.c $(CONFIG_H) $(SYSTEM_H) 
*** 1687,1695 ****
     insn-config.h $(REGS_H) hard-reg-set.h $(RECOG_H) $(EXPR_H) \
     real.h $(PREDICT_H) $(BASIC_BLOCK_H) function.h cfgloop.h \
     toplev.h varray.h except.h cselib.h $(OPTABS_H) $(TM_P_H) $(GGC_H)
! doloop.o : doloop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
!    $(LOOP_H) $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TM_P_H) toplev.h \
!    cfgloop.h
  unroll.o : unroll.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) insn-config.h \
     function.h $(INTEGRATE_H) $(REGS_H) $(RECOG_H) flags.h $(EXPR_H) $(LOOP_H) toplev.h \
     hard-reg-set.h varray.h $(BASIC_BLOCK_H) $(TM_P_H) $(PREDICT_H) $(PARAMS_H) \
--- 1687,1695 ----
     insn-config.h $(REGS_H) hard-reg-set.h $(RECOG_H) $(EXPR_H) \
     real.h $(PREDICT_H) $(BASIC_BLOCK_H) function.h cfgloop.h \
     toplev.h varray.h except.h cselib.h $(OPTABS_H) $(TM_P_H) $(GGC_H)
! loop-doloop.o : loop-doloop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
!    $(RTL_H) flags.h $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TM_P_H) \
!    toplev.h cfgloop.h output.h $(PARAMS_H)
  unroll.o : unroll.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) insn-config.h \
     function.h $(INTEGRATE_H) $(REGS_H) $(RECOG_H) flags.h $(EXPR_H) $(LOOP_H) toplev.h \
     hard-reg-set.h varray.h $(BASIC_BLOCK_H) $(TM_P_H) $(PREDICT_H) $(PARAMS_H) \
Index: cfgloop.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cfgloop.h,v
retrieving revision 1.14
diff -c -3 -p -r1.14 cfgloop.h
*** cfgloop.h	18 Feb 2004 15:05:02 -0000	1.14
--- cfgloop.h	18 Feb 2004 23:50:33 -0000
*************** extern bool flow_bb_inside_loop_p (const
*** 275,280 ****
--- 275,281 ----
  extern struct loop * find_common_loop (struct loop *, struct loop *);
  extern int num_loop_insns (struct loop *);
  extern int average_num_loop_insns (struct loop *);
+ extern unsigned get_loop_level (const struct loop *);
  
  /* Loops & cfg manipulation.  */
  extern basic_block *get_loop_body (const struct loop *);
*************** enum
*** 447,449 ****
--- 448,451 ----
  };
  
  extern void unroll_and_peel_loops (struct loops *, int);
+ extern void doloop_optimize_loops (struct loops *);
Index: cfgloopanal.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cfgloopanal.c,v
retrieving revision 1.20
diff -c -3 -p -r1.20 cfgloopanal.c
*** cfgloopanal.c	18 Feb 2004 15:05:02 -0000	1.20
--- cfgloopanal.c	18 Feb 2004 23:50:33 -0000
*************** expected_loop_iterations (const struct l
*** 1519,1521 ****
--- 1519,1538 ----
        return (freq_latch + freq_in - 1) / freq_in;
      }
  }
+ 
+ /* Returns the maximum level of nesting of subloops of LOOP.  */
+ 
+ unsigned
+ get_loop_level (const struct loop *loop)
+ {
+   const struct loop *ploop;
+   unsigned mx = 0, l;
+ 
+   for (ploop = loop->inner; ploop; ploop = ploop->next)
+     {
+       l = get_loop_level (ploop);
+       if (l >= mx)
+ 	mx = l + 1;
+     }
+   return mx;
+ }
Index: loop-doloop.c
===================================================================
RCS file: loop-doloop.c
diff -N loop-doloop.c
*** /dev/null	1 Jan 1970 00:00:00 -0000
--- loop-doloop.c	18 Feb 2004 23:50:34 -0000
***************
*** 0 ****
--- 1,557 ----
+ /* Perform doloop optimizations
+    Copyright (C) 2004 Free Software Foundation, Inc.
+    Based on code by Michael P. Hayes (m.hayes@elec.canterbury.ac.nz)
+ 
+ This file is part of GCC.
+ 
+ GCC is free software; you can redistribute it and/or modify it under
+ the terms of the GNU General Public License as published by the Free
+ Software Foundation; either version 2, or (at your option) any later
+ version.
+ 
+ GCC is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ for more details.
+ 
+ You should have received a copy of the GNU General Public License
+ along with GCC; see the file COPYING.  If not, write to the Free
+ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+ 02111-1307, USA.  */
+ 
+ #include "config.h"
+ #include "system.h"
+ #include "coretypes.h"
+ #include "tm.h"
+ #include "rtl.h"
+ #include "flags.h"
+ #include "expr.h"
+ #include "hard-reg-set.h"
+ #include "basic-block.h"
+ #include "toplev.h"
+ #include "tm_p.h"
+ #include "cfgloop.h"
+ #include "output.h"
+ #include "params.h"
+ 
+ /* This module is used to modify loops with a determinable number of
+    iterations to use special low-overhead looping instructions.
+ 
+    It first validates whether the loop is well behaved and has a
+    determinable number of iterations (either at compile or run-time).
+    It then modifies the loop to use a low-overhead looping pattern as
+    follows:
+ 
+    1. A pseudo register is allocated as the loop iteration counter.
+ 
+    2. The number of loop iterations is calculated and is stored
+       in the loop counter.
+ 
+    3. At the end of the loop, the jump insn is replaced by the
+       doloop_end pattern.  The compare must remain because it might be
+       used elsewhere.  If the loop-variable or condition register are
+       used elsewhere, they will be eliminated by flow.
+ 
+    4. An optional doloop_begin pattern is inserted at the top of the
+       loop.
+ 
+    TODO The optimization should only performed when either the biv used for exit
+    condition is unused at all except for the exit test, or if we do not have to
+    change its value, since otherwise we have to add a new induction variable,
+    which usually will not pay up (unless the cost of the doloop pattern is
+    somehow extremely lower than the cost of compare & jump, or unless the bct
+    register cannot be used for anything else but doloop -- ??? detect these
+    cases).  */
+ 
+ #ifdef HAVE_doloop_end
+ 
+ /* Return the loop termination condition for PATTERN or zero
+    if it is not a decrement and branch jump insn.  */
+ 
+ static rtx
+ doloop_condition_get (rtx pattern)
+ {
+   rtx cmp;
+   rtx inc;
+   rtx reg;
+   rtx condition;
+ 
+   /* The canonical doloop pattern we expect is:
+ 
+      (parallel [(set (pc) (if_then_else (condition)
+                                         (label_ref (label))
+                                         (pc)))
+                 (set (reg) (plus (reg) (const_int -1)))
+                 (additional clobbers and uses)])
+ 
+      Some machines (IA-64) make the decrement conditional on
+      the condition as well, so we don't bother verifying the
+      actual decrement.  In summary, the branch must be the
+      first entry of the parallel (also required by jump.c),
+      and the second entry of the parallel must be a set of
+      the loop counter register.  */
+ 
+   if (GET_CODE (pattern) != PARALLEL)
+     return 0;
+ 
+   cmp = XVECEXP (pattern, 0, 0);
+   inc = XVECEXP (pattern, 0, 1);
+ 
+   /* Check for (set (reg) (something)).  */
+   if (GET_CODE (inc) != SET || ! REG_P (SET_DEST (inc)))
+     return 0;
+ 
+   /* Extract loop counter register.  */
+   reg = SET_DEST (inc);
+ 
+   /* Check for (set (pc) (if_then_else (condition)
+                                        (label_ref (label))
+                                        (pc))).  */
+   if (GET_CODE (cmp) != SET
+       || SET_DEST (cmp) != pc_rtx
+       || GET_CODE (SET_SRC (cmp)) != IF_THEN_ELSE
+       || GET_CODE (XEXP (SET_SRC (cmp), 1)) != LABEL_REF
+       || XEXP (SET_SRC (cmp), 2) != pc_rtx)
+     return 0;
+ 
+   /* Extract loop termination condition.  */
+   condition = XEXP (SET_SRC (cmp), 0);
+ 
+   if ((GET_CODE (condition) != GE && GET_CODE (condition) != NE)
+       || GET_CODE (XEXP (condition, 1)) != CONST_INT)
+     return 0;
+ 
+   if (XEXP (condition, 0) == reg)
+     return condition;
+ 
+   if (GET_CODE (XEXP (condition, 0)) == PLUS
+       && XEXP (XEXP (condition, 0), 0) == reg)
+     return condition;
+ 
+   /* ??? If a machine uses a funny comparison, we could return a
+      canonicalised form here.  */
+ 
+   return 0;
+ }
+ 
+ /* Return nonzero if the loop specified by LOOP is suitable for
+    the use of special low-overhead looping instructions.  DESC
+    describes the number of iterations of the loop.  */
+ 
+ static bool
+ doloop_valid_p (struct loop *loop, struct niter_desc *desc)
+ {
+   basic_block *body = get_loop_body (loop), bb;
+   rtx insn;
+   unsigned i;
+ 
+   /* Check for loops that may not terminate under special conditions.  */
+   if (!desc->simple_p
+       || desc->assumptions
+       || desc->infinite)
+     {
+       /* There are some cases that would require a special attention.
+ 	 For example if the comparison is LEU and the comparison value
+ 	 is UINT_MAX then the loop will not terminate.  Similarly, if the
+ 	 comparison code is GEU and the comparison value is 0, the
+ 	 loop will not terminate.
+ 
+ 	 If the absolute increment is not 1, the loop can be infinite
+ 	 even with LTU/GTU, e.g. for (i = 3; i > 0; i -= 2)
+ 
+ 	 ??? We could compute these conditions at run-time and have a
+ 	 additional jump around the loop to ensure an infinite loop.
+ 	 However, it is very unlikely that this is the intended
+ 	 behavior of the loop and checking for these rare boundary
+ 	 conditions would pessimize all other code.
+ 
+ 	 If the loop is executed only a few times an extra check to
+ 	 restart the loop could use up most of the benefits of using a
+ 	 count register loop.  Note however, that normally, this
+ 	 restart branch would never execute, so it could be predicted
+ 	 well by the CPU.  We should generate the pessimistic code by
+ 	 default, and have an option, e.g. -funsafe-loops that would
+ 	 enable count-register loops in this case.  */
+       if (rtl_dump_file)
+ 	fprintf (rtl_dump_file,
+ 		 "Doloop: Possible infinite iteration case.\n");
+       return false;
+     }
+ 
+   for (i = 0; i < loop->num_nodes; i++)
+     {
+       bb = body[i];
+ 
+       for (insn = BB_HEAD (bb);
+ 	   insn != NEXT_INSN (BB_END (bb));
+ 	   insn = NEXT_INSN (insn))
+ 	{
+ 	  /* A called function may clobber any special registers required for
+ 	     low-overhead looping.  */
+ 	  if (GET_CODE (insn) == CALL_INSN)
+ 	    {
+ 	      if (rtl_dump_file)
+ 		fprintf (rtl_dump_file,
+ 			 "Doloop: Function call in loop.\n");
+ 	      return false;
+ 	    }
+ 
+ 	  /* Some targets (eg, PPC) use the count register for branch on table
+ 	     instructions.  ??? This should be a target specific check.  */
+ 	  if (GET_CODE (insn) == JUMP_INSN
+ 	      && (GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC
+ 		  || GET_CODE (PATTERN (insn)) == ADDR_VEC))
+ 	    {
+ 	      if (rtl_dump_file)
+ 		fprintf (rtl_dump_file,
+ 			 "Doloop: Computed branch in the loop.\n");
+ 	      return false;
+ 	    }
+ 	}
+     }
+   free (body);
+ 
+   return true;
+ }
+ 
+ /* Adds test of COND jumping to DEST to the end of BB.  */
+ 
+ static void
+ add_test (rtx cond, basic_block bb, basic_block dest)
+ {
+   rtx seq, jump, label;
+   enum machine_mode mode;
+   rtx op0 = XEXP (cond, 0), op1 = XEXP (cond, 1);
+   enum rtx_code code = GET_CODE (cond);
+ 
+   mode = GET_MODE (XEXP (cond, 0));
+   if (mode == VOIDmode)
+     mode = GET_MODE (XEXP (cond, 1));
+ 
+   start_sequence ();
+   op0 = force_operand (op0, NULL_RTX);
+   op1 = force_operand (op1, NULL_RTX);
+   label = block_label (dest);
+   do_compare_rtx_and_jump (op0, op1, code, 0, mode, NULL_RTX, NULL_RTX, label);
+ 
+   jump = get_last_insn ();
+   JUMP_LABEL (jump) = label;
+ 
+   /* The jump is supposed to handle an unlikely special case.  */
+   REG_NOTES (jump)
+ 	  = gen_rtx_EXPR_LIST (REG_BR_PROB,
+ 			       GEN_INT (0), REG_NOTES (jump));
+ 
+   LABEL_NUSES (label)++;
+ 
+   seq = get_insns ();
+   end_sequence ();
+   emit_insn_after (seq, BB_END (bb));
+ }
+ 
+ /* Modify the loop to use the low-overhead looping insn where LOOP
+    describes the loop, DESC describes the number of iterations of the
+    loop, and DOLOOP_INSN is the low-overhead looping insn to emit at the
+    end of the loop.  CONDITION is the condition separated from the
+    DOLOOP_SEQ.  */
+ 
+ static void
+ doloop_modify (struct loop *loop, struct niter_desc *desc,
+ 	       rtx doloop_seq, rtx condition)
+ {
+   rtx counter_reg;
+   rtx count, tmp, noloop = NULL_RTX;
+   rtx sequence;
+   rtx jump_insn;
+   rtx jump_label;
+   int nonneg = 0, irr;
+   bool increment_count;
+   basic_block loop_end = desc->out_edge->src;
+ 
+   jump_insn = BB_END (loop_end);
+ 
+   if (rtl_dump_file)
+     {
+       fprintf (rtl_dump_file, "Doloop: Inserting doloop pattern (");
+       if (desc->const_iter)
+ 	fprintf (rtl_dump_file, HOST_WIDEST_INT_PRINT_DEC, desc->niter);
+       else
+ 	fputs ("runtime", rtl_dump_file);
+       fputs (" iterations).\n", rtl_dump_file);
+     }
+ 
+   /* Discard original jump to continue loop.  The original compare
+      result may still be live, so it cannot be discarded explicitly.  */
+   delete_insn (jump_insn);
+ 
+   counter_reg = XEXP (condition, 0);
+   if (GET_CODE (counter_reg) == PLUS)
+     counter_reg = XEXP (counter_reg, 0);
+ 
+   count = desc->niter_expr;
+   increment_count = false;
+   switch (GET_CODE (condition))
+     {
+     case NE:
+       /* Currently only NE tests against zero and one are supported.  */
+       if (XEXP (condition, 1) == const1_rtx)
+ 	{
+ 	  increment_count = true;
+ 	  noloop = const1_rtx;
+ 	}
+       else if (XEXP (condition, 1) == const0_rtx)
+        	noloop = const0_rtx;
+       else
+ 	abort ();
+       break;
+ 
+     case GE:
+       /* Currently only GE tests against zero are supported.  */
+       if (XEXP (condition, 1) != const0_rtx)
+ 	abort ();
+ 
+       noloop = constm1_rtx;
+ 
+       /* The iteration count does not need incrementing for a GE test.  */
+       increment_count = false;
+ 
+       /* Determine if the iteration counter will be non-negative.
+ 	 Note that the maximum value loaded is iterations_max - 1.  */
+       if (desc->niter_max
+ 	  <= ((unsigned HOST_WIDEST_INT) 1
+ 	      << (GET_MODE_BITSIZE (GET_MODE (counter_reg)) - 1)))
+ 	nonneg = 1;
+       break;
+ 
+       /* Abort if an invalid doloop pattern has been generated.  */
+     default:
+       abort ();
+     }
+ 
+   if (increment_count)
+     count = simplify_gen_binary (PLUS, desc->mode, count, const1_rtx);
+ 
+   /* Insert initialization of the count register into the loop header.  */
+   start_sequence ();
+   tmp = force_operand (count, counter_reg);
+   convert_move (counter_reg, tmp, 1);
+   sequence = get_insns ();
+   end_sequence ();
+   emit_insn_after (sequence, BB_END (loop_preheader_edge (loop)->src));
+ 
+   if (desc->noloop_assumptions)
+     {
+       rtx ass = desc->noloop_assumptions;
+       basic_block preheader = loop_preheader_edge (loop)->src;
+       basic_block set_zero
+ 	      = loop_split_edge_with (loop_preheader_edge (loop), NULL_RTX);
+       basic_block new_preheader
+ 	      = loop_split_edge_with (loop_preheader_edge (loop), NULL_RTX);
+       basic_block bb;
+       edge te;
+       gcov_type cnt;
+ 
+       /* Expand the condition testing the assumptions and if it does not pass,
+ 	 reset the count register to 0.  */
+       add_test (XEXP (ass, 0), preheader, set_zero);
+       preheader->succ->flags &= ~EDGE_FALLTHRU;
+       cnt = preheader->succ->count;
+       preheader->succ->probability = 0;
+       preheader->succ->count = 0;
+       irr = preheader->succ->flags & EDGE_IRREDUCIBLE_LOOP;
+       te = make_edge (preheader, new_preheader, EDGE_FALLTHRU | irr);
+       te->probability = REG_BR_PROB_BASE;
+       te->count = cnt;
+       set_immediate_dominator (CDI_DOMINATORS, new_preheader, preheader);
+ 
+       set_zero->count = 0;
+       set_zero->frequency = 0;
+ 
+       for (ass = XEXP (ass, 1); ass; ass = XEXP (ass, 1))
+ 	{
+ 	  bb = loop_split_edge_with (te, NULL_RTX);
+ 	  te = bb->succ;
+ 	  add_test (XEXP (ass, 0), bb, set_zero);
+ 	  make_edge (bb, set_zero, irr);
+ 	}
+   
+       start_sequence ();
+       convert_move (counter_reg, noloop, 0);
+       sequence = get_insns ();
+       end_sequence ();
+       emit_insn_after (sequence, BB_END (set_zero));
+     }
+ 
+   /* Some targets (eg, C4x) need to initialize special looping
+      registers.  */
+ #ifdef HAVE_doloop_begin
+   {
+     rtx init;
+     unsigned level = get_loop_level (loop) + 1;
+     init = gen_doloop_begin (counter_reg,
+ 			     desc->const_iter ? desc->niter_expr : const0_rtx,
+ 			     desc->niter_max,
+ 			     GEN_INT (level));
+     if (init)
+       {
+ 	start_sequence ();
+ 	emit_insn (init);
+ 	sequence = get_insns ();
+ 	end_sequence ();
+ 	emit_insn_after (sequence, BB_END (loop_preheader_edge (loop)->src));
+       }
+   }
+ #endif
+ 
+   /* Insert the new low-overhead looping insn.  */
+   emit_jump_insn_after (doloop_seq, BB_END (loop_end));
+   jump_insn = BB_END (loop_end);
+   jump_label = block_label (desc->in_edge->dest);
+   JUMP_LABEL (jump_insn) = jump_label;
+   LABEL_NUSES (jump_label)++;
+ 
+   /* Ensure the right fallthru edge is marked, for case we have reversed
+      the condition.  */
+   desc->in_edge->flags &= ~EDGE_FALLTHRU;
+   desc->out_edge->flags |= EDGE_FALLTHRU;
+ 
+   /* Add a REG_NONNEG note if the actual or estimated maximum number
+      of iterations is non-negative.  */
+   if (nonneg)
+     {
+       REG_NOTES (jump_insn)
+ 	= gen_rtx_EXPR_LIST (REG_NONNEG, NULL_RTX, REG_NOTES (jump_insn));
+     }
+ }
+ 
+ /* Process loop described by LOOP validating that the loop is suitable for
+    conversion to use a low overhead looping instruction, replacing the jump
+    insn where suitable.  Returns true if the loop was successfully
+    modified.  */
+ 
+ static bool
+ doloop_optimize (struct loop *loop)
+ {
+   enum machine_mode mode;
+   rtx doloop_seq, doloop_pat, doloop_reg;
+   rtx iterations;
+   rtx iterations_max;
+   rtx start_label;
+   rtx condition;
+   unsigned level, est_niter;
+   struct niter_desc *desc;
+ 
+   if (rtl_dump_file)
+     fprintf (rtl_dump_file, "Doloop: Processing loop %d.\n", loop->num);
+ 
+   iv_analysis_loop_init (loop);
+ 
+   /* Find the simple exit of a LOOP.  */
+   desc = get_simple_loop_desc (loop);
+ 
+   /* Check that loop is a candidate for a low-overhead looping insn.  */
+   if (!doloop_valid_p (loop, desc))
+     {
+       if (rtl_dump_file)
+ 	fprintf (rtl_dump_file,
+ 		 "Doloop: The loop is not suitable.\n");
+       return false;
+     }
+   mode = desc->mode;
+ 
+   est_niter = 3;
+   if (desc->const_iter)
+     est_niter = desc->niter;
+   /* If the estimate on number of iterations is reliable (comes from profile
+      feedback), use it.  Do not use it normally, since the expected number
+      of iterations of an unrolled loop is 2.  */
+   if (loop->header->count)
+     est_niter = expected_loop_iterations (loop);
+ 
+   if (est_niter < 3)
+     {
+       if (rtl_dump_file)
+ 	fprintf (rtl_dump_file,
+ 		 "Doloop: Too few iterations (%u) to be profitable.\n",
+ 		 est_niter);
+       return false;
+     }
+ 
+   iterations = desc->const_iter ? desc->niter_expr : const0_rtx;
+   iterations_max = GEN_INT (desc->niter_max);
+   level = get_loop_level (loop) + 1;
+ 
+   /* Generate looping insn.  If the pattern FAILs then give up trying
+      to modify the loop since there is some aspect the back-end does
+      not like.  */
+   start_label = block_label (desc->in_edge->dest);
+   doloop_reg = gen_reg_rtx (mode);
+   doloop_seq = gen_doloop_end (doloop_reg, iterations, iterations_max,
+ 			       GEN_INT (level), start_label);
+   if (! doloop_seq && mode != word_mode)
+     {
+       PUT_MODE (doloop_reg, word_mode);
+       doloop_seq = gen_doloop_end (doloop_reg, iterations, iterations_max,
+ 				   GEN_INT (level), start_label);
+     }
+   if (! doloop_seq)
+     {
+       if (rtl_dump_file)
+ 	fprintf (rtl_dump_file,
+ 		 "Doloop: Target unwilling to use doloop pattern!\n");
+       return false;
+     }
+ 
+   /* If multiple instructions were created, the last must be the
+      jump instruction.  Also, a raw define_insn may yield a plain
+      pattern.  */
+   doloop_pat = doloop_seq;
+   if (INSN_P (doloop_pat))
+     {
+       while (NEXT_INSN (doloop_pat) != NULL_RTX)
+ 	doloop_pat = NEXT_INSN (doloop_pat);
+       if (GET_CODE (doloop_pat) == JUMP_INSN)
+ 	doloop_pat = PATTERN (doloop_pat);
+       else
+ 	doloop_pat = NULL_RTX;
+     }
+ 
+   if (! doloop_pat
+       || ! (condition = doloop_condition_get (doloop_pat)))
+     {
+       if (rtl_dump_file)
+ 	fprintf (rtl_dump_file,
+ 		 "Doloop: Unrecognizable doloop pattern!\n");
+       return false;
+     }
+ 
+   doloop_modify (loop, desc, doloop_seq, condition);
+   return true;
+ }
+ 
+ /* This is the main entry point.  Process all LOOPS using doloop_optimize.  */
+ 
+ void
+ doloop_optimize_loops (struct loops *loops)
+ {
+   unsigned i;
+   struct loop *loop;
+ 
+   for (i = 1; i < loops->num; i++)
+     {
+       loop = loops->parray[i];
+       if (!loop)
+ 	continue;
+ 
+       doloop_optimize (loop);
+     }
+ 
+   iv_analysis_done ();
+ 
+ #ifdef ENABLE_CHECKING
+   verify_dominators (CDI_DOMINATORS);
+   verify_loop_structure (loops);
+ #endif
+ }
+ #endif /* HAVE_doloop_end */
+ 
Index: loop-iv.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/loop-iv.c,v
retrieving revision 2.1
diff -c -3 -p -r2.1 loop-iv.c
*** loop-iv.c	17 Feb 2004 16:41:43 -0000	2.1
--- loop-iv.c	18 Feb 2004 23:50:34 -0000
*************** iv_number_of_iterations (struct loop *lo
*** 2281,2286 ****
--- 2281,2290 ----
    simplify_using_initial_values (loop, IOR, &desc->infinite);
    simplify_using_initial_values (loop, NIL, &desc->niter_expr);
  
+   if (desc->noloop_assumptions
+       && XEXP (desc->noloop_assumptions, 0) == const_true_rtx)
+     goto zero_iter;
+ 
    if (GET_CODE (desc->niter_expr) == CONST_INT)
      {
        unsigned HOST_WIDEST_INT val = INTVAL (desc->niter_expr);
Index: loop.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/loop.c,v
retrieving revision 1.492
diff -c -3 -p -r1.492 loop.c
*** loop.c	14 Feb 2004 14:43:18 -0000	1.492
--- loop.c	18 Feb 2004 23:50:36 -0000
*************** strength_reduce (struct loop *loop, int 
*** 5382,5404 ****
  	  && unrolled_insn_copies <= insn_count))
      unroll_loop (loop, insn_count, 1);
  
- #ifdef HAVE_doloop_end
-   if (HAVE_doloop_end && (flags & LOOP_BCT) && flag_branch_on_count_reg)
-     doloop_optimize (loop);
- #endif  /* HAVE_doloop_end  */
- 
-   /* In case number of iterations is known, drop branch prediction note
-      in the branch.  Do that only in second loop pass, as loop unrolling
-      may change the number of iterations performed.  */
-   if (flags & LOOP_BCT)
-     {
-       unsigned HOST_WIDE_INT n
- 	= loop_info->n_iterations / loop_info->unroll_number;
-       if (n > 1)
- 	predict_insn (prev_nonnote_insn (loop->end), PRED_LOOP_ITERATIONS,
- 		      REG_BR_PROB_BASE - REG_BR_PROB_BASE / n);
-     }
- 
    if (loop_dump_stream)
      fprintf (loop_dump_stream, "\n");
  
--- 5382,5387 ----
Index: loop.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/loop.h,v
retrieving revision 1.69
diff -c -3 -p -r1.69 loop.h
*** loop.h	27 Sep 2003 17:18:24 -0000	1.69
--- loop.h	18 Feb 2004 23:50:36 -0000
*************** Software Foundation, 59 Temple Place - S
*** 26,34 ****
  
  /* Flags passed to loop_optimize.  */
  #define LOOP_UNROLL 1
! #define LOOP_BCT 2
! #define LOOP_PREFETCH 4
! #define LOOP_AUTO_UNROLL 8
  
  /* Get the loop info pointer of a loop.  */
  #define LOOP_INFO(LOOP) ((struct loop_info *) (LOOP)->aux)
--- 26,33 ----
  
  /* Flags passed to loop_optimize.  */
  #define LOOP_UNROLL 1
! #define LOOP_PREFETCH 2
! #define LOOP_AUTO_UNROLL 4
  
  /* Get the loop info pointer of a loop.  */
  #define LOOP_INFO(LOOP) ((struct loop_info *) (LOOP)->aux)
Index: toplev.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/toplev.c,v
retrieving revision 1.879
diff -c -3 -p -r1.879 toplev.c
*** toplev.c	17 Feb 2004 21:33:34 -0000	1.879
--- toplev.c	18 Feb 2004 23:50:36 -0000
*************** rest_of_handle_loop_optimize (tree decl,
*** 3034,3040 ****
        reg_scan (insns, max_reg_num (), 1);
      }
    cleanup_barriers ();
!   loop_optimize (insns, rtl_dump_file, do_unroll | LOOP_BCT | do_prefetch);
  
    /* Loop can create trivially dead instructions.  */
    delete_trivially_dead_insns (insns, max_reg_num ());
--- 3034,3040 ----
        reg_scan (insns, max_reg_num (), 1);
      }
    cleanup_barriers ();
!   loop_optimize (insns, rtl_dump_file, do_unroll | do_prefetch);
  
    /* Loop can create trivially dead instructions.  */
    delete_trivially_dead_insns (insns, max_reg_num ());
*************** rest_of_handle_loop2 (tree decl, rtx ins
*** 3054,3059 ****
--- 3054,3065 ----
    struct loops *loops;
    basic_block bb;
  
+   if (!flag_unswitch_loops
+       && !flag_peel_loops
+       && !flag_unroll_loops
+       && !flag_branch_on_count_reg)
+     return;
+ 
    timevar_push (TV_LOOP);
    open_dump_file (DFI_loop2, decl);
    if (rtl_dump_file)
*************** rest_of_handle_loop2 (tree decl, rtx ins
*** 3076,3081 ****
--- 3082,3092 ----
  			       (flag_unroll_loops ? UAP_UNROLL : 0) |
  			       (flag_unroll_all_loops ? UAP_UNROLL_ALL : 0));
  
+ #ifdef HAVE_doloop_end
+       if (flag_branch_on_count_reg && HAVE_doloop_end)
+ 	doloop_optimize_loops (loops);
+ #endif /* HAVE_doloop_end */
+ 
        loop_optimizer_finalize (loops, rtl_dump_file);
      }
  
*************** rest_of_compilation (tree decl)
*** 3354,3363 ****
    if (flag_tracer)
      rest_of_handle_tracer (decl, insns);
  
!   if (optimize > 0
!       && (flag_unswitch_loops
! 	  || flag_peel_loops
! 	  || flag_unroll_loops))
      rest_of_handle_loop2 (decl, insns);
  
    if (flag_web)
--- 3365,3371 ----
    if (flag_tracer)
      rest_of_handle_tracer (decl, insns);
  
!   if (optimize > 0)
      rest_of_handle_loop2 (decl, insns);
  
    if (flag_web)


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