Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | better control when growing arrays. | Roberto Ierusalimschy | 1996-03-21 | 1 | -10/+3 |
| | |||||
* | "PrintCode" now is defined in luac. | Roberto Ierusalimschy | 1996-03-08 | 1 | -228/+1 |
| | |||||
* | fixed strings (not collectable) don't need to be inserted in the constant table. | Roberto Ierusalimschy | 1996-02-26 | 1 | -2/+2 |
| | |||||
* | check if jump is bigger than 2^16. | Roberto Ierusalimschy | 1996-02-26 | 1 | -3/+5 |
| | |||||
* | useless #include. | Roberto Ierusalimschy | 1996-02-14 | 1 | -2/+1 |
| | |||||
* | new header "lex.h". | Roberto Ierusalimschy | 1996-02-13 | 1 | -1/+2 |
| | |||||
* | BIG CHANGE: new data structure for constants, strings and globals, using | Roberto Ierusalimschy | 1996-02-12 | 1 | -7/+7 |
| | | | | an array of hash tables for all them. | ||||
* | debug interface functions to manipulated local variables: | Roberto Ierusalimschy | 1996-02-07 | 1 | -11/+19 |
| | | | | "lua_getlocal" and "lua_setlocal". | ||||
* | improve of compiling error messages. | Roberto Ierusalimschy | 1996-02-05 | 1 | -10/+13 |
| | |||||
* | local variable stack needs only the name of the variable (TreeNode); | Roberto Ierusalimschy | 1996-01-23 | 1 | -19/+12 |
| | | | | this way is simpler and faster than old way. | ||||
* | correction of some order dependencies in debug code. | Roberto Ierusalimschy | 1996-01-22 | 1 | -18/+20 |
| | |||||
* | local variables may appear inside blocks in main code. | Roberto Ierusalimschy | 1995-10-26 | 1 | -3/+1 |
| | |||||
* | functions now may be declared with any "var" as a name; | Roberto Ierusalimschy | 1995-10-26 | 1 | -64/+60 |
| | | | | | therefore they do not have a "baptism" name. Changes in debug API to acomodate that. | ||||
* | new syntax for function declarations: "function a.x () ... " | Roberto Ierusalimschy | 1995-10-25 | 1 | -19/+16 |
| | | | | | new semantics for function declarations: function f () is valid only at run-time. | ||||
* | new method to keep debug line information: current line is stored on the | Roberto Ierusalimschy | 1995-10-25 | 1 | -89/+125 |
| | | | | | Lua stack, just below (new) base, with tag LUA_T_LINE. SETLINE opcodes are generated by lex. | ||||
* | new style for debug information about functions: no more SETFUNCTION | Roberto Ierusalimschy | 1995-10-17 | 1 | -22/+13 |
| | | | | | | | | 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. | ||||
* | Garbage collection of functions + header structure for functions | Roberto Ierusalimschy | 1995-10-04 | 1 | -13/+18 |
| | |||||
* | syntax for {...;...} is more flexible now. | Roberto Ierusalimschy | 1995-06-08 | 1 | -10/+21 |
| | |||||
* | run-time stack now is controled at run time, instead of | Waldemar Celes | 1995-04-11 | 1 | -22/+28 |
| | | | | compilation time. | ||||
* | strdup is done via mem.c to control its memory allocation | Roberto Ierusalimschy | 1995-01-14 | 1 | -2/+2 |
| | |||||
* | bytecodes are indexed by integers, not Words, to allow bigger code on 32 bit ↵ | Waldemar Celes | 1994-12-27 | 1 | -10/+8 |
| | | | | machines | ||||
* | routines are defined before rules, to allow correct compilation with bison | Waldemar Celes | 1994-12-27 | 1 | -185/+184 |
| | |||||
* | better control of integer types and their limits | Roberto Ierusalimschy | 1994-12-20 | 1 | -8/+12 |
| | |||||
* | opcode PUSHSELF has a parameter that indicates the method to be called | Roberto Ierusalimschy | 1994-12-06 | 1 | -4/+11 |
| | |||||
* | erased function yywrap (nobody used it) | Roberto Ierusalimschy | 1994-11-25 | 1 | -6/+1 |
| | |||||
* | modifications to avoid warnings when compiling yacc code | Roberto Ierusalimschy | 1994-11-23 | 1 | -3/+11 |
| | |||||
* | no more unary '+' | Roberto Ierusalimschy | 1994-11-22 | 1 | -2/+1 |
| | |||||
* | small bug corrected | Roberto Ierusalimschy | 1994-11-17 | 1 | -7/+7 |
| | |||||
* | listing did not list POWOP | Roberto Ierusalimschy | 1994-11-17 | 1 | -2/+3 |
| | |||||
* | uses new memory module (mem.c). | Roberto Ierusalimschy | 1994-11-17 | 1 | -65/+36 |
| | | | | | small changes in seting debug line. if and elseif unified in a outine 'codeIf' | ||||
* | unification of symbol tree and constant tree | Roberto Ierusalimschy | 1994-11-14 | 1 | -80/+61 |
| | |||||
* | small changes to avoid shadowing | Roberto Ierusalimschy | 1994-11-13 | 1 | -11/+11 |
| | |||||
* | because lua_error does a longjmp, there is no need to a variable | Roberto Ierusalimschy | 1994-11-09 | 1 | -69/+36 |
| | | | | | | | 'err'. lua_parse has a different interface, to allow the free of the main block even if compilation fails. small changes in the debug system. | ||||
* | new opcodes for '>' and '>=' | Roberto Ierusalimschy | 1994-11-06 | 1 | -3/+3 |
| | |||||
* | RESET is generated at codereturn. | Roberto Ierusalimschy | 1994-11-03 | 1 | -4/+2 |
| | |||||
* | new way to call functions, plus several small changes. This is | Roberto Ierusalimschy | 1994-11-02 | 1 | -85/+105 |
| | | | | a temporary version! | ||||
* | CREATEARRAY now has an argument, the size of the array to create. | Roberto Ierusalimschy | 1994-11-01 | 1 | -5/+11 |
| | |||||
* | deletion of 'include mm.h' | Roberto Ierusalimschy | 1994-10-21 | 1 | -3/+1 |
| | |||||
* | power operator (^). | Waldemar Celes | 1994-10-17 | 1 | -50/+37 |
| | | | | | | no more contructors (@). methods can be called on indexed variables. fixed debuging information. | ||||
* | Correcao do tratamento de erro reportado dentro de uma funcao. | Waldemar Celes | 1994-10-11 | 1 | -2/+2 |
| | |||||
* | Mudancas na sintaxe para a versao 2.0. Igual relacional passa | Waldemar Celes | 1994-10-11 | 1 | -62/+42 |
| | | | | | | | a ser ==, tiramos o colchete na criacao de tabelas usando apenas chaves (podendo fazer inicializacao mista). O caracter @ so' deve estar presente quando se tem construtores associados. / | ||||
* | Implementacao da definicao e chamada de METODOS. | Waldemar Celes | 1994-08-05 | 1 | -30/+125 |
| | |||||
* | Implementacao de funcoes para tratar Lua function em C e | Waldemar Celes | 1994-08-03 | 1 | -4/+10 |
| | | | | correcoes de bugs nas tabelas dinamicas. | ||||
* | Uso de arvores binarias para armazenar nomes e realocacao dinamica | Waldemar Celes | 1994-07-19 | 1 | -24/+25 |
| | | | | de tabelas (pilhas, hashtable, globais, codigo, etc.) | ||||
* | Alteracao do tipo da variavel "pc" na compilacao, passando | Waldemar Celes | 1994-04-20 | 1 | -47/+39 |
| | | | | a ser indice e nao mais ponteiro. | ||||
* | Nova estrategia de alocacao de buffers para codigo intermediario. | Waldemar Celes | 1994-04-19 | 1 | -52/+95 |
| | |||||
* | Correcao da funcao PrintCode | Waldemar Celes | 1994-04-15 | 1 | -5/+28 |
| | |||||
* | O token NAME deixa de estar associado a um indice da tabela de | Waldemar Celes | 1994-04-15 | 1 | -23/+51 |
| | | | | | simbolos e passa a conter o ponteiro da string yytext. Recebido o token NAME, decide-se entre um simbolo ou uma constante. | ||||
* | Alteracao para retirar codificacao de NOP's, substituindo | Waldemar Celes | 1994-04-13 | 1 | -76/+112 |
| | | | | | | | | pela utilizacao de "union" com "chars" para codificar Word e float. Observa-se que foram realizados testes antes da alteracao e constatou-se que do bytecode anteriormente gerado, NOP representava de 10 a 13% do total de bytes do codigo. Esta percentagem chegava ate' a 20% na caso de descricao de metafile utilizando Lua. | ||||
* | Acrescentar o gerenciador de memoria "mm" e corrigir um bug pois | Waldemar Celes | 1994-03-28 | 1 | -2/+4 |
| | | | | no novo "lex" o token FUNCTION nao tem valor associado. |