On errno

David Schultz das at FreeBSD.ORG
Wed Apr 1 11:00:20 PDT 2009


On Tue, Mar 31, 2009, Luigi Rizzo wrote:
> On Tue, Mar 31, 2009 at 06:46:27AM +0000, Poul-Henning Kamp wrote:
> > In message <20090331064959.GA3516 at onelab2.iet.unipi.it>, Luigi Rizzo writes:
> > 
> > >we are probably digressing but printf in glibc has specifiers to
> > >indicate which argument you want to use for each format.
> > >
> > >http://www.gnu.org/software/hello/manual/libc/Output-Conversion-Syntax.html
> > >
> > >I suppose this takes an extra pass over the format string to collect
> > >the proper type info for all arguments, so it is not
> > >not a dramatic change in the implementation of *printf.
> > 
> > Yeah, we have that crap too, and you can see how messy and slow our
> > printf became as a result in SVN.
> 
> I have never run performance tests of printf, but it woudld be
> definitely interesting to figure out how expensive is the parsing
> of the format specifiers.

The expensive part, which accounts for more than 70% of the cost
of processing a format specifier, is gluing together the iovec of
output fragments in stdio and writing to the stream. The actual
parsing accounts for almost none of the cost; it amounts to
scanning for a `%', then using a switch statement (which gcc
compiles into a jump table) to process the specifiers.

Most of the code for handling positional parameters lives in
printf-pos.c, and it's never invoked if you don't use positional
parameters.


More information about the freebsd-arch mailing list