This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: extend dl-minimal malloc implementation


On Wed, Aug 16, 2017 at 1:39 PM, DJ Delorie <dj@redhat.com> wrote:
>
> "Carlos O'Donell" <carlos@redhat.com> writes:
>> (b) Eliminate all alloca by moving to malloc (requires (a)).
>
> I will point out the obvious, for the record, that doing (b) may be
> arbitrarily non-trivial.
>
> I've looked at some of the alloca code in ld.so and the original
> programmers (rightly) took advantage of the auto-cleanup, resulting in
> code that might be difficult to convert.

What I was trying to suggest, earlier, was that *before* either (a) or
(b) we should go through the entire of ld.so and try to *remove* as
many allocations as possible, at which point it might make sense not
to have malloc in there at all - "just" send all remaining allocations
directly to mmap (not sbrk; leave sbrk for the "real" malloc).  That
may take rearchitecting - but so may just converting alloca to malloc,
as you point out. I admit I have no idea whether this is even
feasible.

zw


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]