Diff for /gforth/prims2x.fs between versions 1.118 and 1.119

version 1.118, 2002/10/12 11:05:22 version 1.119, 2002/10/12 18:36:25
Line 286  create min-depth     max-stacks cells al Line 286  create min-depth     max-stacks cells al
 create sp-update-in max-stacks cells allot  create sp-update-in max-stacks cells allot
 \ where max-depth occured the first time  \ where max-depth occured the first time
 create max-depths max-stacks max-combined 1+ * cells allot  create max-depths max-stacks max-combined 1+ * cells allot
 \ maximum depth at start of each component: array[components] of array[stack]  \ maximum depth at start of each part: array[parts] of array[stack]
   create max-back-depths max-stacks max-combined 1+ * cells allot
   \ maximun depth from end of the combination to the start of the each part
   
 : s-c-max-depth ( nstack ncomponent -- addr )  : s-c-max-depth ( nstack ncomponent -- addr )
     max-stacks * + cells max-depths + ;      max-stacks * + cells max-depths + ;
   
   : s-c-max-back-depth ( nstack ncomponent -- addr )
       max-stacks * + cells max-back-depths + ;
   
 wordlist constant primitives  wordlist constant primitives
   
 : create-prim ( prim -- )  : create-prim ( prim -- )
Line 361  defer inst-stream-f ( -- stack ) Line 366  defer inst-stream-f ( -- stack )
         drop n stack part-stack-access          drop n stack part-stack-access
     endif ;      endif ;
   
 : part-stack-write ( n stack -- )  : stack-diff ( stack -- n )
     part-stack-access ;      \ in-out
       dup stack-in @ swap stack-out @ - ;
   
   : part-stack-write { n stack -- }
       stack stack-depth n +
       stack stack-number @ part-num @ s-c-max-back-depth @
       over <= if ( ndepth )
           stack combined ['] stack-diff prim-context -
           stack normal-stack-access
       else
           drop n stack part-stack-access
       endif ;
   
 : stack-read ( n stack -- )  : stack-read ( n stack -- )
     \ print a stack access at index n of stack      \ print a stack access at index n of stack
Line 648  stack inst-stream IP Cell Line 664  stack inst-stream IP Cell
   
 : stack-pointer-update { stack -- }  : stack-pointer-update { stack -- }
     \ stack grow downwards      \ stack grow downwards
     stack stack-in @ stack stack-out @ -      stack stack-diff
     ?dup-if \ this check is not necessary, gcc would do this for us      ?dup-if \ this check is not necessary, gcc would do this for us
         stack inst-stream = if          stack inst-stream = if
             inst-pointer-update              inst-pointer-update
Line 703  stack inst-stream IP Cell Line 719  stack inst-stream IP Cell
     2drop ;      2drop ;
   
 : output-c-tail1 ( -- )  : output-c-tail1 ( -- )
     \ the final part of the generated C code except LABEL2 and NEXT_P2      \ the final part of the generated C code before stores
     output-super-end      output-super-end
     print-debug-results      print-debug-results
     ." NEXT_P1;" cr      ." NEXT_P1;" cr ;
     stores  
     fill-tos ;  
   
 : output-c-tail ( -- )  : output-c-tail ( -- )
     \ the final part of the generated C code, without LABEL2      \ the final part of the generated C code, without LABEL2
     output-c-tail1      output-c-tail1
       stores
       fill-tos 
       ." NEXT_P2;" ;
   
   : output-c-tail-no-stores ( -- )
       \ the final part of the generated C code, without LABEL2
       output-c-tail1
       fill-tos 
     ." NEXT_P2;" ;      ." NEXT_P2;" ;
   
 : output-c-tail2 ( -- )  : output-c-tail2 ( -- )
     \ the final part of the generated C code, including LABEL2      \ the final part of the generated C code, including LABEL2
     output-c-tail1      output-c-tail1
       stores
       fill-tos 
       ." LABEL2(" prim prim-c-name 2@ type ." )" cr
       ." NEXT_P2;" cr ;
   
   : output-c-tail2-no-stores ( -- )
       \ the final part of the generated C code, including LABEL2
       output-c-tail1
       fill-tos 
     ." LABEL2(" prim prim-c-name 2@ type ." )" cr      ." LABEL2(" prim prim-c-name 2@ type ." )" cr
     ." NEXT_P2;" cr ;      ." NEXT_P2;" cr ;
   
Line 1013  stack inst-stream IP Cell Line 1044  stack inst-stream IP Cell
 : min! ( n addr -- )  : min! ( n addr -- )
     tuck @ min swap ! ;      tuck @ min swap ! ;
   
 : inst-stream-correction ( nin1 nstack -- nin2 )  : inst-stream-adjustment ( nstack -- n )
     0= if      \ number of stack items to add for each part
         include-skipped-insts @ -      0= include-skipped-insts @ and negate ;
     endif ;  
   
 : add-depths { p -- }  : add-depths { p -- }
     \ combine stack effect of p with *-depths      \ combine stack effect of p with *-depths
     max-stacks 0 ?do      max-stacks 0 ?do
         current-depth i th @          current-depth i th @
         p prim-stacks-in  i th @ + i inst-stream-correction          p prim-stacks-in  i th @ + i inst-stream-adjustment +
         dup max-depth i th max!          dup max-depth i th max!
         p prim-stacks-out i th @ -          p prim-stacks-out i th @ -
         dup min-depth i th min!          dup min-depth i th min!
Line 1073  stack inst-stream IP Cell Line 1103  stack inst-stream IP Cell
         i q prim-stacks-out i th @ q prim-effect-out-end make-effect-items          i q prim-stacks-out i th @ q prim-effect-out-end make-effect-items
     loop ;      loop ;
   
   : compute-stack-max-back-depths ( stack -- )
       stack-number @ { stack# }
       current-depth stack# th @ dup
       dup stack# num-combined @ s-c-max-back-depth !
       -1 num-combined @ 1- -do ( max-depth current-depth )
           combined-prims i th @ { p }
           p prim-stacks-out stack# th @ +
           dup >r max r>
           over stack# i s-c-max-back-depth !
           p prim-stacks-in stack# th @ -
           stack# inst-stream-adjustment -
       1 -loop
       assert( dup stack# inst-stream-adjustment negate = )
       assert( over max-depth stack# th @ = )
       2drop ;
   
   : compute-max-back-depths ( -- )
       \ compute max-back-depths.
       \ assumes that current-depths is correct for the end of the combination
       ['] compute-stack-max-back-depths map-stacks ;
   
 : process-combined ( -- )  : process-combined ( -- )
     combined combined-prims num-combined @ cells      combined combined-prims num-combined @ cells
     combinations ['] constant insert-wordlist      combinations ['] constant insert-wordlist
Line 1080  stack inst-stream IP Cell Line 1131  stack inst-stream IP Cell
     @ prim-c-code 2@ prim prim-c-code 2! \ used by output-super-end      @ prim-c-code 2@ prim prim-c-code 2! \ used by output-super-end
     prim compute-effects      prim compute-effects
     prim init-effects      prim init-effects
       compute-max-back-depths
     output-combined perform ;      output-combined perform ;
   
 \ C output  \ C output
Line 1106  stack inst-stream IP Cell Line 1158  stack inst-stream IP Cell
 : output-combined-tail ( -- )  : output-combined-tail ( -- )
     part-output-c-tail      part-output-c-tail
     in-part @ >r in-part off      in-part @ >r in-part off
     combined ['] output-c-tail prim-context      combined ['] output-c-tail-no-stores prim-context
     r> in-part ! ;      r> in-part ! ;
   
 : part-stack-pointer-updates ( -- )  : part-stack-pointer-updates ( -- )
Line 1155  stack inst-stream IP Cell Line 1207  stack inst-stream IP Cell
     \ print-debug-args      \ print-debug-args
     \ stack-pointer-updates now in parts      \ stack-pointer-updates now in parts
     output-parts      output-parts
     output-c-tail2      output-c-tail2-no-stores
     ." }" cr      ." }" cr
     cr ;      cr ;
   

Removed from v.1.118  
changed lines
  Added in v.1.119


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