changes.html 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <title>LuaJIT Change History</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-2011, 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. div.major { max-width: 600px; padding: 1em; margin: 1em 0 1em 0; }
  13. </style>
  14. </head>
  15. <body>
  16. <div id="site">
  17. <a href="http://luajit.org"><span>Lua<span id="logo">JIT</span></span></a>
  18. </div>
  19. <div id="head">
  20. <h1>LuaJIT Change History</h1>
  21. </div>
  22. <div id="nav">
  23. <ul><li>
  24. <a href="luajit.html">LuaJIT</a>
  25. <ul><li>
  26. <a href="install.html">Installation</a>
  27. </li><li>
  28. <a href="running.html">Running</a>
  29. </li></ul>
  30. </li><li>
  31. <a href="extensions.html">Extensions</a>
  32. <ul><li>
  33. <a href="ext_ffi.html">FFI Library</a>
  34. <ul><li>
  35. <a href="ext_ffi_tutorial.html">FFI Tutorial</a>
  36. </li><li>
  37. <a href="ext_ffi_api.html">ffi.* API</a>
  38. </li><li>
  39. <a href="ext_ffi_int64.html">64 bit Integers</a>
  40. </li><li>
  41. <a href="ext_ffi_semantics.html">FFI Semantics</a>
  42. </li></ul>
  43. </li><li>
  44. <a href="ext_jit.html">jit.* Library</a>
  45. </li><li>
  46. <a href="ext_c_api.html">Lua/C API</a>
  47. </li></ul>
  48. </li><li>
  49. <a href="status.html">Status</a>
  50. <ul><li>
  51. <a class="current" href="changes.html">Changes</a>
  52. </li></ul>
  53. </li><li>
  54. <a href="faq.html">FAQ</a>
  55. </li><li>
  56. <a href="http://luajit.org/performance.html">Performance <span class="ext">&raquo;</span></a>
  57. </li><li>
  58. <a href="http://luajit.org/download.html">Download <span class="ext">&raquo;</span></a>
  59. </li></ul>
  60. </div>
  61. <div id="main">
  62. <p>
  63. This is a list of changes between the released versions of LuaJIT.<br>
  64. The current <span style="color: #c00000;">development version</span> is <strong>LuaJIT&nbsp;2.0.0-beta5</strong>.<br>
  65. The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT&nbsp;1.1.6</strong>.
  66. </p>
  67. <p>
  68. Please check the
  69. <a href="http://luajit.org/changes.html"><span class="ext">&raquo;</span>&nbsp;Online Change History</a>
  70. to see whether newer versions are available.
  71. </p>
  72. <div class="major" style="background: #ffd0d0;">
  73. <h2 id="LuaJIT-2.0.0-beta5">LuaJIT 2.0.0-beta5 &mdash; 2010-08-24</h2>
  74. <ul>
  75. <li>Correctness and completeness:
  76. <ul>
  77. <li>Fix trace exit dispatch to function headers.</li>
  78. <li>Fix Windows and OSX builds with LUAJIT_DISABLE_JIT.</li>
  79. <li>Reorganize and fix placement of generated machine code on x64.</li>
  80. <li>Fix TNEW in x64 interpreter.</li>
  81. <li>Do not eliminate PHIs for values only referenced from side exits.</li>
  82. <li>OS-independent canonicalization of strings for non-finite numbers.</li>
  83. <li>Fix <tt>string.char()</tt> range check on x64.</li>
  84. <li>Fix <tt>tostring()</tt> resolving within <tt>print()</tt>.</li>
  85. <li>Fix error handling for <tt>next()</tt>.</li>
  86. <li>Fix passing of constant arguments to external calls on x64.</li>
  87. <li>Fix interpreter argument check for two-argument SSE math functions.</li>
  88. <li>Fix C frame chain corruption caused by <tt>lua_cpcall()</tt>.</li>
  89. <li>Fix return from <tt>pcall()</tt> within active hook.</li>
  90. </ul></li>
  91. <li>Structural and performance enhancements:
  92. <ul>
  93. <li>Replace on-trace GC frame syncing with interpreter exit.</li>
  94. <li>Improve hash lookup specialization by not removing dead keys during GC.</li>
  95. <li>Turn traces into true GC objects.</li>
  96. <li>Avoid starting a GC cycle immediately after library init.</li>
  97. <li>Add weak guards to improve dead-code elimination.</li>
  98. <li>Speed up string interning.</li>
  99. </ul></li>
  100. </ul>
  101. <h2 id="LuaJIT-2.0.0-beta4">LuaJIT 2.0.0-beta4 &mdash; 2010-03-28</h2>
  102. <ul>
  103. <li>Correctness and completeness:
  104. <ul>
  105. <li>Fix precondition for on-trace creation of table keys.</li>
  106. <li>Fix <tt>{f()}</tt> on x64 when table is resized.</li>
  107. <li>Fix folding of ordered comparisons with same references.</li>
  108. <li>Fix snapshot restores for multi-result bytecodes.</li>
  109. <li>Fix potential hang when recording bytecode with nested closures.</li>
  110. <li>Fix recording of <tt>getmetatable()</tt>, <tt>tonumber()</tt> and bad argument types.</li>
  111. <li>Fix SLOAD fusion across returns to lower frames.</li>
  112. </ul></li>
  113. <li>Structural and performance enhancements:
  114. <ul>
  115. <li>Add array bounds check elimination. <tt>-Oabc</tt> is enabled by default.</li>
  116. <li>More tuning for x64, e.g. smaller table objects.</li>
  117. </ul></li>
  118. </ul>
  119. <h2 id="LuaJIT-2.0.0-beta3">LuaJIT 2.0.0-beta3 &mdash; 2010-03-07</h2>
  120. <ul>
  121. <li>LuaJIT x64 port:
  122. <ul>
  123. <li>Port integrated memory allocator to Linux/x64, Windows/x64 and OSX/x64.</li>
  124. <li>Port interpreter and JIT compiler to x64.</li>
  125. <li>Port DynASM to x64.</li>
  126. <li>Many 32/64 bit cleanups in the VM.</li>
  127. <li>Allow building the interpreter with either x87 or SSE2 arithmetics.</li>
  128. <li>Add external unwinding and C++ exception interop (default on x64).</li>
  129. </ul></li>
  130. <li>Correctness and completeness:
  131. <ul>
  132. <li>Fix constructor bytecode generation for certain conditional values.</li>
  133. <li>Fix some cases of ordered string comparisons.</li>
  134. <li>Fix <tt>lua_tocfunction()</tt>.</li>
  135. <li>Fix cutoff register in JMP bytecode for some conditional expressions.</li>
  136. <li>Fix PHI marking algorithm for references from variant slots.</li>
  137. <li>Fix <tt>package.cpath</tt> for non-default PREFIX.</li>
  138. <li>Fix DWARF2 frame unwind information for interpreter on OSX.</li>
  139. <li>Drive the GC forward on string allocations in the parser.</li>
  140. <li>Implement call/return hooks (zero-cost if disabled).</li>
  141. <li>Implement yield from C hooks.</li>
  142. <li>Disable JIT compiler on older non-SSE2 CPUs instead of aborting.</li>
  143. </ul></li>
  144. <li>Structural and performance enhancements:
  145. <ul>
  146. <li>Compile recursive code (tail-, up- and down-recursion).</li>
  147. <li>Improve heuristics for bytecode penalties and blacklisting.</li>
  148. <li>Split CALL/FUNC recording and clean up fast function call semantics.</li>
  149. <li>Major redesign of internal function call handling.</li>
  150. <li>Improve FOR loop const specialization and integerness checks.</li>
  151. <li>Switch to pre-initialized stacks. Avoid frame-clearing.</li>
  152. <li>Colocation of prototypes and related data: bytecode, constants, debug info.</li>
  153. <li>Cleanup parser and streamline bytecode generation.</li>
  154. <li>Add support for weak IR references to register allocator.</li>
  155. <li>Switch to compressed, extensible snapshots.</li>
  156. <li>Compile returns to frames below the start frame.</li>
  157. <li>Improve alias analysis of upvalues using a disambiguation hash value.</li>
  158. <li>Compile floor/ceil/trunc to SSE2 helper calls or SSE4.1 instructions.</li>
  159. <li>Add generic C call handling to IR and backend.</li>
  160. <li>Improve KNUM fuse vs. load heuristics.</li>
  161. <li>Compile various <tt>io.*()</tt> functions.</li>
  162. <li>Compile <tt>math.sinh()</tt>, <tt>math.cosh()</tt>, <tt>math.tanh()</tt>
  163. and <tt>math.random()</tt>.</li>
  164. </ul></li>
  165. </ul>
  166. <h2 id="LuaJIT-2.0.0-beta2">LuaJIT 2.0.0-beta2 &mdash; 2009-11-09</h2>
  167. <ul>
  168. <li>Reorganize build system. Build static+shared library on POSIX.</li>
  169. <li>Allow C++ exception conversion on all platforms
  170. using a wrapper function.</li>
  171. <li>Automatically catch C++ exceptions and rethrow Lua error
  172. (DWARF2 only).</li>
  173. <li>Check for the correct x87 FPU precision at strategic points.</li>
  174. <li>Always use wrappers for libm functions.</li>
  175. <li>Resurrect metamethod name strings before copying them.</li>
  176. <li>Mark current trace, even if compiler is idle.</li>
  177. <li>Ensure FILE metatable is created only once.</li>
  178. <li>Fix type comparisons when different integer types are involved.</li>
  179. <li>Fix <tt>getmetatable()</tt> recording.</li>
  180. <li>Fix TDUP with dead keys in template table.</li>
  181. <li><tt>jit.flush(tr)</tt> returns status.
  182. Prevent manual flush of a trace that's still linked.</li>
  183. <li>Improve register allocation heuristics for invariant references.</li>
  184. <li>Compile the push/pop variants of <tt>table.insert()</tt> and
  185. <tt>table.remove()</tt>.</li>
  186. <li>Compatibility with MSVC <tt>link&nbsp/debug</tt>.</li>
  187. <li>Fix <tt>lua_iscfunction()</tt>.</li>
  188. <li>Fix <tt>math.random()</tt> when compiled with <tt>-fpic</tt> (OSX).</li>
  189. <li>Fix <tt>table.maxn()</tt>.</li>
  190. <li>Bump <tt>MACOSX_DEPLOYMENT_TARGET</tt> to <tt>10.4</tt></li>
  191. <li><tt>luaL_check*()</tt> and <tt>luaL_opt*()</tt> now support
  192. negative arguments, too.<br>
  193. This matches the behavior of Lua 5.1, but not the specification.</li>
  194. </ul>
  195. <h2 id="LuaJIT-2.0.0-beta1">LuaJIT 2.0.0-beta1 &mdash; 2009-10-31</h2>
  196. <ul>
  197. <li>This is the first public release of LuaJIT 2.0.</li>
  198. <li>The whole VM has been rewritten from the ground up, so there's
  199. no point in listing differences over earlier versions.</li>
  200. </ul>
  201. </div>
  202. <div class="major" style="background: #d0d0ff;">
  203. <h2 id="LuaJIT-1.1.6">LuaJIT 1.1.6 &mdash; 2010-03-28</h2>
  204. <ul>
  205. <li>Added fixes for the
  206. <a href="http://www.lua.org/bugs.html#5.1.4"><span class="ext">&raquo;</span>&nbsp;currently known bugs in Lua 5.1.4</a>.</li>
  207. <li>Removed wrong GC check in <tt>jit_createstate()</tt>.
  208. Thanks to Tim Mensch.</li>
  209. <li>Fixed bad assertions while compiling <tt>table.insert()</tt> and
  210. <tt>table.remove()</tt>.</li>
  211. </ul>
  212. <h2 id="LuaJIT-1.1.5">LuaJIT 1.1.5 &mdash; 2008-10-25</h2>
  213. <ul>
  214. <li>Merged with Lua 5.1.4. Fixes all
  215. <a href="http://www.lua.org/bugs.html#5.1.3"><span class="ext">&raquo;</span>&nbsp;known bugs in Lua 5.1.3</a>.</li>
  216. </ul>
  217. <h2 id="LuaJIT-1.1.4">LuaJIT 1.1.4 &mdash; 2008-02-05</h2>
  218. <ul>
  219. <li>Merged with Lua 5.1.3. Fixes all
  220. <a href="http://www.lua.org/bugs.html#5.1.2"><span class="ext">&raquo;</span>&nbsp;known bugs in Lua 5.1.2</a>.</li>
  221. <li>Fixed possible (but unlikely) stack corruption while compiling
  222. <tt>k^x</tt> expressions.</li>
  223. <li>Fixed DynASM template for cmpss instruction.</li>
  224. </ul>
  225. <h2 id="LuaJIT-1.1.3">LuaJIT 1.1.3 &mdash; 2007-05-24</h2>
  226. <ul>
  227. <li>Merged with Lua 5.1.2. Fixes all
  228. <a href="http://www.lua.org/bugs.html#5.1.1"><span class="ext">&raquo;</span>&nbsp;known bugs in Lua 5.1.1</a>.</li>
  229. <li>Merged pending Lua 5.1.x fixes: "return -nil" bug, spurious count hook call.</li>
  230. <li>Remove a (sometimes) wrong assertion in <tt>luaJIT_findpc()</tt>.</li>
  231. <li>DynASM now allows labels for displacements and <tt>.aword</tt>.</li>
  232. <li>Fix some compiler warnings for DynASM glue (internal API change).</li>
  233. <li>Correct naming for SSSE3 (temporarily known as SSE4) in DynASM and x86 disassembler.</li>
  234. <li>The loadable debug modules now handle redirection to stdout
  235. (e.g. <tt>-j&nbsp;trace=-</tt>).</li>
  236. </ul>
  237. <h2 id="LuaJIT-1.1.2">LuaJIT 1.1.2 &mdash; 2006-06-24</h2>
  238. <ul>
  239. <li>Fix MSVC inline assembly: use only local variables with
  240. <tt>lua_number2int()</tt>.</li>
  241. <li>Fix "attempt to call a thread value" bug on Mac OS X:
  242. make values of consts used as lightuserdata keys unique
  243. to avoid joining by the compiler/linker.</li>
  244. </ul>
  245. <h2 id="LuaJIT-1.1.1">LuaJIT 1.1.1 &mdash; 2006-06-20</h2>
  246. <ul>
  247. <li>Merged with Lua 5.1.1. Fixes all
  248. <a href="http://www.lua.org/bugs.html#5.1"><span class="ext">&raquo;</span>&nbsp;known bugs in Lua 5.1</a>.</li>
  249. <li>Enforce (dynamic) linker error for EXE/DLL version mismatches.</li>
  250. <li>Minor changes to DynASM: faster preprocessing, smaller encoding
  251. for some immediates.</li>
  252. </ul>
  253. <p>
  254. This release is in sync with Coco 1.1.1 (see the
  255. <a href="http://coco.luajit.org/changes.html"><span class="ext">&raquo;</span>&nbsp;Coco Change History</a>).
  256. </p>
  257. <h2 id="LuaJIT-1.1.0">LuaJIT 1.1.0 &mdash; 2006-03-13</h2>
  258. <ul>
  259. <li>Merged with Lua 5.1 (final).</li>
  260. <li>New JIT call frame setup:
  261. <ul>
  262. <li>The C stack is kept 16 byte aligned (faster).
  263. Mandatory for Mac OS X on Intel, too.</li>
  264. <li>Faster calling conventions for internal C helper functions.</li>
  265. <li>Better instruction scheduling for function prologue, OP_CALL and
  266. OP_RETURN.</li>
  267. </ul></li>
  268. <li>Miscellaneous optimizations:
  269. <ul>
  270. <li>Faster loads of FP constants. Remove narrow-to-wide store-to-load
  271. forwarding stalls.</li>
  272. <li>Use (scalar) SSE2 ops (if the CPU supports it) to speed up slot moves
  273. and FP to integer conversions.</li>
  274. <li>Optimized the two-argument form of <tt>OP_CONCAT</tt> (<tt>a..b</tt>).</li>
  275. <li>Inlined <tt>OP_MOD</tt> (<tt>a%b</tt>).
  276. With better accuracy than the C variant, too.</li>
  277. <li>Inlined <tt>OP_POW</tt> (<tt>a^b</tt>). Unroll <tt>x^k</tt> or
  278. use <tt>k^x = 2^(log2(k)*x)</tt> or call <tt>pow()</tt>.</li>
  279. </ul></li>
  280. <li>Changes in the optimizer:
  281. <ul>
  282. <li>Improved hinting for table keys derived from table values
  283. (<tt>t1[t2[x]]</tt>).</li>
  284. <li>Lookup hinting now works with arbitrary object types and
  285. supports index chains, too.</li>
  286. <li>Generate type hints for arithmetic and comparison operators,
  287. OP_LEN, OP_CONCAT and OP_FORPREP.</li>
  288. <li>Remove several hint definitions in favour of a generic COMBINE hint.</li>
  289. <li>Complete rewrite of <tt>jit.opt_inline</tt> module
  290. (ex <tt>jit.opt_lib</tt>).</li>
  291. </ul></li>
  292. <li>Use adaptive deoptimization:
  293. <ul>
  294. <li>If runtime verification of a contract fails, the affected
  295. instruction is recompiled and patched on-the-fly.
  296. Regular programs will trigger deoptimization only occasionally.</li>
  297. <li>This avoids generating code for uncommon fallback cases
  298. most of the time. Generated code is up to 30% smaller compared to
  299. LuaJIT&nbsp;1.0.3.</li>
  300. <li>Deoptimization is used for many opcodes and contracts:
  301. <ul>
  302. <li>OP_CALL, OP_TAILCALL: type mismatch for callable.</li>
  303. <li>Inlined calls: closure mismatch, parameter number and type mismatches.</li>
  304. <li>OP_GETTABLE, OP_SETTABLE: table or key type and range mismatches.</li>
  305. <li>All arithmetic and comparison operators, OP_LEN, OP_CONCAT,
  306. OP_FORPREP: operand type and range mismatches.</li>
  307. </ul></li>
  308. <li>Complete redesign of the debug and traceback info
  309. (bytecode &harr; mcode) to support deoptimization.
  310. Much more flexible and needs only 50% of the space.</li>
  311. <li>The modules <tt>jit.trace</tt>, <tt>jit.dumphints</tt> and
  312. <tt>jit.dump</tt> handle deoptimization.</li>
  313. </ul></li>
  314. <li>Inlined many popular library functions
  315. (for commonly used arguments only):
  316. <ul>
  317. <li>Most <tt>math.*</tt> functions (the 18 most used ones)
  318. [2x-10x faster].</li>
  319. <li><tt>string.len</tt>, <tt>string.sub</tt> and <tt>string.char</tt>
  320. [2x-10x faster].</li>
  321. <li><tt>table.insert</tt>, <tt>table.remove</tt> and <tt>table.getn</tt>
  322. [3x-5x faster].</li>
  323. <li><tt>coroutine.yield</tt> and <tt>coroutine.resume</tt>
  324. [3x-5x faster].</li>
  325. <li><tt>pairs</tt>, <tt>ipairs</tt> and the corresponding iterators
  326. [8x-15x faster].</li>
  327. </ul></li>
  328. <li>Changes in the core and loadable modules and the stand-alone executable:
  329. <ul>
  330. <li>Added <tt>jit.version</tt>, <tt>jit.version_num</tt>
  331. and <tt>jit.arch</tt>.</li>
  332. <li>Reorganized some internal API functions (<tt>jit.util.*mcode*</tt>).</li>
  333. <li>The <tt>-j dump</tt> output now shows JSUB names, too.</li>
  334. <li>New x86 disassembler module written in pure Lua. No dependency
  335. on ndisasm anymore. Flexible API, very compact (500 lines)
  336. and complete (x87, MMX, SSE, SSE2, SSE3, SSSE3, privileged instructions).</li>
  337. <li><tt>luajit -v</tt> prints the LuaJIT version and copyright
  338. on a separate line.</li>
  339. </ul></li>
  340. <li>Added SSE, SSE2, SSE3 and SSSE3 support to DynASM.</li>
  341. <li>Miscellaneous doc changes. Added a section about
  342. <a href="install.html#embedding">embedding LuaJIT</a>.</li>
  343. </ul>
  344. <p>
  345. This release is in sync with Coco 1.1.0 (see the
  346. <a href="http://coco.luajit.org/changes.html"><span class="ext">&raquo;</span>&nbsp;Coco Change History</a>).
  347. </p>
  348. </div>
  349. <div class="major" style="background: #ffffd0;">
  350. <h2 id="LuaJIT-1.0.3">LuaJIT 1.0.3 &mdash; 2005-09-08</h2>
  351. <ul>
  352. <li>Even more docs.</li>
  353. <li>Unified closure checks in <tt>jit.*</tt>.</li>
  354. <li>Fixed some range checks in <tt>jit.util.*</tt>.</li>
  355. <li>Fixed __newindex call originating from <tt>jit_settable_str()</tt>.</li>
  356. <li>Merged with Lua 5.1 alpha (including early bug fixes).</li>
  357. </ul>
  358. <p>
  359. This is the first public release of LuaJIT.
  360. </p>
  361. <h2 id="LuaJIT-1.0.2">LuaJIT 1.0.2 &mdash; 2005-09-02</h2>
  362. <ul>
  363. <li>Add support for flushing the Valgrind translation cache <br>
  364. (<tt>MYCFLAGS= -DUSE_VALGRIND</tt>).</li>
  365. <li>Add support for freeing executable mcode memory to the <tt>mmap()</tt>-based
  366. variant for POSIX systems.</li>
  367. <li>Reorganized the C&nbsp;function signature handling in
  368. <tt>jit.opt_lib</tt>.</li>
  369. <li>Changed to index-based hints for inlining C&nbsp;functions.
  370. Still no support in the backend for inlining.</li>
  371. <li>Hardcode <tt>HEAP_CREATE_ENABLE_EXECUTE</tt> value if undefined.</li>
  372. <li>Misc. changes to the <tt>jit.*</tt> modules.</li>
  373. <li>Misc. changes to the Makefiles.</li>
  374. <li>Lots of new docs.</li>
  375. <li>Complete doc reorg.</li>
  376. </ul>
  377. <p>
  378. Not released because Lua 5.1 alpha came out today.
  379. </p>
  380. <h2 id="LuaJIT-1.0.1">LuaJIT 1.0.1 &mdash; 2005-08-31</h2>
  381. <ul>
  382. <li>Missing GC step in <tt>OP_CONCAT</tt>.</li>
  383. <li>Fix result handling for C &ndash;> JIT calls.</li>
  384. <li>Detect CPU feature bits.</li>
  385. <li>Encode conditional moves (<tt>fucomip</tt>) only when supported.</li>
  386. <li>Add fallback instructions for FP compares.</li>
  387. <li>Add support for <tt>LUA_COMPAT_VARARG</tt>. Still disabled by default.</li>
  388. <li>MSVC needs a specific place for the <tt>CALLBACK</tt> attribute
  389. (David Burgess).</li>
  390. <li>Misc. doc updates.</li>
  391. </ul>
  392. <p>
  393. Interim non-public release.
  394. Special thanks to Adam D. Moss for reporting most of the bugs.
  395. </p>
  396. <h2 id="LuaJIT-1.0.0">LuaJIT 1.0.0 &mdash; 2005-08-29</h2>
  397. <p>
  398. This is the initial non-public release of LuaJIT.
  399. </p>
  400. </div>
  401. <br class="flush">
  402. </div>
  403. <div id="foot">
  404. <hr class="hide">
  405. Copyright &copy; 2005-2011 Mike Pall
  406. <span class="noprint">
  407. &middot;
  408. <a href="contact.html">Contact</a>
  409. </span>
  410. </div>
  411. </body>
  412. </html>