Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | details. | Roberto Ierusalimschy | 2000-03-31 | 1 | -2/+2 |
| | |||||
* | no more special cases for closures with 0 upvalues (performance is the same, | Roberto Ierusalimschy | 2000-03-29 | 1 | -7/+1 |
| | | | | memory use a little higher, code much simpler). | ||||
* | TAG_ARRAY -> TAG_TABLE | Roberto Ierusalimschy | 2000-03-27 | 1 | -3/+3 |
| | |||||
* | some name changes | Roberto Ierusalimschy | 2000-03-10 | 1 | -15/+15 |
| | |||||
* | many details (most by lhf). | Roberto Ierusalimschy | 2000-03-03 | 1 | -2/+2 |
| | |||||
* | small changes for "clean C" | Roberto Ierusalimschy | 2000-02-08 | 1 | -2/+2 |
| | |||||
* | new ttypes to distinguish between C closures and Lua closures. | Roberto Ierusalimschy | 1999-12-23 | 1 | -3/+3 |
| | |||||
* | keep it simple | Roberto Ierusalimschy | 1999-12-07 | 1 | -44/+14 |
| | |||||
* | table sizes don't need to be primes; power of 2 gives the same performance. | Roberto Ierusalimschy | 1999-11-26 | 1 | -6/+8 |
| | |||||
* | first implementation of multiple states (reentrant code). | Roberto Ierusalimschy | 1999-11-22 | 1 | -39/+41 |
| | |||||
* | ways to measure number of `blocks' for GC + details | Roberto Ierusalimschy | 1999-11-10 | 1 | -6/+6 |
| | |||||
* | invariant tests over tables performed externally, through a built-in | Roberto Ierusalimschy | 1999-10-26 | 1 | -41/+4 |
| | | | | function (when DEBUG is ion). | ||||
* | warnings from Visual C++ | Roberto Ierusalimschy | 1999-10-19 | 1 | -2/+2 |
| | |||||
* | new implementation of hash tables. | Roberto Ierusalimschy | 1999-10-14 | 1 | -73/+198 |
| | |||||
* | simplified version of `gc' tag method (only for userdata now). | Roberto Ierusalimschy | 1999-10-04 | 1 | -14/+11 |
| | |||||
* | "luaH_set" only needs to check size when key is new | Roberto Ierusalimschy | 1999-09-22 | 1 | -24/+18 |
| | |||||
* | "const" !!! | Roberto Ierusalimschy | 1999-08-16 | 1 | -7/+7 |
| | |||||
* | some C compilers cannot initialize a local struct | Roberto Ierusalimschy | 1999-05-21 | 1 | -2/+3 |
| | |||||
* | new function "lua_next" (+ new implementation for "next") | Roberto Ierusalimschy | 1999-02-23 | 1 | -23/+5 |
| | |||||
* | luaH_set does the set and protect its value; luaH_move can then be a | Roberto Ierusalimschy | 1999-01-25 | 1 | -31/+16 |
| | | | | | macro. New algorithm for double hashing (does not use "%"). | ||||
* | table entries with ref=null always have val=null too. | Roberto Ierusalimschy | 1999-01-25 | 1 | -28/+15 |
| | |||||
* | small optimizations(?) | Roberto Ierusalimschy | 1999-01-22 | 1 | -49/+36 |
| | |||||
* | function "move" for tables is better implemented with some "inside | Roberto Ierusalimschy | 1999-01-04 | 1 | -1/+11 |
| | | | | information". | ||||
* | tables are better manipulated via "Hash *" instead of "TObject" or | Roberto Ierusalimschy | 1998-12-30 | 1 | -6/+3 |
| | | | | "lua_Object". | ||||
* | small bug: nuse may change when table is rehashed; | Roberto Ierusalimschy | 1998-08-11 | 1 | -11/+10 |
| | | | | 3/2 is a good fraction for hash limit (instead of 0.7, using floats) | ||||
* | hash tables may shrink if use rate is too small. | Roberto Ierusalimschy | 1998-08-10 | 1 | -7/+3 |
| | |||||
* | auxiliar functions "luaH_setint" & "luaH_getint". | Roberto Ierusalimschy | 1998-07-12 | 1 | -2/+19 |
| | |||||
* | tables can become full of "emptys" slots, and keep growing without limits. | Roberto Ierusalimschy | 1998-01-28 | 1 | -17/+17 |
| | |||||
* | small optimizations (?) | Roberto Ierusalimschy | 1998-01-13 | 1 | -2/+3 |
| | |||||
* | small optimizations in switch order | Roberto Ierusalimschy | 1998-01-09 | 1 | -5/+5 |
| | |||||
* | optimization: closures without upvalues don't need to be closures | Roberto Ierusalimschy | 1997-12-15 | 1 | -2/+8 |
| | |||||
* | details (mainly error messages) | Roberto Ierusalimschy | 1997-12-09 | 1 | -2/+2 |
| | |||||
* | small modifications (format, small optimizations, etc) | Roberto Ierusalimschy | 1997-11-21 | 1 | -2/+2 |
| | |||||
* | first implementation of centralized global state. | Roberto Ierusalimschy | 1997-11-19 | 1 | -8/+6 |
| | |||||
* | first version of Cclosures. | Roberto Ierusalimschy | 1997-10-24 | 1 | -4/+1 |
| | |||||
* | GC now considers an "estimate" of object size, instead of just the number | Roberto Ierusalimschy | 1997-10-23 | 1 | -6/+11 |
| | | | | of objects. | ||||
* | macro "val" should live together with macro "ref". | Roberto Ierusalimschy | 1997-10-18 | 1 | -2/+1 |
| | |||||
* | better way to traverse GCnode lists. | Roberto Ierusalimschy | 1997-09-26 | 1 | -11/+3 |
| | |||||
* | Lua tables (hash) | Roberto Ierusalimschy | 1997-09-16 | 1 | -0/+218 |