/README.vmgen

http://github.com/earl/gforth-mirror · Unknown · 68 lines · 51 code · 17 blank · 0 comment · 0 complexity · 64f826f45f4a5bfe91b8087fe8ca9352 MD5 · raw file

  1. Vmgen supports the construction of interpretive systems by generating
  2. the code for executing and dealing with virtual machine (VM)
  3. instructions from simple descriptions of the VM instructions.
  4. This file is about Vmgen-specific issues. Issues affecting both
  5. Gforth and Vmgen (e.g., platform compatibility) are discussed in
  6. README.
  7. Vmgen generates code for executing VM instructions (with optional
  8. tracing), for generating VM code, for disassembling VM code, and for
  9. profiling VM instruction sequences. A VM instruction description
  10. looks like this:
  11. add ( i1 i2 -- i )
  12. i = i1+i2;
  13. Vmgen supports several techniques for writing efficient interpreters:
  14. virtual machine interpreters, threaded code, combining VM instructions
  15. into superinstructions, keeping the top-of-stack in a register,
  16. scheduling the dispatch of the next VM instruction, and a couple of
  17. minor optimizations. Interpreters created with Vmgen usually are
  18. faster than competing interpreters and are typically only a factor of
  19. 2-10 slower than the code generateed by native-code compilers.
  20. Vmgen has special support for stack-based VMs (but it can also be
  21. used to advantage when implementing a register-based VM).
  22. Changes in Vmgen from earlier releases are explained in NEWS.vmgen.
  23. After installation the documentation is available in info form and in
  24. printable form (doc/vmgen.ps).
  25. There is a simple usage example in vmgen-ex (and a variation on that
  26. in vmgen-ex2). See the documentation for more information on that.
  27. To report a bug, use
  28. <https://savannah.gnu.org/bugs/?func=addbug&group_id=2672>. For
  29. discussion on Vmgen (e.g., how to use it), use the
  30. bug-vmgen@mail.freesoftware.fsf.org mailing list (use
  31. <http://mail.gnu.org/mailman/listinfo/help-vmgen> to subscribe).
  32. You can find vmgen at http://www.complang.tuwien.ac.at/anton/vmgen/.
  33. Vmgen is currently distributed with Gforth (because it needs Gforth to
  34. run, and Gforth needs it to build), and is installed together with
  35. Gforth (read INSTALL for instructions).
  36. Note that future versions of vmgen may require small changes in
  37. programs written for the present version (e.g., requiring a few
  38. additional macro definitions).
  39. -----
  40. Copyright (C) 2001, 2002, 2003,2007,2008 Free Software Foundation, Inc.
  41. This file is part of Gforth.
  42. Gforth is free software; you can redistribute it and/or
  43. modify it under the terms of the GNU General Public License
  44. as published by the Free Software Foundation, either version 3
  45. of the License, or (at your option) any later version.
  46. This program is distributed in the hope that it will be useful,
  47. but WITHOUT ANY WARRANTY; without even the implied warranty of
  48. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
  49. GNU General Public License for more details.
  50. You should have received a copy of the GNU General Public License
  51. along with this program. If not, see http://www.gnu.org/licenses/.