index
:
luajit
master
v2.0
v2.1
A mirror of https://luajit.org/git/luajit.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
lj_api.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
From Lua 5.2: Add lua_tonumberx() and lua_tointegerx().
Mike Pall
2017-04-07
1
-1
/
+46
*
From Lua 5.2: Add luaL_setmetatable().
Mike Pall
2017-04-07
1
-0
/
+6
*
From Lua 5.2: Add luaL_testudata().
Mike Pall
2017-04-07
1
-3
/
+9
*
From Lua 5.3: Add lua_isyieldable().
Mike Pall
2017-04-07
1
-0
/
+5
*
From Lua 5.2: Add lua_copy().
Mike Pall
2017-04-07
1
-9
/
+19
*
From Lua 5.2: Add lua_version().
Mike Pall
2017-04-07
1
-0
/
+7
*
Refactor with LUA_OK.
Mike Pall
2017-04-07
1
-4
/
+4
*
Merge branch 'master' into v2.1
Mike Pall
2017-01-17
1
-1
/
+1
|
\
|
*
Bump copyright date to 2017.
Mike Pall
2017-01-17
1
-1
/
+1
*
|
Merge branch 'master' into v2.1
Mike Pall
2016-03-03
1
-1
/
+1
|
\
|
|
*
Bump copyright date to 2016.
Mike Pall
2016-03-03
1
-1
/
+1
*
|
Add collectgarbage("isrunning").
Mike Pall
2015-10-01
1
-0
/
+3
*
|
LJ_FR2: Fix lua_settable() and lua_setfield().
Mike Pall
2015-01-07
1
-2
/
+2
*
|
Merge branch 'master' into v2.1
Mike Pall
2015-01-06
1
-1
/
+1
|
\
|
|
*
Bump copyright date to 2015.
Mike Pall
2015-01-05
1
-1
/
+1
*
|
Add LJ_GC64 mode: 64 bit GC object references.
Mike Pall
2015-01-03
1
-2
/
+2
*
|
Add LJ_FR2 mode: Two-slot frame info.
Mike Pall
2015-01-03
1
-38
/
+59
*
|
Cleanup of TValue setters. No functional changes.
Mike Pall
2014-12-20
1
-1
/
+1
*
|
Cleanup of memory vs. GC sizes. No functional changes.
Mike Pall
2014-12-20
1
-1
/
+1
*
|
Cleanup of frame handling. No functional changes.
Mike Pall
2014-12-15
1
-1
/
+1
*
|
Merge branch 'master' into v2.1
Mike Pall
2014-01-16
1
-1
/
+1
|
\
|
|
*
Bump copyright date to 2014.
Mike Pall
2014-01-16
1
-1
/
+1
*
|
Merge branch 'master' into v2.1
Mike Pall
2013-11-05
1
-1
/
+1
|
\
|
|
*
Fix for last commit
Mike Pall
2013-11-05
1
-1
/
+1
*
|
Add table.new().
Mike Pall
2013-10-09
1
-3
/
+1
*
|
Big renaming of string buffer/formatting/conversion functions.
Mike Pall
2013-05-13
1
-4
/
+4
*
|
Refactor raw object to pointer or string conversions.
Mike Pall
2013-05-13
1
-11
/
+1
*
|
Refactor internal string formatting.
Mike Pall
2013-05-12
1
-2
/
+3
|
/
*
Bump copyright date to 2013.
Mike Pall
2013-02-11
1
-1
/
+1
*
Don't use stack unwinding for lua_yield().
Mike Pall
2012-10-09
1
-5
/
+8
*
Move load/dump functions to lj_load.c. Add load modes.
Mike Pall
2012-09-21
1
-44
/
+0
*
From Lua 5.2: Add debug.upvalueid() and debug.upvaluejoin().
Mike Pall
2012-09-20
1
-0
/
+20
*
Replace strtod() with builtin string to number conversion.
Mike Pall
2012-08-25
1
-7
/
+8
*
Make lua_concat() work from C hook with partial frame.
Mike Pall
2012-04-12
1
-1
/
+1
*
Bump copyright date to 2012.
Mike Pall
2012-01-23
1
-1
/
+1
*
Replace stack slot for implicit number->string conv. in Lua/C API.
Mike Pall
2011-11-21
1
-6
/
+12
*
Add support for bytecode loading/saving.
Mike Pall
2011-06-13
1
-5
/
+10
*
No need for L argument to lj_str_initbuf().
Mike Pall
2011-06-12
1
-1
/
+1
*
Flatten and compress in-memory debug info (saves ~70%).
Mike Pall
2011-06-09
1
-2
/
+2
*
Move debugging/introspection functionality to lj_debug.c.
Mike Pall
2011-06-07
1
-23
/
+4
*
Add support for tailcalls from internal C functions.
Mike Pall
2011-04-12
1
-1
/
+1
*
x64: Use external unwinding for lua_yield().
Mike Pall
2011-03-18
1
-0
/
+4
*
Get rid of the remaining silly cast macros from Lua.
Mike Pall
2011-03-10
1
-2
/
+2
*
FFI: Fix compiled ffi.string() semantics.
Mike Pall
2011-02-28
1
-1
/
+1
*
DUALNUM: Add integer type to core VM.
Mike Pall
2011-02-17
1
-42
/
+61
*
Bump copyright date to 2011.
Mike Pall
2011-01-09
1
-1
/
+1
*
FFI: Add cdata object type.
Mike Pall
2010-11-26
1
-2
/
+4
*
x64: Optimize internal/external tag conversion in lua_type().
Mike Pall
2010-10-11
1
-0
/
+4
*
Turn some lua_State fields into 32 bit pointers.
Mike Pall
2010-09-09
1
-2
/
+2
*
Treat the tag of a TValue as unsigned everywhere.
Mike Pall
2010-04-25
1
-3
/
+4
[next]