Virtual-Machine-Specification.html 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <html lang="en">
  2. <head>
  3. <title>Virtual Machine Specification - avram - a virtual machine code interpreter</title>
  4. <meta http-equiv="Content-Type" content="text/html">
  5. <meta name="description" content="avram - a virtual machine code interpreter">
  6. <meta name="generator" content="makeinfo 4.13">
  7. <link title="Top" rel="start" href="index.html#Top">
  8. <link rel="prev" href="User-Manual.html#User-Manual" title="User Manual">
  9. <link rel="next" href="Library-Reference.html#Library-Reference" title="Library Reference">
  10. <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
  11. <meta http-equiv="Content-Style-Type" content="text/css">
  12. <style type="text/css"><!--
  13. pre.display { font-family:inherit }
  14. pre.format { font-family:inherit }
  15. pre.smalldisplay { font-family:inherit; font-size:smaller }
  16. pre.smallformat { font-family:inherit; font-size:smaller }
  17. pre.smallexample { font-size:smaller }
  18. pre.smalllisp { font-size:smaller }
  19. span.sc { font-variant:small-caps }
  20. span.roman { font-family:serif; font-weight:normal; }
  21. span.sansserif { font-family:sans-serif; font-weight:normal; }
  22. --></style>
  23. </head>
  24. <body>
  25. <div class="node">
  26. <a name="Virtual-Machine-Specification"></a>
  27. <p>
  28. Next:&nbsp;<a rel="next" accesskey="n" href="Library-Reference.html#Library-Reference">Library Reference</a>,
  29. Previous:&nbsp;<a rel="previous" accesskey="p" href="User-Manual.html#User-Manual">User Manual</a>,
  30. Up:&nbsp;<a rel="up" accesskey="u" href="index.html#Top">Top</a>
  31. <hr>
  32. </div>
  33. <h2 class="chapter">2 Virtual Machine Specification</h2>
  34. <p>This chapter contains a description of the virtual machine implemented
  35. by <code>avram</code>, from the point of view of a person wishing to write a
  36. compiler that generates code for it. Before reading this chapter,
  37. readers should at least skim <a href="User-Manual.html#User-Manual">User Manual</a> in order to see the big
  38. picture. Topics covered in this chapter include data representations,
  39. virtual code semantics, and file formats. A toy programming language is
  40. introduced for illustrative purposes. The sections in this chapter might
  41. not make sense if read out of order the first time through.
  42. <ul class="menu">
  43. <li><a accesskey="1" href="Raw-Material.html#Raw-Material">Raw Material</a>
  44. <li><a accesskey="2" href="Concrete-Syntax.html#Concrete-Syntax">Concrete Syntax</a>
  45. <li><a accesskey="3" href="File-Format.html#File-Format">File Format</a>
  46. <li><a accesskey="4" href="Representation-of-Numeric-and-Textual-Data.html#Representation-of-Numeric-and-Textual-Data">Representation of Numeric and Textual Data</a>
  47. <li><a accesskey="5" href="Filter-Mode-Interface.html#Filter-Mode-Interface">Filter Mode Interface</a>
  48. <li><a accesskey="6" href="Parameter-Mode-Interface.html#Parameter-Mode-Interface">Parameter Mode Interface</a>
  49. <li><a accesskey="7" href="Virtual-Code-Semantics.html#Virtual-Code-Semantics">Virtual Code Semantics</a>
  50. </ul>
  51. </body></html>