public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: William Schmidt <wschmidt@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc(refs/users/wschmidt/heads/builtins4)] rs6000: More bug fixes
Date: Sun,  7 Feb 2021 18:18:41 +0000 (GMT)	[thread overview]
Message-ID: <20210207181841.661DA39540E7@sourceware.org> (raw)

https://gcc.gnu.org/g:8cebc4fb33ff06d1df128512e67e33a61b348109

commit 8cebc4fb33ff06d1df128512e67e33a61b348109
Author: Bill Schmidt <wschmidt@linux.ibm.com>
Date:   Sun Feb 7 11:48:07 2021 -0600

    rs6000: More bug fixes
    
    2021-02-07  Bill Schmidt  <wschmidt@linux.ibm.com>
    
    gcc/
            * config/rs6000/rs6000-builtin-new.def: Clean up.
            * config/rs6000/rs6000-gen-builtins.c (write_init_file): Remove
            timevar stuff.
            * timevar.def (TV_BILL): Remove.

Diff:
---
 gcc/config/rs6000/rs6000-builtin-new.def | 8 --------
 gcc/config/rs6000/rs6000-gen-builtins.c  | 3 ---
 gcc/timevar.def                          | 3 ---
 3 files changed, 14 deletions(-)

diff --git a/gcc/config/rs6000/rs6000-builtin-new.def b/gcc/config/rs6000/rs6000-builtin-new.def
index 24fd7ed182d..5e63df13516 100644
--- a/gcc/config/rs6000/rs6000-builtin-new.def
+++ b/gcc/config/rs6000/rs6000-builtin-new.def
@@ -1735,12 +1735,8 @@
   const vd __builtin_vsx_xvcvsxwdp (vsi);
     XVCVSXWDP vsx_xvcvsxwdp {}
 
-; Need to pick one or the other here!!  ####
-; The first is needed to make vec_float work correctly.
   const vf __builtin_vsx_xvcvsxwsp (vsi);
     XVCVSXWSP vsx_floatv4siv4sf2 {}
-;  const vf __builtin_vsx_xvcvsxwsp (vsi);
-;    XVCVSXWSP_V4SF vsx_xvcvsxwdp {}
 
   const vd __builtin_vsx_xvcvuxddp (vull);
     XVCVUXDDP vsx_floatunsv2div2df2 {}
@@ -1758,12 +1754,8 @@
   const vd __builtin_vsx_xvcvuxwdp (vsi);
     XVCVUXWDP vsx_xvcvuxwdp {}
 
-; Need to pick one or the other here!! ####
-; The first is needed to make vec_float work correctly.
   const vf __builtin_vsx_xvcvuxwsp (vui);
     XVCVUXWSP vsx_floatunsv4siv4sf2 {}
-;  const vf __builtin_vsx_xvcvuxwsp (vui);
-;    XVCVUXWSP_V4SF vsx_xvcvuxwsp {}
 
   fpmath vd __builtin_vsx_xvdivdp (vd, vd);
     XVDIVDP divv2df3 {}
diff --git a/gcc/config/rs6000/rs6000-gen-builtins.c b/gcc/config/rs6000/rs6000-gen-builtins.c
index b75b29303dd..07222228310 100644
--- a/gcc/config/rs6000/rs6000-gen-builtins.c
+++ b/gcc/config/rs6000/rs6000-gen-builtins.c
@@ -2691,7 +2691,6 @@ write_init_file ()
   fprintf (init_file, "#include \"tree.h\"\n");
   fprintf (init_file, "#include \"langhooks.h\"\n");
   fprintf (init_file, "#include \"insn-codes.h\"\n");
-  fprintf (init_file, "#include \"timevar.h\"\n");
   fprintf (init_file, "#include \"rs6000-builtins.h\"\n");
   fprintf (init_file, "\n");
 
@@ -2715,7 +2714,6 @@ write_init_file ()
   fprintf (init_file, "rs6000_autoinit_builtins ()\n");
   fprintf (init_file, "{\n");
   fprintf (init_file, "  tree t;\n");
-  fprintf (init_file, "  timevar_start (TV_BILL);\n");
   rbt_inorder_callback (&fntype_rbt, fntype_rbt.rbt_root, write_fntype_init);
   fprintf (init_file, "\n");
 
@@ -2729,7 +2727,6 @@ write_init_file ()
   write_init_bif_table ();
   write_init_ovld_table ();
 
-  fprintf (init_file, "  timevar_stop (TV_BILL);\n");
   fprintf (init_file, "}\n\n");
 
   fprintf (init_file,
diff --git a/gcc/timevar.def b/gcc/timevar.def
index cea0ffa444d..63c0b3306de 100644
--- a/gcc/timevar.def
+++ b/gcc/timevar.def
@@ -340,6 +340,3 @@ DEFTIMEVAR (TV_ANALYZER_WORKLIST     , "analyzer: processing worklist")
 DEFTIMEVAR (TV_ANALYZER_DUMP         , "analyzer: dump")
 DEFTIMEVAR (TV_ANALYZER_DIAGNOSTICS  , "analyzer: emitting diagnostics")
 DEFTIMEVAR (TV_ANALYZER_SHORTEST_PATHS, "analyzer: shortest paths")
-
-/* Bill's timevar!  */
-DEFTIMEVAR (TV_BILL, "builtin initialization")


             reply	other threads:[~2021-02-07 18:18 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-07 18:18 William Schmidt [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-02-24  3:59 William Schmidt
2021-02-22 20:27 William Schmidt
2021-02-22 20:27 William Schmidt
2021-02-07 18:18 William Schmidt
2021-02-07 18:18 William Schmidt
2021-02-07 18:18 William Schmidt
2021-02-07 18:18 William Schmidt
2021-02-07 18:18 William Schmidt
2021-02-07 18:18 William Schmidt
2021-02-07 18:18 William Schmidt
2021-02-07 18:18 William Schmidt
2021-02-07 18:17 William Schmidt
2021-02-07 18:17 William Schmidt
2021-02-07 18:17 William Schmidt
2021-02-07 18:16 William Schmidt
2021-02-07 17:48 William Schmidt
2021-02-01  0:34 William Schmidt
2021-01-28 23:21 William Schmidt
2021-01-27 23:01 William Schmidt
2021-01-27 16:07 William Schmidt
2021-01-14 23:07 William Schmidt
2021-01-13 21:47 William Schmidt
2021-01-13 14:58 William Schmidt
2021-01-08 23:09 William Schmidt
2021-01-08 20:42 William Schmidt
2021-01-07 18:23 William Schmidt
2021-01-06 21:07 William Schmidt
2020-12-17 22:25 William Schmidt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210207181841.661DA39540E7@sourceware.org \
    --to=wschmidt@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).