From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1005) id 48B0C3858C66; Fri, 13 Jan 2023 00:03:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 48B0C3858C66 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1673568233; bh=6P/h3dFRGeUfRHEh4DQsyAjgt/cWb6Sm7lPY4kYwYcs=; h=From:To:Subject:Date:From; b=Y9su/aFbUvHnRZs51dWqzPOKBMxHTGBy+AUbUTh7V8rNnjk+kmUZaG/42MOGGkZVE kLFLu1zHuqfLAIXRbpwEE8hrVZvYlFbBhBDceO9c7mszqXIKuwVNGRATN7T4H9JhF9 XOEQ7VKqjKnO47wS/VHvRG0XkoXLZpVhILQ9949o= 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/work106)] Update ChangeLog.meissner X-Act-Checkin: gcc X-Git-Author: Michael Meissner X-Git-Refname: refs/users/meissner/heads/work106 X-Git-Oldrev: 5698b049feb25bb762acd0e5ce15261ae72628b5 X-Git-Newrev: 9b3eddb60a24f54fd23f4564ef466c635cee2e1a Message-Id: <20230113000353.48B0C3858C66@sourceware.org> Date: Fri, 13 Jan 2023 00:03:53 +0000 (GMT) List-Id: https://gcc.gnu.org/g:9b3eddb60a24f54fd23f4564ef466c635cee2e1a commit 9b3eddb60a24f54fd23f4564ef466c635cee2e1a Author: Michael Meissner Date: Thu Jan 12 19:03:49 2023 -0500 Update ChangeLog.meissner Diff: --- gcc/ChangeLog.meissner | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/gcc/ChangeLog.meissner b/gcc/ChangeLog.meissner index c9a386d7b51..7bdf0a234ad 100644 --- a/gcc/ChangeLog.meissner +++ b/gcc/ChangeLog.meissner @@ -1,3 +1,63 @@ +==================== work106, patch #1 ==================== + +PR target/107299: Update IEEE 128-bit types for PowerPC libgcc + +This patch updates the IEEE 128-bit types in libgcc. + +At the moment, we cannot build GCC when the target uses IEEE 128-bit long +doubles, such as building the compiler for a native Fedora 36 system. The +build dies when it is trying to build the _mulkc3.c and _divkc3 modules. + +This patch changes the IEEE 128-bit type (TFtype) in the IEEE 128-bit support +to use either _Float128 or long double. Previously we would use the __float128 +type. In addition, the TCtype will use the same type along with _Complex. + +I changed the libgcc build so that the IEEE 128-bit support is now compiled +with -mabi=ieeelongdouble. For the _mulkc3 and _divkc3, I explicitly use long +double and long double _Complex to avoid type mismatch errors. + +While it is desirable to ultimately have __float128 and _Float128 use the same +internal type and mode within GCC, at present if you use the option +-mabi=ieeelongdouble, the __float128 type will use the long double type. We +get an internal compiler error if we combine the signbitf128 built-in with a +long double type. + +I've gone through several iterations of trying to fix this within GCC, and +there are various problems that have come up. I developed this alternative +patch that changes libgcc so that it does not tickle the issue. I hope we can +fix the compiler at some point, but right now, this is preventing people on +Fedora 36 systems from building compilers where the default long double is IEEE +128-bit. + +2023-01-12 Michael Meissner + + PR target/107299 + * config/rs6000/_divkc3.c (toplevel): Add assertion for building with + -mabi=ieeelongdouble. Remove code supporting -mabi=ibmlongdouble. + (COPYSIGN): Use the long double built-in. + (INFINITY): Likewise. + (FABS): Likewise. + * config/rs6000/_mulkc3.c (toplevel): Add assertion for building with + -mabi=ieeelongdouble. + (COPYSIGN): Use the long double built-in. + (INFINITY): Likewise. + * config/rs6000/float128-ifunc.c (toplevel): Add assertion for building + with -mabi=ieeelongdouble. + * config/rs6000/quad-float128.h (TF): Delete definition. + (TFtype): Define to be _Float128 or long double. + (TCtype): Define to be _Complex _Float128 or _Complex long double. + (__mulkc3_sw): Only declare function if -mabi=ieeelongdouble. + (__divkc3_sw): Likewise. + (__mulkc3_hw): Likewise. + (__divkc3_hw): Likewise. + (__mulkc3): Likewise. + (__divkc3): Likewise. + * config/rs6000/t-float128 (FP128_CFLAGS_SW): Add -mabi=ieeelongdouble. + * config/rs6000/t-float128-hw (FP128_CFLAGS_HW): Likewise. + * libgcc2.h (TFtype): Allow MD code to override definition. + (TCtype): Likewise. + * soft-fp/quad.h (TFtype): Likewise. + 2023-01-12 Michael Meissner Clone branch