aboutsummaryrefslogtreecommitdiff
path: root/doc/faq.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/faq.html')
-rw-r--r--doc/faq.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/faq.html b/doc/faq.html
index 65b0d842..a7144670 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -59,16 +59,16 @@ dd { margin-left: 1.5em; }
59<dt>Q: Where can I learn more about LuaJIT and Lua?</dt> 59<dt>Q: Where can I learn more about LuaJIT and Lua?</dt>
60<dd> 60<dd>
61<ul style="padding: 0;"> 61<ul style="padding: 0;">
62<li>The <a href="https://luajit.org/list.html">LuaJIT mailing list</a> focuses on topics 62<li>The <a href="https://luajit.org/list.html"><span class="ext">&raquo;</span>&nbsp;LuaJIT mailing list</a> focuses on topics
63related to LuaJIT.</li> 63related to LuaJIT.</li>
64<li>The <a href="http://wiki.luajit.org/"><span class="ext">&raquo;</span>&nbsp;LuaJIT wiki</a> gathers community 64<li>The <a href="http://wiki.luajit.org/"><span class="ext">&raquo;</span>&nbsp;LuaJIT wiki</a> gathers community
65resources about LuaJIT.</li> 65resources about LuaJIT.</li>
66<li>News about Lua itself can be found at the 66<li>News about Lua itself can be found at the
67<a href="https://www.lua.org/lua-l.html">Lua mailing list</a>. 67<a href="https://www.lua.org/lua-l.html"><span class="ext">&raquo;</span>&nbsp;Lua mailing list</a>.
68The mailing list archives are worth checking out for older postings 68The mailing list archives are worth checking out for older postings
69about LuaJIT.</li> 69about LuaJIT.</li>
70<li>The <a href="https://lua.org">main Lua.org site</a> has complete 70<li>The <a href="https://lua.org"><span class="ext">&raquo;</span>&nbsp;main Lua.org site</a> has complete
71<a href="https://www.lua.org/docs.html">documentation</a> of the language 71<a href="https://www.lua.org/docs.html"><span class="ext">&raquo;</span>&nbsp;documentation</a> of the language
72and links to books and papers about Lua.</li> 72and links to books and papers about Lua.</li>
73<li>The community-managed <a href="http://lua-users.org/wiki/"><span class="ext">&raquo;</span>&nbsp;Lua Wiki</a> 73<li>The community-managed <a href="http://lua-users.org/wiki/"><span class="ext">&raquo;</span>&nbsp;Lua Wiki</a>
74has information about diverse topics.</li> 74has information about diverse topics.</li>
@@ -81,11 +81,11 @@ has information about diverse topics.</li>
81I'm planning to write more documentation about the internals of LuaJIT. 81I'm planning to write more documentation about the internals of LuaJIT.
82In the meantime, please use the following Google Scholar searches 82In the meantime, please use the following Google Scholar searches
83to find relevant papers:<br> 83to find relevant papers:<br>
84Search for: <a href="https://scholar.google.com/scholar?q=Trace+Compiler">Trace Compiler</a><br> 84Search for: <a href="https://scholar.google.com/scholar?q=Trace+Compiler"><span class="ext">&raquo;</span>&nbsp;Trace Compiler</a><br>
85Search for: <a href="https://scholar.google.com/scholar?q=JIT+Compiler">JIT Compiler</a><br> 85Search for: <a href="https://scholar.google.com/scholar?q=JIT+Compiler"><span class="ext">&raquo;</span>&nbsp;JIT Compiler</a><br>
86Search for: <a href="https://scholar.google.com/scholar?q=Dynamic+Language+Optimizations">Dynamic Language Optimizations</a><br> 86Search for: <a href="https://scholar.google.com/scholar?q=Dynamic+Language+Optimizations"><span class="ext">&raquo;</span>&nbsp;Dynamic Language Optimizations</a><br>
87Search for: <a href="https://scholar.google.com/scholar?q=SSA+Form">SSA Form</a><br> 87Search for: <a href="https://scholar.google.com/scholar?q=SSA+Form"><span class="ext">&raquo;</span>&nbsp;SSA Form</a><br>
88Search for: <a href="https://scholar.google.com/scholar?q=Linear+Scan+Register+Allocation">Linear Scan Register Allocation</a><br> 88Search for: <a href="https://scholar.google.com/scholar?q=Linear+Scan+Register+Allocation"><span class="ext">&raquo;</span>&nbsp;Linear Scan Register Allocation</a><br>
89Here is a list of the <a href="http://lua-users.org/lists/lua-l/2009-11/msg00089.html"><span class="ext">&raquo;</span>&nbsp;innovative features in LuaJIT</a>.<br> 89Here is a list of the <a href="http://lua-users.org/lists/lua-l/2009-11/msg00089.html"><span class="ext">&raquo;</span>&nbsp;innovative features in LuaJIT</a>.<br>
90And, you know, reading the source is of course the only way to enlightenment. :-) 90And, you know, reading the source is of course the only way to enlightenment. :-)
91</dd> 91</dd>
@@ -97,7 +97,7 @@ Q: My vararg functions fail after switching to LuaJIT!</dt>
97<dd>LuaJIT is compatible to the Lua 5.1 language standard. It doesn't 97<dd>LuaJIT is compatible to the Lua 5.1 language standard. It doesn't
98support the implicit <tt>arg</tt> parameter for old-style vararg 98support the implicit <tt>arg</tt> parameter for old-style vararg
99functions from Lua 5.0.<br>Please convert your code to the 99functions from Lua 5.0.<br>Please convert your code to the
100<a href="https://www.lua.org/manual/5.1/manual.html#2.5.9">Lua 5.1 100<a href="https://www.lua.org/manual/5.1/manual.html#2.5.9"><span class="ext">&raquo;</span>&nbsp;Lua 5.1
101vararg syntax</a>.</dd> 101vararg syntax</a>.</dd>
102</dl> 102</dl>
103 103
@@ -154,7 +154,7 @@ don't report a bug about it. Check the <tt>mode</tt> parameter for the
154In general, the only promising approach is to sandbox Lua code at the 154In general, the only promising approach is to sandbox Lua code at the
155process level and not the VM level.<br> 155process level and not the VM level.<br>
156 156
157More reading material at the <a href="http://lua-users.org/wiki/SandBoxes"><span class="ext">&raquo;</span>&nbsp;Lua Wiki</a> and <a href="https://en.wikipedia.org/wiki/Sandbox_(computer_security)">Wikipedia</a>. 157More reading material at the <a href="http://lua-users.org/wiki/SandBoxes"><span class="ext">&raquo;</span>&nbsp;Lua Wiki</a> and <a href="https://en.wikipedia.org/wiki/Sandbox_(computer_security)"><span class="ext">&raquo;</span>&nbsp;Wikipedia</a>.
158</dd> 158</dd>
159</dl> 159</dl>
160 160