diff options
author | Mike Pall <mike> | 2010-03-07 19:30:21 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-03-07 19:30:21 +0100 |
commit | 09e875519b153bf7bc6fa5e1dbc1cfcdcb1e9aff (patch) | |
tree | 06d1fed601e9630e6624cd6ff89e04b7bf338675 /doc/changes.html | |
parent | f354b46d296acb8a5fab89a0314a81ba72925d68 (diff) | |
download | luajit-09e875519b153bf7bc6fa5e1dbc1cfcdcb1e9aff.tar.gz luajit-09e875519b153bf7bc6fa5e1dbc1cfcdcb1e9aff.tar.bz2 luajit-09e875519b153bf7bc6fa5e1dbc1cfcdcb1e9aff.zip |
RELEASE LuaJIT-2.0.0-beta3v2.0.0-beta3
Diffstat (limited to 'doc/changes.html')
-rw-r--r-- | doc/changes.html | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/doc/changes.html b/doc/changes.html index 4f3a489c..5ef8b4cd 100644 --- a/doc/changes.html +++ b/doc/changes.html | |||
@@ -43,7 +43,7 @@ div.major { max-width: 600px; padding: 1em; margin: 1em 0 1em 0; } | |||
43 | <div id="main"> | 43 | <div id="main"> |
44 | <p> | 44 | <p> |
45 | This is a list of changes between the released versions of LuaJIT.<br> | 45 | This is a list of changes between the released versions of LuaJIT.<br> |
46 | The current <span style="color: #c00000;">development version</span> is <strong>LuaJIT 2.0.0-beta2</strong>.<br> | 46 | The current <span style="color: #c00000;">development version</span> is <strong>LuaJIT 2.0.0-beta3</strong>.<br> |
47 | The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT 1.1.5</strong>. | 47 | The current <span style="color: #0000c0;">stable version</span> is <strong>LuaJIT 1.1.5</strong>. |
48 | </p> | 48 | </p> |
49 | <p> | 49 | <p> |
@@ -51,18 +51,17 @@ Please check the | |||
51 | <a href="http://luajit.org/changes.html"><span class="ext">»</span> Online Change History</a> | 51 | <a href="http://luajit.org/changes.html"><span class="ext">»</span> Online Change History</a> |
52 | to see whether newer versions are available. | 52 | to see whether newer versions are available. |
53 | </p> | 53 | </p> |
54 | 54 | <div class="major" style="background: #ffd0d0;"> | |
55 | <div class="major" style="background: #d0d0d0;"> | 55 | <h2 id="LuaJIT-2.0.0-beta3">LuaJIT 2.0.0-beta3 — 2010-03-07</h2> |
56 | <h2 id="snap">Development Snapshot</h2> | ||
57 | <ul> | 56 | <ul> |
58 | <li>Portability: | 57 | <li>LuaJIT x64 port:</li> |
59 | <ul> | 58 | <ul> |
60 | <li>Port integrated memory allocator to Linux/x64, Windows/x64 and OSX/x64.</li> | 59 | <li>Port integrated memory allocator to Linux/x64, Windows/x64 and OSX/x64.</li> |
61 | <li>Port interpreter and JIT compiler to x64.</li> | 60 | <li>Port interpreter and JIT compiler to x64.</li> |
62 | <li>Port DynASM to x64.</li> | 61 | <li>Port DynASM to x64.</li> |
63 | <li>Many 32/64 bit cleanups in the VM.</li> | 62 | <li>Many 32/64 bit cleanups in the VM.</li> |
64 | <li>Allow building the interpreter with either x87 or SSE2 arithmetics.</li> | 63 | <li>Allow building the interpreter with either x87 or SSE2 arithmetics.</li> |
65 | <li>Disable JIT compiler on older non-SSE2 CPUs instead of aborting.</li> | 64 | <li>Add external unwinding and C++ exception interop (default on x64).</li> |
66 | </ul></li> | 65 | </ul></li> |
67 | <li>Correctness and completeness: | 66 | <li>Correctness and completeness: |
68 | <ul> | 67 | <ul> |
@@ -76,7 +75,7 @@ to see whether newer versions are available. | |||
76 | <li>Drive the GC forward on string allocations in the parser.</li> | 75 | <li>Drive the GC forward on string allocations in the parser.</li> |
77 | <li>Implement call/return hooks (zero-cost if disabled).</li> | 76 | <li>Implement call/return hooks (zero-cost if disabled).</li> |
78 | <li>Implement yield from C hooks.</li> | 77 | <li>Implement yield from C hooks.</li> |
79 | <li>Add external unwinding and C++ exception interop (default on x64).</li> | 78 | <li>Disable JIT compiler on older non-SSE2 CPUs instead of aborting.</li> |
80 | </ul></li> | 79 | </ul></li> |
81 | <li>Structural and performance enhancements: | 80 | <li>Structural and performance enhancements: |
82 | <ul> | 81 | <ul> |
@@ -100,9 +99,7 @@ to see whether newer versions are available. | |||
100 | and <tt>math.random()</tt>.</li> | 99 | and <tt>math.random()</tt>.</li> |
101 | </ul></li> | 100 | </ul></li> |
102 | </ul> | 101 | </ul> |
103 | </div> | ||
104 | 102 | ||
105 | <div class="major" style="background: #ffd0d0;"> | ||
106 | <h2 id="LuaJIT-2.0.0-beta2">LuaJIT 2.0.0-beta2 — 2009-11-09</h2> | 103 | <h2 id="LuaJIT-2.0.0-beta2">LuaJIT 2.0.0-beta2 — 2009-11-09</h2> |
107 | <ul> | 104 | <ul> |
108 | <li>Reorganize build system. Build static+shared library on POSIX.</li> | 105 | <li>Reorganize build system. Build static+shared library on POSIX.</li> |