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: bzero/bcopy/bcmp/mempcpy (was: Improve strncpy performance further)


> GCC often expands bzero into memset, but not all versions do this, and
> neither do all options, so you cannot rely on this. So before your patch
> login/logout.c might actually call bzero...

Sure.

> We need something like this in string.h so we always optimize all calls to
> standard optimized functions, irrespectively of the compiler and options used:

We would need that if we wanted to do that.  But these entrypoints are all
old and deprecated.  They are only for the benefit of old code.  Any code
so old that it hasn't been touched since there were actually systems to
build it on that don't have the C89 standard functions surely has worse
performance issues than this.  Making the deprecated functions optimal only
encourages people to keep using them.

> Now the only remaining one to deal with is mempcpy - I'd like something like 
> this in string/strings2.h:

Why?  It's trivial enough for each memcpy implementation to implement
mempcpy too, and for many implementations rolling it in might save an
instruction or two over the generic addition.  It doesn't seem worth
the complexity to bother with anything in the header files.


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