From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1005) id DD3F33858D33; Wed, 7 Apr 2021 19:16:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DD3F33858D33 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Michael Meissner To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/meissner/heads/work046)] Update ChangeLog.meissner. X-Act-Checkin: gcc X-Git-Author: Michael Meissner X-Git-Refname: refs/users/meissner/heads/work046 X-Git-Oldrev: be63331b546347b54ac1fda1894fbb1a954fbcd6 X-Git-Newrev: 87df707604415bd3483be0f0c85af239d4ffe88e Message-Id: <20210407191612.DD3F33858D33@sourceware.org> Date: Wed, 7 Apr 2021 19:16:12 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Apr 2021 19:16:13 -0000 https://gcc.gnu.org/g:87df707604415bd3483be0f0c85af239d4ffe88e commit 87df707604415bd3483be0f0c85af239d4ffe88e Author: Michael Meissner Date: Wed Apr 7 15:15:44 2021 -0400 Update ChangeLog.meissner. gcc/ 2021-04-07 Michael Meissner * ChangeLog.meissner: Update. gcc/testsuite/ 2021-04-07 Michael Meissner * ChangeLog.meissner: Update. Diff: --- gcc/ChangeLog.meissner | 41 ++++++++++++++++++++++++++++++++++++++++ gcc/testsuite/ChangeLog.meissner | 7 +++++++ 2 files changed, 48 insertions(+) diff --git a/gcc/ChangeLog.meissner b/gcc/ChangeLog.meissner index 37b8e863014..a8bb03c3fc5 100644 --- a/gcc/ChangeLog.meissner +++ b/gcc/ChangeLog.meissner @@ -1,3 +1,44 @@ +work046.patch013: +2021-04-07 Michael Meissner + + * config/rs6000/altivec.md (UNSPEC_XXSPLTID): Move to vsx.md and + rename to UNSPEC_XXSPLTID. + (xxspltidp_v2df): Move to vsx.md and re-implement. + (xxspltidp_v2df_inst): Move to vsx.md and re-implement. + * config/rs6000/constraints.md (eF): New constraint. + * config/rs6000/predicates.md (easy_fp_constant): If we load the + scalar constant with XXSPLTIDP, return true. + (xxspltidp_operand): New predicate. + (easy_vector_constant): If we can generate XXSPLTIDP, mark the + vector constant as easy. + * config/rs6000/rs6000-cpus.def (OTHER_POWER10_MASKS): Add + -mxxspltidp support. + (POWERPC_MASKS): Add -mxxspltidp support. + * config/rs6000/rs6000-protos.h (xxspltidp_constant_p): New + declaration. + * config/rs6000/rs6000.c (rs6000_option_override_internal): Add + -mxxspltidp support. + (xxspltidp_constant_p): New function. + (output_vec_const_move): Add support for XXSPLTIDP. + (rs6000_opt_masks): Add -mxxspltidp support. + (rs6000_emit_xxspltidp_v2df): Change function to implement the + XXSPLTIDP instruction. + * config/rs6000/rs6000.md (movsf_hardfloat): Add XXSPLTIDP + support. + (mov_hardfloat32, FMOVE64 iterator): Add XXSPLTIDP support. + (mov_hardfloat64, FMOVE64 iterator): Add XXSPLTIDP support. + * config/rs6000/rs6000.opt (-mxxspltidp): New switch. + * config/rs6000/vsx.md (UNSPEC_XXSPLTIDP): Move here from + altivec.md. Rename it to UNSPEC_XXSPLTIDP to match the + instruction. + (vsx_mov_64bit): Add XXSPLTIDP support. + (vsx_mov_32bit): Add XXSPLTIDP support. + (XXSPLTIDP): New mode iterator. + (xxspltidp__internal1): New define_insn_and_split. + (xxspltidp__internal2): New define_insn. + (xxspltidp_v2df): Move to vsx.md from altivec.md. Re-implement to + use the new constant format. + work046.patch011: 2021-04-07 Michael Meissner diff --git a/gcc/testsuite/ChangeLog.meissner b/gcc/testsuite/ChangeLog.meissner index bd8b080479c..c3653c3e65b 100644 --- a/gcc/testsuite/ChangeLog.meissner +++ b/gcc/testsuite/ChangeLog.meissner @@ -1,3 +1,10 @@ +work046.patch014: +2021-04-07 Michael Meissner + + * gcc.target/powerpc/vec-splat-constant-sf.c: New test. + * gcc.target/powerpc/vec-splat-constant-df.c: New test. + * gcc.target/powerpc/vec-splat-constant-v2df.c: New test. + work046.patch012: 2021-04-07 Michael Meissner