summaryrefslogtreecommitdiff
path: root/ldebug.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 'proto->source' may be NULL (if dump strips debug information)Roberto Ierusalimschy2010-10-111-5/+11
|
* name "_ENV" configurable through 'luaconf.h'Roberto Ierusalimschy2010-09-071-2/+2
|
* 'getlocal' gets information about parameters of Lua functionsRoberto Ierusalimschy2010-06-211-6/+15
|
* 'what' may be NULL in 'kname'Roberto Ierusalimschy2010-06-161-2/+2
|
* first implementation of light C functionsRoberto Ierusalimschy2010-04-141-15/+17
|
* macro 'eqstr' was being used to compare non-string entitiesRoberto Ierusalimschy2010-04-081-2/+2
|
* new macro 'eqstr'Roberto Ierusalimschy2010-04-051-6/+6
|
* '_ENV' name permanently stored in global state for easier accessRoberto Ierusalimschy2010-03-131-2/+2
|
* first version of _ENV; no more global variablesRoberto Ierusalimschy2010-03-121-21/+27
|
* when finding a 'name' for a function, handle the case when the functionRoberto Ierusalimschy2010-03-051-2/+5
| | | | is a for iterator
* new instructions to optimize indexing on upvaluesRoberto Ierusalimschy2010-02-261-9/+26
|
* "no value" added to array luaT_typenames + occurrences of "userdata"Roberto Ierusalimschy2010-01-131-5/+5
| | | | in that array unified in a single address
* removed useless initializationRoberto Ierusalimschy2010-01-111-2/+2
|
* new debug info 'isvararg' and 'nparams'Roberto Ierusalimschy2010-01-061-1/+9
|
* detailsRoberto Ierusalimschy2009-12-011-3/+7
|
* detail in 'currentpc' (only needs to work for Lua functions)Roberto Ierusalimschy2009-11-261-8/+4
|
* new scheme for debug info about tail calls: no more 'fake' stack entries,Roberto Ierusalimschy2009-11-251-32/+10
| | | | but stack entry knows whether it was tail called
* two small bugs: 'debug.getinfo' did not consider negative indices as outRoberto Ierusalimschy2009-10-131-8/+10
| | | | of range + 'debug.[gs]etlocal' crash on tail calls
* information about upvalues (where they come from) kept in Proto structure,Roberto Ierusalimschy2009-09-281-8/+3
| | | | instead of sequence of pseudo-opcodes after OP_CLOSURE
* handle extended opcodes (with OP_EXTRAARG) when checking metamethodRoberto Ierusalimschy2009-09-281-1/+3
| | | | calls
* limit of constants per function changed to 2^26 using extra argumentsRoberto Ierusalimschy2009-09-231-2/+4
| | | | to opcodes LOADK, GETGLOBAL, and SETGLOBAL
* luaH_[gs]etnum renamed to luaH_[gs]etint (as they only accept integers,Roberto Ierusalimschy2009-08-071-2/+2
| | | | not generic numbers)
* 'getline' renamed to 'getfuncline' (to avoid problems with POSIX)Roberto Ierusalimschy2009-06-101-2/+2
|
* no more L->base + ci->base only for Lua functions (C functions may useRoberto Ierusalimschy2009-06-011-26/+29
| | | | 'func')
* 'symbexec' merged with 'getobjname' (as only use for symbolic executionRoberto Ierusalimschy2009-05-041-103/+78
| | | | now is to find a "good" name for an object)
* no more code checkingRoberto Ierusalimschy2009-04-301-122/+5
|
* unused arguments removedRoberto Ierusalimschy2009-04-271-9/+9
|
* several small improvements based on 'ci' being fixed now (includingRoberto Ierusalimschy2009-04-171-5/+3
| | | | erasing savedpc from lua_State)
* 'CallInfo' stack implemented as double-linked list instead of an arrayRoberto Ierusalimschy2009-04-171-12/+12
|
* no more support for old-style varargsRoberto Ierusalimschy2009-03-261-5/+3
|
* yielding across lua_call (first version)Roberto Ierusalimschy2009-03-101-2/+2
|
* initial separation, in CallInfo, of what is relevant only to LuaRoberto Ierusalimschy2009-03-041-3/+3
| | | | functions or only to C functions
* generic for coded as two dedicated instructions to simplify resumptionRoberto Ierusalimschy2008-10-301-2/+4
|
* better control of call status through CallInfoRoberto Ierusalimschy2008-08-261-2/+2
|
* useless #define removed (pointed by lint)Roberto Ierusalimschy2008-07-031-4/+1
|
* bugs: precheck must use check (instead of assert) and ensures thatRoberto Ierusalimschy2008-04-021-6/+5
| | | | code size is at least 1
* SETLIST extra argument now is an "instruction" (OP_EXTRAARG)Roberto Ierusalimschy2008-04-021-11/+7
|
* bug: wrong error message in some concatenationsRoberto Ierusalimschy2007-05-291-3/+3
|
* better names for metamethods in debug informationRoberto Ierusalimschy2007-05-091-5/+29
|
* detailRoberto Ierusalimschy2007-03-261-3/+2
|
* detailRoberto Ierusalimschy2006-11-221-2/+3
|
* avoid local "pc" in interpreter loop (tricky optimization with no real gain)Roberto Ierusalimschy2006-09-191-1/+2
|
* avoid trailing white spacesRoberto Ierusalimschy2006-09-111-2/+2
|
* wrong message error in some cases involving closuresRoberto Ierusalimschy2006-08-071-4/+6
|
* emergency garbage collector (core forces a GC when allocation fails)Roberto Ierusalimschy2006-07-111-7/+10
|
* small changes in castsRoberto Ierusalimschy2005-12-221-4/+4
|
* lua_getlocal/setlocal work also for C locals and temporariesRoberto Ierusalimschy2005-11-011-26/+25
|
* detailsRoberto Ierusalimschy2005-10-061-3/+3
|
* a small bugRoberto Ierusalimschy2005-08-041-1/+2
|
* warnings Visual CRoberto Ierusalimschy2005-07-111-3/+3
|