From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 5/5] lib: Enable private libgcc by default
Date: Thu, 24 Mar 2016 01:36:39 +0100 [thread overview]
Message-ID: <56F33697.3070600@denx.de> (raw)
In-Reply-To: <20160324001344.GN23166@bill-the-cat>
On 03/24/2016 01:13 AM, Tom Rini wrote:
> On Thu, Mar 24, 2016 at 12:49:54AM +0100, Marek Vasut wrote:
>> On 03/24/2016 12:47 AM, Sergey Kubushyn wrote:
>>> On Thu, 24 Mar 2016, Marek Vasut wrote:
>>>
>>>> On 03/24/2016 12:08 AM, Tom Rini wrote:
>>>>> On Wed, Mar 23, 2016 at 04:02:07PM -0700, Sergey Kubushyn wrote:
>>>>>> On Wed, 23 Mar 2016, Tom Rini wrote:
>>>>>>
>>>>>>> On Wed, Mar 23, 2016 at 06:08:45PM +0100, Albert ARIBAUD wrote:
>>>>>>>> Hello Tom,
>>>>>>>>
>>>>>>>> On Wed, 23 Mar 2016 09:22:38 -0400, Tom Rini <trini@konsulko.com>
>>>>>>>> wrote:
>>>>>>>>> On Wed, Mar 23, 2016 at 01:53:35PM +0100, Albert ARIBAUD wrote:
>>>>>>>>>> Hello Marek,
>>>>>>>>>>
>>>>>>>>>> On Sun, 20 Mar 2016 17:15:34 +0100, Marek Vasut <marex@denx.de>
>>>>>>>>>> wrote:
>>>>>>>>>>> This patch decouples U-Boot binary from the toolchain on
>>>>>>>>>>> systems where
>>>>>>>>>>> private libgcc is available. Instead of pulling in functions
>>>>>>>>>>> provided
>>>>>>>>>>> by the libgcc from the toolchain, U-Boot will use it's own set
>>>>>>>>>>> of libgcc
>>>>>>>>>>> functions. These functions are usually imported from Linux
>>>>>>>>>>> kernel, which
>>>>>>>>>>> also uses it's own libgcc functions instead of the ones
>>>>>>>>>>> provided by the
>>>>>>>>>>> toolchain.
>>>>>>>>>>>
>>>>>>>>>>> This patch solves a rather common problem. The toolchain can
>>>>>>>>>>> usually
>>>>>>>>>>> generate code for many variants of target architecture and
>>>>>>>>>>> often even
>>>>>>>>>>> different endianness. The libgcc on the other hand is usually
>>>>>>>>>>> compiled
>>>>>>>>>>> for one particular configuration and the functions provided by
>>>>>>>>>>> it may
>>>>>>>>>>> or may not be suited for use in U-Boot. This can manifest in
>>>>>>>>>>> two ways,
>>>>>>>>>>> either the U-Boot fails to compile altogether and linker will
>>>>>>>>>>> complain
>>>>>>>>>>> or, in the much worse case, the resulting U-Boot will build,
>>>>>>>>>>> but will
>>>>>>>>>>> misbehave in very subtle and hard to debug ways.
>>>>>>>>>>
>>>>>>>>>> I don't think using private libgcc by default is a good idea.
>>>>>>>>>>
>>>>>>>>>> U-Boot's private libgcc is not a feature of U-Boot, but a fix
>>>>>>>>>> for some
>>>>>>>>>> cases where a target cannot properly link with the libgcc
>>>>>>>>>> provided by
>>>>>>>>>> the (specific release of the) GCC toolchain in use. Using
>>>>>>>>>> private libgcc
>>>>>>>>>> to other cases than these does not fix or improve anything; those
>>>>>>>>>> other cases were working and did not require any fix in this
>>>>>>>>>> respect.
>>>>>>>>>
>>>>>>>>> This isn't true, exactly. If using clang for example everyone
>>>>>>>>> needs to
>>>>>>>>> enable this code. We're also using -fno-builtin -ffreestanding
>>>>>>>>> which
>>>>>>>>> should limit the amount of interference from the toolchain. And
>>>>>>>>> we get
>>>>>>>>> that.
>>>>>>>>
>>>>>>>> You mean clang does not produce self-sustained binaries?
>>>>>>>
>>>>>>> clang does not provide "libgcc", so there's no -lgcc providing all of
>>>>>>> the functions that are (today) in:
>>>>>>> _ashldi3.S _ashrdi3.S _divsi3.S _lshrdi3.S _modsi3.S _udivsi3.S
>>>>>>> _umodsi3.S div0.S _uldivmod.S
>>>>>>> which aside from __modsi3 and __umodsi3 are all __aeabi_xxx
>>>>>>
>>>>>> There is also _udivmoddi4 pulled from libgcc for 64-bit division
>>>>>> since we
>>>>>> switched to 64-bit all around ARM. It comes from clock calculations for
>>>>>> video, e.g. from drivers/video/ipu_common.c for i.MX6.
>>>>>
>>>>> Well, this is an example of why we both don't want libgcc ever nor do we
>>>>> want to overly expand what we do offer. In this case isn't it an
>>>>> example of something that should be using lldiv/do_div/etc?
>>>>
>>>> I haven't seen the _udivmoddi4 emitted in my tests. Linux's libgcc copy
>>>> also doesn't implement the function. Which toolchain do you use and
>>>> which target did you compile?
>>>
>>> I'm using my own armv7hl-linux-gnueabi toolchain built for hard float.
>>> Linux
>>> arm libgcc does have arch/arm/lib/div64.S file that provides __do_div64()
>>> function that is used by do_div() from include/asm/div64.h for 32-bit ARM
>>> platform. Sure, arm64 has neither div64.h nor div64.S. We _DO_ have div64.h
>>> (that is totally different from what Linux provides) but no div64.S in
>>> arch/arm/lib.
>>
>> In that case, we should just import div64.S from Linux on arm32 and be
>> done with it ? Since we now have all the necessary macros thanks to the
>> first four patches in this series, that should be trivial.
>>
>> What do you think? I can bake a patch real quick, so you can test it ?
>
> Follow-up _series_ to re-sync our 64bit math stuff with the kernel.
>
Something tells me this is gonna be one patch , not a series.
--
Best regards,
Marek Vasut
next prev parent reply other threads:[~2016-03-24 0:36 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-20 16:15 [U-Boot] [PATCH 1/5] arm: include: Import unified.h from Linux kernel Marek Vasut
2016-03-20 16:15 ` [U-Boot] [PATCH 2/5] arm: lib: Drop underscore from private libgcc filenames Marek Vasut
2016-04-09 18:34 ` Simon Glass
2016-03-20 16:15 ` [U-Boot] [PATCH 3/5] arm: lib: Sync libgcc shift operations Marek Vasut
2016-04-09 18:34 ` Simon Glass
2016-03-20 16:15 ` [U-Boot] [PATCH 4/5] arm: lib: Sync libgcc 32b division/modulo operations Marek Vasut
2016-04-09 18:34 ` Simon Glass
2016-03-20 16:15 ` [U-Boot] [PATCH 5/5] lib: Enable private libgcc by default Marek Vasut
2016-03-23 12:53 ` Albert ARIBAUD
2016-03-23 13:22 ` Tom Rini
2016-03-23 17:08 ` Albert ARIBAUD
2016-03-23 21:36 ` Tom Rini
2016-03-23 23:02 ` Sergey Kubushyn
2016-03-23 23:08 ` Tom Rini
2016-03-23 23:24 ` Sergey Kubushyn
2016-03-23 23:24 ` Marek Vasut
2016-03-23 23:47 ` Sergey Kubushyn
2016-03-23 23:49 ` Marek Vasut
2016-03-23 23:54 ` Sergey Kubushyn
2016-03-24 0:10 ` [U-Boot] [PATCH] arm: lib: Import __do_div64 from Linux Marek Vasut
2016-03-24 0:11 ` [U-Boot] [PATCH 5/5] lib: Enable private libgcc by default Marek Vasut
2016-03-24 2:28 ` Sergey Kubushyn
2016-03-24 18:18 ` Sergey Kubushyn
2016-03-24 18:43 ` Sergey Kubushyn
2016-03-24 19:04 ` Marek Vasut
2016-03-24 19:08 ` Sergey Kubushyn
2016-03-24 19:14 ` Marek Vasut
2016-03-24 22:25 ` Sergey Kubushyn
2016-03-24 0:13 ` Tom Rini
2016-03-24 0:36 ` Marek Vasut [this message]
2016-03-24 7:50 ` Albert ARIBAUD
2016-03-25 0:49 ` Tom Rini
2016-03-25 1:37 ` Sergey Kubushyn
2016-03-25 6:41 ` Albert ARIBAUD
2016-03-25 6:37 ` Albert ARIBAUD
2016-03-25 6:43 ` Albert ARIBAUD
2016-03-27 13:36 ` Tom Rini
2016-03-29 9:18 ` Albert ARIBAUD
2016-04-09 18:34 ` [U-Boot] [PATCH 1/5] arm: include: Import unified.h from Linux kernel Simon Glass
2016-04-28 0:28 ` Marek Vasut
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56F33697.3070600@denx.de \
--to=marex@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox