1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-16 22:14:23 +03:00
inform7/docs/bytecode-module/index.html

289 lines
12 KiB
HTML
Raw Normal View History

2019-03-17 14:40:57 +02:00
<html>
<head>
2020-04-14 19:56:54 +03:00
<title>bytecode</title>
2020-03-19 02:11:25 +02:00
<meta name="viewport" content="width=device-width initial-scale=1">
2019-03-17 14:40:57 +02:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Language" content="en-gb">
2020-03-19 02:11:25 +02:00
<link href="../inweb.css" rel="stylesheet" rev="stylesheet" type="text/css">
2020-04-14 19:56:54 +03:00
2019-03-17 14:40:57 +02:00
</head>
<body>
2020-03-19 02:11:25 +02:00
<nav role="navigation">
2020-04-14 19:56:54 +03:00
<h1><a href="../index.html">
<img src="../docs-src/Figures/Inform.png" height=72">
</a></h1>
<ul><li><a href="../compiler.html">compiler tools</a></li>
2020-03-19 02:11:25 +02:00
<li><a href="../other.html">other tools</a></li>
<li><a href="../extensions.html">extensions and kits</a></li>
<li><a href="../units.html">unit test tools</a></li>
2020-04-14 19:56:54 +03:00
</ul><h2>Compiler Webs</h2><ul>
2020-03-19 02:11:25 +02:00
<li><a href="../inbuild/index.html">inbuild</a></li>
<li><a href="../inform7/index.html">inform7</a></li>
<li><a href="../inter/index.html">inter</a></li>
2020-04-14 19:56:54 +03:00
</ul><h2>Inbuild Modules</h2><ul>
<li><a href="../supervisor-module/index.html">supervisor</a></li>
</ul><h2>Inform7 Modules</h2><ul>
2020-03-19 02:11:25 +02:00
<li><a href="../core-module/index.html">core</a></li>
<li><a href="../inflections-module/index.html">inflections</a></li>
<li><a href="../linguistics-module/index.html">linguistics</a></li>
<li><a href="../kinds-module/index.html">kinds</a></li>
<li><a href="../if-module/index.html">if</a></li>
<li><a href="../multimedia-module/index.html">multimedia</a></li>
2020-04-14 19:56:54 +03:00
<li><a href="../problems-module/index.html">problems</a></li>
2020-03-19 02:11:25 +02:00
<li><a href="../index-module/index.html">index</a></li>
2020-04-14 19:56:54 +03:00
</ul><h2>Inter Modules</h2><ul>
<li><span class="unlink">bytecode</span></li>
2020-03-19 02:11:25 +02:00
<li><a href="../building-module/index.html">building</a></li>
<li><a href="../codegen-module/index.html">codegen</a></li>
2020-04-14 19:56:54 +03:00
</ul><h2>Shared Modules</h2><ul>
<li><a href="../arch-module/index.html">arch</a></li>
<li><a href="../syntax-module/index.html">syntax</a></li>
<li><a href="../words-module/index.html">words</a></li>
<li><a href="../html-module/index.html">html</a></li>
2020-03-19 02:11:25 +02:00
<li><a href="../../../inweb/docs/foundation-module/index.html">foundation</a></li>
2020-04-14 19:56:54 +03:00
</ul>
2020-03-19 02:11:25 +02:00
</nav>
<main role="main">
2020-04-14 19:56:54 +03:00
<ul class="crumbs"><li><a href="../index.html">Home</a></li><li><a href="../compiler.html">Inter Modules</a></li><li><b>bytecode</b></li></ul>
<p class="purpose">Dealing with intermediate-level Inform as bytecode in memory. This is version 1.</p>
2019-03-17 14:40:57 +02:00
<hr>
<ul class="chapterlist">
<li>
<p><a name="1"></a><spon class="chaptertitle">Chapter 1: Setting Up</span></p>
<p><span class="purpose">Loading this module.</span></p>
<ul class="sectionlist">
<li>
2020-04-14 19:56:54 +03:00
<p><a href="1-bm.html"><spon class="sectiontitle">Bytecode Module</span></a> -
2019-03-17 14:40:57 +02:00
<span class="purpose">Setting up the use of this module.</span></p>
</li>
</ul>
</li>
<li>
<p><a name="2"></a><spon class="chaptertitle">Chapter 2: Interoperability</span></p>
<p><span class="purpose"></span></p>
<ul class="sectionlist">
<li>
2019-07-24 22:29:29 +03:00
<p><a href="2-it.html"><spon class="sectiontitle">Inter Trees</span></a> -
<span class="purpose">To manage tree structures of inter code, and manage the movement of nodes within these trees.</span></p>
2019-03-17 14:40:57 +02:00
</li>
<li>
<p><a href="2-bkm.html"><spon class="sectiontitle">Bookmarks</span></a> -
<span class="purpose">Write positions for inter code being generated.</span></p>
</li>
2019-03-17 14:40:57 +02:00
<li>
2019-07-24 22:29:29 +03:00
<p><a href="2-in.html"><spon class="sectiontitle">Inter Nodes</span></a> -
<span class="purpose">To create nodes of inter code, and manage everything about them except their tree locations.</span></p>
2019-03-17 14:40:57 +02:00
</li>
<li>
<p><a href="2-tw.html"><spon class="sectiontitle">The Warehouse</span></a> -
<span class="purpose">To manage the memory storage of inter code.</span></p>
</li>
<li>
2019-07-25 12:19:54 +03:00
<p><a href="2-inl.html"><spon class="sectiontitle">Inter Node Lists</span></a> -
<span class="purpose">To store doubly-linked lists of inter frames.</span></p>
</li>
2019-03-17 14:40:57 +02:00
<li>
<p><a href="2-st.html"><spon class="sectiontitle">Symbols Tables</span></a> -
<span class="purpose">To manage searchable tables of named symbols.</span></p>
</li>
<li>
<p><a href="2-pck.html"><spon class="sectiontitle">Packages</span></a> -
<span class="purpose">To manage packages of inter code.</span></p>
</li>
<li>
<p><a href="2-sym.html"><spon class="sectiontitle">Symbols</span></a> -
<span class="purpose">To manage named symbols in inter code.</span></p>
</li>
2019-07-26 10:59:23 +03:00
<li>
<p><a href="2-ann.html"><spon class="sectiontitle">Annotations</span></a> -
<span class="purpose">To mark symbols up with metadata.</span></p>
</li>
2019-08-04 14:19:47 +03:00
<li>
<p><a href="2-cnn.html"><spon class="sectiontitle">Connectors</span></a> -
<span class="purpose">To manage link symbols.</span></p>
</li>
2019-08-02 20:51:21 +03:00
<li>
<p><a href="2-trn.html"><spon class="sectiontitle">Transmigration</span></a> -
<span class="purpose">To move packages between repositories.</span></p>
</li>
</ul>
</li>
<li>
<p><a name="3"></a><spon class="chaptertitle">Chapter 3: Language Definition</span></p>
<p><span class="purpose"></span></p>
<ul class="sectionlist">
2019-03-17 14:40:57 +02:00
<li>
<p><a href="3-ca.html"><spon class="sectiontitle">Canonical Annotations</span></a> -
<span class="purpose">Defining the one true set of Inter annotation codes.</span></p>
2019-03-17 14:40:57 +02:00
</li>
<li>
<p><a href="3-dfn.html"><spon class="sectiontitle">Definition</span></a> -
<span class="purpose">Defining the Inter format.</span></p>
2019-03-17 14:40:57 +02:00
</li>
<li>
<p><a href="3-iibf.html"><spon class="sectiontitle">Inter in Binary Files</span></a> -
2019-03-17 14:40:57 +02:00
<span class="purpose">To read or write inter between memory and binary files.</span></p>
</li>
<li>
<p><a href="3-iitf.html"><spon class="sectiontitle">Inter in Text Files</span></a> -
2019-03-17 14:40:57 +02:00
<span class="purpose">To read inter from a textual file.</span></p>
</li>
<li>
<p><a href="3-vi.html"><spon class="sectiontitle">Verifying Inter</span></a> -
2019-03-17 14:40:57 +02:00
<span class="purpose">Verifying that a chunk of inter is correct and consistent.</span></p>
</li>
<li>
<p><a href="3-idt.html"><spon class="sectiontitle">Inter Data Types</span></a> -
2019-03-17 14:40:57 +02:00
<span class="purpose">A primitive notion of data type, below the level of kinds.</span></p>
</li>
2019-07-24 22:29:29 +03:00
<li>
<p><a href="3-ie.html"><spon class="sectiontitle">Inter Errors</span></a> -
2019-07-24 22:29:29 +03:00
<span class="purpose">To issue error messages.</span></p>
</li>
2019-03-17 14:40:57 +02:00
</ul>
</li>
<li>
<p><a name="4"></a><spon class="chaptertitle">Chapter 4: Void Constructs</span></p>
<p><span class="purpose"></span></p>
<ul class="sectionlist">
<li>
<p><a href="4-tnc.html"><spon class="sectiontitle">The Nop Construct</span></a> -
<span class="purpose">Defining the nop construct.</span></p>
</li>
<li>
<p><a href="4-tcc.html"><spon class="sectiontitle">The Comment Construct</span></a> -
2019-07-09 08:45:46 +03:00
<span class="purpose">Defining the comment construct.</span></p>
2019-03-17 14:40:57 +02:00
</li>
<li>
2019-04-23 01:29:02 +03:00
<p><a href="4-tmc.html"><spon class="sectiontitle">The Metadata Construct</span></a> -
<span class="purpose">Defining the metadata construct.</span></p>
</li>
2019-03-17 14:40:57 +02:00
<li>
<p><a href="4-tsc.html"><spon class="sectiontitle">The Symbol Construct</span></a> -
<span class="purpose">Defining the symbol construct.</span></p>
</li>
<li>
<p><a href="4-tvc.html"><spon class="sectiontitle">The Version Construct</span></a> -
<span class="purpose">Defining the version construct.</span></p>
</li>
<li>
<p><a href="4-tpc.html"><spon class="sectiontitle">The Pragma Construct</span></a> -
<span class="purpose">Defining the pragma construct.</span></p>
</li>
<li>
<p><a href="4-tlc.html"><spon class="sectiontitle">The Link Construct</span></a> -
<span class="purpose">Defining the link construct.</span></p>
</li>
<li>
<p><a href="4-tac.html"><spon class="sectiontitle">The Append Construct</span></a> -
<span class="purpose">Defining the append construct.</span></p>
</li>
<li>
<p><a href="4-tpc2.html"><spon class="sectiontitle">The PackageType Construct</span></a> -
<span class="purpose">Defining the packagetype construct.</span></p>
</li>
<li>
<p><a href="4-tpc3.html"><spon class="sectiontitle">The Package Construct</span></a> -
<span class="purpose">Defining the package construct.</span></p>
</li>
<li>
<p><a href="4-tkc.html"><spon class="sectiontitle">The Kind Construct</span></a> -
<span class="purpose">Defining the kind construct.</span></p>
</li>
<li>
<p><a href="4-tdc.html"><spon class="sectiontitle">The DefaultValue Construct</span></a> -
<span class="purpose">Defining the defaultvalue construct.</span></p>
</li>
<li>
<p><a href="4-tvc2.html"><spon class="sectiontitle">The Variable Construct</span></a> -
<span class="purpose">Defining the variable construct.</span></p>
</li>
<li>
<p><a href="4-tcc2.html"><spon class="sectiontitle">The Constant Construct</span></a> -
<span class="purpose">Defining the constant construct.</span></p>
</li>
<li>
<p><a href="4-trc.html"><spon class="sectiontitle">The Response Construct</span></a> -
<span class="purpose">Defining the response construct.</span></p>
</li>
<li>
<p><a href="4-tic.html"><spon class="sectiontitle">The Instance Construct</span></a> -
2019-03-17 14:40:57 +02:00
<span class="purpose">Defining the instance construct.</span></p>
</li>
<li>
<p><a href="4-tpc4.html"><spon class="sectiontitle">The Property Construct</span></a> -
<span class="purpose">Defining the property construct.</span></p>
</li>
<li>
<p><a href="4-tpc5.html"><spon class="sectiontitle">The PropertyValue Construct</span></a> -
<span class="purpose">Defining the propertyvalue construct.</span></p>
</li>
<li>
<p><a href="4-tpc6.html"><spon class="sectiontitle">The Permission Construct</span></a> -
<span class="purpose">Defining the permission construct.</span></p>
</li>
<li>
<p><a href="4-tpc7.html"><spon class="sectiontitle">The Primitive Construct</span></a> -
<span class="purpose">Defining the primitive construct.</span></p>
</li>
</ul>
</li>
<li>
<p><a name="5"></a><spon class="chaptertitle">Chapter 5: Code Constructs</span></p>
<p><span class="purpose"></span></p>
<ul class="sectionlist">
<li>
<p><a href="5-tlc.html"><spon class="sectiontitle">The Label Construct</span></a> -
<span class="purpose">Defining the label construct.</span></p>
</li>
<li>
<p><a href="5-tlc2.html"><spon class="sectiontitle">The Local Construct</span></a> -
<span class="purpose">Defining the local construct.</span></p>
</li>
<li>
<p><a href="5-tic.html"><spon class="sectiontitle">The Inv Construct</span></a> -
<span class="purpose">Defining the inv construct.</span></p>
</li>
<li>
<p><a href="5-trc.html"><spon class="sectiontitle">The Ref Construct</span></a> -
<span class="purpose">Defining the ref construct.</span></p>
</li>
<li>
<p><a href="5-tvc.html"><spon class="sectiontitle">The Val Construct</span></a> -
<span class="purpose">Defining the val construct.</span></p>
</li>
<li>
<p><a href="5-tlc3.html"><spon class="sectiontitle">The Lab Construct</span></a> -
<span class="purpose">Defining the Lab construct.</span></p>
</li>
<li>
<p><a href="5-tcc.html"><spon class="sectiontitle">The Code Construct</span></a> -
<span class="purpose">Defining the Code construct.</span></p>
</li>
<li>
<p><a href="5-tec.html"><spon class="sectiontitle">The Evaluation Construct</span></a> -
<span class="purpose">Defining the Evaluation construct.</span></p>
2019-03-17 14:40:57 +02:00
</li>
<li>
<p><a href="5-trc2.html"><spon class="sectiontitle">The Reference Construct</span></a> -
<span class="purpose">Defining the Reference construct.</span></p>
2019-03-17 14:40:57 +02:00
</li>
<li>
<p><a href="5-tcc2.html"><spon class="sectiontitle">The Cast Construct</span></a> -
2019-03-17 14:40:57 +02:00
<span class="purpose">Defining the cast construct.</span></p>
</li>
<li>
<p><a href="5-tsc.html"><spon class="sectiontitle">The Splat Construct</span></a> -
<span class="purpose">Defining the splat construct.</span></p>
</li>
</ul>
</li>
</ul>
<hr>
2020-03-26 01:44:14 +02:00
2020-03-19 02:11:25 +02:00
</main>
2019-03-17 14:40:57 +02:00
</body>
</html>