index
:
luajit
master
v2.0
v2.1
A mirror of https://luajit.org/git/luajit.git
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
DUALNUM: Handle integer type in FFI.
Mike Pall
2011-02-27
5
-17
/
+42
*
x64: Improve accuracy of x^-k.
Mike Pall
2011-02-25
4
-1794
/
+1791
*
Fix table.maxn().
Mike Pall
2011-02-23
1
-1
/
+1
*
FFI: Record calls to functions with void results.
Mike Pall
2011-02-23
1
-2
/
+8
*
Eliminate dead slots in snapshots using bytecode data-flow analysis.
Mike Pall
2011-02-22
4
-21
/
+133
*
From Lua 5.2: Support load(string).
Mike Pall
2011-02-20
1
-1
/
+4
*
From Lua 5.2: fp:read("*L").
Mike Pall
2011-02-20
1
-7
/
+7
*
From Lua 5.2: table.unpack(). Needs -DLUAJIT_ENABLE_LUA52COMPAT.
Mike Pall
2011-02-20
1
-0
/
+4
*
From Lua 5.2: Add package.searchpath().
Mike Pall
2011-02-20
1
-10
/
+29
*
From Lua 5.2: Empty statement. Needs -DLUAJIT_ENABLE_LUA52COMPAT.
Mike Pall
2011-02-20
1
-0
/
+5
*
From Lua 5.2: coroutine.running(). Needs -DLUAJIT_ENABLE_LUA52COMPAT.
Mike Pall
2011-02-20
1
-1
/
+7
*
FFI: Fix recording of userdata conversions.
Mike Pall
2011-02-20
1
-1
/
+1
*
FFI: Fix 64 bit to 32 bit truncations on x64.
Mike Pall
2011-02-20
1
-8
/
+2
*
FFI: Fix recording of ffi.copy() and ffi.fill().
Mike Pall
2011-02-19
1
-1
/
+3
*
FFI: Improve conversion error messages.
Mike Pall
2011-02-19
4
-15
/
+32
*
DUALNUM: Add integer type to core VM.
Mike Pall
2011-02-17
23
-189
/
+403
*
DUALNUM: Add build infrastructure.
Mike Pall
2011-02-17
1
-0
/
+12
*
FFI: Fix management of C library handles for default namespace.
Mike Pall
2011-02-16
1
-3
/
+7
*
Fix error handling within metamethods. Special-case FFI mm.
Mike Pall
2011-02-16
2
-18
/
+28
*
Add workaround for lj_meta_tset() newkey inconsistency.
Mike Pall
2011-02-15
1
-1
/
+2
*
PPC: Disable FFI due to NYI: comparisons and calls.
Mike Pall
2011-02-14
1
-0
/
+1
*
Fix type mismatch in XSTORE forwarding.
Mike Pall
2011-02-14
1
-2
/
+2
*
RELEASE LuaJIT-2.0.0-beta6
v2.0.0-beta6
Mike Pall
2011-02-11
2
-4
/
+4
*
FFI: Disable unused code for some build modes.
Mike Pall
2011-02-11
2
-2
/
+2
*
Fix bytecode optimization of and/or operators.
Mike Pall
2011-02-08
1
-4
/
+0
*
FFI: Record ffi.abi().
Mike Pall
2011-02-08
5
-4
/
+21
*
FFI: Record ffi.copy() and ffi.fill().
Mike Pall
2011-02-07
4
-15
/
+53
*
FFI: Fix recording of pointer arithmetic.
Mike Pall
2011-02-07
1
-1
/
+1
*
Add IR_XBAR, a barrier against XLOAD/XSTORE optimizations.
Mike Pall
2011-02-07
4
-2
/
+6
*
Improve static assertion macro.
Mike Pall
2011-02-07
2
-1
/
+7
*
FFI: Allow cdata types for integer arguments of ffi.* functions.
Mike Pall
2011-02-07
2
-6
/
+23
*
FFI: Fix handling of enum arguments to C calls.
Mike Pall
2011-02-07
1
-2
/
+2
*
FFI: Perform stricter checks in ffi.cast(). Record ffi.cast().
Mike Pall
2011-02-06
1
-7
/
+6
*
FFI: Simplify and fix tonumber() for cdata objects.
Mike Pall
2011-02-06
2
-38
/
+13
*
Strength-reduce 32 to 64 bit widening for XLOAD U8/U16 inputs.
Mike Pall
2011-02-06
1
-0
/
+3
*
FFI: Limit number of arguments for recorded calls.
Mike Pall
2011-02-05
1
-1
/
+1
*
FFI: Record simple C function calls.
Mike Pall
2011-02-05
6
-32
/
+169
*
FFI: Optimize snapshots for cdata comparisons.
Mike Pall
2011-02-05
4
-8
/
+23
*
Fix metamethod comparisons triggered by BC_ISEQP/BC_ISNEP.
Mike Pall
2011-02-05
1
-1
/
+1
*
FFI: Record C library namespace lookups.
Mike Pall
2011-02-05
8
-11
/
+53
*
Treat metatables of special userdata objects as immutable.
Mike Pall
2011-02-05
1
-12
/
+26
*
FFI: Record ffi.string().
Mike Pall
2011-02-05
4
-7
/
+31
*
FFI: Avoid intermediate boxes for tonumber(), too.
Mike Pall
2011-02-05
1
-0
/
+6
*
FFI: Disable MUL => BSHL FOLD rule on 32 bit.
Mike Pall
2011-02-03
1
-0
/
+3
*
FFI: Rename IR_CNEWP to IR_CNEWI and use it to box 64 bit integers.
Mike Pall
2011-02-03
5
-82
/
+140
*
Rename IR_POWI to IR_POW.
Mike Pall
2011-02-02
5
-15
/
+15
*
FFI: Add basic FOLD rules for 64 bit integer DIV, MOD and POWI.
Mike Pall
2011-02-02
2
-1
/
+54
*
FFI: Record 64 bit integer divide and modulo.
Mike Pall
2011-02-02
6
-34
/
+86
*
Use names defined in lualib.h for library registration.
Mike Pall
2011-02-02
11
-19
/
+17
*
Fix OSX build to work with newer ld64 versions.
Mike Pall
2011-02-02
4
-0
/
+4
[next]