aboutsummaryrefslogtreecommitdiff
path: root/lfunc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* C functions and strings now go to the local list; first versionRoberto Ierusalimschy2013-08-231-2/+3
* added 'local' bit (true => object is only refered by local variables)Roberto Ierusalimschy2013-08-161-1/+3
* double-linked list of all upvalues elliminated and changed to aRoberto Ierusalimschy2013-08-071-27/+7
* no more generational collection !!!Roberto Ierusalimschy2013-08-051-2/+1
* open upvalues cannot be old if thread is not old; when thread is old,Roberto Ierusalimschy2012-10-031-2/+2
* no more 'Proto' objects on the stack. Protos are anchored on outerRoberto Ierusalimschy2012-05-081-4/+3
* object tag keeps variant bits too -> no need for 'isC' field inRoberto Ierusalimschy2012-01-201-12/+3
* typo in commentsRoberto Ierusalimschy2010-06-301-2/+2
* unused '#include' removedRoberto Ierusalimschy2010-06-101-2/+1
* Lua closures are cached for reuseRoberto Ierusalimschy2010-06-041-2/+5
* corrected some places where an old object could end up in frontRoberto Ierusalimschy2010-05-101-3/+5
* nasty GC bug: upvalue must be turned white when not keeping invariant,Roberto Ierusalimschy2010-04-291-6/+2
* 'luaC_linkupval' embedded into call siteRoberto Ierusalimschy2010-04-291-4/+10
* no more fenvs!Roberto Ierusalimschy2010-03-261-5/+3
* first version of _ENV; no more global variablesRoberto Ierusalimschy2010-03-121-2/+1
* allocator function receives the tag of object being allocated in 'osize'Roberto Ierusalimschy2009-12-171-19/+12
* macro 'ngcotouv' is the same as 'gco2uv', so it was removedRoberto Ierusalimschy2009-12-111-3/+3
* comment typosRoberto Ierusalimschy2009-11-261-2/+2
* first implementation of lexical environmentsRoberto Ierusalimschy2009-09-301-1/+3
* information about upvalues (where they come from) kept in Proto structure,Roberto Ierusalimschy2009-09-281-5/+4
* 'luaM_freearray' does not need array type as argumentRoberto Ierusalimschy2009-04-171-7/+7
* should not manipulate NULL pointers (even without accessing them)Roberto Ierusalimschy2007-02-071-3/+3
* small changes in castsRoberto Ierusalimschy2005-12-221-3/+3
* debug information for last line of a function definitionRoberto Ierusalimschy2005-05-051-2/+3
* small bugRoberto Ierusalimschy2005-04-291-5/+1
* C functions and userdata also have environmentsRoberto Ierusalimschy2005-02-181-4/+5
* cleaner way to free all objectsRoberto Ierusalimschy2005-02-101-3/+3
* better control over GC collors of upvaluesRoberto Ierusalimschy2005-01-191-3/+9
* cleaner way to remark open upvaluesRoberto Ierusalimschy2005-01-181-7/+31
* better names for `luaM_free...' macrosRoberto Ierusalimschy2004-11-241-4/+4
* new scheme for configuration through `luaconf.h'Roberto Ierusalimschy2004-04-301-1/+2
* better way to control open upvaluesRoberto Ierusalimschy2004-03-151-10/+12
* more and better tools (assertions & inspectors) to check incremental GCRoberto Ierusalimschy2004-02-161-2/+7
* `TObject' renamed to `TValue' + other name changes and better assertionsRoberto Ierusalimschy2003-12-101-10/+10
* First version of incremental GCRoberto Ierusalimschy2003-12-091-2/+3
* two different white flags (to distinguish dead elements from new ones)Roberto Ierusalimschy2003-12-031-2/+1
* macros for closure sizes are globalRoberto Ierusalimschy2003-11-241-8/+1
* gclist for upvalues must be available even when upvalue is still openRoberto Ierusalimschy2003-11-191-20/+21
* cleaner code for manipulation of `marked' fieldRoberto Ierusalimschy2003-11-171-2/+2
* it's ok to dump functions with upvaluesRoberto Ierusalimschy2003-10-201-1/+10
* avoid unecessary includes of `stdlib'Roberto Ierusalimschy2003-10-021-2/+2
* name changes to avoid name collision between macros and variablesRoberto Ierusalimschy2003-03-181-3/+3
* different variables for number of upvalues and size of upvalue arrayRoberto Ierusalimschy2003-02-111-3/+4
* new functions to manipulate upvales (get/setupvalue)Roberto Ierusalimschy2002-12-191-1/+3
* each .c file defines its own nameRoberto Ierusalimschy2002-12-041-1/+3
* documentation for write barriersRoberto Ierusalimschy2002-11-141-2/+2
* better control over GCObjectsRoberto Ierusalimschy2002-11-131-11/+12
* free prototype in (more or less) the same order it is created byRoberto Ierusalimschy2002-10-211-3/+3
* in case of memory allocation errors, sizecode and sizelineinfo canRoberto Ierusalimschy2002-10-161-3/+3
* new structure for collectable objects, sharing a common headerRoberto Ierusalimschy2002-08-301-26/+19