index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lvm.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
More uniform implementation for tail calls
Roberto Ierusalimschy
2021-10-29
1
-14
/
+5
*
Documentation
Roberto Ierusalimschy
2021-10-11
1
-1
/
+1
*
Using 'inline' in some functions
Roberto Ierusalimschy
2021-09-15
1
-6
/
+6
*
'luaD_tryfuncTM' checks stack space by itself
Roberto Ierusalimschy
2021-08-18
1
-5
/
+6
*
Undo simplification of tail calls (commit 901d760)
Roberto Ierusalimschy
2021-08-18
1
-4
/
+17
*
Bug: Negation in 'luaV_shiftr' may overflow
Roberto Ierusalimschy
2021-07-22
1
-1
/
+1
*
Simplification in the parameters of 'luaD_precall'
Roberto Ierusalimschy
2021-06-30
1
-2
/
+2
*
C functions can be tail called, too
Roberto Ierusalimschy
2021-06-14
1
-8
/
+1
*
Simpler implementation for tail calls
Roberto Ierusalimschy
2021-06-11
1
-13
/
+7
*
Bug: yielding in '__close' mess up number of returns
Roberto Ierusalimschy
2021-04-16
1
-1
/
+11
*
Bug: Lua source should not use C99 comments ("//")
Roberto Ierusalimschy
2021-04-10
1
-2
/
+4
*
Don't use tointegerns when luaV_tointegerns will do
Roberto Ierusalimschy
2021-02-24
1
-2
/
+7
*
Details
Roberto Ierusalimschy
2021-02-24
1
-2
/
+2
*
Broadening the use of branch hints
Roberto Ierusalimschy
2021-02-24
1
-19
/
+20
*
New implementation for to-be-closed variables
Roberto Ierusalimschy
2021-02-09
1
-4
/
+2
*
Fixed some bugs around stack reallocation
Roberto Ierusalimschy
2021-02-05
1
-0
/
+2
*
Allow yields inside '__close' metamethods
Roberto Ierusalimschy
2021-01-13
1
-3
/
+7
*
Cleaner handling of errors in '__close' metamethods
Roberto Ierusalimschy
2020-12-28
1
-1
/
+1
*
Changes in the API of 'luaH_set' and related functions
Roberto Ierusalimschy
2020-12-04
1
-4
/
+1
*
Fixed wrong trace of vararg functions
Roberto Ierusalimschy
2020-10-19
1
-20
/
+25
*
No more field 'lua_State.stacksize'
Roberto Ierusalimschy
2020-10-12
1
-1
/
+1
*
Correct handling of 'luaV_execute' invocations
Roberto Ierusalimschy
2020-10-12
1
-12
/
+13
*
Revision of stackless implementation
Roberto Ierusalimschy
2020-10-12
1
-3
/
+3
*
Back to a stackless implementation
Roberto Ierusalimschy
2020-10-12
1
-7
/
+20
*
Fixed bug: invalid 'oldpc' when returning to a function
Roberto Ierusalimschy
2020-07-17
1
-1
/
+1
*
Fixed bug of access violation in finalizers
Roberto Ierusalimschy
2020-07-08
1
-4
/
+3
*
Fixed bugs of stack reallocation x GC
Roberto Ierusalimschy
2020-07-07
1
-1
/
+1
*
'luaV_concat' can "concat" one single value
Roberto Ierusalimschy
2020-07-03
1
-5
/
+4
*
Details
Roberto Ierusalimschy
2020-02-27
1
-6
/
+7
*
OP_LOADFALSE broken in two instructions
Roberto Ierusalimschy
2020-02-11
1
-1
/
+5
*
Clearer distinction between types and tags
Roberto Ierusalimschy
2020-01-31
1
-12
/
+12
*
Changed internal representation of booleans
Roberto Ierusalimschy
2020-01-06
1
-7
/
+12
*
Comment about LUA_COMPAT_LT_LE moved to proper place
Roberto Ierusalimschy
2019-12-10
1
-6
/
+3
*
Simplifications in 'op_arith*' family of macros
Roberto Ierusalimschy
2019-12-05
1
-47
/
+27
*
Using an enumeration for float->integer coercion modes
Roberto Ierusalimschy
2019-12-05
1
-14
/
+11
*
'l_mathlim' renamed to 'l_floatatt'
Roberto Ierusalimschy
2019-12-05
1
-1
/
+1
*
Better comments about the use of 'k' in opcodes
Roberto Ierusalimschy
2019-12-05
1
-11
/
+11
*
Code reorganization for opcodes OP_FORPREP and OP_FORLOOP
Roberto Ierusalimschy
2019-12-04
1
-75
/
+116
*
Details
Roberto Ierusalimschy
2019-11-18
1
-1
/
+1
*
Fixed bug in tail calls of __call chains
Roberto Ierusalimschy
2019-10-28
1
-1
/
+2
*
Fixed warnings from Keil compiler
Roberto Ierusalimschy
2019-10-25
1
-6
/
+3
*
Removed arithmetic opcodes with immediate operand
Roberto Ierusalimschy
2019-09-10
1
-24
/
+0
*
Undo change in the handling of 'L->top' (commit b80077b8f3)
Roberto Ierusalimschy
2019-08-29
1
-10
/
+9
*
Use of 'MMBIN' opcodes extended to shift operators
Roberto Ierusalimschy
2019-08-28
1
-62
/
+40
*
First version of OP_MMBIN opcodes
Roberto Ierusalimschy
2019-08-27
1
-39
/
+46
*
Fixed missing case in 'luaV_finishOp'
Roberto Ierusalimschy
2019-08-27
1
-1
/
+1
*
Fixed bug when yiedling inside OP_ADDK opcode
Roberto Ierusalimschy
2019-08-21
1
-0
/
+3
*
To-be-closed variables must be closed on initialization
Roberto Ierusalimschy
2019-07-31
1
-4
/
+2
*
Change in the handling of 'L->top' when calling metamethods
Roberto Ierusalimschy
2019-07-26
1
-20
/
+24
*
Small corrections when setting 'L->top'
Roberto Ierusalimschy
2019-07-25
1
-4
/
+3
[next]