Diff for /gforth/backtrac.fs between versions 1.4 and 1.7

version 1.4, 2000/09/23 15:46:51 version 1.7, 2003/01/06 11:18:59
Line 77  IS 'cold Line 77  IS 'cold
     then ;      then ;
 IS store-backtrace  IS store-backtrace
   
   : print-bt-entry ( return-stack-item -- )
       cell - dup in-dictionary? over dup aligned = and
       if
           @ dup threaded>name dup if
               .name drop
           else
               drop dup look if
                   .name drop
               else
                   drop body> look \ !! check for "call" in cell before?
                   if
                       .name
                   else
                       drop
                   then
               then
           then
       else
           drop
       then ;
   
 : print-backtrace ( addr1 addr2 -- )  : print-backtrace ( addr1 addr2 -- )
     \G print a backtrace for the return stack addr1..addr2      \G print a backtrace for the return stack addr1..addr2
     cr ." Backtrace:"      cr ." Backtrace:"
     swap u+do      swap u+do
         cr          cr
         i @ dup hex. ( return-addr? )          i @ dup hex. ( return-addr? )
         cell - dup in-dictionary? over dup aligned = and          print-bt-entry
         if  
             @ look  
             if  
                 .name  
             else  
                 drop  
             then  
         else  
             drop  
         then  
         cell +loop ;          cell +loop ;
   
 :noname ( -- )  :noname ( -- )

Removed from v.1.4  
changed lines
  Added in v.1.7


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