From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1005) id C3610384D1BC; Thu, 30 Jun 2022 06:01:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C3610384D1BC 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/work093)] Update ChangeLog.meissner. X-Act-Checkin: gcc X-Git-Author: Michael Meissner X-Git-Refname: refs/users/meissner/heads/work093 X-Git-Oldrev: 1743e2875d0a6de37268fa8f06a33e0de4c82faf X-Git-Newrev: de859c383f48df4cb9460d150f415b792649db84 Message-Id: <20220630060142.C3610384D1BC@sourceware.org> Date: Thu, 30 Jun 2022 06:01:42 +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: Thu, 30 Jun 2022 06:01:42 -0000 https://gcc.gnu.org/g:de859c383f48df4cb9460d150f415b792649db84 commit de859c383f48df4cb9460d150f415b792649db84 Author: Michael Meissner Date: Thu Jun 30 02:01:24 2022 -0400 Update ChangeLog.meissner. 2022-06-30 Michael Meissner gcc/ * ChangeLog.meissner: Update. Diff: --- gcc/ChangeLog.meissner | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gcc/ChangeLog.meissner b/gcc/ChangeLog.meissner index e18fd3a4518..d9171216954 100644 --- a/gcc/ChangeLog.meissner +++ b/gcc/ChangeLog.meissner @@ -1,3 +1,43 @@ +==================== work093, patch #2 + +Add support to built-ins for long double using IEEE 128-bit. + +This patch lays the ground work that future patches will use to add +builtin support (both normal and overloaded) for the case where long +double uses the IEEE 128-bit encoding. The issue to enable migrating the +builtins to use the overload facility to allow both __float128 and long +double to the functions. + +This adds a new stanza (ieee128-hw-ld) for when we have IEEE 128-bit +hardware support and long double uses the IEEE 128-bit encoding. + +A new type attribute (ieeeld) is added for long double if long double uses +the IEEE 128-bit encoding. + +2022-06-30 Michael Meissner + + +gcc/ + + * config/rs6000/rs6000-builtin.cc (rs6000_invalid_builtin): Add + support for ibm128-hw-ld stanza. + (rs6000_builtin_is_supported): Likewise. + (rs6000_init_builtins): Likewise. + (rs6000_expand_builtin): Add support for IEEE128_HW_LD. Add + support for ieeeld. + * config/rs6000/rs6000-builtins.def (toplevel): Add comment about + the new ieeeld attribute. + * config/rs6000/rs6000-gen-builtins.cc (enum bif_stanza): Add + BSTZ_IEEE128_HW_LD. + (stanza_map): Likewise. + (enable_string): Likewise. + (attrinfo): Add isieeeld. + (parse_bif_attrs): Parse ieeeld. Add printing ieeeld to the debug + print. + (write_decls): Add support for ibm128-hw-ld stanza and ieeeld + attribute. + (write_bif_static_init): Add support for ieeeld attribute. + ==================== work093, patch #1 Change __ieee128 to __float128.