From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25648 invoked by alias); 24 May 2018 04:36:04 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 25631 invoked by uid 89); 24 May 2018 04:36:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-5.9 required=5.0 tests=BAYES_00,GIT_PATCH_3,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy=H*F:D*br X-HELO: mo19.mail-out.ovh.net From: "Gabriel F. T. Gomes" To: Subject: [RFC PATCH 0/5] *printf/*scanf functions for the long double migration on powerpc64le Date: Thu, 24 May 2018 04:36:00 -0000 Message-ID: <20180524043553.23569-1-gabriel@inconstante.eti.br> MIME-Version: 1.0 Content-Type: text/plain X-ClientProxiedBy: EX1.emp.local (172.16.2.1) To EX4.emp.local (172.16.2.4) X-Ovh-Tracer-Id: 4696972938102689475 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: 0 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedthedrgeeigddugecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfqggfjpdevjffgvefmvefgnecuuegrihhlohhuthemuceftddtnecu X-SW-Source: 2018-05/txt/msg00787.txt.bz2 Each RFC patch in this thread has its own comments, but I'd like to point out that: * Patch 1/5 is currently under review on libc-alpha, but I added it to this series, because it makes the series usable (testable). * Patches 2/5 and 3/5 are new cleanups (required by the next patch). * Patch 4/5 is the bulk of the RFC. * Patch 5/5 is there just to allow people to test the series. Gabriel F. T. Gomes (4): Do not define and undefine vfprintf in vfprintf.c Do not declare __mpn_extract_float128 when long double has binary128 format RFC: Two vfprintf implementations (IBM and IEEE 128) RFC: powerpc64le: Convert default long double format to IEEE binary128 Tulio Magno Quites Machado Filho (1): powerpc: Move around math-related Implies include/gmp.h | 2 +- libio/stdio.h | 9 ++++ stdio-common/vfprintf.c | 9 ++-- sysdeps/ieee754/ldbl-128ibm-compat/Makefile | 20 +++++++++ sysdeps/ieee754/ldbl-128ibm-compat/Versions | 12 +++++ .../ldbl-128ibm-compat/bits/stdio-ieee128.h | 30 +++++++++++++ .../ieee754/ldbl-128ibm-compat/ieee128-printf_fp.c | 16 +++++++ .../ldbl-128ibm-compat/ieee128-printf_fphex.c | 16 +++++++ .../ieee754/ldbl-128ibm-compat/ieee128-vfprintf.c | 13 ++++++ .../ldbl-128ibm-compat/test-printf-ibm128.c | 1 + .../ldbl-128ibm-compat/test-printf-ieee128.c | 1 + .../ldbl-128ibm-compat/test-printf-ldbl-compat.c | 51 ++++++++++++++++++++++ sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h | 27 +++++++++++- .../powerpc/{Implies => powerpc32/Implies-after} | 0 sysdeps/powerpc/powerpc64/be/Implies-after | 5 +++ sysdeps/powerpc/powerpc64/le/Implies-before | 6 +++ .../powerpc/powerpc64/le/ldbl-128ibm-compat-abi.h | 8 ++++ .../sysv/linux/powerpc/powerpc64/libc-le.abilist | 3 ++ 18 files changed, 221 insertions(+), 8 deletions(-) create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/Makefile create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/Versions create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/bits/stdio-ieee128.h create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/ieee128-printf_fp.c create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/ieee128-printf_fphex.c create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/ieee128-vfprintf.c create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/test-printf-ibm128.c create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/test-printf-ieee128.c create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/test-printf-ldbl-compat.c rename sysdeps/powerpc/{Implies => powerpc32/Implies-after} (100%) create mode 100644 sysdeps/powerpc/powerpc64/be/Implies-after create mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/le/ldbl-128ibm-compat-abi.h -- 2.14.3