提交 2b964b01 编写于 作者: R Rich Felker

minor but worthwhile optimization in printf: avoid expensive strspn

the strspn call was made for every format specifier and end-of-string,
even though the expected return value was 1-2 for normal usage.
replace with simple loop.
上级 4c346919
...@@ -430,7 +430,7 @@ static int getint(char **s) { ...@@ -430,7 +430,7 @@ static int getint(char **s) {
static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, int *nl_type) static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, int *nl_type)
{ {
char *a, *z, *s=(char *)fmt; char *a, *z, *s=(char *)fmt;
unsigned l10n=0, litpct, fl; unsigned l10n=0, fl;
int w, p; int w, p;
union arg arg; union arg arg;
int argpos; int argpos;
...@@ -455,9 +455,7 @@ static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg, ...@@ -455,9 +455,7 @@ static int printf_core(FILE *f, const char *fmt, va_list *ap, union arg *nl_arg,
/* Handle literal text and %% format specifiers */ /* Handle literal text and %% format specifiers */
for (a=s; *s && *s!='%'; s++); for (a=s; *s && *s!='%'; s++);
litpct = strspn(s, "%")/2; /* Optimize %%%% runs */ for (z=s; s[0]=='%' && s[1]=='%'; z++, s+=2);
z = s+litpct;
s += 2*litpct;
l = z-a; l = z-a;
if (f) out(f, a, l); if (f) out(f, a, l);
if (l) continue; if (l) continue;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册