aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* better control for number of finalizers called at each GC cycleRoberto Ierusalimschy2014-02-134-31/+52
| | | | (increases progressively)
* no more local collectionRoberto Ierusalimschy2014-02-1310-263/+69
|
* new field '__name' in metatables to help better error messagesRoberto Ierusalimschy2014-02-111-3/+11
|
* detail (better presentation for 'luaC_step')Roberto Ierusalimschy2014-02-111-12/+11
|
* keep a single list of objects to be finalized (with local and non-localRoberto Ierusalimschy2014-02-115-60/+37
| | | | objects), to ensure finalization order
* added proper headers for a standard lib fileRoberto Ierusalimschy2014-02-061-4/+11
|
* C++ needs casts for arithmetic with enumsRoberto Ierusalimschy2014-02-061-3/+3
|
* new library: utf8Roberto Ierusalimschy2014-02-064-6/+244
|
* UTF-8 encoding exported as format '%U' in 'lua_pushfstring'Roberto Ierusalimschy2014-02-063-21/+37
|
* insertion of ".0" in floats with integer values done by "luaL_tolstring",Roberto Ierusalimschy2014-02-052-17/+15
| | | | not by the core
* still accepts initial '=' for expressions, for compatibility with oldRoberto Ierusalimschy2014-02-051-2/+5
| | | | versions (and old habits...)
* added support for UTF-8 escapesRoberto Ierusalimschy2014-02-041-11/+45
|
* simpler way to create messages for errors in escape sequencesRoberto Ierusalimschy2014-01-312-28/+33
|
* no more 'L' in macros "luai_num*" (several places that use those macrosRoberto Ierusalimschy2014-01-276-40/+40
| | | | cannot throw errors anyway...)
* commentRoberto Ierusalimschy2014-01-271-2/+2
|
* larger limit + better error messages for loop detection in inheritanceRoberto Ierusalimschy2014-01-221-4/+4
|
* added explicit default options to string.pack/unpack functionsRoberto Ierusalimschy2014-01-091-5/+9
|
* first implementation for string.pack/unpackfloat + try not to assumeRoberto Ierusalimschy2014-01-081-14/+97
| | | | that chars have 8 bits
* first implementation of string.packint/string.unpackintRoberto Ierusalimschy2014-01-051-1/+124
|
* 'arg' arguments (previously called 'narg', 'nArg', 'numArg', etc.)Roberto Ierusalimschy2014-01-052-61/+61
| | | | renamed all to 'arg'
* first implementation of '<<', '>>', and '~' (bitwise not)Roberto Ierusalimschy2013-12-3015-49/+139
|
* small change in handling of unary operationsRoberto Ierusalimschy2013-12-181-14/+13
|
* first implementation of bitwise operators '&' (band), '|' (bor),Roberto Ierusalimschy2013-12-1811-47/+122
| | | | and '~' (bxor)
* new order for binary operations (grouping them by type of result)Roberto Ierusalimschy2013-12-169-35/+41
|
* integer exponentiation with negative exponent is invalidRoberto Ierusalimschy2013-12-164-30/+32
|
* new "calculator mode"; no need to add '=' to print expressionsRoberto Ierusalimschy2013-12-161-18/+40
|
* detailsRoberto Ierusalimschy2013-12-131-17/+13
|
* use goto to implement a tail call in 'reallymarkobject'Roberto Ierusalimschy2013-12-131-4/+9
|
* 'lua_sethook' returns voidRoberto Ierusalimschy2013-12-092-5/+4
|
* detail ('ttisuserdata' renamed to 'ttisfulluserdata')Roberto Ierusalimschy2013-12-042-7/+7
|
* details (comments)Roberto Ierusalimschy2013-11-211-2/+2
|
* new bug: Resuming the running coroutine makes it unyieldableRoberto Ierusalimschy2013-11-081-2/+32
|
* bug: attempting to resume the running coroutine makes it unyieldableRoberto Ierusalimschy2013-11-081-2/+3
|
* added patch for last bugRoberto Ierusalimschy2013-11-081-2/+28
|
* new macro 'luai_userstateclose' (to test it is being called correctly)Roberto Ierusalimschy2013-11-081-1/+3
|
* bug: should call 'luai_userstateclose' only when 'luai_userstateopen'Roberto Ierusalimschy2013-11-081-6/+8
| | | | has been called before
* "./?/init.lua" added to default pathRoberto Ierusalimschy2013-10-101-3/+5
|
* detail (changing some names of macros)Roberto Ierusalimschy2013-10-072-17/+17
|
* CallInfo lists shrinks together with their associated stacksRoberto Ierusalimschy2013-09-174-6/+29
|
* GC local pause configurableRoberto Ierusalimschy2013-09-136-35/+41
|
* detail (setmetatable do not need to use a back GC barrier)Roberto Ierusalimschy2013-09-112-7/+3
|
* type of 'refcount' changed to lu_mem (to ensure there will be noRoberto Ierusalimschy2013-09-111-2/+2
| | | | overflows)
* check for shrinking string table done only at the end of a GC cycleRoberto Ierusalimschy2013-09-112-8/+11
|
* new names and better order for GC states (sweep first lists thatRoberto Ierusalimschy2013-09-113-30/+30
| | | | can have dead objects)
* threads are kept in a separated GC list, linked after the main threadRoberto Ierusalimschy2013-09-115-47/+47
|
* detail: 'sweepstep' checks end of phase after calling 'sweeplist', soRoberto Ierusalimschy2013-09-111-6/+7
| | | | that phases with small lists return 0 at the first call to 'sweepstep'
* objects in list 'tobefnz' have a GC life-cycle like all othersRoberto Ierusalimschy2013-09-113-17/+21
| | | | (specifically they are cleaned during sweep phase)
* 'luaC_newobj' does not handle special cases; only special caseRoberto Ierusalimschy2013-09-116-35/+31
| | | | now is threads, which do not use 'luaC_newobj' anymore.
* more invariants added to memory checkRoberto Ierusalimschy2013-09-111-3/+4
|
* back to open hashing for the string table (but with a differentRoberto Ierusalimschy2013-09-055-92/+61
| | | | | 'hnext' field, to strings are still collected like all other objects)