lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> I am working in a Lua 5.1 optimizing compiler, written using Lua and LPeg,

luac could use an optimizing module, but that would be mostly a peephole
optimizer on bytecode only (plus some global analysis). And it'd have to
be written in C. The experience with your optimizing compile could help
identify what optimizations are worth the trouble. Please share your findings.