OSDN Git Service

optimize hot paths of putc with manual shrink-wrapping
authorRich Felker <dalias@aerifal.cx>
Thu, 18 Oct 2018 03:38:29 +0000 (23:38 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 18 Oct 2018 03:38:29 +0000 (23:38 -0400)
this is the analog of commit dd8f02b7dce53d6b1c4282439f1636a2d63bee01,
but for putc.

src/stdio/fputc.c
src/stdio/putc.c
src/stdio/putchar.c

index 92762c9..f364ed3 100644 (file)
@@ -1,10 +1,7 @@
-#include "stdio_impl.h"
+#include <stdio.h>
+#include "putc.h"
 
 int fputc(int c, FILE *f)
 {
-       if (f->lock < 0 || !__lockfile(f))
-               return putc_unlocked(c, f);
-       c = putc_unlocked(c, f);
-       __unlockfile(f);
-       return c;
+       return do_putc(c, f);
 }
index fa89349..4744d97 100644 (file)
@@ -1,12 +1,9 @@
-#include "stdio_impl.h"
+#include <stdio.h>
+#include "putc.h"
 
 int putc(int c, FILE *f)
 {
-       if (f->lock < 0 || !__lockfile(f))
-               return putc_unlocked(c, f);
-       c = putc_unlocked(c, f);
-       __unlockfile(f);
-       return c;
+       return do_putc(c, f);
 }
 
 weak_alias(putc, _IO_putc);
index 945636d..f044f16 100644 (file)
@@ -1,6 +1,7 @@
 #include <stdio.h>
+#include "putc.h"
 
 int putchar(int c)
 {
-       return fputc(c, stdout);
+       return do_putc(c, stdout);
 }