Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | field 'reserved' -> 'extra' (may be used for other purposes too) | Roberto Ierusalimschy | 2012-01-23 | 1 | -1/+1 | |
| | ||||||
* | new macro 'checktype' | Roberto Ierusalimschy | 2012-01-20 | 1 | -2/+8 | |
| | ||||||
* | object tag keeps variant bits too -> no need for 'isC' field in | Roberto Ierusalimschy | 2012-01-20 | 1 | -5/+7 | |
| | | | | Closures + more strick typing for closure variants | |||||
* | extra comments about what fields are optional debug information | Roberto Ierusalimschy | 2011-10-31 | 1 | -4/+4 | |
| | ||||||
* | more macros to try to make NaN trick work with other sizes of | Roberto Ierusalimschy | 2011-10-17 | 1 | -17/+39 | |
| | | | | | IEEE float numbers. (It has not been tested with such different sizes...) | |||||
* | dead objects are not collectable. | Roberto Ierusalimschy | 2011-09-24 | 1 | -3/+5 | |
| | ||||||
* | NILCONSTANT also depends no endianess (with NaN trick) | Roberto Ierusalimschy | 2011-07-04 | 1 | -4/+4 | |
| | ||||||
* | configuration for NaN trick big-endian + macro 'luai_checknum' to | Roberto Ierusalimschy | 2011-06-13 | 1 | -2/+19 | |
| | | | | | ensure numbers comming from C are not "improper" (some kinds of signaling NaNs) | |||||
* | macro 'NNMARK' (mark for non-number values using the NaN trick) | Roberto Ierusalimschy | 2011-06-09 | 1 | -4/+6 | |
| | ||||||
* | first version with 'NANTRICK' (packing all Lua values inside a 'double') | Roberto Ierusalimschy | 2011-06-07 | 1 | -15/+103 | |
| | ||||||
* | stricter control (using tag variants) over closure kinds (Lua x C) | Roberto Ierusalimschy | 2011-06-02 | 1 | -15/+32 | |
| | ||||||
* | yet another macro ('num_') | Roberto Ierusalimschy | 2011-05-31 | 1 | -4/+5 | |
| | ||||||
* | no need for two different implementations for equality (one raw and | Roberto Ierusalimschy | 2011-05-31 | 1 | -2/+2 | |
| | | | | one with metamethods) | |||||
* | yet another macro abstracting TValue representation | Roberto Ierusalimschy | 2011-05-26 | 1 | -12/+13 | |
| | ||||||
* | new macro 'lua_longassert' that is equivalent to an assertion without | Roberto Ierusalimschy | 2011-05-05 | 1 | -4/+3 | |
| | | | | | a stringfication of the condition, to avoid too long string literals (limited by C90 to ~510 characters) | |||||
* | new macros abstracting TValue representation (to easy change to | Roberto Ierusalimschy | 2011-05-05 | 1 | -43/+48 | |
| | | | | other representations) | |||||
* | detail in assertion | Roberto Ierusalimschy | 2011-05-04 | 1 | -2/+2 | |
| | ||||||
* | more complete (and hopefuly more correct) handling of 'sizeof(char)' | Roberto Ierusalimschy | 2011-05-03 | 1 | -3/+3 | |
| | ||||||
* | cleaner scheme of bits for variant types (light C functions) and | Roberto Ierusalimschy | 2011-04-07 | 1 | -33/+47 | |
| | | | | collectable types | |||||
* | all names used internally by macros end with '_' | Roberto Ierusalimschy | 2011-04-05 | 1 | -28/+28 | |
| | ||||||
* | small problems with 'luaone.c' | Roberto Ierusalimschy | 2011-02-28 | 1 | -1/+6 | |
| | ||||||
* | prototype for 'luaO_ceillog2' was different from definition | Roberto Ierusalimschy | 2011-01-07 | 1 | -2/+2 | |
| | ||||||
* | 'hexafloat' moved to 'lobject.c' (hexa conversion needs it too) | Roberto Ierusalimschy | 2010-12-10 | 1 | -1/+2 | |
| | ||||||
* | detection of erroneous numeric strings with \0 (such as "1\0") | Roberto Ierusalimschy | 2010-12-06 | 1 | -2/+2 | |
| | ||||||
* | finalizers (__gc) for tables | Roberto Ierusalimschy | 2010-11-26 | 1 | -1/+5 | |
| | ||||||
* | several new comments | Roberto Ierusalimschy | 2010-07-26 | 1 | -27/+43 | |
| | ||||||
* | Lua closures are cached for reuse | Roberto Ierusalimschy | 2010-06-04 | 1 | -1/+2 | |
| | ||||||
* | slightly better definition for 'changenvalue' | Roberto Ierusalimschy | 2010-05-07 | 1 | -3/+2 | |
| | ||||||
* | "light C function" is a better name than "C-function pointer" | Roberto Ierusalimschy | 2010-04-18 | 1 | -6/+6 | |
| | ||||||
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -9/+30 | |
| | ||||||
* | new macro LUA_NUMTAGS | Roberto Ierusalimschy | 2010-04-12 | 1 | -10/+4 | |
| | ||||||
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 1 | -3/+2 | |
| | ||||||
* | first version of _ENV; no more global variables | Roberto Ierusalimschy | 2010-03-12 | 1 | -2/+1 | |
| | ||||||
* | 'setobj' must assing fields one by one, to allow trick of using | Roberto Ierusalimschy | 2010-01-08 | 1 | -3/+5 | |
| | | | | pad space in table keys | |||||
* | new macros 'LUAI_DDEC'/'LUAI_DDEF' to better control declarations and | Roberto Ierusalimschy | 2009-11-19 | 1 | -2/+2 | |
| | | | | definitions of non-static variables | |||||
* | several small changes to simplify changing TValue if needed | Roberto Ierusalimschy | 2009-11-06 | 1 | -19/+17 | |
| | ||||||
* | better control over accesses to TValue fields | Roberto Ierusalimschy | 2009-11-05 | 1 | -28/+31 | |
| | ||||||
* | first implementation of lexical environments | Roberto Ierusalimschy | 2009-09-30 | 1 | -1/+2 | |
| | ||||||
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -4/+12 | |
| | | | | instead of sequence of pseudo-opcodes after OP_CLOSURE | |||||
* | new macro 'getproto' | Roberto Ierusalimschy | 2009-07-15 | 1 | -1/+2 | |
| | ||||||
* | new macro 'changenvalue' | Roberto Ierusalimschy | 2009-06-18 | 1 | -1/+4 | |
| | ||||||
* | new function 'luaO_arith' to perform basic arithmetic operations | Roberto Ierusalimschy | 2009-06-17 | 1 | -1/+2 | |
| | ||||||
* | no more support for old-style varargs | Roberto Ierusalimschy | 2009-03-26 | 1 | -7/+1 | |
| | ||||||
* | bug: string at the end of TString must consider the entire TString | Roberto Ierusalimschy | 2008-08-05 | 1 | -2/+2 | |
| | | | | entity, not only its 'tsv' part | |||||
* | 'ceillog2' now is exported (other modules may need it) | Roberto Ierusalimschy | 2008-01-30 | 1 | -1/+2 | |
| | ||||||
* | luaO_log2 can be private to ltable.c | Roberto Ierusalimschy | 2007-04-10 | 1 | -4/+1 | |
| | ||||||
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 1 | -2/+2 | |
| | ||||||
* | unused macro removed | Roberto Ierusalimschy | 2006-01-18 | 1 | -4/+1 | |
| | ||||||
* | avoids type punning for table keys | Roberto Ierusalimschy | 2006-01-10 | 1 | -5/+9 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2005-10-24 | 1 | -2/+2 | |
| |