1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Speed golf on Scheme put-u8, put-bytevector

* module/ice-9/sports.scm (put-u8, put-bytevector): Speed hack.
This commit is contained in:
Andy Wingo 2016-05-24 08:37:57 +02:00
parent 7c8b80e076
commit 48dbadd8e6

View file

@ -309,13 +309,13 @@
(else (fill-directly pos))))))
(define (put-u8 port byte)
(when (port-random-access? port)
(flush-input port))
(let* ((buf (port-write-buffer port))
(bv (port-buffer-bytevector buf))
(end (port-buffer-end buf)))
(unless (<= 0 end (bytevector-length bv))
(error "not an output port" port))
(when (and (eq? (port-buffer-cur buf) end) (port-random-access? port))
(flush-input port))
(bytevector-u8-set! bv end byte)
(set-port-buffer-end! buf (1+ end))
(when (= (1+ end) (bytevector-length bv)) (flush-output port))))
@ -324,14 +324,14 @@
(count (- (bytevector-length src) start)))
(unless (<= 0 start (+ start count) (bytevector-length src))
(error "invalid start/count" start count))
(when (port-random-access? port)
(flush-input port))
(let* ((buf (port-write-buffer port))
(bv (port-buffer-bytevector buf))
(size (bytevector-length bv))
(cur (port-buffer-cur buf))
(end (port-buffer-end buf))
(buffered (- end cur)))
(when (and (eq? cur end) (port-random-access? port))
(flush-input port))
(cond
((<= size count)
;; The write won't fit in the buffer at all; write directly.