re PR rtl-optimization/63397 (signed integer overflows in ira.c)
authorVladimir Makarov <vmakarov@redhat.com>
Mon, 15 Dec 2014 22:18:51 +0000 (22:18 +0000)
committerVladimir Makarov <vmakarov@gcc.gnu.org>
Mon, 15 Dec 2014 22:18:51 +0000 (22:18 +0000)
2014-12-15  Vladimir Makarov  <vmakarov@redhat.com>

PR rtl-optimization/63397
* ira-int.h (ira_overall_cost, ira_reg_cost, ira_mem_cost): Use
int64_t.
(ira_load_cost, ira_store_cost, ira_shuffle_cost): Ditto.
* ira.c (ira_overall_cost, ira_overall_cost_before): Ditto.
(ira_reg_cost, ira_mem_cost): Ditto.
(ira_load_cost, ira_store_cost, ira_shuffle_cost): Ditto.
(calculate_allocation_cost, do_reload): Use the right
format for int64_t values.

From-SVN: r218766

gcc/ChangeLog
gcc/ira-int.h
gcc/ira.c

index e050f0327574e1b47c8aed18eb5ce5334efadd52..292997242564ece2f0bc2de8bc7d0f7b70ba11f3 100644 (file)
@@ -1,3 +1,15 @@
+2014-12-15  Vladimir Makarov  <vmakarov@redhat.com>
+
+       PR rtl-optimization/63397
+       * ira-int.h (ira_overall_cost, ira_reg_cost, ira_mem_cost): Use
+       int64_t.
+       (ira_load_cost, ira_store_cost, ira_shuffle_cost): Ditto.
+       * ira.c (ira_overall_cost, ira_overall_cost_before): Ditto.
+       (ira_reg_cost, ira_mem_cost): Ditto.
+       (ira_load_cost, ira_store_cost, ira_shuffle_cost): Ditto.
+       (calculate_allocation_cost, do_reload): Use the right
+       format for int64_t values.
+
 2014-12-15  Jan Hubicka  <hubicka@ucw.cz>
 
        * sreal.h (to_double): New method.
index 0799b1e0fefc13cd17af65528b5389fdf07aafc2..79b7b997d6d6c89df7c8ce681c127ae072b252c0 100644 (file)
@@ -620,9 +620,9 @@ extern struct ira_spilled_reg_stack_slot *ira_spilled_reg_stack_slots;
    allocnos assigned to hard-registers, cost of the allocnos assigned
    to memory, cost of loads, stores and register move insns generated
    for pseudo-register live range splitting (see ira-emit.c).  */
-extern int ira_overall_cost;
-extern int ira_reg_cost, ira_mem_cost;
-extern int ira_load_cost, ira_store_cost, ira_shuffle_cost;
+extern int64_t ira_overall_cost;
+extern int64_t ira_reg_cost, ira_mem_cost;
+extern int64_t ira_load_cost, ira_store_cost, ira_shuffle_cost;
 extern int ira_move_loops_num, ira_additional_jumps_num;
 
 \f
index f08aa23e408d2ff9b1509639a1064c982a2af019..87ea86ddc1e058d1983acddcb30743a2fde21cef 100644 (file)
--- a/gcc/ira.c
+++ b/gcc/ira.c
@@ -431,9 +431,9 @@ struct ira_spilled_reg_stack_slot *ira_spilled_reg_stack_slots;
    the allocnos assigned to memory, cost of loads, stores and register
    move insns generated for pseudo-register live range splitting (see
    ira-emit.c).  */
-int ira_overall_cost, overall_cost_before;
-int ira_reg_cost, ira_mem_cost;
-int ira_load_cost, ira_store_cost, ira_shuffle_cost;
+int64_t ira_overall_cost, overall_cost_before;
+int64_t ira_reg_cost, ira_mem_cost;
+int64_t ira_load_cost, ira_store_cost, ira_shuffle_cost;
 int ira_move_loops_num, ira_additional_jumps_num;
 
 /* All registers that can be eliminated.  */
@@ -2489,10 +2489,15 @@ calculate_allocation_cost (void)
   if (internal_flag_ira_verbose > 0 && ira_dump_file != NULL)
     {
       fprintf (ira_dump_file,
-              "+++Costs: overall %d, reg %d, mem %d, ld %d, st %d, move %d\n",
+              "+++Costs: overall %"PRId64
+              ", reg %"PRId64
+              ", mem %"PRId64
+              ", ld %"PRId64
+              ", st %"PRId64
+              ", move %"PRId64,
               ira_overall_cost, ira_reg_cost, ira_mem_cost,
               ira_load_cost, ira_store_cost, ira_shuffle_cost);
-      fprintf (ira_dump_file, "+++       move loops %d, new jumps %d\n",
+      fprintf (ira_dump_file, "\n+++       move loops %d, new jumps %d\n",
               ira_move_loops_num, ira_additional_jumps_num);
     }
 
@@ -5422,7 +5427,8 @@ do_reload (void)
 
   if (internal_flag_ira_verbose > 0 && ira_dump_file != NULL
       && overall_cost_before != ira_overall_cost)
-    fprintf (ira_dump_file, "+++Overall after reload %d\n", ira_overall_cost);
+    fprintf (ira_dump_file, "+++Overall after reload %"PRId64 "\n",
+            ira_overall_cost);
 
   flag_ira_share_spill_slots = saved_flag_ira_share_spill_slots;