Diff for /gforth/prof-inline.fs between versions 1.2 and 1.3

version 1.2, 2004/09/05 07:46:08 version 1.3, 2004/09/06 13:44:56
Line 52  true constant count-calls? \ do some pro Line 52  true constant count-calls? \ do some pro
 \ optimizing return-to-returns (tail calls), return-to-calls, call-to-calls  \ optimizing return-to-returns (tail calls), return-to-calls, call-to-calls
   
 struct  struct
     cell% list-next      cell% field list-next
 end-struct list%  end-struct list%
   
 list%  list%
Line 68  list% Line 68  list%
 end-struct profile% \ profile point  end-struct profile% \ profile point
   
 list%  list%
     cell% field calls%-call \ ptr to profile point of bb containing the call      cell% field calls-call \ ptr to profile point of bb containing the call
 end-struct calls%  end-struct calls%
   
 variable profile-points \ linked list of profile%  variable profile-points \ linked list of profile%
 0 profile-points !  0 profile-points !
 variable next-profile-point-p \ the address where the next pp will be stored  variable next-profile-point-p \ the address where the next pp will be stored
 profile-points next-profile-point-p !  profile-points next-profile-point-p !
 count-calls? [if]  variable last-colondef-profile \ pointer to the pp of last colon definition
     variable last-colondef-profile \ pointer to the pp of last colon definition  variable current-profile-point
 [endif]  variable library-calls \ list of calls to library colon defs
   
 \ list stuff  \ list stuff
   
   : map-list ( ... list xt -- ... )
       { xt } begin { list }
           list while
               list xt execute
               list list-next @
       repeat ;
   
   : drop-1+ drop 1+ ;
   
   : list-length ( list -- u )
       0 swap ['] drop-1+ map-list ;
   
   : insert-list ( listp listpp -- )
       \ insert list node listp into list pointed to by listpp in front
       tuck @ over list-next !
       swap ! ;
   
   : insert-list-end ( listp listppp -- )
       \ insert list node listp into list, with listppp indicating the
       \ position to insert at, and indicating the position behind the
       \ new element afterwards.
       2dup @ insert-list
       swap list-next swap ! ;
   
   \ calls
   
   : new-call ( profile-point -- call )
       calls% %alloc tuck calls-call ! ;
   
 \ profile-point stuff     \ profile-point stuff   
   
Line 96  count-calls? [if] Line 123  count-calls? [if]
         r@ profile-straight-line on          r@ profile-straight-line on
         0 r@ profile-calls-from !          0 r@ profile-calls-from !
     [endif]      [endif]
     0 r@ list-next !      r@ next-profile-point-p insert-list-end
     r@ next-profile-point-p @ !      r@ current-profile-point !
     r@ list-next next-profile-point-p !  
     r> ;      r> ;
   
 : print-profile ( -- )  : print-profile ( -- )
Line 121  count-calls? [if] Line 147  count-calls? [if]
                 r@ profile-char @ 3 .r ." : "                  r@ profile-char @ 3 .r ." : "
                 r@ profile-count 2@ 10 d.r                  r@ profile-count 2@ 10 d.r
                 r@ profile-straight-line @ space 2 .r                  r@ profile-straight-line @ space 2 .r
                 r@ profile-calls @ 4 .r                  r@ profile-calls @ list-length 4 .r
                 cr                  cr
             endif              endif
             r> list-next @              r> list-next @
     repeat      repeat
     drop ;      drop ;
   
   : 1= ( u -- f )
       1 = ;
   
   : 2= ( u -- f )
       2 = ;
   
   : 3= ( u -- f )
       3 = ;
   
   : 1u> ( u -- f )
       1 u> ;
   
   : call-count+ ( ud1 callp -- ud2 )
       calls-call @ profile-count 2@ d+ ;
   
   : add-calls ( ud-dyn-callee1 ud-dyn-caller1 u-stat1 xt-test profpp --
                 ud-dyn-callee2 ud-dyn-caller2 u-stat2 xt-test )
       \ add the static and dynamic call counts to profpp up, if the
       \ number of static calls to profpp satisfies xt-test ( u -- f )
       { xt-test p }
       p profile-colondef? @ if ( u-dyn1 u-stat1 )
           p profile-calls @ { calls }
           calls list-length { stat }
           stat xt-test execute if ( u-dyn u-stat )
               stat + >r
               0. calls ['] call-count+ map-list d+ 2>r
               p profile-count 2@ d+
               2r> r>
           endif
       endif
       xt-test ;
   
   : print-stat-line ( xt -- )
       >r 0. 0. 0 r> profile-points @ ['] add-calls map-list drop
       ( ud-dyn-callee ud-dyn-caller u-stat )
       7 u.r 12 ud.r 12 ud.r space ;
   
   : print-statistics ( -- )
       ."  static  dyn-caller  dyn-callee   condition" cr
       ['] 0=  print-stat-line ." calls to coldefs with 0 callers" cr
       ['] 1=  print-stat-line ." calls to coldefs with 1 callers" cr
       ['] 2=  print-stat-line ." calls to coldefs with 2 callers" cr
       ['] 3=  print-stat-line ." calls to coldefs with 3 callers" cr
       ['] 1u> print-stat-line ." calls to coldefs with >1 callers" cr
       ;
   
 : dinc ( profilep -- )  : dinc ( profilep -- )
     \ increment double pointed to by d-addr      \ increment double pointed to by d-addr
     profile-count dup 2@ 1. d+ rot 2! ;      profile-count dup 2@ 1. d+ rot 2! ;
Line 196  Defer before-word-profile ( -- ) Line 268  Defer before-word-profile ( -- )
   
 : note-call ( addr -- )  : note-call ( addr -- )
     \ addr is the body address of a called colon def or does handler      \ addr is the body address of a called colon def or does handler
     dup 3 cells + @ ['] dinc >body = if      dup 3 cells + @ ['] dinc >body = if ( addr )
         1 over  cell+ @ profile-calls +!          current-profile-point @ new-call over cell+ @ profile-calls insert-list
     endif      endif
     drop ;      drop ;
           

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>