running.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <title>Running LuaJIT</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. <style type="text/css">
  12. table.opt {
  13. line-height: 1.2;
  14. }
  15. tr.opthead td {
  16. font-weight: bold;
  17. }
  18. td.flag_name {
  19. width: 4em;
  20. }
  21. td.flag_level {
  22. width: 2em;
  23. text-align: center;
  24. }
  25. td.param_name {
  26. width: 6em;
  27. }
  28. td.param_default {
  29. width: 4em;
  30. text-align: right;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div id="site">
  36. <a href="http://luajit.org"><span>Lua<span id="logo">JIT</span></span></a>
  37. </div>
  38. <div id="head">
  39. <h1>Running LuaJIT</h1>
  40. </div>
  41. <div id="nav">
  42. <ul><li>
  43. <a href="luajit.html">LuaJIT</a>
  44. <ul><li>
  45. <a href="install.html">Installation</a>
  46. </li><li>
  47. <a class="current" href="running.html">Running</a>
  48. </li><li>
  49. <a href="api.html">API Extensions</a>
  50. </li></ul>
  51. </li><li>
  52. <a href="status.html">Status</a>
  53. <ul><li>
  54. <a href="changes.html">Changes</a>
  55. </li></ul>
  56. </li><li>
  57. <a href="faq.html">FAQ</a>
  58. </li><li>
  59. <a href="http://luajit.org/performance.html">Performance <span class="ext">&raquo;</span></a>
  60. </li><li>
  61. <a href="http://luajit.org/download.html">Download <span class="ext">&raquo;</span></a>
  62. </li></ul>
  63. </div>
  64. <div id="main">
  65. <p>
  66. LuaJIT has only a single stand-alone executable, called <tt>luajit</tt> on
  67. POSIX systems or <tt>luajit.exe</tt> on Windows. It can be used to run simple
  68. Lua statements or whole Lua applications from the command line. It has an
  69. interactive mode, too.
  70. </p>
  71. <p class="indent" style="color: #c00000;">
  72. Note: the beta test releases only install under the versioned name on
  73. POSIX systems (to avoid overwriting a previous version). You either need
  74. to type <tt>luajit-2.0.0-beta5</tt> to start it or create a symlink
  75. with a command like this:
  76. </p>
  77. <pre class="code" style="color: #c00000;">
  78. sudo ln -sf luajit-2.0.0-beta5&nbsp;/usr/local/bin/luajit
  79. </pre>
  80. <p>
  81. Unlike previous versions <b>optimization is turned on by default</b> in
  82. LuaJIT 2.0!<br>It's no longer necessary to use <tt>luajit&nbsp;-O</tt>.
  83. </p>
  84. <h2 id="options">Command Line Options</h2>
  85. <p>
  86. The <tt>luajit</tt> stand-alone executable is just a slightly modified
  87. version of the regular <tt>lua</tt> stand-alone executable.
  88. It supports the same basic options, too. <tt>luajit&nbsp;-h</tt>
  89. prints a short list of the available options. Please have a look at the
  90. <a href="http://www.lua.org/manual/5.1/manual.html#6"><span class="ext">&raquo;</span>&nbsp;Lua manual</a>
  91. for details.
  92. </p>
  93. <p>
  94. Two additional options control the behavior of LuaJIT:
  95. </p>
  96. <h3 id="opt_j"><tt>-j cmd[=arg[,arg...]]</tt></h3>
  97. <p>
  98. This option performs a LuaJIT control command or activates one of the
  99. loadable extension modules. The command is first looked up in the
  100. <tt>jit.*</tt> library. If no matching function is found, a module
  101. named <tt>jit.&lt;cmd&gt;</tt> is loaded and the <tt>start()</tt>
  102. function of the module is called with the specified arguments (if
  103. any). The space between <tt>-j</tt> and <tt>cmd</tt> is optional.
  104. </p>
  105. <p>
  106. Here are the available LuaJIT control commands:
  107. </p>
  108. <ul>
  109. <li id="j_on"><tt>-jon</tt> &mdash; Turns the JIT compiler on (default).</li>
  110. <li id="j_off"><tt>-joff</tt> &mdash; Turns the JIT compiler off (only use the interpreter).</li>
  111. <li id="j_flush"><tt>-jflush</tt> &mdash; Flushes the whole cache of compiled code.</li>
  112. <li id="j_v"><tt>-jv</tt> &mdash; Shows verbose information about the progress of the JIT compiler.</li>
  113. <li id="j_dump"><tt>-jdump</tt> &mdash; Dumps the code and structures used in various compiler stages.</li>
  114. </ul>
  115. <p>
  116. The <tt>-jv</tt> and <tt>-jdump</tt> commands are extension modules
  117. written in Lua. They are mainly used for debugging the JIT compiler
  118. itself. For a description of their options and output format, please
  119. read the comment block at the start of their source.
  120. They can be found in the <tt>lib</tt> directory of the source
  121. distribution or installed under the <tt>jit</tt> directory. By default
  122. this is <tt>/usr/local/share/luajit-2.0.0-beta5/jit</tt> on POSIX
  123. systems.
  124. </p>
  125. <h3 id="opt_O"><tt>-O[level]</tt><br>
  126. <tt>-O[+]flag</tt> <tt>-O-flag</tt><br>
  127. <tt>-Oparam=value</tt></h3>
  128. <p>
  129. This options allows fine-tuned control of the optimizations used by
  130. the JIT compiler. This is mainly intended for debugging LuaJIT itself.
  131. Please note that the JIT compiler is extremely fast (we are talking
  132. about the microsecond to millisecond range). Disabling optimizations
  133. doesn't have any visible impact on its overhead, but usually generates
  134. code that runs slower.
  135. </p>
  136. <p>
  137. The first form sets an optimization level &mdash; this enables a
  138. specific mix of optimization flags. <tt>-O0</tt> turns off all
  139. optimizations and higher numbers enable more optimizations. Omitting
  140. the level (i.e. just <tt>-O</tt>) sets the default optimization level,
  141. which is <tt>-O3</tt> in the current version.
  142. </p>
  143. <p>
  144. The second form adds or removes individual optimization flags.
  145. The third form sets a parameter for the VM or the JIT compiler
  146. to a specific value.
  147. </p>
  148. <p>
  149. You can either use this option multiple times (like <tt>-Ocse
  150. -O-dce -Ohotloop=10</tt>) or separate several settings with a comma
  151. (like <tt>-O+cse,-dce,hotloop=10</tt>). The settings are applied from
  152. left to right and later settings override earlier ones. You can freely
  153. mix the three forms, but note that setting an optimization level
  154. overrides all earlier flags.
  155. </p>
  156. <p>
  157. Here are the available flags and at what optimization levels they
  158. are enabled:
  159. </p>
  160. <table class="opt">
  161. <tr class="opthead">
  162. <td class="flag_name">Flag</td>
  163. <td class="flag_level">-O1</td>
  164. <td class="flag_level">-O2</td>
  165. <td class="flag_level">-O3</td>
  166. <td class="flag_desc">&nbsp;</td>
  167. </tr>
  168. <tr class="odd separate">
  169. <td class="flag_name">fold</td><td class="flag_level">&bull;</td><td class="flag_level">&bull;</td><td class="flag_level">&bull;</td><td class="flag_desc">Constant Folding, Simplifications and Reassociation</td></tr>
  170. <tr class="even">
  171. <td class="flag_name">cse</td><td class="flag_level">&bull;</td><td class="flag_level">&bull;</td><td class="flag_level">&bull;</td><td class="flag_desc">Common-Subexpression Elimination</td></tr>
  172. <tr class="odd">
  173. <td class="flag_name">dce</td><td class="flag_level">&bull;</td><td class="flag_level">&bull;</td><td class="flag_level">&bull;</td><td class="flag_desc">Dead-Code Elimination</td></tr>
  174. <tr class="even">
  175. <td class="flag_name">narrow</td><td class="flag_level">&nbsp;</td><td class="flag_level">&bull;</td><td class="flag_level">&bull;</td><td class="flag_desc">Narrowing of numbers to integers</td></tr>
  176. <tr class="odd">
  177. <td class="flag_name">loop</td><td class="flag_level">&nbsp;</td><td class="flag_level">&bull;</td><td class="flag_level">&bull;</td><td class="flag_desc">Loop Optimizations (code hoisting)</td></tr>
  178. <tr class="even">
  179. <td class="flag_name">fwd</td><td class="flag_level">&nbsp;</td><td class="flag_level">&nbsp;</td><td class="flag_level">&bull;</td><td class="flag_desc">Load Forwarding (L2L) and Store Forwarding (S2L)</td></tr>
  180. <tr class="odd">
  181. <td class="flag_name">dse</td><td class="flag_level">&nbsp;</td><td class="flag_level">&nbsp;</td><td class="flag_level">&bull;</td><td class="flag_desc">Dead-Store Elimination</td></tr>
  182. <tr class="even">
  183. <td class="flag_name">abc</td><td class="flag_level">&nbsp;</td><td class="flag_level">&nbsp;</td><td class="flag_level">&bull;</td><td class="flag_desc">Array Bounds Check Elimination</td></tr>
  184. <tr class="odd">
  185. <td class="flag_name">fuse</td><td class="flag_level">&nbsp;</td><td class="flag_level">&nbsp;</td><td class="flag_level">&bull;</td><td class="flag_desc">Fusion of operands into instructions</td></tr>
  186. </table>
  187. <p>
  188. Here are the parameters and their default settings:
  189. </p>
  190. <table class="opt">
  191. <tr class="opthead">
  192. <td class="param_name">Parameter</td>
  193. <td class="param_default">Default</td>
  194. <td class="param_desc">&nbsp;</td>
  195. </tr>
  196. <tr class="odd separate">
  197. <td class="param_name">maxtrace</td><td class="param_default">1000</td><td class="param_desc">Max. number of traces in the cache</td></tr>
  198. <tr class="even">
  199. <td class="param_name">maxrecord</td><td class="param_default">2000</td><td class="param_desc">Max. number of recorded IR instructions</td></tr>
  200. <tr class="odd">
  201. <td class="param_name">maxirconst</td><td class="param_default">500</td><td class="param_desc">Max. number of IR constants of a trace</td></tr>
  202. <tr class="even">
  203. <td class="param_name">maxside</td><td class="param_default">100</td><td class="param_desc">Max. number of side traces of a root trace</td></tr>
  204. <tr class="odd">
  205. <td class="param_name">maxsnap</td><td class="param_default">100</td><td class="param_desc">Max. number of snapshots for a trace</td></tr>
  206. <tr class="even separate">
  207. <td class="param_name">hotloop</td><td class="param_default">56</td><td class="param_desc">Number of iterations to detect a hot loop or hot call</td></tr>
  208. <tr class="odd">
  209. <td class="param_name">hotexit</td><td class="param_default">10</td><td class="param_desc">Number of taken exits to start a side trace</td></tr>
  210. <tr class="even">
  211. <td class="param_name">tryside</td><td class="param_default">4</td><td class="param_desc">Number of attempts to compile a side trace</td></tr>
  212. <tr class="odd separate">
  213. <td class="param_name">instunroll</td><td class="param_default">4</td><td class="param_desc">Max. unroll factor for instable loops</td></tr>
  214. <tr class="even">
  215. <td class="param_name">loopunroll</td><td class="param_default">7</td><td class="param_desc">Max. unroll factor for loop ops in side traces</td></tr>
  216. <tr class="odd">
  217. <td class="param_name">callunroll</td><td class="param_default">3</td><td class="param_desc">Max. unroll factor for pseudo-recursive calls</td></tr>
  218. <tr class="even">
  219. <td class="param_name">recunroll</td><td class="param_default">2</td><td class="param_desc">Min. unroll factor for true recursion</td></tr>
  220. <tr class="odd separate">
  221. <td class="param_name">sizemcode</td><td class="param_default">32</td><td class="param_desc">Size of each machine code area in KBytes (Windows: 64K)</td></tr>
  222. <tr class="even">
  223. <td class="param_name">maxmcode</td><td class="param_default">512</td><td class="param_desc">Max. total size of all machine code areas in KBytes</td></tr>
  224. </table>
  225. <br class="flush">
  226. </div>
  227. <div id="foot">
  228. <hr class="hide">
  229. Copyright &copy; 2005-2010 Mike Pall
  230. <span class="noprint">
  231. &middot;
  232. <a href="contact.html">Contact</a>
  233. </span>
  234. </div>
  235. </body>
  236. </html>