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

366 lines
16 KiB
HTML

<html>
<head>
<title>bytecode</title>
<link href="../docs-assets/Breadcrumbs.css" rel="stylesheet" rev="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Language" content="en-gb">
<link href="../docs-assets/Contents.css" rel="stylesheet" rev="stylesheet" type="text/css">
<link href="../docs-assets/Progress.css" rel="stylesheet" rev="stylesheet" type="text/css">
<link href="../docs-assets/Navigation.css" rel="stylesheet" rev="stylesheet" type="text/css">
<link href="../docs-assets/Fonts.css" rel="stylesheet" rev="stylesheet" type="text/css">
<link href="../docs-assets/Base.css" rel="stylesheet" rev="stylesheet" type="text/css">
</head>
<body class="commentary-font">
<nav role="navigation">
<h1><a href="../index.html">
<img src="../docs-assets/Inform.png" height=72">
</a></h1>
<ul><li><a href="../compiler.html">compiler tools</a></li>
<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>
</ul><h2>Compiler Webs</h2><ul>
<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>
</ul><h2>Inbuild Modules</h2><ul>
<li><a href="../supervisor-module/index.html">supervisor</a></li>
</ul><h2>Inform7 Modules</h2><ul>
<li><a href="../core-module/index.html">core</a></li>
<li><a href="../assertions-module/index.html">assertions</a></li>
<li><a href="../values-module/index.html">values</a></li>
<li><a href="../knowledge-module/index.html">knowledge</a></li>
<li><a href="../imperative-module/index.html">imperative</a></li>
<li><a href="../runtime-module/index.html">runtime</a></li>
<li><a href="../if-module/index.html">if</a></li>
<li><a href="../multimedia-module/index.html">multimedia</a></li>
<li><a href="../index-module/index.html">index</a></li>
</ul><h2>Inter Modules</h2><ul>
<li><span class="unlink">bytecode</span></li>
<li><a href="../building-module/index.html">building</a></li>
<li><a href="../pipeline-module/index.html">pipeline</a></li>
<li><a href="../final-module/index.html">final</a></li>
</ul><h2>Services</h2><ul>
<li><a href="../arch-module/index.html">arch</a></li>
<li><a href="../calculus-module/index.html">calculus</a></li>
<li><a href="../html-module/index.html">html</a></li>
<li><a href="../inflections-module/index.html">inflections</a></li>
<li><a href="../kinds-module/index.html">kinds</a></li>
<li><a href="../linguistics-module/index.html">linguistics</a></li>
<li><a href="../problems-module/index.html">problems</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="../../../inweb/docs/foundation-module/index.html">foundation</a></li>
</ul>
</nav>
<main role="main">
<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>
<hr>
<div class="contentspage">
<ul class="chapterlist">
<li>
<p class="chapterentry"><a name="P"></a>
<span class="chaptertitle">Preliminaries</span></p>
<ul class="sectionlist">
<li>
<p class="sectionentry"><a href="P-wtmd.html">
<spon class="sectiontitle">What This Module Does</span></a> -
<span class="sectionpurpose">An overview of the bytecode module's role and abilities.</span></p>
</li>
</ul>
</li>
<li>
<p class="chapterentry"><a name="1"></a>
<span class="chaptertitle">Chapter 1: Setting Up</span></p>
<p class="chapterpurpose">Loading this module.</p>
<ul class="sectionlist">
<li>
<p class="sectionentry"><a href="1-bm.html">
<spon class="sectiontitle">Bytecode Module</span></a> -
<span class="sectionpurpose">Setting up the use of this module.</span></p>
</li>
</ul>
</li>
<li>
<p class="chapterentry"><a name="2"></a>
<span class="chaptertitle">Chapter 2: Interoperability</span></p>
<ul class="sectionlist">
<li>
<p class="sectionentry"><a href="2-it.html">
<spon class="sectiontitle">Inter Trees</span></a> -
<span class="sectionpurpose">To manage tree structures of inter code, and manage the movement of nodes within these trees.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-bkm.html">
<spon class="sectiontitle">Bookmarks</span></a> -
<span class="sectionpurpose">Write positions for inter code being generated.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-in.html">
<spon class="sectiontitle">Inter Nodes</span></a> -
<span class="sectionpurpose">To create nodes of inter code, and manage everything about them except their tree locations.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-tll.html">
<spon class="sectiontitle">Tree Location Lists</span></a> -
<span class="sectionpurpose">Utility functions for keeping flexible-sized arrays of locations in a tree of Inter code.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-tw.html">
<spon class="sectiontitle">The Warehouse</span></a> -
<span class="sectionpurpose">To manage the memory storage of inter code.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-inl.html">
<spon class="sectiontitle">Inter Node Lists</span></a> -
<span class="sectionpurpose">To store doubly-linked lists of inter frames.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-st.html">
<spon class="sectiontitle">Symbols Tables</span></a> -
<span class="sectionpurpose">To manage searchable tables of named symbols.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-pck.html">
<spon class="sectiontitle">Packages</span></a> -
<span class="sectionpurpose">To manage packages of inter code.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-sym.html">
<spon class="sectiontitle">Symbols</span></a> -
<span class="sectionpurpose">To manage named symbols in inter code.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-ann.html">
<spon class="sectiontitle">Annotations</span></a> -
<span class="sectionpurpose">To mark symbols up with metadata.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-cnn.html">
<spon class="sectiontitle">Connectors</span></a> -
<span class="sectionpurpose">To manage link symbols.</span></p>
</li>
<li>
<p class="sectionentry"><a href="2-trn.html">
<spon class="sectiontitle">Transmigration</span></a> -
<span class="sectionpurpose">To move packages between repositories.</span></p>
</li>
</ul>
</li>
<li>
<p class="chapterentry"><a name="3"></a>
<span class="chaptertitle">Chapter 3: Language Definition</span></p>
<ul class="sectionlist">
<li>
<p class="sectionentry"><a href="3-ca.html">
<spon class="sectiontitle">Canonical Annotations</span></a> -
<span class="sectionpurpose">Defining the one true set of Inter annotation codes.</span></p>
</li>
<li>
<p class="sectionentry"><a href="3-dfn.html">
<spon class="sectiontitle">Definition</span></a> -
<span class="sectionpurpose">Defining the Inter format.</span></p>
</li>
<li>
<p class="sectionentry"><a href="3-iibf.html">
<spon class="sectiontitle">Inter in Binary Files</span></a> -
<span class="sectionpurpose">To read or write inter between memory and binary files.</span></p>
</li>
<li>
<p class="sectionentry"><a href="3-iitf.html">
<spon class="sectiontitle">Inter in Text Files</span></a> -
<span class="sectionpurpose">To read inter from a textual file.</span></p>
</li>
<li>
<p class="sectionentry"><a href="3-vi.html">
<spon class="sectiontitle">Verifying Inter</span></a> -
<span class="sectionpurpose">Verifying that a chunk of inter is correct and consistent.</span></p>
</li>
<li>
<p class="sectionentry"><a href="3-idt.html">
<spon class="sectiontitle">Inter Data Types</span></a> -
<span class="sectionpurpose">A primitive notion of data type, below the level of kinds.</span></p>
</li>
<li>
<p class="sectionentry"><a href="3-mtd.html">
<spon class="sectiontitle">Metadata</span></a> -
<span class="sectionpurpose">Looking up metadata in special constants.</span></p>
</li>
<li>
<p class="sectionentry"><a href="3-ie.html">
<spon class="sectiontitle">Inter Errors</span></a> -
<span class="sectionpurpose">To issue error messages.</span></p>
</li>
</ul>
</li>
<li>
<p class="chapterentry"><a name="4"></a>
<span class="chaptertitle">Chapter 4: Void Constructs</span></p>
<ul class="sectionlist">
<li>
<p class="sectionentry"><a href="4-tnc.html">
<spon class="sectiontitle">The Nop Construct</span></a> -
<span class="sectionpurpose">Defining the nop construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tcc.html">
<spon class="sectiontitle">The Comment Construct</span></a> -
<span class="sectionpurpose">Defining the comment construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tsc.html">
<spon class="sectiontitle">The Symbol Construct</span></a> -
<span class="sectionpurpose">Defining the symbol construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tvc.html">
<spon class="sectiontitle">The Version Construct</span></a> -
<span class="sectionpurpose">Defining the version construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tpc.html">
<spon class="sectiontitle">The Pragma Construct</span></a> -
<span class="sectionpurpose">Defining the pragma construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tlc.html">
<spon class="sectiontitle">The Link Construct</span></a> -
<span class="sectionpurpose">Defining the link construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tac.html">
<spon class="sectiontitle">The Append Construct</span></a> -
<span class="sectionpurpose">Defining the append construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tpc2.html">
<spon class="sectiontitle">The PackageType Construct</span></a> -
<span class="sectionpurpose">Defining the packagetype construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tpc3.html">
<spon class="sectiontitle">The Package Construct</span></a> -
<span class="sectionpurpose">Defining the package construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tkc.html">
<spon class="sectiontitle">The Kind Construct</span></a> -
<span class="sectionpurpose">Defining the kind construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tdc.html">
<spon class="sectiontitle">The DefaultValue Construct</span></a> -
<span class="sectionpurpose">Defining the defaultvalue construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tvc2.html">
<spon class="sectiontitle">The Variable Construct</span></a> -
<span class="sectionpurpose">Defining the variable construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tcc2.html">
<spon class="sectiontitle">The Constant Construct</span></a> -
<span class="sectionpurpose">Defining the constant construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tic.html">
<spon class="sectiontitle">The Instance Construct</span></a> -
<span class="sectionpurpose">Defining the instance construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tpc4.html">
<spon class="sectiontitle">The Property Construct</span></a> -
<span class="sectionpurpose">Defining the property construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tpc5.html">
<spon class="sectiontitle">The PropertyValue Construct</span></a> -
<span class="sectionpurpose">Defining the propertyvalue construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tpc6.html">
<spon class="sectiontitle">The Permission Construct</span></a> -
<span class="sectionpurpose">Defining the permission construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="4-tpc7.html">
<spon class="sectiontitle">The Primitive Construct</span></a> -
<span class="sectionpurpose">Defining the primitive construct.</span></p>
</li>
</ul>
</li>
<li>
<p class="chapterentry"><a name="5"></a>
<span class="chaptertitle">Chapter 5: Code Constructs</span></p>
<ul class="sectionlist">
<li>
<p class="sectionentry"><a href="5-tlc.html">
<spon class="sectiontitle">The Label Construct</span></a> -
<span class="sectionpurpose">Defining the label construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-tlc2.html">
<spon class="sectiontitle">The Local Construct</span></a> -
<span class="sectionpurpose">Defining the local construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-tic.html">
<spon class="sectiontitle">The Inv Construct</span></a> -
<span class="sectionpurpose">Defining the inv construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-trc.html">
<spon class="sectiontitle">The Ref Construct</span></a> -
<span class="sectionpurpose">Defining the ref construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-tvc.html">
<spon class="sectiontitle">The Val Construct</span></a> -
<span class="sectionpurpose">Defining the val construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-tlc3.html">
<spon class="sectiontitle">The Lab Construct</span></a> -
<span class="sectionpurpose">Defining the Lab construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-tcc.html">
<spon class="sectiontitle">The Code Construct</span></a> -
<span class="sectionpurpose">Defining the Code construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-tec.html">
<spon class="sectiontitle">The Evaluation Construct</span></a> -
<span class="sectionpurpose">Defining the Evaluation construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-trc2.html">
<spon class="sectiontitle">The Reference Construct</span></a> -
<span class="sectionpurpose">Defining the Reference construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-tcc2.html">
<spon class="sectiontitle">The Cast Construct</span></a> -
<span class="sectionpurpose">Defining the cast construct.</span></p>
</li>
<li>
<p class="sectionentry"><a href="5-tsc.html">
<spon class="sectiontitle">The Splat Construct</span></a> -
<span class="sectionpurpose">Defining the splat construct.</span></p>
</li>
</ul>
</li>
</ul>
</div>
<hr>
<p class="purpose">Powered by <a href="https://github.com/ganelson/inweb">Inweb</a>.</p>
</main>
</body>
</html>