Diff for /gforth/doc/vmgen.texi between versions 1.32 and 1.34

version 1.32, 2008/08/08 20:56:14 version 1.34, 2008/11/01 22:19:30
Line 10  This manual is for Vmgen Line 10  This manual is for Vmgen
 (version @value{VERSION}, @value{UPDATED}),  (version @value{VERSION}, @value{UPDATED}),
 the virtual machine interpreter generator  the virtual machine interpreter generator
   
 Copyright @copyright{} 2002,2003,2005,2007 Free Software Foundation, Inc.  Copyright @copyright{} 2002,2003,2005,2007,2008 Free Software Foundation, Inc.
   
 @quotation  @quotation
 Permission is granted to copy, distribute and/or modify this document  Permission is granted to copy, distribute and/or modify this document
Line 860  first one (just as the intuition suggest Line 860  first one (just as the intuition suggest
 @cindex Stack pointer access  @cindex Stack pointer access
 @cindex explicit stack access  @cindex explicit stack access
   
   This feature is not needed and not supported in the 0.6.2 version of
   vmgen that is documented here (and that is invoked by default).
   
 Not all stack effects can be specified using the stack effect  Not all stack effects can be specified using the stack effect
 specifications above.  For VM instructions that have other stack  specifications above.  For VM instructions that have other stack
 effects, you can specify them explicitly by accessing the stack  effects, you can specify them explicitly by accessing the stack
Line 963  if (branch_condition) @{ Line 966  if (branch_condition) @{
 SUPER_CONTINUE;  SUPER_CONTINUE;
 @end example  @end example
   
 @item VM_JUMP  @c !! uncomment for post-0.6.2 docs
 @findex VM_JUMP  @c @item VM_JUMP
 @code{VM_JUMP(target)} is equivalent to @code{goto *(target)}, but  @c @findex VM_JUMP
 allows Vmgen to do dynamic superinstructions and replication.  You  @c @code{VM_JUMP(target)} is equivalent to @code{goto *(target)}, but
 still need to say @code{SUPER_END}.  Also, the goto only happens at  @c allows Vmgen to do dynamic superinstructions and replication.  You
 the end (wherever the VM_JUMP is).  Essentially, this just suppresses  @c still need to say @code{SUPER_END}.  Also, the goto only happens at
 much of the ordinary dispatch mechanism.  @c the end (wherever the VM_JUMP is).  Essentially, this just suppresses
   @c much of the ordinary dispatch mechanism.
   
 @end table  @end table
   

Removed from v.1.32  
changed lines
  Added in v.1.34


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