From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.3 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 9386 invoked from network); 2 Jun 2020 01:58:22 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 2 Jun 2020 01:58:22 -0000 Received: (qmail 26181 invoked by uid 550); 2 Jun 2020 01:58:19 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 26151 invoked from network); 2 Jun 2020 01:58:18 -0000 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Mon, 1 Jun 2020 20:58:02 -0500 From: Segher Boessenkool To: Daniel Kolesa Cc: Joseph Myers , Will Springer , libc-alpha@sourceware.org, eery@paperfox.es, musl@lists.openwall.com, Palmer Dabbelt via binutils , via libc-dev , linuxppc-dev@lists.ozlabs.org Message-ID: <20200602015802.GN31009@gate.crashing.org> References: <2047231.C4sosBPzcN@sheen> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Subject: [musl] Re: ppc64le and 32-bit LE userland compatibility On Tue, Jun 02, 2020 at 01:26:37AM +0200, Daniel Kolesa wrote: > On Mon, Jun 1, 2020, at 23:28, Joseph Myers wrote: > Are you sure this would be a new port? Glibc already works in this combination, as it seems to me it'd be best if it was just a variant of the existing 32-bit PowerPC port, sharing most conventions besides endianness with the BE port. That's right. Except it isn't an "official" existing port, never has been "officially" supported. > 128-bit IEEE long double would not work, since that relies on VSX being present (gcc will explicitly complain if it's not). I'd be all for using 64-bit long double, though (musl already does, on all ppc ports). The current IEEE QP float support requires VSX for its emulation, yes (possibly even Power8?) As Mike reminded me today, it also requires __int128 support, which rules out anything 32-bit currently. Without that restriction, we could just make QP float passed in GPRs (use the ABIs for any struct passed that way), and that'll just work out with all ABIs, older or not. > While we're at long double, I'd actually be interested in transitioning the existing big endian ports in Void (64-bit and 32-bit, neither has VSX baseline requirement in my case) to using 64-bit long double, abandoning the IBM format altogether (little endian will transition to 128-bit IEEE long double once it's ready on your side, as that assumes POWER8 baseline which includes VSX). I recommend new ports that cannot jump to IEEE QP float directly to use long double == double for the time being, avoiding the extra complications that IBM double double would bring. But you'll still have a transition to IEEE 128 if you ever want to go there. But if you already use double-double, I don't know if the cost changing away from that is worth it now. > What would be the best way for me to proceed with that? I actually experimented with this, using the old glibc compat symbols from pre-ibm128 times, and I mostly had it working, except I haven't managed to find a way to switch the default symbols to 64-bit ones, which is problematic as linking everything against nldbl_nonshared is fragile and potentially quirky (breaks dlsym, function pointer equality across libraries, etc). Yup. "Rebuild the world" works :-/ I don't have any better advice, nothing you cannot figure out yourself. > There is also one more thing while we're at this. The 64-bit big endian Void port uses the ELFv2 ABI, even on glibc. This is not officially supported on glibc as far as I can tell, but it does work out of box, without any patching (things in general match little endian then, i.e. ld64.so.2 etc, but they're big endian). Is there any chance of making that support official? (I don't talk for glibc). The first thing needed is for "us" to have faith in it. That starts with seeing test results for the testsuites! (Something similar goes for the GCC port -- there is no official support for BE ELFv2, but of course it does work, and if we get test results we may keep it that way, hint hint :-) ) Segher