diff options
Diffstat (limited to 'doc/ext_jit.html')
-rw-r--r-- | doc/ext_jit.html | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/doc/ext_jit.html b/doc/ext_jit.html index e01db331..fc494382 100644 --- a/doc/ext_jit.html +++ b/doc/ext_jit.html | |||
@@ -27,6 +27,17 @@ | |||
27 | </li><li> | 27 | </li><li> |
28 | <a href="extensions.html">Extensions</a> | 28 | <a href="extensions.html">Extensions</a> |
29 | <ul><li> | 29 | <ul><li> |
30 | <a href="ext_ffi.html">FFI Library</a> | ||
31 | <ul><li> | ||
32 | <a href="ext_ffi_tutorial.html">FFI Tutorial</a> | ||
33 | </li><li> | ||
34 | <a href="ext_ffi_api.html">ffi.* API</a> | ||
35 | </li><li> | ||
36 | <a href="ext_ffi_int64.html">64 bit Integers</a> | ||
37 | </li><li> | ||
38 | <a href="ext_ffi_semantics.html">FFI Semantics</a> | ||
39 | </li></ul> | ||
40 | </li><li> | ||
30 | <a class="current" href="ext_jit.html">jit.* Library</a> | 41 | <a class="current" href="ext_jit.html">jit.* Library</a> |
31 | </li><li> | 42 | </li><li> |
32 | <a href="ext_c_api.html">Lua/C API</a> | 43 | <a href="ext_c_api.html">Lua/C API</a> |
@@ -46,8 +57,10 @@ | |||
46 | </div> | 57 | </div> |
47 | <div id="main"> | 58 | <div id="main"> |
48 | <p> | 59 | <p> |
49 | The functions in this built-in module control the behavior | 60 | The functions in this built-in module control the behavior of the JIT |
50 | of the JIT compiler engine. | 61 | compiler engine. Note that JIT-compilation is fully automatic — |
62 | you probably won't need to use any of the following functions unless | ||
63 | you have special needs. | ||
51 | </p> | 64 | </p> |
52 | 65 | ||
53 | <h3 id="jit_onoff"><tt>jit.on()<br> | 66 | <h3 id="jit_onoff"><tt>jit.on()<br> |