emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [feature/native-comp] breakage on build


From: Andrea Corallo
Subject: Re: [feature/native-comp] breakage on build
Date: Thu, 11 Feb 2021 08:39:06 +0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Phillip Lord <phillip.lord@russet.org.uk> writes:

> Andrea Corallo <akrl@sdf.org> writes:
>
>> Phillip Lord <phillip.lord@russet.org.uk> writes:
>>>> Correct, but if we can build eln files during the initial compilation we
>>>> can also build trampolines AOT.  This is just a matter of running:
>>>>
>>>> (mapatoms (λ (s)    
>>>>             (when (subr-primitive-p (symbol-function s))
>>>>               (comp-trampoline-compile s))))
>>>>
>>>> Probably we should wire this in the build system so it's accessible as
>>>> make target?
>>>
>>>
>>> Why not wire it into the AOT compilation always? Obviously, if it
>>> doubles the AOT compilation, that might not be such a great idea, but
>>> otherwise?
>>>
>>> Phil
>>
>> That's a great question.
>>
>> Compiling a trampoline is about 0.2s each (mostly GCC gas ld startup
>> time).  Say we have ~1400 primitives this should translate into ~4.5 min
>> of build time for something that in the average case is largely unused.
>>
>> The trouble is that the simple code snippet I posted is not parallel and
>> there's no trivial way to make make aware of all these targets to have
>> it handling the parallelism.
>
>
> Yeah, that's not good at all.

Maybe one option is to invoke Emacs for this target passing the -J
number to it so we can handle the parallelism directly there.

  Andrea



reply via email to

[Prev in Thread] Current Thread [Next in Thread]