diff mbox

Add 'Fortran' to display text of all PRED_FORTRAN_*

Message ID 2df7c148-bf1a-9e56-e29d-080be876255d@suse.cz
State New
Headers show

Commit Message

Martin Liška June 16, 2016, 4:02 p.m. UTC
Hello.

Following patch just enhances display names of all Fortran predictors.
Pre-approved by Honza.

Patch survives reg&bootstrap on x86_64-linux-gnu.
Installed as r237532.

Martin
diff mbox

Patch

From 4bfd7a78395c5145712fd5a104e9a9dd43b9c541 Mon Sep 17 00:00:00 2001
From: marxin <mliska@suse.cz>
Date: Thu, 16 Jun 2016 13:38:30 +0200
Subject: [PATCH 1/2] Add 'Fortran' to display text of all PRED_FORTRAN_*
 predictors.

gcc/ChangeLog:

2016-06-16  Martin Liska  <mliska@suse.cz>

	* predict.def: Add 'Fortran' to display text of all
	PRED_FORTRAN_* predictors.
---
 gcc/predict.def | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/gcc/predict.def b/gcc/predict.def
index da4f9ab..3e3a43a 100644
--- a/gcc/predict.def
+++ b/gcc/predict.def
@@ -159,40 +159,43 @@  DEF_PREDICTOR (PRED_COLD_LABEL, "cold label", PROB_VERY_LIKELY,
 /* The following predictors are used in Fortran. */
 
 /* Branch leading to an integer overflow are extremely unlikely.  */
-DEF_PREDICTOR (PRED_FORTRAN_OVERFLOW, "overflow", PROB_ALWAYS,
+DEF_PREDICTOR (PRED_FORTRAN_OVERFLOW, "Fortran overflow", PROB_ALWAYS,
 	       PRED_FLAG_FIRST_MATCH)
 
 /* Branch leading to a failure status are unlikely.  This can occur for out
    of memory.  This predictor only occurs when the user explicitly asked
    for a return status.  By default, the code aborts,
    which is handled via PRED_NORETURN.  */
-DEF_PREDICTOR (PRED_FORTRAN_FAIL_ALLOC, "fail alloc", PROB_VERY_LIKELY, 0)
+DEF_PREDICTOR (PRED_FORTRAN_FAIL_ALLOC, "Fortran fail alloc", PROB_VERY_LIKELY, 0)
 
 /* Predictor is used for an allocation of an already allocated memory or
    deallocating an already deallocated allocatable.  */
-DEF_PREDICTOR (PRED_FORTRAN_REALLOC, "repeated allocation/deallocation", \
-	       PROB_LIKELY, 0)
+DEF_PREDICTOR (PRED_FORTRAN_REALLOC, \
+	       "Fortran repeated allocation/deallocation", PROB_LIKELY, 0)
 
 /* Branch leading to an I/O failure status are unlikely.  This predictor is
    used for I/O failures such as for invalid unit numbers.  This predictor
    only occurs when the user explicitly asked for a return status.  By default,
    the code aborts, which is handled via PRED_NORETURN.  */
-DEF_PREDICTOR (PRED_FORTRAN_FAIL_IO, "fail IO", HITRATE (85), 0)
+DEF_PREDICTOR (PRED_FORTRAN_FAIL_IO, "Fortran fail IO", HITRATE (85), 0)
 
 /* Branch leading to a run-time warning message which is printed only once
    are unlikely.  The print-warning branch itself can be likely or unlikely.  */
-DEF_PREDICTOR (PRED_FORTRAN_WARN_ONCE, "warn once", HITRATE (75), 0)
+DEF_PREDICTOR (PRED_FORTRAN_WARN_ONCE, "Fortran warn once", HITRATE (75), 0)
 
 /* Branch belonging to a zero-sized array.  */
-DEF_PREDICTOR (PRED_FORTRAN_SIZE_ZERO, "zero-sized array", HITRATE(99), 0)
+DEF_PREDICTOR (PRED_FORTRAN_SIZE_ZERO, "Fortran zero-sized array", \
+	       HITRATE (99), 0)
 
 /* Branch belonging to an invalid bound index, in a context where it is
    standard conform and well defined but rather pointless and, hence, rather
    unlikely to occur.  */
-DEF_PREDICTOR (PRED_FORTRAN_INVALID_BOUND, "zero-sized array", HITRATE(90), 0)
+DEF_PREDICTOR (PRED_FORTRAN_INVALID_BOUND, "Fortran invalid bound", \
+	       HITRATE (90), 0)
 
 /* Branch belonging to the handling of absent optional arguments.  This
    predictor is used when an optional dummy argument, associated with an
    absent argument, is passed on as actual argument to another procedure,
    which in turn has an optional argument.  */
-DEF_PREDICTOR (PRED_FORTRAN_ABSENT_DUMMY, "absent dummy", HITRATE(60), 0)
+DEF_PREDICTOR (PRED_FORTRAN_ABSENT_DUMMY, "Fortran absent dummy", \
+	       HITRATE (60), 0)
-- 
2.8.3