Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | useless "#include math.h"v2.2 | Roberto Ierusalimschy | 1995-11-16 | 1 | -2/+1 |
| | |||||
* | little improvement | Roberto Ierusalimschy | 1995-11-10 | 1 | -5/+2 |
| | |||||
* | functions now may be declared with any "var" as a name; | Roberto Ierusalimschy | 1995-10-26 | 1 | -8/+3 |
| | | | | | therefore they do not have a "baptism" name. Changes in debug API to acomodate that. | ||||
* | new method to keep debug line information: current line is stored on the | Roberto Ierusalimschy | 1995-10-25 | 1 | -30/+30 |
| | | | | | Lua stack, just below (new) base, with tag LUA_T_LINE. SETLINE opcodes are generated by lex. | ||||
* | function "setfallback" now gives an error if called with wrong parameters. | Roberto Ierusalimschy | 1995-10-17 | 1 | -3/+5 |
| | |||||
* | new module luadebug.h. | Roberto Ierusalimschy | 1995-10-17 | 1 | -3/+4 |
| | |||||
* | new style for debug information about functions: no more SETFUNCTION | Roberto Ierusalimschy | 1995-10-17 | 1 | -25/+34 |
| | | | | | | | | opcodes. When a function is called, its entry in the stack is marked with LUA_T_(C)MARK, so function 'luaD_stackedfunction' can find it if needed. Functions now have their file names in the headers, so there is no need of 'addfile' and the like. | ||||
* | new function "luaI_findconstantbyname". | Roberto Ierusalimschy | 1995-10-13 | 1 | -2/+2 |
| | |||||
* | bug: stack overflow error must leave space on the stack for error function. | Roberto Ierusalimschy | 1995-10-09 | 1 | -5/+3 |
| | |||||
* | "docall" now assumes that called function is always on the stack, just | Roberto Ierusalimschy | 1995-10-09 | 1 | -75/+101 |
| | | | | | | below "base". That gives more regularity for the stack shape, and prevents fallbacks of being garbage collected if they are redefined during execution. | ||||
* | Garbage collection of functions + header structure for functions | Roberto Ierusalimschy | 1995-10-04 | 1 | -9/+13 |
| | |||||
* | small corrections to avoid warnings. | Roberto Ierusalimschy | 1995-10-02 | 1 | -2/+2 |
| | |||||
* | new lua function "getstack"; new interface to function luaI_reportbug. | Roberto Ierusalimschy | 1995-05-16 | 1 | -6/+2 |
| | |||||
* | calls to "lua_reportbug" changed to "lua_error", since | Roberto Ierusalimschy | 1995-05-02 | 1 | -2/+7 |
| | | | | "lua_reportbug" is only an internal function to build debug information | ||||
* | run-time stack now is controled at run time, instead of | Waldemar Celes | 1995-04-11 | 1 | -57/+79 |
| | | | | compilation time. | ||||
* | adjust checks if stack has enough space | Roberto Ierusalimschy | 1995-02-10 | 1 | -2/+4 |
| | |||||
* | header "stdlib.h" was missing (gcc does not warn that) | Roberto Ierusalimschy | 1995-02-06 | 1 | -1/+2 |
| | |||||
* | a null lua_Object is LUA_NOOBJECT, not NULL. | Roberto Ierusalimschy | 1995-02-02 | 1 | -2/+2 |
| | |||||
* | new API function lua_pushlocked & lua_checkstack is a macro | Waldemar Celes | 1995-01-27 | 1 | -16/+23 |
| | |||||
* | stack is indexed by integers, not Words, to allow bigger stack on 32 bit ↵ | Roberto Ierusalimschy | 1994-12-30 | 1 | -2/+6 |
| | | | | machines | ||||
* | functions that no more return error codes now have return type void | Roberto Ierusalimschy | 1994-12-28 | 1 | -27/+16 |
| | |||||
* | 'lua_getsubscript' and 'lua_storesubscript' now run unprotected (to improve ↵ | Waldemar Celes | 1994-12-27 | 1 | -14/+6 |
| | | | | efficiency) | ||||
* | better control of integer types and their limits | Roberto Ierusalimschy | 1994-12-20 | 1 | -24/+25 |
| | |||||
* | a field with value 'nil' must call the fallback 'index' | Roberto Ierusalimschy | 1994-12-16 | 1 | -2/+2 |
| | |||||
* | new constant LUA_NOOBJECT. | Roberto Ierusalimschy | 1994-12-16 | 1 | -22/+12 |
| | | | | | 'lua_createtable' does not have parameters. 'lua_copystring' now is a macro | ||||
* | new API function 'lua_pushliteral' | Roberto Ierusalimschy | 1994-12-13 | 1 | -1/+14 |
| | |||||
* | opcode PUSHSELF has a parameter that indicates the method to be called | Roberto Ierusalimschy | 1994-12-06 | 1 | -2/+5 |
| | |||||
* | small bug correction | Roberto Ierusalimschy | 1994-11-30 | 1 | -2/+2 |
| | |||||
* | garbage collection tag for strings organized in struct TaggedString | Roberto Ierusalimschy | 1994-11-23 | 1 | -7/+7 |
| | |||||
* | correction of function tonumber | Roberto Ierusalimschy | 1994-11-22 | 1 | -2/+3 |
| | |||||
* | fallback for "call expression not a function" errors | Roberto Ierusalimschy | 1994-11-21 | 1 | -4/+18 |
| | |||||
* | fallback to unary minus is 'arith' with operation code 'unm' | Roberto Ierusalimschy | 1994-11-21 | 1 | -2/+5 |
| | |||||
* | lua_lock receives its parameter via stack. | Roberto Ierusalimschy | 1994-11-18 | 1 | -7/+27 |
| | | | | beginblock and endblock do not have parameters | ||||
* | userdata can have different tags | Roberto Ierusalimschy | 1994-11-17 | 1 | -4/+5 |
| | |||||
* | pow operation is defined in mathlib.c | Roberto Ierusalimschy | 1994-11-17 | 1 | -22/+12 |
| | |||||
* | new API functions startblock and endblock | Roberto Ierusalimschy | 1994-11-17 | 1 | -1/+18 |
| | |||||
* | changes in garbage collection control | Roberto Ierusalimschy | 1994-11-17 | 1 | -4/+5 |
| | |||||
* | new module for memory allocation | Roberto Ierusalimschy | 1994-11-16 | 1 | -29/+18 |
| | |||||
* | correction of function 'nextvar' | Roberto Ierusalimschy | 1994-11-16 | 1 | -41/+17 |
| | |||||
* | new API function to create tables | Roberto Ierusalimschy | 1994-11-13 | 1 | -1/+13 |
| | |||||
* | small corrections to avoid 'warings' with acc. | Roberto Ierusalimschy | 1994-11-11 | 1 | -12/+14 |
| | | | | do_call was moving results in the wrong order. | ||||
* | fallback for garbage collection | Roberto Ierusalimschy | 1994-11-10 | 1 | -1/+8 |
| | |||||
* | fallback list moved from opcode.c to fallback.c | Roberto Ierusalimschy | 1994-11-10 | 1 | -63/+11 |
| | |||||
* | execution of 'mains' separated from calls | Roberto Ierusalimschy | 1994-11-09 | 1 | -15/+41 |
| | |||||
* | lock mechanism | Roberto Ierusalimschy | 1994-11-08 | 1 | -2/+12 |
| | |||||
* | new API | Roberto Ierusalimschy | 1994-11-07 | 1 | -17/+68 |
| | |||||
* | new API: lua_Object now is an integer | Roberto Ierusalimschy | 1994-11-07 | 1 | -81/+64 |
| | |||||
* | first implementation of 'fallbacks' | Roberto Ierusalimschy | 1994-11-07 | 1 | -115/+202 |
| | |||||
* | creation of function do_protectedrun, that executes lua code enclosed | Roberto Ierusalimschy | 1994-11-04 | 1 | -220/+96 |
| | | | | | in a setjmp, with error recovery. Elimination of functions lua_isnil, etc. | ||||
* | new way to call functions, plus several small changes. This is | Roberto Ierusalimschy | 1994-11-02 | 1 | -665/+633 |
| | | | | a temporary version! |