Subject: Re: CVS commit: src/lib/libc/arch/i386/string
To: Jason Thorpe <thorpej@shagadelic.org>
From: Perry E. Metzger <perry@piermont.com>
List: tech-kern
Date: 02/04/2005 14:30:38
Jason Thorpe <thorpej@shagadelic.org> writes:
> On Feb 4, 2005, at 7:44 AM, Perry E. Metzger wrote:
>
>> Ah. True enough. That's probably a lose -- it would be good to get the
>> inlining because it would improve performance in a bunch of
>> places. Maybe we should change the definitions of the built in
>> functions to be things like
>>
>> #define memcpy(a, b, c)    __builtin_memcpy((a), (b), (c))
>
> Take a look at libkern.h

Ah, so my original assertion that we were already inlining a lot of
stuff was correct!

Perry