summaryrefslogtreecommitdiff
path: root/opcode.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* lua_Reference is int, so say so.Roberto Ierusalimschy1996-04-251-4/+4
* lock mechanism seperseded by the REFERENCE mechanism.Roberto Ierusalimschy1996-04-221-20/+26
* smaller limit to stack size (otherwise C stack can finish first)v2.4-betaRoberto Ierusalimschy1996-03-221-2/+6
* a simplification about memory error messages.Roberto Ierusalimschy1996-03-211-2/+2
* better control when growing arrays.Roberto Ierusalimschy1996-03-211-7/+10
* hook variables are global, no more "lua_set...hook" functions.Roberto Ierusalimschy1996-03-201-30/+12
* functions "lua_is..." consider coercions.Roberto Ierusalimschy1996-03-191-8/+22
* unused "#include"Roberto Ierusalimschy1996-03-191-2/+1
* integration with undump (execution of pre-compiled chuncks)Roberto Ierusalimschy1996-03-151-28/+30
* small change to avoid error on "lua_pushstring(NULL)".Roberto Ierusalimschy1996-03-041-4/+9
* functions "luaI_free" and "luaI_realloc" (or macro "growvector") may beRoberto Ierusalimschy1996-02-221-5/+3
* BIG CHANGE: new data structure for constants, strings and globals, usingRoberto Ierusalimschy1996-02-121-13/+2
* new type lua_Function for activation recordsRoberto Ierusalimschy1996-02-081-5/+5
* debug interface functions to manipulated local variables:Roberto Ierusalimschy1996-02-071-3/+34
* new fallback "getglobal".Roberto Ierusalimschy1996-01-301-6/+15
* "dofile" does not issue a warning when unable to open the file,Roberto Ierusalimschy1996-01-231-6/+2
* hooks for line change and function calls; first version.Roberto Ierusalimschy1996-01-091-7/+81
* bug: luaI_findconstantbyname may change the value of lua_constant.Roberto Ierusalimschy1995-12-181-2/+3
* useless "#include math.h"v2.2Roberto Ierusalimschy1995-11-161-2/+1
* little improvementRoberto Ierusalimschy1995-11-101-5/+2
* functions now may be declared with any "var" as a name;Roberto Ierusalimschy1995-10-261-8/+3
* new method to keep debug line information: current line is stored on theRoberto Ierusalimschy1995-10-251-30/+30
* function "setfallback" now gives an error if called with wrong parameters.Roberto Ierusalimschy1995-10-171-3/+5
* new module luadebug.h.Roberto Ierusalimschy1995-10-171-3/+4
* new style for debug information about functions: no more SETFUNCTIONRoberto Ierusalimschy1995-10-171-25/+34
* new function "luaI_findconstantbyname".Roberto Ierusalimschy1995-10-131-2/+2
* bug: stack overflow error must leave space on the stack for error function.Roberto Ierusalimschy1995-10-091-5/+3
* "docall" now assumes that called function is always on the stack, justRoberto Ierusalimschy1995-10-091-75/+101
* Garbage collection of functions + header structure for functionsRoberto Ierusalimschy1995-10-041-9/+13
* small corrections to avoid warnings.Roberto Ierusalimschy1995-10-021-2/+2
* new lua function "getstack"; new interface to function luaI_reportbug.Roberto Ierusalimschy1995-05-161-6/+2
* calls to "lua_reportbug" changed to "lua_error", sinceRoberto Ierusalimschy1995-05-021-2/+7
* run-time stack now is controled at run time, instead ofWaldemar Celes1995-04-111-57/+79
* adjust checks if stack has enough spaceRoberto Ierusalimschy1995-02-101-2/+4
* header "stdlib.h" was missing (gcc does not warn that)Roberto Ierusalimschy1995-02-061-1/+2
* a null lua_Object is LUA_NOOBJECT, not NULL.Roberto Ierusalimschy1995-02-021-2/+2
* new API function lua_pushlocked & lua_checkstack is a macroWaldemar Celes1995-01-271-16/+23
* stack is indexed by integers, not Words, to allow bigger stack on 32 bit mach...Roberto Ierusalimschy1994-12-301-2/+6
* functions that no more return error codes now have return type voidRoberto Ierusalimschy1994-12-281-27/+16
* 'lua_getsubscript' and 'lua_storesubscript' now run unprotected (to improve e...Waldemar Celes1994-12-271-14/+6
* better control of integer types and their limitsRoberto Ierusalimschy1994-12-201-24/+25
* a field with value 'nil' must call the fallback 'index'Roberto Ierusalimschy1994-12-161-2/+2
* new constant LUA_NOOBJECT.Roberto Ierusalimschy1994-12-161-22/+12
* new API function 'lua_pushliteral'Roberto Ierusalimschy1994-12-131-1/+14
* opcode PUSHSELF has a parameter that indicates the method to be calledRoberto Ierusalimschy1994-12-061-2/+5
* small bug correctionRoberto Ierusalimschy1994-11-301-2/+2
* garbage collection tag for strings organized in struct TaggedStringRoberto Ierusalimschy1994-11-231-7/+7
* correction of function tonumberRoberto Ierusalimschy1994-11-221-2/+3
* fallback for "call expression not a function" errorsRoberto Ierusalimschy1994-11-211-4/+18
* fallback to unary minus is 'arith' with operation code 'unm'Roberto Ierusalimschy1994-11-211-2/+5