index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lvm.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
bug in 5.4 alpha rc1: to-be-closed x vararg functions
Roberto Ierusalimschy
2019-06-03
1
-1
/
+1
*
Details
Roberto Ierusalimschy
2019-06-03
1
-2
/
+2
*
Fixed wrong error message in 'return math.seed(0)'
Roberto Ierusalimschy
2019-04-04
1
-4
/
+6
*
Fixed small bugs/issues
Roberto Ierusalimschy
2019-03-25
1
-4
/
+8
*
Keep correct type for immediate operands in comparisons
Roberto Ierusalimschy
2019-03-22
1
-52
/
+44
*
Details in the implementation of the integer 'for' loop
Roberto Ierusalimschy
2019-03-21
1
-44
/
+43
*
New semantics for the integer 'for' loop
Roberto Ierusalimschy
2019-03-19
1
-73
/
+74
*
Optional 'init' argument to 'string.gmatch'
Roberto Ierusalimschy
2019-01-08
1
-7
/
+7
*
New functions 'lua_resetthread' and 'coroutine.kill'
Roberto Ierusalimschy
2018-12-13
1
-1
/
+1
*
Calls cannot be tail in the scope of a to-be-closed variable
Roberto Ierusalimschy
2018-12-04
1
-1
/
+1
*
A to-be-closed variable must have a closable value (or be nil)
Roberto Ierusalimschy
2018-11-29
1
-4
/
+3
*
Some bugs with stack reallocation by 'luaF_close'
Roberto Ierusalimschy
2018-11-24
1
-12
/
+9
*
Added opcodes for arithmetic with K operands
Roberto Ierusalimschy
2018-11-23
1
-0
/
+61
*
Details
Roberto Ierusalimschy
2018-11-22
1
-5
/
+7
*
To-be-closed variable in 'for' loop separated from the state
Roberto Ierusalimschy
2018-11-07
1
-11
/
+12
*
New macros for arithmetic/bitwise operations in 'luaV_execute'
Roberto Ierusalimschy
2018-11-05
1
-216
/
+152
*
Removed internal cache for closures
Roberto Ierusalimschy
2018-11-01
1
-37
/
+2
*
State in generic 'for' acts as a to-be-closed variable
Roberto Ierusalimschy
2018-10-31
1
-13
/
+28
*
Better error messages for invalid operands in numeric 'for'
Roberto Ierusalimschy
2018-10-30
1
-4
/
+4
*
More uniformity in code generation for 'for' loops
Roberto Ierusalimschy
2018-10-26
1
-0
/
+4
*
Closing methods should not interfere with returning values
Roberto Ierusalimschy
2018-10-25
1
-2
/
+4
*
Handling of memory errors when creating to-be-closed upvalues
Roberto Ierusalimschy
2018-10-18
1
-2
/
+1
*
First "complete" implementation of to-be-closed variables
Roberto Ierusalimschy
2018-10-17
1
-4
/
+3
*
Towards "to closed" local variables
Roberto Ierusalimschy
2018-10-08
1
-0
/
+6
*
Corrections in the implementation of '%' for floats.
Roberto Ierusalimschy
2018-08-28
1
-6
/
+12
*
Deprecated the emulation of '__le' using '__lt'
Roberto Ierusalimschy
2018-08-24
1
-0
/
+2
*
details
Roberto Ierusalimschy
2018-08-17
1
-6
/
+6
*
Fixed bug in OP_IDIVI
Roberto Ierusalimschy
2018-07-09
1
-2
/
+2
*
in generational mode, an emergency collection can turn any object black
Roberto Ierusalimschy
2018-06-18
1
-3
/
+3
*
field 'sizearray' in struct 'Table' changed to 'alimit', which can
Roberto Ierusalimschy
2018-06-15
1
-2
/
+2
*
no more 'luaH_emptyobject' and comparisons of addresses of global variables
Roberto Ierusalimschy
2018-06-01
1
-5
/
+5
*
new macros 'likely'/'unlikely' with hints for jump predictions
Roberto Ierusalimschy
2018-05-30
1
-11
/
+11
*
in 'luaD_poscall', there is no need to compute 'firstResult' when 'nres==0'
Roberto Ierusalimschy
2018-05-22
1
-9
/
+16
*
minimizing the code ran by 'vmfetch' + no more 'vra'
Roberto Ierusalimschy
2018-05-02
1
-113
/
+109
*
no more nil-in-table
Roberto Ierusalimschy
2018-04-04
1
-14
/
+1
*
using unsigned comparison in 'l_intfitsf' (avoids one comparison)
Roberto Ierusalimschy
2018-04-02
1
-9
/
+13
*
cannot use 'defined' inside a macro +
Roberto Ierusalimschy
2018-03-16
1
-3
/
+8
*
new experimental syntax using reserved word 'undef'
Roberto Ierusalimschy
2018-03-07
1
-1
/
+13
*
using jump tables when available
Roberto Ierusalimschy
2018-03-02
1
-1
/
+14
*
better names for macros for tags and types.
Roberto Ierusalimschy
2018-02-26
1
-5
/
+5
*
first version of empty entries in tables
Roberto Ierusalimschy
2018-02-23
1
-10
/
+11
*
conditional jumps "deunified"
Roberto Ierusalimschy
2018-02-21
1
-15
/
+28
*
new opcodes OP_GTI/OP_GEI
Roberto Ierusalimschy
2018-02-21
1
-17
/
+28
*
simpler implementation for 'LTintfloat'/'LEintfloat'
Roberto Ierusalimschy
2018-02-21
1
-45
/
+71
*
small reorganization of 'luaV_flttointeger'/'luaV_tointeger'
Roberto Ierusalimschy
2018-02-21
1
-21
/
+27
*
more generic way to handle 'gclist'
Roberto Ierusalimschy
2018-02-19
1
-3
/
+3
*
correct way to check stack space for vararg functions
Roberto Ierusalimschy
2018-02-17
1
-4
/
+4
*
some simplifications/optimizations in returns from Lua functions
Roberto Ierusalimschy
2018-02-15
1
-34
/
+26
*
vararg back to '...' (but with another implementation)
Roberto Ierusalimschy
2018-02-09
1
-13
/
+27
*
new opcode 'PREPVARARG'
Roberto Ierusalimschy
2018-02-07
1
-4
/
+19
[next]