diff options
| author | Mike Pall <mike> | 2010-11-09 18:11:35 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2010-11-09 18:11:35 +0100 |
| commit | b45e3246cee8c92b72622808f03b5cb7d539e244 (patch) | |
| tree | 20ee73228a325afa5a879850556336651c2f7add /doc/ext_jit.html | |
| parent | ad29c1f39feb55d4d443b9352448a12a1be8ee23 (diff) | |
| download | luajit-b45e3246cee8c92b72622808f03b5cb7d539e244.tar.gz luajit-b45e3246cee8c92b72622808f03b5cb7d539e244.tar.bz2 luajit-b45e3246cee8c92b72622808f03b5cb7d539e244.zip | |
Split up extension/API docs into sub-pages.
Diffstat (limited to 'doc/ext_jit.html')
| -rw-r--r-- | doc/ext_jit.html | 177 |
1 files changed, 177 insertions, 0 deletions
diff --git a/doc/ext_jit.html b/doc/ext_jit.html new file mode 100644 index 00000000..d621476b --- /dev/null +++ b/doc/ext_jit.html | |||
| @@ -0,0 +1,177 @@ | |||
| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | ||
| 2 | <html> | ||
| 3 | <head> | ||
| 4 | <title>jit.* Library</title> | ||
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | ||
| 6 | <meta name="Author" content="Mike Pall"> | ||
| 7 | <meta name="Copyright" content="Copyright (C) 2005-2010, Mike Pall"> | ||
| 8 | <meta name="Language" content="en"> | ||
| 9 | <link rel="stylesheet" type="text/css" href="bluequad.css" media="screen"> | ||
| 10 | <link rel="stylesheet" type="text/css" href="bluequad-print.css" media="print"> | ||
| 11 | </head> | ||
| 12 | <body> | ||
| 13 | <div id="site"> | ||
| 14 | <a href="http://luajit.org"><span>Lua<span id="logo">JIT</span></span></a> | ||
| 15 | </div> | ||
| 16 | <div id="head"> | ||
| 17 | <h1><tt>jit.*</tt> Library</h1> | ||
| 18 | </div> | ||
| 19 | <div id="nav"> | ||
| 20 | <ul><li> | ||
| 21 | <a href="luajit.html">LuaJIT</a> | ||
| 22 | <ul><li> | ||
| 23 | <a href="install.html">Installation</a> | ||
| 24 | </li><li> | ||
| 25 | <a href="running.html">Running</a> | ||
| 26 | </li></ul> | ||
| 27 | </li><li> | ||
| 28 | <a href="extensions.html">Extensions</a> | ||
| 29 | <ul><li> | ||
| 30 | <a class="current" href="ext_jit.html">jit.* Library</a> | ||
| 31 | </li><li> | ||
| 32 | <a href="ext_c_api.html">Lua/C API</a> | ||
| 33 | </li></ul> | ||
| 34 | </li><li> | ||
| 35 | <a href="status.html">Status</a> | ||
| 36 | <ul><li> | ||
| 37 | <a href="changes.html">Changes</a> | ||
| 38 | </li></ul> | ||
| 39 | </li><li> | ||
| 40 | <a href="faq.html">FAQ</a> | ||
| 41 | </li><li> | ||
| 42 | <a href="http://luajit.org/performance.html">Performance <span class="ext">»</span></a> | ||
| 43 | </li><li> | ||
| 44 | <a href="http://luajit.org/download.html">Download <span class="ext">»</span></a> | ||
| 45 | </li></ul> | ||
| 46 | </div> | ||
| 47 | <div id="main"> | ||
| 48 | <p> | ||
| 49 | The functions in this built-in module control the behavior | ||
| 50 | of the JIT compiler engine. | ||
| 51 | </p> | ||
| 52 | |||
| 53 | <h3 id="jit_onoff"><tt>jit.on()<br> | ||
| 54 | jit.off()</tt></h3> | ||
| 55 | <p> | ||
| 56 | Turns the whole JIT compiler on (default) or off. | ||
| 57 | </p> | ||
| 58 | <p> | ||
| 59 | These functions are typically used with the command line options | ||
| 60 | <tt>-j on</tt> or <tt>-j off</tt>. | ||
| 61 | </p> | ||
| 62 | |||
| 63 | <h3 id="jit_flush"><tt>jit.flush()</tt></h3> | ||
| 64 | <p> | ||
| 65 | Flushes the whole cache of compiled code. | ||
| 66 | </p> | ||
| 67 | |||
| 68 | <h3 id="jit_onoff_func"><tt>jit.on(func|true [,true|false])<br> | ||
| 69 | jit.off(func|true [,true|false])<br> | ||
| 70 | jit.flush(func|true [,true|false])</tt></h3> | ||
| 71 | <p> | ||
| 72 | <tt>jit.on</tt> enables JIT compilation for a Lua function (this is | ||
| 73 | the default). | ||
| 74 | </p> | ||
| 75 | <p> | ||
| 76 | <tt>jit.off</tt> disables JIT compilation for a Lua function and | ||
| 77 | flushes any already compiled code from the code cache. | ||
| 78 | </p> | ||
| 79 | <p> | ||
| 80 | <tt>jit.flush</tt> flushes the code, but doesn't affect the | ||
| 81 | enable/disable status. | ||
| 82 | </p> | ||
| 83 | <p> | ||
| 84 | The current function, i.e. the Lua function calling this library | ||
| 85 | function, can also be specified by passing <tt>true</tt> as the first | ||
| 86 | argument. | ||
| 87 | </p> | ||
| 88 | <p> | ||
| 89 | If the second argument is <tt>true</tt>, JIT compilation is also | ||
| 90 | enabled, disabled or flushed recursively for all sub-functions of a | ||
| 91 | function. With <tt>false</tt> only the sub-functions are affected. | ||
| 92 | </p> | ||
| 93 | <p> | ||
| 94 | The <tt>jit.on</tt> and <tt>jit.off</tt> functions only set a flag | ||
| 95 | which is checked when the function is about to be compiled. They do | ||
| 96 | not trigger immediate compilation. | ||
| 97 | </p> | ||
| 98 | <p> | ||
| 99 | Typical usage is <tt>jit.off(true, true)</tt> in the main chunk | ||
| 100 | of a module to turn off JIT compilation for the whole module for | ||
| 101 | debugging purposes. | ||
| 102 | </p> | ||
| 103 | |||
| 104 | <h3 id="jit_flush_tr"><tt>jit.flush(tr)</tt></h3> | ||
| 105 | <p> | ||
| 106 | Flushes the specified root trace and all of its side traces from the cache. | ||
| 107 | The code for the trace will be retained as long as there are any other | ||
| 108 | traces which link to it. | ||
| 109 | </p> | ||
| 110 | |||
| 111 | <h3 id="jit_status"><tt>status, ... = jit.status()</tt></h3> | ||
| 112 | <p> | ||
| 113 | Returns the current status of the JIT compiler. The first result is | ||
| 114 | either <tt>true</tt> or <tt>false</tt> if the JIT compiler is turned | ||
| 115 | on or off. The remaining results are strings for CPU-specific features | ||
| 116 | and enabled optimizations. | ||
| 117 | </p> | ||
| 118 | |||
| 119 | <h3 id="jit_version"><tt>jit.version</tt></h3> | ||
| 120 | <p> | ||
| 121 | Contains the LuaJIT version string. | ||
| 122 | </p> | ||
| 123 | |||
| 124 | <h3 id="jit_version_num"><tt>jit.version_num</tt></h3> | ||
| 125 | <p> | ||
| 126 | Contains the version number of the LuaJIT core. Version xx.yy.zz | ||
| 127 | is represented by the decimal number xxyyzz. | ||
| 128 | </p> | ||
| 129 | |||
| 130 | <h3 id="jit_arch"><tt>jit.arch</tt></h3> | ||
| 131 | <p> | ||
| 132 | Contains the target architecture name (CPU and optional ABI). | ||
| 133 | </p> | ||
| 134 | |||
| 135 | <h2 id="jit_opt"><tt>jit.opt.*</tt> — JIT compiler optimization control</h2> | ||
| 136 | <p> | ||
| 137 | This sub-module provides the backend for the <tt>-O</tt> command line | ||
| 138 | option. | ||
| 139 | </p> | ||
| 140 | <p> | ||
| 141 | You can also use it programmatically, e.g.: | ||
| 142 | </p> | ||
| 143 | <pre class="code"> | ||
| 144 | jit.opt.start(2) -- same as -O2 | ||
| 145 | jit.opt.start("-dce") | ||
| 146 | jit.opt.start("hotloop=10", "hotexit=2") | ||
| 147 | </pre> | ||
| 148 | <p> | ||
| 149 | Unlike in LuaJIT 1.x, the module is built-in and | ||
| 150 | <b>optimization is turned on by default!</b> | ||
| 151 | It's no longer necessary to run <tt>require("jit.opt").start()</tt>, | ||
| 152 | which was one of the ways to enable optimization. | ||
| 153 | </p> | ||
| 154 | |||
| 155 | <h2 id="jit_util"><tt>jit.util.*</tt> — JIT compiler introspection</h2> | ||
| 156 | <p> | ||
| 157 | This sub-module holds functions to introspect the bytecode, generated | ||
| 158 | traces, the IR and the generated machine code. The functionality | ||
| 159 | provided by this module is still in flux and therefore undocumented. | ||
| 160 | </p> | ||
| 161 | <p> | ||
| 162 | The debug modules <tt>-jbc</tt>, <tt>-jv</tt> and <tt>-jdump</tt> make | ||
| 163 | extensive use of these functions. Please check out their source code, | ||
| 164 | if you want to know more. | ||
| 165 | </p> | ||
| 166 | <br class="flush"> | ||
| 167 | </div> | ||
| 168 | <div id="foot"> | ||
| 169 | <hr class="hide"> | ||
| 170 | Copyright © 2005-2010 Mike Pall | ||
| 171 | <span class="noprint"> | ||
| 172 | · | ||
| 173 | <a href="contact.html">Contact</a> | ||
| 174 | </span> | ||
| 175 | </div> | ||
| 176 | </body> | ||
| 177 | </html> | ||
