diff mbox series

gimple-fold: consistent dump of builtin call simplifications

Message ID CACpoBpnynUUCrBYHFvVd88j=LG41u0gy2AmB1LwO5oTA64bb2Q@mail.gmail.com
State New
Headers show
Series gimple-fold: consistent dump of builtin call simplifications | expand

Commit Message

Rubin Gerritsen July 14, 2024, 8:14 a.m. UTC
Previously only simplifications of the `__st[xrp]cpy_chk`
were dumped. Now all call replacement simplifications are
dumped.

Examples of statements with corresponding dumpfile entries:

`printf("mystr\n");`:
      optimized: simplified printf to __builtin_puts
`printf("%c", 'a');`:
      optimized: simplified printf to __builtin_putchar
`printf("%s\n", "mystr");`:
      optimized: simplified printf to __builtin_puts

2024-07-13  Rubin Gerritsen  <rubin.gerritsen@gmail.com>

gcc/ChangeLog:

   * gimple-fold.cc (dump_transformation): Moved definition.
   (replace_call_with_call_and_fold): Calls dump_transformation.
   (gimple_fold_builtin_stxcpy_chk): Removes call to
   dump_transformation, now in replace_call_with_call_and_fold.
   (gimple_fold_builtin_stxncpy_chk): Removes call to
        dump_transformation, now in replace_call_with_call_and_fold.
---
 gcc/gimple-fold.cc | 22 ++++++++++------------
 1 file changed, 10 insertions(+), 12 deletions(-)


 /* Replace the call at *GSI with the gimple value VAL.  */

@@ -835,6 +844,7 @@ static void
 replace_call_with_call_and_fold (gimple_stmt_iterator *gsi, gimple *repl)
 {
   gimple *stmt = gsi_stmt (*gsi);
+  dump_transformation (as_a <gcall *> (stmt), as_a <gcall *> (repl));
   gimple_call_set_lhs (repl, gimple_call_lhs (stmt));
   gimple_set_location (repl, gimple_location (stmt));
   gimple_move_vops (repl, stmt);
@@ -3090,16 +3100,6 @@ gimple_fold_builtin_memory_chk (gimple_stmt_iterator
*gsi,
   return true;
 }

-/* Print a message in the dump file recording transformation of FROM to
TO.  */
-
-static void
-dump_transformation (gcall *from, gcall *to)
-{
-  if (dump_enabled_p ())
-    dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, from, "simplified %T to
%T\n",
-          gimple_call_fn (from), gimple_call_fn (to));
-}
-
 /* Fold a call to the __st[rp]cpy_chk builtin.
    DEST, SRC, and SIZE are the arguments to the call.
    IGNORE is true if return value can be ignored.  FCODE is the BUILT_IN_*
@@ -3189,7 +3189,6 @@ gimple_fold_builtin_stxcpy_chk (gimple_stmt_iterator
*gsi,
     return false;

   gcall *repl = gimple_build_call (fn, 2, dest, src);
-  dump_transformation (stmt, repl);
   replace_call_with_call_and_fold (gsi, repl);
   return true;
 }
@@ -3235,7 +3234,6 @@ gimple_fold_builtin_stxncpy_chk (gimple_stmt_iterator
*gsi,
     return false;

   gcall *repl = gimple_build_call (fn, 3, dest, src, len);
-  dump_transformation (stmt, repl);
   replace_call_with_call_and_fold (gsi, repl);
   return true;
 }

Comments

Richard Biener July 15, 2024, 1:46 p.m. UTC | #1
On Sun, Jul 14, 2024 at 10:15 AM rubin.gerritsen <rubin_ge@hotmail.com> wrote:
>
> Previously only simplifications of the `__st[xrp]cpy_chk`
> were dumped. Now all call replacement simplifications are
> dumped.
>
> Examples of statements with corresponding dumpfile entries:
>
> `printf("mystr\n");`:
>       optimized: simplified printf to __builtin_puts
> `printf("%c", 'a');`:
>       optimized: simplified printf to __builtin_putchar
> `printf("%s\n", "mystr");`:
>       optimized: simplified printf to __builtin_puts

The patch looks OK.  Please state how you tested it and add a
Signed-off-by: Rubin Gerritsen  <rubin.gerritsen@gmail.com>
tag to the commit as to state you are contributing this under
the DCO (https://gcc.gnu.org/dco.html)

> 2024-07-13  Rubin Gerritsen  <rubin.gerritsen@gmail.com>
>
> gcc/ChangeLog:
>
>    * gimple-fold.cc (dump_transformation): Moved definition.
>    (replace_call_with_call_and_fold): Calls dump_transformation.
>    (gimple_fold_builtin_stxcpy_chk): Removes call to
>    dump_transformation, now in replace_call_with_call_and_fold.
>    (gimple_fold_builtin_stxncpy_chk): Removes call to
>         dump_transformation, now in replace_call_with_call_and_fold.

It looks like there's eventually a space vs. tab mixup in the last line.

> ---
>  gcc/gimple-fold.cc | 22 ++++++++++------------
>  1 file changed, 10 insertions(+), 12 deletions(-)
>
> diff --git a/gcc/gimple-fold.cc b/gcc/gimple-fold.cc
> index 7c534d56bf1..b20d3a2ff9a 100644
> --- a/gcc/gimple-fold.cc
> +++ b/gcc/gimple-fold.cc
> @@ -802,6 +802,15 @@ gimplify_and_update_call_from_tree (gimple_stmt_iterator *si_p, tree expr)
>    gsi_replace_with_seq_vops (si_p, stmts);
>  }
>
> +/* Print a message in the dump file recording transformation of FROM to TO.  */
> +
> +static void
> +dump_transformation (gcall *from, gcall *to)
> +{
> +  if (dump_enabled_p ())
> +    dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, from, "simplified %T to %T\n",
> +          gimple_call_fn (from), gimple_call_fn (to));
> +}
>
>  /* Replace the call at *GSI with the gimple value VAL.  */
>
> @@ -835,6 +844,7 @@ static void
>  replace_call_with_call_and_fold (gimple_stmt_iterator *gsi, gimple *repl)
>  {
>    gimple *stmt = gsi_stmt (*gsi);
> +  dump_transformation (as_a <gcall *> (stmt), as_a <gcall *> (repl));
>    gimple_call_set_lhs (repl, gimple_call_lhs (stmt));
>    gimple_set_location (repl, gimple_location (stmt));
>    gimple_move_vops (repl, stmt);
> @@ -3090,16 +3100,6 @@ gimple_fold_builtin_memory_chk (gimple_stmt_iterator *gsi,
>    return true;
>  }
>
> -/* Print a message in the dump file recording transformation of FROM to TO.  */
> -
> -static void
> -dump_transformation (gcall *from, gcall *to)
> -{
> -  if (dump_enabled_p ())
> -    dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, from, "simplified %T to %T\n",
> -          gimple_call_fn (from), gimple_call_fn (to));
> -}
> -
>  /* Fold a call to the __st[rp]cpy_chk builtin.
>     DEST, SRC, and SIZE are the arguments to the call.
>     IGNORE is true if return value can be ignored.  FCODE is the BUILT_IN_*
> @@ -3189,7 +3189,6 @@ gimple_fold_builtin_stxcpy_chk (gimple_stmt_iterator *gsi,
>      return false;
>
>    gcall *repl = gimple_build_call (fn, 2, dest, src);
> -  dump_transformation (stmt, repl);
>    replace_call_with_call_and_fold (gsi, repl);
>    return true;
>  }
> @@ -3235,7 +3234,6 @@ gimple_fold_builtin_stxncpy_chk (gimple_stmt_iterator *gsi,
>      return false;
>
>    gcall *repl = gimple_build_call (fn, 3, dest, src, len);
> -  dump_transformation (stmt, repl);
>    replace_call_with_call_and_fold (gsi, repl);
>    return true;
>  }
> --
> 2.34.1
>
>
diff mbox series

Patch

diff --git a/gcc/gimple-fold.cc b/gcc/gimple-fold.cc
index 7c534d56bf1..b20d3a2ff9a 100644
--- a/gcc/gimple-fold.cc
+++ b/gcc/gimple-fold.cc
@@ -802,6 +802,15 @@  gimplify_and_update_call_from_tree
(gimple_stmt_iterator *si_p, tree expr)
   gsi_replace_with_seq_vops (si_p, stmts);
 }

+/* Print a message in the dump file recording transformation of FROM to
TO.  */
+
+static void
+dump_transformation (gcall *from, gcall *to)
+{
+  if (dump_enabled_p ())
+    dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, from, "simplified %T to
%T\n",
+          gimple_call_fn (from), gimple_call_fn (to));
+}