From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2152) id B78AF3858D3C; Thu, 27 Apr 2023 00:00:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B78AF3858D3C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1682553657; bh=Me0xvFAoEpEINwbNdJwXq/cgsEbGNNdi4OmZ+Vz3Oww=; h=From:To:Subject:Date:From; b=WJWiNrVsmYOYYotcHvNBbCI2FF2s6qXrrJUEuuVEkmn4cwifb/I+EUq6I4HOWQHiX ZX+dCMc2idfa+/hvGKdR4skAE1Qimr5YRZu72cKQ/LzICcUvyxJnT/QvVpprQQEY8C mdKdAWbgKgvmVbW174ZDRcnhtIepENLU21ahpyrw= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Hans-Peter Nilsson To: gcc-cvs@gcc.gnu.org Subject: [gcc r14-281] libgcc CRIS: Define TARGET_HAS_NO_HW_DIVIDE X-Act-Checkin: gcc X-Git-Author: Hans-Peter Nilsson X-Git-Refname: refs/heads/master X-Git-Oldrev: 2a26872984c109a98d0ad733b0c68c3e1648ec86 X-Git-Newrev: d7f0bc05949481048d2fd524ecb2d892f6a04294 Message-Id: <20230427000057.B78AF3858D3C@sourceware.org> Date: Thu, 27 Apr 2023 00:00:57 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d7f0bc05949481048d2fd524ecb2d892f6a04294 commit r14-281-gd7f0bc05949481048d2fd524ecb2d892f6a04294 Author: Hans-Peter Nilsson Date: Thu Apr 27 02:00:33 2023 +0200 libgcc CRIS: Define TARGET_HAS_NO_HW_DIVIDE With this, execution time for e.g. __moddi3 go from 59 to 40 cycles in the "fast" case or from 290 to 200 cycles in the "slow" case (when the !TARGET_HAS_NO_HW_DIVIDE variant calls division and modulus functions for 32-bit SImode), as exposed by gcc.c-torture/execute/arith-rand-ll.c compiled for -march=v10. Unfortunately, it just puts a performance improvement "dent" of 0.07% in a arith-rand-ll.c-based performance test - where all loops are also reduced to 1/10. The size of every affected libgcc function is reduced to less than half and they are all now leaf functions. * config/cris/t-cris (HOST_LIBGCC2_CFLAGS): Add -DTARGET_HAS_NO_HW_DIVIDE. Diff: --- libgcc/config/cris/t-cris | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libgcc/config/cris/t-cris b/libgcc/config/cris/t-cris index b582974a42e..e0020294be9 100644 --- a/libgcc/config/cris/t-cris +++ b/libgcc/config/cris/t-cris @@ -8,3 +8,6 @@ $(LIB2ADD): $(srcdir)/config/cris/arit.c echo "#define L$$name" > tmp-$@ \ && echo '#include "$<"' >> tmp-$@ \ && mv -f tmp-$@ $@ + +# Use an appropriate implementation when implementing DImode division. +HOST_LIBGCC2_CFLAGS += -DTARGET_HAS_NO_HW_DIVIDE