Check TARGET_LOOP_UNROLL_ADJUST while deciding unroll factor
authorgganesh <gganesh@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Dec 2013 07:27:14 +0000 (07:27 +0000)
committergganesh <gganesh@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Dec 2013 07:27:14 +0000 (07:27 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205580 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/loop-unroll.c

index d4fc7eb..0e5112e 100644 (file)
@@ -1,3 +1,8 @@
+2013-12-02 Ganesh Gopalasubramanian  <Ganesh.Gopalasubramanian@amd.com>
+
+       * loop-unroll.c (decide_unroll_constant_iterations): Check macro 
+       TARGET_LOOP_UNROLL_ADJUST while deciding unroll factor.
+
 2013-12-01  Eric Botcazou  <ebotcazou@adacore.com>
 
        * config/i386/winnt.c (i386_pe_asm_named_section): Be prepared for an
index 9c87167..557915f 100644 (file)
@@ -664,6 +664,9 @@ decide_unroll_constant_iterations (struct loop *loop, int flags)
   if (nunroll > (unsigned) PARAM_VALUE (PARAM_MAX_UNROLL_TIMES))
     nunroll = PARAM_VALUE (PARAM_MAX_UNROLL_TIMES);
 
+  if (targetm.loop_unroll_adjust)
+    nunroll = targetm.loop_unroll_adjust (nunroll, loop);
+
   /* Skip big loops.  */
   if (nunroll <= 1)
     {