From 71b66bbf9f183aa8d97d340fd3644e43075b669c Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Tue, 6 Sep 2011 16:32:06 -0400 Subject: [PATCH] Switch to `make-'-less constructors. original commit: bfc9a2ba766c199f5cb5b285702af8122f3bcc64 --- collects/profile/analyzer.rkt | 19 +++++++++---------- collects/profile/structs.rkt | 9 +++------ 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/collects/profile/analyzer.rkt b/collects/profile/analyzer.rkt index 2298157..82ad451 100644 --- a/collects/profile/analyzer.rkt +++ b/collects/profile/analyzer.rkt @@ -25,14 +25,14 @@ (define id+src->node-hash (make-hasheq)) (define (id+src->node id+src) (with-hash id+src->node-hash id+src - (make-node (car id+src) (cdr id+src) '() 0 0 '() '()))) + (node (car id+src) (cdr id+src) '() 0 0 '() '()))) ;; special node that is the caller of toplevels and callee of leaves (define *-node (id+src->node '(#f . #f))) (define call->edge (let ([t (make-hasheq)]) (lambda (ler lee) (with-hash (with-hash t ler (make-hasheq)) lee - (let ([e (make-edge 0 ler 0 lee 0)]) + (let ([e (edge 0 ler 0 lee 0)]) (set-node-callers! lee (cons e (node-callers lee))) (set-node-callees! ler (cons e (node-callees ler))) e))))) @@ -84,14 +84,13 @@ (for ([n (in-list nodes)]) (set-node-callees! n (sort (node-callees n) > #:key edge-callee-time)) (set-node-callers! n (sort (node-callers n) > #:key edge-caller-time))) - (make-profile - total-time - cpu-time - (length samples) - (for/list ([time (in-vector thread-times)] [n (in-naturals 0)]) - (cons n time)) - nodes - *-node))) + (profile total-time + cpu-time + (length samples) + (for/list ([time (in-vector thread-times)] [n (in-naturals 0)]) + (cons n time)) + nodes + *-node))) ;; Groups raw samples by their thread-id, returns a vector with a field for ;; each thread id holding the sample data for that thread. The samples in diff --git a/collects/profile/structs.rkt b/collects/profile/structs.rkt index 49cea4d..1f6a513 100644 --- a/collects/profile/structs.rkt +++ b/collects/profile/structs.rkt @@ -15,8 +15,7 @@ ;; start a graph traversal from the top or the bottom. (provide (struct-out profile)) (struct profile - (total-time cpu-time sample-number thread-times nodes *-node) - #:constructor-name make-profile) + (total-time cpu-time sample-number thread-times nodes *-node)) ;; An entry for a single profiled function: ;; - id, src: the corresponding values from `continuation-mark-set->context'. @@ -37,8 +36,7 @@ #:property prop:custom-write (lambda (node o w?) (fprintf o "#" - (or (node-id node) (if (node-src node) '??? 'ROOT)))) - #:constructor-name make-node) + (or (node-id node) (if (node-src node) '??? 'ROOT))))) ;; An edge representing function calls between two nodes: ;; - total: the total time spent while the call was anywhere on the stack. @@ -54,5 +52,4 @@ (lambda (edge o w?) (fprintf o "#" (or (node-id (edge-caller edge)) '???) - (or (node-id (edge-callee edge)) '???))) - #:constructor-name make-edge) + (or (node-id (edge-callee edge)) '???))))