svn commit: r266553 - head/release/scripts

Warner Losh imp at bsdimp.com
Wed May 28 14:52:54 UTC 2014


On May 28, 2014, at 4:50 AM, Tijl Coosemans <tijl at freebsd.org> wrote:

> On Tue, 27 May 2014 14:31:44 -0600 Warner Losh wrote:
>> On May 27, 2014, at 1:40 PM, Tijl Coosemans <tijl at FreeBSD.org> wrote:
>>> On Tue, 27 May 2014 07:18:06 -0600 Warner Losh wrote:
>>>> On May 27, 2014, at 1:36 AM, Tijl Coosemans <tijl at FreeBSD.org> wrote:
>>>>> On Mon, 26 May 2014 16:31:21 -0600 Warner Losh wrote:
>>>> So I?m still waiting for a use case that requires the new names. One has
>>>> not been articulated, and I don?t think one actually exists.
>>> 
>>> Imagine you've built a system with MACHINE_ARCH amd64 and one with
>>> MACHINE_ARCH mips64.  Now you want to populate these systems with a list
>>> of packages for which you wrote a script.  These systems each support 2
>>> ABIs: a native 64-bit one (amd64 and mips64) and a native 32-bit one (x32
>>> and mipsn32).  Both are native in the sense that they make full use of the
>>> instruction set.  This is not like i386 on amd64 or mips o32 on mips64
>>> because those are more like compat shims that operate under special
>>> (crippled) cpu modes that nobody uses unless they're stuck with old code.
>>> Both our ABIs on the other hand are native and equally valid and which one
>>> to use for a particular package depends entirely on the use case.  If your
>>> use case requires more than 4G of address space you'll have to use the
>>> 64-bit package, otherwise you can use the 32-bit package which, depending
>>> on how pointer heavy the code is, may give a performance benefit.  You
>>> make this choice for each of the packages in your list and add that
>>> information to your script.
>> 
>> Long hypothetical, but so what? In such a case, you’d pick one of two
>> different MACHINE_ARCH values depending on the package. This this is a
>> fairly atypical use case, it would not be unreasonable for the person
>> wanting to do this to know the proper companion ABI. In both cases, you
>> have the choice of two other values to use. Which one you use will depend
>> on a variety of factors, and what might be right for one application may
>> be wrong for others.
>> 
>> And in both cases, there’s actually two choices: for amd64, you’d have
>> i386 and x32. Both of these are fine choices, and it would depend on the
>> workload which one is better (i386 has better toolchain support and
>> maturity, x32 offers some interesting theoretical wins, but doesn’t have
>> the same maturity). Same with mips64, you’d have two choices as well. In
>> both cases, you can’t just take uname/MACHINE_ARCH and slap :32 on the end.
> 
> As far as I can see nobody uses i386 on amd64 except in cases where you
> know you're dealing with i386 like an i386 jail, or you need to run an old
> i386 binary that you're stuck with, or with compat shims like Wine.  The
> choice of i386 is not comparable with the generic choice between ILP32 or
> LP64 on a 64-bit instruction set, which is why I'm ok with changing the
> "x86" in the pkg scheme to either "i386" or "amd64" like you are proposing.
> If pkg would keep using instruction set families like "x86" or "mips" then
> you could distinguish between old 32-bit, new 32-bit and new 64-bit using
> 3 generic suffixes to avoid lookup tables.  The pattern of an old 32-bit
> instruction set that got extended to 64-bit on which you can define a new
> 32-bit ABI is common to many instruction set families, but I'm ok with
> old 32-bit and new 64-bit having separate MACHINE_ARCH values.

OK. So we use MACHINE_ARCH for the pkg scheme. I’m glad we agree on this point. That will make adding support for pkg repos and multiple machine builds to nanobsd much easier.

>>> Now let's work with Nathan's patch which uses the following string to
>>> identify the pkg repository to fetch packages from:
>>> `uname -s`:`uname -r | cut -f 1 -d .`:`uname -p`
>>> 
>>> On our two systems that would be FreeBSD:11:amd64 and FreeBSD:11:mips64.
>>> Now if your script has to install the 32-bit version of a package how
>>> can it go from those two strings to FreeBSD:11:x32 or FreeBSD:11:mipsn32
>>> without a lookup table?
>> 
>> You couldn’t. Which is the whole reason I want to have them have a
>> standard name so you don’t need the lookup table for the common case.
>> This is an “off in the weeds” case, and optimizing for it doesn’t make
>> sense. Especially because in each case, you have two different 32-bit
>> ABIs to choose from. You’d have to have some kind of table in either
>> case. Also, the proper name for n32, in your current system, is
>> mips:32:n32, which (a) is wrong and (b) isn’t regular.
> 
> Well, it may not make sense to you and be off in the weeds, but it does
> to me.  Very few processes actually need more than 4G of virtual address
> space.  I cannot immediately find anything in /bin or /usr/bin for
> instance (maybe clang when compiling a very large C++ file?).
> 
> I'm not sure where you're getting mips:32:n32 from.  We're talking in the
> context of Nathan's patch here.

In the context of Nathan’s patch, mips:32:n32 is the “old” name that is an alias for mipsn32. There’s no “mips64:32” defined at all, so that pattern breaks. That was my specific point.

>>> I say, you can more easily indicate whether you
>>> want the 32-bit or 64-bit package by appending :32 or :64 to the original
>>> strings, so FreeBSD:11:amd64:32 and FreeBSD:11:mips64:32.
>> 
>> Except there’s no such thing as mips64:32 in the current system. There’s
>> two different ABIs that could mean. It could be o32 or n32, with the same
>> sort of trade offs. There’d need to be a person in the loop to know, so
>> there’s already a need to have special knowledge. You can’t get there by
>> just adding :32 to the existing thing...
> 
> Yes, I am assuming that o32 on mips64 is like i386 on amd64, i.e. only used
> in cases where you know you're dealing with mips o32, and that normally n32
> is the 32-bit ABI of choice on mips64 because it provides better performance.

That’s not a good assumption. In fact, it is a terrible assumption given the relative maturity of the o32 and n32 implementations on FreeBSD mips. o32 is extremely well tested and works fairly well. n32 works, mostly, but has many edge cases that seem a little off that haven’t been fully shaken out.

>>> Like I said in a reply to Nathan's patch, pkg could default to :32 or :64
>>> for every arch so it can be left out in many cases.  FreeBSD:11:i386
>>> would then be equivalent to FreeBSD:11:i386:32, FreeBSD:11:amd64 to
>>> FreeBSD:11:amd64:64, etc.
>> 
>> I don’t see what value that adds to have the extra :32 or :64.  Nathan’s
>> patches make it possible to have an automated build system with the
>> typical use case (I want to build all my binaries, packages, etc the
>> same). But adding a :32 isn’t going to even work for your hypothetical
>> example because people actually building such systems will need to
>> specify which 32-bit ABI they want to use anyway. And the degenerate case
>> of :32 just doesn’t work with mips…
>> 
>> Consider too that we’re planning a new i386 ABI, which is identical to
>> the current i386 ABI, except time_t is 64 bit. We’ve penciled in the
>> name i386t64 for this ABI/MACHINE_ARCH. This will be much less painful,
>> it is thought, than finding all the current places that take time_t as
>> an arg and shimming… So if we were to do that, then your current scheme
>> wouldn’t be able to  encompass that eventuality and we’d be back to this
>> argument...
> 
> Nobody will use this new ABI on amd64 when x32 is supported.  X32 has more
> registers available and a far better calling convention.

"Tools not policy” has been the mantra of the project. You are making assumptions here that may not be correct today, and may change over time and baking that into the tools. This seems unwise.

>>> This also does not preclude the existence of a mipsn32 MACHINE_ARCH in
>>> case you want to build a pure mipsn32 system (including the kernel), but
>>> I wonder how many people would use that if it is possible to have a
>>> mips64 system run n32 binaries.  I don't think many people would run a
>>> pure x32 system (with x32 kernel) so I don't see the need to have an
>>> "x32" value for MACHINE_ARCH (or TARGET_ARCH).
>> 
>> Actually, you absolutely must have a x32 MACHINE_ARCH if you want to be
>> able to run x32 binaries. Otherwise, how are you going to build the
>> libraries that use that API? Our build system simply isn’t setup to
>> build them any other way. Although the usr/lib32 stuff could grow extra
>> goo for that, you are still building them the same way you’d build. We
>> have a stylized way to create a sys root, which is needed for the
>> compilers to work. We’d likely have to grow better multi lib support
>> than we have now as well. You’d need some way to identify these binaries,
>> segregate their ld.so, etc. Even if no kernel ever is linked this way,
>> it is still an absolute requirement.
> 
> I'm kind of hoping we can close this discussion now and agree to disagree
> on the points that we still disagree, so I don't really want to discuss
> our build system.  We'd be off for another week.  I understand why we
> build compat32 libraries the way we do now.  It was the only way at the
> time.  In my opinion the choice between 32-bit or 64-bit should be like
> choosing between static or shared, pic or non-pic, or with or without
> profiling.  It's just a compiler flag while our current build system
> treats it almost like a full blown cross compilation problem.

Then we disagree on this point. However, the disagreement here is kinda foundational: to build a set of libraries or sys root, you have to have a MACHINE_ARCH to make it work. Even in our current system, we set MACHINE_ARCH to i386 or powerpc when building the 32-bit binaries (note: we don’t do this for mips). This means that if we do grow x32 support, we’ll need to grow a MACHINE_ARCH for it. That’s my point: all ABIs have MACHINE_ARCH associated with them, and those are the names users are used to specifying, and are the ones that are the most natural for script writers to use. With nathan’s patches, we’re to the point where those are used, though there’s also the option of using the non-standard names if you want (e.g. amd64:32 instead of x32).

Believe me, I don’t want to talk about the build system, but it is relevant for this discussion because of the integration into the base system. It can’t just be ignored.

Warner
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 842 bytes
Desc: Message signed with OpenPGP using GPGMail
URL: <http://lists.freebsd.org/pipermail/svn-src-all/attachments/20140528/372314e3/attachment.sig>


More information about the svn-src-all mailing list