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
/
lgc.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
includes counts from 'sweeptolive' in cost of atomic step
Roberto Ierusalimschy
2012-05-31
1
-8
/
+15
*
small bug in error handling of finalizers (cannot call lua_tostring
Roberto Ierusalimschy
2012-05-31
1
-27
/
+45
*
bug: object being moved to 'finobj' list might not be sweeped by
Roberto Ierusalimschy
2012-05-30
1
-4
/
+7
*
only count in 'atomic' objects marked for the first time
Roberto Ierusalimschy
2012-05-29
1
-5
/
+8
*
more efficient way to apply 'stepmul' + some changes in GC parameters
Roberto Ierusalimschy
2012-05-28
1
-18
/
+29
*
definition of 'GCSTEPSIZE' moved to header file + small changes
Roberto Ierusalimschy
2012-05-23
1
-5
/
+2
*
detail ('char' should be 'const char')
Roberto Ierusalimschy
2012-05-22
1
-2
/
+2
*
merge of fields 'lastmajormem' (used in gen. mode) and 'estimate'
Roberto Ierusalimschy
2012-05-22
1
-8
/
+9
*
try to avoid sweeping new objects created with new white (and
Roberto Ierusalimschy
2012-05-22
1
-24
/
+38
*
simpler macro 'luaC_condGC' + better 'step' in 'lua_gc' +
Roberto Ierusalimschy
2012-05-21
1
-6
/
+24
*
revamp of the GC pace control; more like 5.1: any X Kbytes allocated
Roberto Ierusalimschy
2012-05-20
1
-96
/
+117
*
removed 'stringmark' trick
Roberto Ierusalimschy
2012-05-14
1
-25
/
+19
*
test for whether collector is running moved from function to
Roberto Ierusalimschy
2012-05-11
1
-11
/
+3
*
no more 'Proto' objects on the stack. Protos are anchored on outer
Roberto Ierusalimschy
2012-05-08
1
-2
/
+1
*
first implementation of long strings
Roberto Ierusalimschy
2012-01-25
1
-10
/
+16
*
Lua never uses Ã'assert' (it is always 'lua_assert')
Roberto Ierusalimschy
2012-01-23
1
-2
/
+2
*
object tag keeps variant bits too -> no need for 'isC' field in
Roberto Ierusalimschy
2012-01-20
1
-23
/
+41
*
error message: "tag method" -> "metamethod"
Roberto Ierusalimschy
2011-12-02
1
-4
/
+4
*
avoid some warnings about converting 32-bit shifts into 64-bit results
Roberto Ierusalimschy
2011-11-28
1
-6
/
+12
*
'luaC_separateudata' renamed to 'separatetobefnz' and called only
Roberto Ierusalimschy
2011-10-03
1
-10
/
+9
*
retraverse all gray lists together to avoid traversing some weak
Roberto Ierusalimschy
2011-10-03
1
-14
/
+34
*
dead objects are not collectable.
Roberto Ierusalimschy
2011-09-24
1
-3
/
+4
*
better(?) scheme for cleaning weak tables; all ressurected objects
Roberto Ierusalimschy
2011-09-24
1
-18
/
+44
*
avoid clearing ephemeron tables that have nothing to be cleaned
Roberto Ierusalimschy
2011-09-19
1
-13
/
+17
*
macro 'checkconsistency' moved to this file, as it is used only
Roberto Ierusalimschy
2011-05-05
1
-1
/
+5
*
full collection does not restart collector + avoid changing GC
Roberto Ierusalimschy
2010-12-29
1
-12
/
+20
*
change in the relationship between totalbytes and GCdebt - luaM_realloc_
Roberto Ierusalimschy
2010-12-20
1
-10
/
+13
*
better control for GC running or stopped
Roberto Ierusalimschy
2010-12-20
1
-9
/
+12
*
'micro' bug: when closing state, old objects are finalized (breaking
Roberto Ierusalimschy
2010-12-03
1
-5
/
+8
*
finalizers (__gc) for tables
Roberto Ierusalimschy
2010-11-26
1
-36
/
+36
*
corrected warnings from different compilers (mostly casts and small
Roberto Ierusalimschy
2010-10-25
1
-2
/
+2
*
new parameter 'majorinc' to control frequency of major collections
Roberto Ierusalimschy
2010-09-03
1
-2
/
+2
*
typo in comments
Roberto Ierusalimschy
2010-06-30
1
-2
/
+2
*
macro 'key2tal' replaced by 'gkey' (as both were equal)
Roberto Ierusalimschy
2010-06-25
1
-3
/
+3
*
better barrier for prototypes
Roberto Ierusalimschy
2010-06-07
1
-28
/
+20
*
Lua closures are cached for reuse
Roberto Ierusalimschy
2010-06-04
1
-8
/
+42
*
bug: generational collection was not running collector! (must write
Roberto Ierusalimschy
2010-06-02
1
-2
/
+3
*
really stop collection during finalizers
Roberto Ierusalimschy
2010-05-17
1
-2
/
+2
*
avoid "strong" cast
Roberto Ierusalimschy
2010-05-11
1
-2
/
+3
*
corrected some places where an old object could end up in front
Roberto Ierusalimschy
2010-05-10
1
-5
/
+4
*
new macro 'resetoldbit'
Roberto Ierusalimschy
2010-05-10
1
-6
/
+6
*
avoid 'else assert' (which may result in an empty else)
Roberto Ierusalimschy
2010-05-07
1
-4
/
+4
*
bug: incremental sweep was not cleaning old bits (as it stopped in the
Roberto Ierusalimschy
2010-05-07
1
-28
/
+28
*
some cleaning in 'sweeplist' (threads do not need to be traversed
Roberto Ierusalimschy
2010-05-06
1
-28
/
+29
*
new function 'luaC_changemode' +
Roberto Ierusalimschy
2010-05-05
1
-13
/
+42
*
better documentation of GC costs
Roberto Ierusalimschy
2010-05-05
1
-12
/
+26
*
full GC must run finalizers only after finishing everything else
Roberto Ierusalimschy
2010-05-04
1
-5
/
+5
*
no need of a KGC_FORCED collection kind; it has the same behavior of
Roberto Ierusalimschy
2010-05-03
1
-5
/
+4
*
no more 'finalize' phase in GC; finalizers are called along the
Roberto Ierusalimschy
2010-05-03
1
-25
/
+28
*
items in 'tobefnz' are kept black (as before recent change) and changed
Roberto Ierusalimschy
2010-05-03
1
-8
/
+11
[next]