aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Pall <mike>2010-02-14 20:48:33 +0100
committerMike Pall <mike>2010-02-14 20:48:33 +0100
commit2a2f8ed6a144fe763379f9cf0eb6a45750432a47 (patch)
tree5b2b97d2f3dd22c80a0840132df5b3d7fc136484 /doc
parent8e38231f9ea0bd1185c0b9688e71cef52f96bb31 (diff)
downloadluajit-2a2f8ed6a144fe763379f9cf0eb6a45750432a47.tar.gz
luajit-2a2f8ed6a144fe763379f9cf0eb6a45750432a47.tar.bz2
luajit-2a2f8ed6a144fe763379f9cf0eb6a45750432a47.zip
Implement return hooks for Lua functions (zero-cost if disabled).
Diffstat (limited to 'doc')
-rw-r--r--doc/changes.html2
-rw-r--r--doc/status.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/changes.html b/doc/changes.html
index 2a6dad43..c650139e 100644
--- a/doc/changes.html
+++ b/doc/changes.html
@@ -56,7 +56,7 @@ to see whether newer versions are available.
56<h2 id="snap">Development Snapshot</h2> 56<h2 id="snap">Development Snapshot</h2>
57<ul> 57<ul>
58<li>Build of preliminary x64 interpreter works on Linux/x64 or WIN64.</li> 58<li>Build of preliminary x64 interpreter works on Linux/x64 or WIN64.</li>
59<li>Implement call hooks (zero-cost if disabled).</li> 59<li>Implement call/return hooks (zero-cost if disabled).</li>
60<li>Major redesign of internal function call handling.</li> 60<li>Major redesign of internal function call handling.</li>
61<li>Implement yield from C hooks.</li> 61<li>Implement yield from C hooks.</li>
62<li>Add abstract C call handling to IR.</li> 62<li>Add abstract C call handling to IR.</li>
diff --git a/doc/status.html b/doc/status.html
index b3d2ecfa..c5564d58 100644
--- a/doc/status.html
+++ b/doc/status.html
@@ -90,8 +90,8 @@ known incompatibilities with standard Lua:
90<ul> 90<ul>
91<li> 91<li>
92The Lua <b>debug API</b> is missing a couple of features (return 92The Lua <b>debug API</b> is missing a couple of features (return
93hooks) and shows slightly different behavior (no per-coroutine hooks, 93hooks for non-Lua functions) and shows slightly different behavior
94no tail call counting). 94(no per-coroutine hooks, no tail call counting).
95</li> 95</li>
96<li> 96<li>
97<b>Bytecode</b> currently cannot be loaded or dumped. Note that 97<b>Bytecode</b> currently cannot be loaded or dumped. Note that