From 6523585c66c04cea54df50013df8886b589847d8 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 23 Jan 2012 23:36:30 +1000 Subject: Add luaproc and LuaJIT libraries. Two versions of LuaJIT, the stable release, and the dev version. Try the dev version first, until ih fails badly. --- libraries/LuaJIT-1.1.7/jitdoc/luajit_features.html | 226 +++++++++++++++++++++ 1 file changed, 226 insertions(+) create mode 100644 libraries/LuaJIT-1.1.7/jitdoc/luajit_features.html (limited to 'libraries/LuaJIT-1.1.7/jitdoc/luajit_features.html') diff --git a/libraries/LuaJIT-1.1.7/jitdoc/luajit_features.html b/libraries/LuaJIT-1.1.7/jitdoc/luajit_features.html new file mode 100644 index 0000000..b4e896f --- /dev/null +++ b/libraries/LuaJIT-1.1.7/jitdoc/luajit_features.html @@ -0,0 +1,226 @@ + + + +LuaJIT Features + + + + + + + + +
+Lua +
+ + +
+

+LuaJIT tries to keep the spirit of Lua — it's light-weight, +efficient and extensible. +

+ +

Features

+

+All functions are by default compiled Just-In-Time (JIT) to +machine code: +

+ +

+Ahead-Of-Time (AOT) compilation (at runtime) is supported, too: +

+ +

+The JIT compiler is extensible: +

+ + +

Performance

+

+The compiled machine code is very efficient: +

+ +

+The JIT compiler is very fast: +

+ +

+LuaJIT is very small: +

+ + +

Compatibility

+

+LuaJIT is designed to be fully compatible with Lua 5.1. +It accepts the same source code and/or precompiled bytecode. +It supports all standard language semantics. In particular: +

+ +

+Some minor differences are related to debugging: +

+ +

+* There is not much I can do to improve this situation without undue +complications. A suggestion to modify the behaviour of standard Lua +has been made on the mailing list (it would be beneficial there, too). +

+ +

Restrictions

+ + +

Caveats

+ + +
+
+ + + -- cgit v1.1