Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cleaner way to remark open upvalues | Roberto Ierusalimschy | 2005-01-18 | 1 | -23/+14 |
| | |||||
* | no more generational collector (and no more `noinc' mode) | Roberto Ierusalimschy | 2005-01-14 | 1 | -33/+24 |
| | |||||
* | change in hash algorithm so that it does not need empty slot | Roberto Ierusalimschy | 2005-01-05 | 1 | -4/+5 |
| | | | | (tables can be 100% full) | ||||
* | a different option for the GC | Roberto Ierusalimschy | 2004-12-13 | 1 | -5/+5 |
| | |||||
* | more options for controling the GC | Roberto Ierusalimschy | 2004-12-06 | 1 | -17/+15 |
| | |||||
* | better names for `luaM_free...' macros | Roberto Ierusalimschy | 2004-11-24 | 1 | -4/+4 |
| | |||||
* | better support for 64-bit machines | Roberto Ierusalimschy | 2004-11-24 | 1 | -2/+2 |
| | |||||
* | better control over memory-size overflows | Roberto Ierusalimschy | 2004-11-19 | 1 | -4/+4 |
| | |||||
* | bug: gc metamethod must disable GC steps (to avoid nested calls) | Roberto Ierusalimschy | 2004-10-08 | 1 | -4/+6 |
| | |||||
* | small optimization for table size in machines with double allignment | Roberto Ierusalimschy | 2004-10-06 | 1 | -2/+2 |
| | |||||
* | bug: barrier was wrong for generational phase | Roberto Ierusalimschy | 2004-09-15 | 1 | -7/+11 |
| | |||||
* | tighter tests for stack overflow | Roberto Ierusalimschy | 2004-09-08 | 1 | -7/+10 |
| | |||||
* | better control for GC cycles | Roberto Ierusalimschy | 2004-08-30 | 1 | -33/+51 |
| | |||||
* | first implementation of generational GC | Roberto Ierusalimschy | 2004-08-24 | 1 | -128/+129 |
| | |||||
* | less conservative write barrier for tables | Roberto Ierusalimschy | 2004-08-10 | 1 | -9/+25 |
| | |||||
* | new scheme for configuration through `luaconf.h' | Roberto Ierusalimschy | 2004-04-30 | 1 | -1/+2 |
| | |||||
* | reuse `sweeplist' for all lists | Roberto Ierusalimschy | 2004-03-23 | 1 | -47/+36 |
| | |||||
* | better way to control open upvalues | Roberto Ierusalimschy | 2004-03-15 | 1 | -107/+129 |
| | |||||
* | new (temporary?) API for garbage collector | Roberto Ierusalimschy | 2004-03-09 | 1 | -22/+36 |
| | |||||
* | more and better tools (assertions & inspectors) to check incremental GC | Roberto Ierusalimschy | 2004-02-16 | 1 | -22/+39 |
| | |||||
* | atomic operations are not GC "states" | Roberto Ierusalimschy | 2003-12-12 | 1 | -68/+54 |
| | |||||
* | `TObject' renamed to `TValue' + other name changes and better assertions | Roberto Ierusalimschy | 2003-12-10 | 1 | -52/+52 |
| | | | | for incremental garbage collection | ||||
* | First version of incremental GC | Roberto Ierusalimschy | 2003-12-09 | 1 | -31/+44 |
| | |||||
* | `grayagain' list | Roberto Ierusalimschy | 2003-12-04 | 1 | -1/+15 |
| | |||||
* | sweep of strings also incremental | Roberto Ierusalimschy | 2003-12-04 | 1 | -17/+35 |
| | |||||
* | two different white flags (to distinguish dead elements from new ones) | Roberto Ierusalimschy | 2003-12-03 | 1 | -36/+43 |
| | |||||
* | single list for all collectible objects, with udata separated at the | Roberto Ierusalimschy | 2003-12-03 | 1 | -10/+10 |
| | | | | end of the list | ||||
* | default metatable can be NULL | Roberto Ierusalimschy | 2003-12-01 | 1 | -4/+5 |
| | |||||
* | incremental GC phases | Roberto Ierusalimschy | 2003-12-01 | 1 | -68/+174 |
| | |||||
* | initial implementation of white/gray/black coloring | Roberto Ierusalimschy | 2003-11-19 | 1 | -36/+53 |
| | |||||
* | towards incremental GC | Roberto Ierusalimschy | 2003-11-18 | 1 | -76/+67 |
| | |||||
* | cleaner code for manipulation of `marked' field | Roberto Ierusalimschy | 2003-11-17 | 1 | -38/+32 |
| | |||||
* | parser fully reentrant(!) | Roberto Ierusalimschy | 2003-08-27 | 1 | -9/+18 |
| | |||||
* | bug: userdata to be collected still counts into new GC threshold, | Roberto Ierusalimschy | 2003-07-29 | 1 | -8/+14 |
| | | | | increasing memory consumption | ||||
* | new way to control `pc' of running functions | Roberto Ierusalimschy | 2003-07-16 | 1 | -2/+1 |
| | |||||
* | bug: C functions also may have stacks larger than current top | Roberto Ierusalimschy | 2003-07-07 | 1 | -3/+2 |
| | |||||
* | (much) smarter way to clear weak tables | Roberto Ierusalimschy | 2003-05-16 | 1 | -57/+37 |
| | |||||
* | Lua does not need all those different types... | Roberto Ierusalimschy | 2003-04-28 | 1 | -2/+2 |
| | |||||
* | warnings from several compilers (mainly typecasts when lua_Number is float) | Roberto Ierusalimschy | 2003-04-03 | 1 | -2/+3 |
| | |||||
* | name changes to avoid name collision between macros and variables | Roberto Ierusalimschy | 2003-03-18 | 1 | -23/+23 |
| | |||||
* | different variables for number of upvalues and size of upvalue array | Roberto Ierusalimschy | 2003-02-11 | 1 | -3/+3 |
| | | | | (makes code clearer) | ||||
* | resist errors in finalizers during lua_close | Roberto Ierusalimschy | 2003-02-10 | 1 | -11/+5 |
| | |||||
* | new functions to manipulate upvales (get/setupvalue) | Roberto Ierusalimschy | 2002-12-19 | 1 | -3/+5 |
| | |||||
* | each .c file defines its own name | Roberto Ierusalimschy | 2002-12-04 | 1 | -1/+3 |
| | |||||
* | avoid names `str...' (may conflict with string.h) | Roberto Ierusalimschy | 2002-12-02 | 1 | -7/+6 |
| | |||||
* | warnings from Visual C++ | Roberto Ierusalimschy | 2002-11-25 | 1 | -2/+2 |
| | |||||
* | comments | Roberto Ierusalimschy | 2002-11-22 | 1 | -2/+2 |
| | |||||
* | new macro `condhardstacktests' to control hard stack tests | Roberto Ierusalimschy | 2002-11-21 | 1 | -1/+3 |
| | |||||
* | Lua functions must have a frame or a saved pc. | Roberto Ierusalimschy | 2002-11-21 | 1 | -1/+2 |
| | |||||
* | C functions cannot increase its top without filling the stack | Roberto Ierusalimschy | 2002-11-21 | 1 | -6/+8 |
| |