vote up 2 vote down star
1

Can anyone tell me where to find Lua's bytecode specification? I've been searching for 15 minutes, and I can't find anything.

flag

75% accept rate

4 Answers

vote up 5 vote down check

Maybe A No-Frills Introduction to Lua 5.1 VM Instructions contains what you're looking for?

There is also a table of the Lua 5.0 instruction set (Figure 5) in:

Ierusalimschy, R.; Figueiredo, L. H.; Celes, W. (2005), "The implementation of Lua 5.0", J. of Universal Comp. Sci. 11 (7): 1159-1176

You can find the full text with a search on Google Scholar and I believe it's on lua.org as well. This reference is used by the Lua page on Wikipedia, which is always a good place to look for such things. :-)

link|flag
vote up 2 vote down

The bytecode specification is purposefully not published. You shouldn't depend on the VM to retain compatibility between Lua versions (and especially not among various implementations). For academic curiosity's sake, see the other answers.

link|flag
vote up 2 vote down

You can read The Implementation of Lua 5.0 online.

link|flag
Very interesting read as I've always wanted to know how it all works in some code-related details. – Nick Bedford Oct 1 at 1:57
vote up 4 vote down

The official definition is in lopcodes.h.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.