diff --git a/doc/changes.html b/doc/changes.html
index c650139e..7f2da0a8 100644
--- a/doc/changes.html
+++ b/doc/changes.html
@@ -55,21 +55,48 @@ to see whether newer versions are available.
Development Snapshot
-- Build of preliminary x64 interpreter works on Linux/x64 or WIN64.
-- Implement call/return hooks (zero-cost if disabled).
-- Major redesign of internal function call handling.
-- Implement yield from C hooks.
-- Add abstract C call handling to IR.
-- Improve KNUM fuse vs. load heuristics.
-- Drive the GC forward on string allocations in the parser.
-- Compile various io.*() functions.
-- Compile math.sinh(), math.cosh(), math.tanh()
-and math.random().
+- CPU support:
+
+- Port integrated memory allocator to Linux/x64 and Windows/x64.
+- Port the interpreter to x64.
+- Port DynASM to x64.
+- Many 32/64 bit cleanups in the VM.
+- Allow building the interpreter with either x87 or SSE2 arithmetics.
+- Disable JIT compiler on older non-SSE2 CPUs instead of aborting.
+
+- Correctness and completeness:
+
+- Fix constructor bytecode generation for certain conditional values.
+- Fix some cases of ordered string comparisons.
- Fix lua_tocfunction().
- Fix cutoff register in JMP bytecode for some conditional expressions.
- Fix PHI marking algorithm for references from variant slots.
- Fix package.cpath for non-default PREFIX.
- Fix DWARF2 frame unwind information for interpreter on OSX.
+- Drive the GC forward on string allocations in the parser.
+- Implement call/return hooks (zero-cost if disabled).
+- Implement yield from C hooks.
+- Add external unwinding and C++ exception interop (default on x64).
+
+- Structural and performance enhancements:
+
+- Split CALL/FUNC recording and clean up fast function call semantics.
+- Major redesign of internal function call handling.
+- Improve FOR loop const specialization and integerness checks.
+- Switch to pre-initialized stacks. Avoid frame-clearing.
+- Colocation of prototypes and related data: bytecode, constants, debug info.
+- Cleanup parser and streamline bytecode generation.
+- Add support for weak IR references to register allocator.
+- Switch to compressed, extensible snapshots.
+- Compile returns to frames below the start frame.
+- Improve alias analysis of upvalues using a disambiguation hash value.
+- Compile floor/ceil/trunc to SSE2 helper calls or SSE4.1 instructions.
+- Add generic C call handling to IR and backend.
+- Improve KNUM fuse vs. load heuristics.
+- Compile various io.*() functions.
+- Compile math.sinh(), math.cosh(), math.tanh()
+and math.random().
+
diff --git a/doc/luajit.html b/doc/luajit.html
index 7c3779d4..58dfa32e 100644
--- a/doc/luajit.html
+++ b/doc/luajit.html
@@ -44,7 +44,7 @@ LuaJIT is a Just-In-Time Compiler for the Lua*
programming language.
-LuaJIT is Copyright © 2005-2008 Mike Pall.
+LuaJIT is Copyright © 2005-2010 Mike Pall.
LuaJIT is open source software, released under the
» MIT/X license.
@@ -82,8 +82,8 @@ LuaJIT has been in continuous development since 2005. It's widely
considered to be one of the fastest dynamic language
implementations. It has outperfomed other dynamic languages on many
cross-language benchmarks since its first release — often by a
-substantial margin. Only now, in 2009, other dynamic language VMs are
-starting to catch up with the performance of LuaJIT 1.x …
+substantial margin. In 2009 other dynamic language VMs started to catch up
+with the performance of LuaJIT 1.x. Well, I couldn't let that slide. ;-)
2009 also marks the first release of the long-awaited LuaJIT 2.0.
diff --git a/doc/status.html b/doc/status.html
index ba62625e..23847da9 100644
--- a/doc/status.html
+++ b/doc/status.html
@@ -206,12 +206,6 @@ interested in sponsoring a port to a particular architecture, please
use the given contact address.
-There are some planned structural improvements to the compiler,
-like compressed snapshot maps or generic handling of calls to helper
-methods. These are of lesser importance, unless other developments
-elevate their priority.
-
-
Documentation about the internals of LuaJIT is still sorely
missing. Although the source code is included and is IMHO well
commented, many basic design decisions are in need of an explanation.