summaryrefslogtreecommitdiff
path: root/lparser.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* first implementation of FORRoberto Ierusalimschy2000-04-121-5/+42
|
* no more repeat ... end.Roberto Ierusalimschy2000-04-111-17/+17
|
* new syntax: |label|Roberto Ierusalimschy2000-04-101-49/+94
|
* reorganization of lcode.cRoberto Ierusalimschy2000-04-071-18/+15
|
* more optimizationsRoberto Ierusalimschy2000-04-071-8/+6
|
* new optimization: jumps to jumpsRoberto Ierusalimschy2000-04-061-18/+18
|
* implementation of BREAKRoberto Ierusalimschy2000-04-051-57/+112
|
* syntactical detailsRoberto Ierusalimschy2000-04-031-17/+13
|
* no more special cases for closures with 0 upvalues (performance is the same,Roberto Ierusalimschy2000-03-291-6/+1
| | | | memory use a little higher, code much simpler).
* limits now are in `llims.n'Roberto Ierusalimschy2000-03-241-12/+1
|
* SETLINEs for reserved words, too.Roberto Ierusalimschy2000-03-241-39/+45
|
* better(?) treatment for SETLINE + while optimization is too complex forRoberto Ierusalimschy2000-03-201-34/+14
| | | | only 3% of maximum improvement.
* details.Roberto Ierusalimschy2000-03-151-2/+2
|
* detailsRoberto Ierusalimschy2000-03-131-70/+84
|
* some name changesRoberto Ierusalimschy2000-03-101-79/+79
|
* first implementation of "threaded code" for boolean operationsRoberto Ierusalimschy2000-03-091-29/+39
|
* some optimizationsRoberto Ierusalimschy2000-03-081-11/+9
|
* a better way to control optimizations.Roberto Ierusalimschy2000-03-041-103/+102
|
* maybe a concat right associative allows some optimizations...Roberto Ierusalimschy2000-03-031-7/+7
|
* change of code generation design (independent functions for each opcode)Roberto Ierusalimschy2000-03-031-42/+43
|
* many details (most by lhf).Roberto Ierusalimschy2000-03-031-5/+5
|
* new algorithm to parse expressions + distribution of code between lparserRoberto Ierusalimschy2000-03-031-350/+154
| | | | and lcode.
* first version of code optimizerRoberto Ierusalimschy2000-02-221-229/+166
|
* new version for INSTRUCTION formatsRoberto Ierusalimschy2000-02-141-210/+122
|
* removing implementation for better error messages (must rethink it...)Roberto Ierusalimschy2000-02-111-41/+4
|
* renaming of some opcodes and fieldsRoberto Ierusalimschy2000-01-281-29/+29
|
* performance details.Roberto Ierusalimschy2000-01-251-40/+47
|
* `const' array in protos breaked in 3 arrays (for strings, numbers, andRoberto Ierusalimschy2000-01-251-48/+35
| | | | prototypes).
* `exp' is "reserved word" in Visual-C++ ;-)Roberto Ierusalimschy2000-01-121-10/+10
|
* details (error messages)Roberto Ierusalimschy2000-01-101-5/+5
|
* bug: return gives wrong line in debug information.Roberto Ierusalimschy1999-12-291-2/+3
|
* first version of extra debug information (NAME)Roberto Ierusalimschy1999-12-291-486/+549
|
* new ttypes to distinguish between C closures and Lua closures.Roberto Ierusalimschy1999-12-231-3/+3
|
* detailsRoberto Ierusalimschy1999-12-221-3/+5
|
* debug information for parameters use line 0 for them (as they areRoberto Ierusalimschy1999-12-211-15/+12
| | | | always visible).
* luaS_newfixedstring renamed to luaS_newfixedRoberto Ierusalimschy1999-12-141-3/+3
|
* for the future...Roberto Ierusalimschy1999-12-071-3/+3
|
* fixed stack; first version.Roberto Ierusalimschy1999-12-011-4/+4
|
* new way to code CALLs + passing multiple arguments between function callsRoberto Ierusalimschy1999-11-251-10/+7
|
* first implementation of multiple states (reentrant code).Roberto Ierusalimschy1999-11-221-56/+61
|
* new implementation for global variable values (separated from strings)Roberto Ierusalimschy1999-11-041-1/+10
|
* reorganization of `stat' function.Roberto Ierusalimschy1999-09-201-76/+96
|
* bug: in the (old) expression << ls->fs->f->consts[checkname(ls)] >>, checknameRoberto Ierusalimschy1999-09-021-14/+15
| | | | could realloc f->consts.
* "const" !!!Roberto Ierusalimschy1999-08-161-12/+13
|
* detailsRoberto Ierusalimschy1999-07-221-4/+4
|
* better treatment for arbitrary limitsRoberto Ierusalimschy1999-06-171-19/+31
|
* cannot assign to unlimited variables, because it causes overflow inRoberto Ierusalimschy1999-06-161-1/+9
| | | | the number of returns of a function.
* bigger limit for number of local variables and upvaluesRoberto Ierusalimschy1999-06-161-11/+13
|
* detailRoberto Ierusalimschy1999-05-211-2/+3
|
* warnings by clinioRoberto Ierusalimschy1999-05-101-5/+5
|