lua-users home
lua-l archive

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


> However, for a specific need I wrote in Lua a bytecode verifier to
> characterize some subset of 'safe' bytecodes similar to what is
> described in the Gems book.

I haven't read the Gems book, but you could run your bytecode verifier
offline with plain Lua and then switch to Lua JIT for runtime.

However, if you want to run your bytecode verifier in real time (user
input, for instance), maybe LuaRings could be helpful in this
particular case.

--rb