Re: [TRIVIAL] strlen("literal string") -> (sizeof("literal string")-1)

Andi Kleen (ak@suse.de)
Thu, 29 Aug 2002 19:53:45 +0200


On Thu, Aug 29, 2002 at 01:51:00PM -0400, Alexander Viro wrote:
>
>
> On 29 Aug 2002, Andi Kleen wrote:
>
> > It does a better job for near all the string.h stuff. x86-64 just uses
> > the builtins. Only exception is memcpy, where it likes to call out of line
> > memcpy when it is not absolutely sure about all the alignments
> > (especally lots of casting causes that)
>
> memcpy() on x86 includes uses of mmx_memcpy(). Not likely to be done by gcc...
Only for big arguments. That is why it calls the out of line function.
Basically it only inlines when the limit is known and small and the alignments
are known. IMHO the alignment check is overkill for x86, but that is what
it does. That is why I wrapped it a bit (see include/asm-x86_64/string.h)

-Andi
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/