From fea1350790f7ffdebcc92527056ceefa70935617 Mon Sep 17 00:00:00 2001 From: Phil Dawes Date: Tue, 8 Jul 2008 20:01:28 +0100 Subject: [PATCH 01/14] Wordtimer vocab for time-profiling words and vocabs --- extra/wordtimer/authors.txt | 1 + extra/wordtimer/summary.txt | 1 + extra/wordtimer/wordtimer-docs.factor | 34 +++++++++++ extra/wordtimer/wordtimer-tests.factor | 10 ++++ extra/wordtimer/wordtimer.factor | 81 ++++++++++++++++++++++++++ 5 files changed, 127 insertions(+) create mode 100644 extra/wordtimer/authors.txt create mode 100644 extra/wordtimer/summary.txt create mode 100644 extra/wordtimer/wordtimer-docs.factor create mode 100644 extra/wordtimer/wordtimer-tests.factor create mode 100644 extra/wordtimer/wordtimer.factor diff --git a/extra/wordtimer/authors.txt b/extra/wordtimer/authors.txt new file mode 100644 index 0000000000..0be42b2faa --- /dev/null +++ b/extra/wordtimer/authors.txt @@ -0,0 +1 @@ +Phil Dawes diff --git a/extra/wordtimer/summary.txt b/extra/wordtimer/summary.txt new file mode 100644 index 0000000000..efe591da27 --- /dev/null +++ b/extra/wordtimer/summary.txt @@ -0,0 +1 @@ +Microsecond precision code timer/profiler. diff --git a/extra/wordtimer/wordtimer-docs.factor b/extra/wordtimer/wordtimer-docs.factor new file mode 100644 index 0000000000..7d9de34252 --- /dev/null +++ b/extra/wordtimer/wordtimer-docs.factor @@ -0,0 +1,34 @@ +USING: help.syntax help.markup kernel prettyprint sequences ; +IN: wordtimer + +HELP: reset-word-timer +{ $description "resets the global wordtimes datastructure. Must be called before calling any word-timer annotated code" +} ; + +HELP: add-timer +{ $values { "word" "a word" } } +{ $description "annotates the word with timing code which stores timing information globally. You can then view the info with print-word-timings" +} ; + +HELP: add-timers +{ $values { "vocab" "a string" } } +{ $description "annotates all the words in the vocab with timer code. After profiling you can remove the annotations with reset-vocab" +} ; + + +HELP: reset-vocab +{ $values { "vocab" "a string" } } +{ $description "removes the annotations from all the words in the vocab" +} ; + +HELP: print-word-timings +{ $description "Displays the timing information for each word-timer annotated word. Columns are: total time taken in microseconds, number of invocations, wordname" +} ; + +HELP: correct-for-timing-overhead +{ $description "attempts to correct the timings to take into account the overhead of the timing function. This is pretty error-prone but can be handy when you're timing words that only take a handful of milliseconds but are called a lot" } ; + +ARTICLE: "wordtimer" "Word Timer" +"The " { $vocab-link "wordtimer" } " vocabulary measures accumulated execution time for words. You first annotate individual words with the " { $link add-timer } " word or whole vocabularies with " { $link add-timers } ". Then you reset the clock with " { $link reset-word-timer } " and execute your code. Finally you can view the timings with " { $link print-word-timings } ". If you have functions that are quick and called often you may want to " { $link correct-for-timing-overhead } ". To remove all the annotations in the vocab you can use " { $link reset-vocab } "." ; + +ABOUT: "wordtimer" diff --git a/extra/wordtimer/wordtimer-tests.factor b/extra/wordtimer/wordtimer-tests.factor new file mode 100644 index 0000000000..47287179ce --- /dev/null +++ b/extra/wordtimer/wordtimer-tests.factor @@ -0,0 +1,10 @@ +USING: tools.test wordtimer math kernel tools.annotations prettyprint ; +IN: wordtimer.tests + +: testfn ( a b c d -- a+b c+d ) + + [ + ] dip ; + +[ 3 7 ] +[ reset-word-timer + \ testfn [ reset ] [ add-timer ] bi + 1 2 3 4 testfn ] unit-test \ No newline at end of file diff --git a/extra/wordtimer/wordtimer.factor b/extra/wordtimer/wordtimer.factor new file mode 100644 index 0000000000..1ce5f13a81 --- /dev/null +++ b/extra/wordtimer/wordtimer.factor @@ -0,0 +1,81 @@ +USING: kernel sequences namespaces math assocs words arrays tools.annotations vocabs sorting prettyprint io micros math.statistics ; +IN: wordtimer + +SYMBOL: *wordtimes* +SYMBOL: *calling* + +: reset-word-timer ( -- ) + H{ } clone *wordtimes* set-global + H{ } clone *calling* set-global ; + +: lookup-word-time ( wordname -- utime n ) + *wordtimes* get-global [ drop { 0 0 } ] cache first2 ; + +: update-times ( utime current-utime current-numinvokes -- utime' invokes' ) + rot [ + ] curry [ 1+ ] bi* ; + +: register-time ( utime word -- ) + word-name + [ lookup-word-time update-times 2array ] keep *wordtimes* get-global set-at ; + +: calling ( word -- ) + dup *calling* get-global set-at ; inline + +: finished ( word -- ) + *calling* get-global delete-at ; inline + +: called-recursively? ( word -- t/f ) + *calling* get-global at ; inline + +: timed-call ( quot word -- ) + [ calling ] [ >r micro-time r> register-time ] [ finished ] tri ; inline + +: time-unless-recursing ( quot word -- ) + dup called-recursively? not + [ timed-call ] [ drop call ] if ; inline + +: (add-timer) ( word quot -- quot' ) + [ swap time-unless-recursing ] 2curry ; + +: add-timer ( word -- ) + dup [ (add-timer) ] annotate ; + +: add-timers ( vocabspec -- ) + words [ add-timer ] each ; + +: reset-vocab ( vocabspec -- ) + words [ reset ] each ; + +: dummy-word ( -- ) ; + +: time-dummy-word ( -- n ) + [ 100000 [ [ dummy-word ] micro-time , ] times ] { } make median ; + +: subtract-overhead ( {oldtime,n} overhead -- {newtime,n} ) + [ first2 ] dip + swap [ * - ] keep 2array ; + +: change-global ( variable quot -- ) + global swap change-at ; + +: (correct-for-timing-overhead) ( timingshash -- timingshash ) + time-dummy-word [ subtract-overhead ] curry assoc-map ; + +: correct-for-timing-overhead ( -- ) + *wordtimes* [ (correct-for-timing-overhead) ] change-global ; + +: print-word-timings ( -- ) + *wordtimes* get-global [ swap suffix ] { } assoc>map natural-sort reverse pprint ; + + +: profile-vocab ( vocabspec quot -- ) + "annotating vocab..." print flush + over [ reset-vocab ] [ add-timers ] bi + reset-word-timer + "executing quotation..." print flush + [ call ] micro-time >r + "resetting annotations..." print flush + swap reset-vocab + correct-for-timing-overhead + "total time:" write r> pprint + print-word-timings ; \ No newline at end of file From f485c63f22cb1f21eaee5b7ed39d11b203e5a86b Mon Sep 17 00:00:00 2001 From: Phil Dawes Date: Tue, 8 Jul 2008 20:32:34 +0100 Subject: [PATCH 02/14] fixed to use new-style accessor for word-name --- extra/wordtimer/wordtimer.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extra/wordtimer/wordtimer.factor b/extra/wordtimer/wordtimer.factor index 1ce5f13a81..e9ed0c8cf0 100644 --- a/extra/wordtimer/wordtimer.factor +++ b/extra/wordtimer/wordtimer.factor @@ -1,4 +1,4 @@ -USING: kernel sequences namespaces math assocs words arrays tools.annotations vocabs sorting prettyprint io micros math.statistics ; +USING: kernel sequences namespaces math assocs words arrays tools.annotations vocabs sorting prettyprint io micros math.statistics accessors ; IN: wordtimer SYMBOL: *wordtimes* @@ -15,7 +15,7 @@ SYMBOL: *calling* rot [ + ] curry [ 1+ ] bi* ; : register-time ( utime word -- ) - word-name + name>> [ lookup-word-time update-times 2array ] keep *wordtimes* get-global set-at ; : calling ( word -- ) From 8e24fb9e051e69af1a88edb476605273df84ab9e Mon Sep 17 00:00:00 2001 From: Phil Dawes Date: Tue, 8 Jul 2008 20:50:49 +0100 Subject: [PATCH 03/14] Added doc for profile-vocab --- extra/wordtimer/wordtimer-docs.factor | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/extra/wordtimer/wordtimer-docs.factor b/extra/wordtimer/wordtimer-docs.factor index 7d9de34252..47b85bb007 100644 --- a/extra/wordtimer/wordtimer-docs.factor +++ b/extra/wordtimer/wordtimer-docs.factor @@ -27,8 +27,15 @@ HELP: print-word-timings HELP: correct-for-timing-overhead { $description "attempts to correct the timings to take into account the overhead of the timing function. This is pretty error-prone but can be handy when you're timing words that only take a handful of milliseconds but are called a lot" } ; + +HELP: profile-vocab +{ $values { "vocabspec" "string name of a vocab" } + { "quot" "a quotation to run" } } +{ $description "Annotates the words in the vocab with timing code then runs the quotation. Finally resets the words and prints the timings information." +} ; + ARTICLE: "wordtimer" "Word Timer" -"The " { $vocab-link "wordtimer" } " vocabulary measures accumulated execution time for words. You first annotate individual words with the " { $link add-timer } " word or whole vocabularies with " { $link add-timers } ". Then you reset the clock with " { $link reset-word-timer } " and execute your code. Finally you can view the timings with " { $link print-word-timings } ". If you have functions that are quick and called often you may want to " { $link correct-for-timing-overhead } ". To remove all the annotations in the vocab you can use " { $link reset-vocab } "." ; +"The " { $vocab-link "wordtimer" } " vocabulary measures accumulated execution time for words. If you just want to profile the accumulated time taken by all words in a vocab you can use " { $vocab-link "profile-vocab" } ". If you need more fine grained control then do the following: First annotate individual words with the " { $link add-timer } " word or whole vocabularies with " { $link add-timers } ". Then reset the clock with " { $link reset-word-timer } " and execute your code. Finally you can view the timings with " { $link print-word-timings } ". If you have functions that are quick and called often you may want to " { $link correct-for-timing-overhead } ". To remove all the annotations in the vocab you can use " { $link reset-vocab } ". Alternatively if you just want to time the contents of a vocabulary you can use profile-vocab." ; ABOUT: "wordtimer" From e3ce229c1f52de65730abcea66ad5a1811042945 Mon Sep 17 00:00:00 2001 From: Alfredo Beaumont Date: Thu, 10 Jul 2008 23:55:45 +0200 Subject: [PATCH 04/14] Fix a stack underflow --- extra/wordtimer/wordtimer.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/wordtimer/wordtimer.factor b/extra/wordtimer/wordtimer.factor index e9ed0c8cf0..5da17e28d5 100644 --- a/extra/wordtimer/wordtimer.factor +++ b/extra/wordtimer/wordtimer.factor @@ -75,7 +75,7 @@ SYMBOL: *calling* "executing quotation..." print flush [ call ] micro-time >r "resetting annotations..." print flush - swap reset-vocab + reset-vocab correct-for-timing-overhead "total time:" write r> pprint print-word-timings ; \ No newline at end of file From 698a66d076f2e118b95ee6540f445cbd7c88c1d4 Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Fri, 11 Jul 2008 11:56:05 -0500 Subject: [PATCH 05/14] newfx: purge and purge! --- extra/newfx/newfx.factor | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/extra/newfx/newfx.factor b/extra/newfx/newfx.factor index 9cc63fd57e..825c70001e 100644 --- a/extra/newfx/newfx.factor +++ b/extra/newfx/newfx.factor @@ -1,5 +1,5 @@ -USING: kernel sequences assocs qualified circular sets ; +USING: kernel sequences assocs qualified circular sets fry sequences.lib ; USING: math multi-methods ; @@ -242,4 +242,11 @@ METHOD: as-mutate { object object assoc } set-at ; : insert ( seq i obj -- seq ) >r cut r> prefix append ; -: splice ( seq i seq -- seq ) >r cut r> prepend append ; \ No newline at end of file +: splice ( seq i seq -- seq ) >r cut r> prepend append ; + +! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +: purge ( seq quot -- seq ) [ not ] compose filter ; + +: purge! ( seq quot -- seq ) + dupd '[ swap @ [ pluck! ] [ drop ] if ] each-index ; From 8ab25384c4108b04d6e32af3e9ea660d179435d6 Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Fri, 11 Jul 2008 13:27:04 -0500 Subject: [PATCH 06/14] builder.util: remove old code --- extra/builder/util/util.factor | 8 -------- 1 file changed, 8 deletions(-) diff --git a/extra/builder/util/util.factor b/extra/builder/util/util.factor index 320f0e0448..47db4c52c9 100644 --- a/extra/builder/util/util.factor +++ b/extra/builder/util/util.factor @@ -41,14 +41,6 @@ DEFER: to-strings : host-name* ( -- name ) host-name "." split first ; -! : datestamp ( -- string ) -! now `{ ,[ dup timestamp-year ] -! ,[ dup timestamp-month ] -! ,[ dup timestamp-day ] -! ,[ dup timestamp-hour ] -! ,[ timestamp-minute ] } -! [ pad-00 ] map "-" join ; - : datestamp ( -- string ) now { year>> month>> day>> hour>> minute>> } From 137742df4faf1e0aea30d2aa183cd8be4127ac35 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 11 Jul 2008 13:46:59 -0500 Subject: [PATCH 07/14] Fix load error on x11 --- extra/ui/x11/x11.factor | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extra/ui/x11/x11.factor b/extra/ui/x11/x11.factor index c1ccb1f635..35f22ec64f 100755 --- a/extra/ui/x11/x11.factor +++ b/extra/ui/x11/x11.factor @@ -1,8 +1,8 @@ -! Copyright (C) 2005, 2007 Eduardo Cavazos and Slava Pestov +! Copyright (C) 2005, 2008 Eduardo Cavazos and Slava Pestov ! See http://factorcode.org/license.txt for BSD license. -USING: alien alien.c-types arrays ui ui.gadgets ui.gestures -ui.backend ui.clipboards ui.gadgets.worlds ui.render assocs -kernel math namespaces opengl sequences strings x11.xlib +USING: accessors alien alien.c-types arrays ui ui.gadgets +ui.gestures ui.backend ui.clipboards ui.gadgets.worlds ui.render +assocs kernel math namespaces opengl sequences strings x11.xlib x11.events x11.xim x11.glx x11.clipboard x11.constants x11.windows io.encodings.string io.encodings.ascii io.encodings.utf8 combinators debugger command-line qualified From ba0e227d2de440c8331b1024647e850b753979aa Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 11 Jul 2008 13:49:00 -0500 Subject: [PATCH 08/14] Fix buttons tests --- extra/ui/gadgets/buttons/buttons-tests.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/ui/gadgets/buttons/buttons-tests.factor b/extra/ui/gadgets/buttons/buttons-tests.factor index 94801145e3..6c5d757dd4 100755 --- a/extra/ui/gadgets/buttons/buttons-tests.factor +++ b/extra/ui/gadgets/buttons/buttons-tests.factor @@ -16,7 +16,7 @@ TUPLE: foo-gadget ; T{ foo-gadget } "t" set [ 2 ] [ "t" get gadget-children length ] unit-test -[ "Foo A" ] [ "t" get gadget-child gadget-child gadget-child label-string ] unit-test +[ "Foo A" ] [ "t" get gadget-child gadget-child label-string ] unit-test [ ] [ 2 { From e703dd2b8d04fa356d22e679f6f6f503109ee238 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 11 Jul 2008 14:43:51 -0500 Subject: [PATCH 09/14] Cleaning up some code --- extra/ui/gadgets/frames/frames.factor | 4 ++-- extra/ui/gadgets/gadgets-docs.factor | 4 ++-- extra/ui/gadgets/gadgets.factor | 12 +++++------- extra/ui/gadgets/labelled/labelled.factor | 16 ++++++---------- extra/ui/gadgets/packs/packs.factor | 6 +++--- extra/ui/gadgets/scrollers/scrollers.factor | 10 ++++------ extra/ui/gadgets/sliders/sliders.factor | 12 ++++++------ extra/ui/gadgets/slots/slots.factor | 10 ++++------ extra/ui/gadgets/tracks/tracks.factor | 4 ++-- extra/ui/tools/browser/browser.factor | 10 ++++------ extra/ui/tools/debugger/debugger.factor | 10 ++++------ extra/ui/tools/deploy/deploy.factor | 10 ++++------ extra/ui/tools/inspector/inspector.factor | 8 +++----- extra/ui/tools/listener/listener.factor | 12 +++++------- extra/ui/tools/profiler/profiler.factor | 10 ++++------ extra/ui/tools/search/search.factor | 10 ++++------ extra/ui/tools/tools.factor | 16 +++++++--------- extra/ui/tools/traceback/traceback.factor | 14 ++++++++------ extra/ui/tools/walker/walker.factor | 11 +++++------ extra/ui/ui-docs.factor | 2 +- 20 files changed, 83 insertions(+), 108 deletions(-) diff --git a/extra/ui/gadgets/frames/frames.factor b/extra/ui/gadgets/frames/frames.factor index df1b7aa654..096d916a9b 100644 --- a/extra/ui/gadgets/frames/frames.factor +++ b/extra/ui/gadgets/frames/frames.factor @@ -39,7 +39,7 @@ M: frame layout* grid-layout ; : make-frame ( quot -- frame ) - make-gadget ; inline + swap make-gadget ; inline : frame, ( gadget i j -- ) - \ make-gadget get -rot grid-add ; + gadget get -rot grid-add ; diff --git a/extra/ui/gadgets/gadgets-docs.factor b/extra/ui/gadgets/gadgets-docs.factor index f05126fec3..8093aa5dc5 100755 --- a/extra/ui/gadgets/gadgets-docs.factor +++ b/extra/ui/gadgets/gadgets-docs.factor @@ -235,8 +235,8 @@ HELP: gadget, { $description "Adds a new child to the gadget being constructed. This word can only be used from a quotation passed to " { $link make-gadget } "." } ; HELP: make-gadget -{ $values { "quot" quotation } { "gadget" gadget } } -{ $description "Calls the quotation in a new scope with the gadget stored in the " { $link make-gadget } " variable." } ; +{ $values { "gadget" gadget } { "quot" quotation } } +{ $description "Calls the quotation in a new scope with the gadget stored in the " { $link gadget } " variable." } ; HELP: with-gadget { $values { "gadget" gadget } { "quot" quotation } } diff --git a/extra/ui/gadgets/gadgets.factor b/extra/ui/gadgets/gadgets.factor index 58b58d4fdc..5bfb5a1b05 100755 --- a/extra/ui/gadgets/gadgets.factor +++ b/extra/ui/gadgets/gadgets.factor @@ -391,19 +391,17 @@ M: f request-focus-on 2drop ; : focus-path ( world -- seq ) [ gadget-focus ] follow ; -: make-gadget ( quot gadget -- gadget ) - [ \ make-gadget rot with-variable ] keep ; inline - -: gadget, ( gadget -- ) \ make-gadget get add-gadget ; +: gadget, ( gadget -- ) gadget get add-gadget ; : g ( -- gadget ) gadget get ; : g-> ( x -- x x gadget ) dup g ; : with-gadget ( gadget quot -- ) - [ - swap dup \ make-gadget set gadget set call - ] with-scope ; inline + gadget swap with-variable ; inline + +: make-gadget ( gadget quot -- gadget ) + [ with-gadget ] [ drop ] 2bi ; inline ! Deprecated : set-gadget-delegate ( gadget tuple -- ) diff --git a/extra/ui/gadgets/labelled/labelled.factor b/extra/ui/gadgets/labelled/labelled.factor index ee27620273..2cb69d6061 100755 --- a/extra/ui/gadgets/labelled/labelled.factor +++ b/extra/ui/gadgets/labelled/labelled.factor @@ -13,11 +13,9 @@ TUPLE: labelled-gadget < track content ; : ( gadget title -- newgadget ) { 0 1 } labelled-gadget new-track [ - [ -