summaryrefslogtreecommitdiff
path: root/guix/memoization.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2017-12-11 21:43:54 +0100
committerLudovic Courtès <ludo@gnu.org>2017-12-12 18:11:22 +0100
commit252c4083779a488c86e74362b4f3bb4bf927cc67 (patch)
treeec4e542b39bcb2d1d821a7b76aab37979e64ed51 /guix/memoization.scm
parent03870da81922ccb6cc1a91976487f2d3f7da0d81 (diff)
downloadgnu-guix-252c4083779a488c86e74362b4f3bb4bf927cc67.tar
gnu-guix-252c4083779a488c86e74362b4f3bb4bf927cc67.tar.gz
memoization: Add profiling support.
* guix/memoization.scm (%memoization-tables): New variable. (%make-hash-table*, show-memoization-tables): New procedures. (make-hash-table*): New macro. Add top-level call to 'register-profiling-hook!'. (memoize): Adjust to pass the resulting procedure to 'make-hash-table*'. (%mlambda): Likewise.
Diffstat (limited to 'guix/memoization.scm')
-rw-r--r--guix/memoization.scm91
1 files changed, 74 insertions, 17 deletions
diff --git a/guix/memoization.scm b/guix/memoization.scm
index bf3b73d806..69343f592b 100644
--- a/guix/memoization.scm
+++ b/guix/memoization.scm
@@ -17,6 +17,9 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (guix memoization)
+ #:use-module (guix profiling)
+ #:use-module (ice-9 match)
+ #:autoload (srfi srfi-1) (count)
#:export (memoize
mlambda
mlambdaq))
@@ -58,17 +61,69 @@ already-cached result."
(define-cache-procedure cached hash-ref hash-set! call/1 return/1)
(define-cache-procedure cachedq hashq-ref hashq-set! call/1 return/1)
+(define %memoization-tables
+ ;; Map procedures to the underlying hash table.
+ (make-weak-key-hash-table))
+
+(define %make-hash-table*
+ (if (profiled? "memoization")
+ (lambda (proc location)
+ (let ((table (make-hash-table)))
+ (hashq-set! %memoization-tables proc
+ (cons table location))
+ table))
+ (lambda (proc location)
+ (make-hash-table))))
+
+(define-syntax-rule (make-hash-table* proc)
+ (%make-hash-table* proc (current-source-location)))
+
+(define* (show-memoization-tables #:optional (port (current-error-port)))
+ "Display to PORT statistics about the memoization tables."
+ (define (table<? p1 p2)
+ (match p1
+ ((table1 . _)
+ (match p2
+ ((table2 . _)
+ (< (hash-count (const #t) table1)
+ (hash-count (const #t) table2)))))))
+
+ (define tables
+ (hash-map->list (lambda (key value)
+ value)
+ %memoization-tables))
+
+ (match (sort tables (negate table<?))
+ (((tables . locations) ...)
+ (format port "Memoization: ~a tables, ~a non-empty~%"
+ (length tables)
+ (count (lambda (table)
+ (> (hash-count (const #t) table) 0))
+ tables))
+ (for-each (lambda (table location)
+ (let ((size (hash-count (const #t) table)))
+ (unless (zero? size)
+ (format port " ~a:~a:~a: \t~a entries~%"
+ (assq-ref location 'filename)
+ (and=> (assq-ref location 'line) 1+)
+ (assq-ref location 'column)
+ size))))
+ tables locations))))
+
+(register-profiling-hook! "memoization" show-memoization-tables)
+
(define (memoize proc)
"Return a memoizing version of PROC.
This is a generic version of 'mlambda' what works regardless of the arity of
'proc'. It is more expensive since the argument list is always allocated, and
the result is returned via (apply values results)."
- (let ((cache (make-hash-table)))
- (lambda args
- (cached/mv cache args
- (lambda ()
- (apply proc args))))))
+ (letrec* ((mproc (lambda args
+ (cached/mv cache args
+ (lambda ()
+ (apply proc args)))))
+ (cache (make-hash-table* mproc)))
+ mproc))
(define-syntax %mlambda
(syntax-rules ()
@@ -88,19 +143,21 @@ exactly one value."
;; allocated. XXX: We can't really avoid the closure allocation since
;; Guile 2.0's compiler will always keep it.
((_ cached (arg) body ...) ;one argument
- (let ((cache (make-hash-table))
- (proc (lambda (arg) body ...)))
- (lambda (arg)
- (cached cache arg (lambda () (proc arg))))))
+ (letrec* ((proc (lambda (arg) body ...))
+ (mproc (lambda (arg)
+ (cached cache arg (lambda () (proc arg)))))
+ (cache (make-hash-table* mproc)))
+ mproc))
((_ _ (args ...) body ...) ;two or more arguments
- (let ((cache (make-hash-table))
- (proc (lambda (args ...) body ...)))
- (lambda (args ...)
- ;; XXX: Always use 'cached', which uses 'equal?', to compare the
- ;; argument lists.
- (cached cache (list args ...)
- (lambda ()
- (proc args ...))))))))
+ (letrec* ((proc (lambda (args ...) body ...))
+ (mproc (lambda (args ...)
+ ;; XXX: Always use 'cached', which uses 'equal?', to
+ ;; compare the argument lists.
+ (cached cache (list args ...)
+ (lambda ()
+ (proc args ...)))))
+ (cache (make-hash-table* mproc)))
+ mproc))))
(define-syntax-rule (mlambda formals body ...)
"Define a memoizing lambda. The lambda's arguments are compared with