up vote 7 down vote favorite
2
share [g+] share [fb]

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

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

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|improve this answer
feedback

The official definition is in lopcodes.h.

link|improve this answer
3  
Funny how somebody quoting your book gets the check when you provide the reference. Oh well, +1 from me. – Bahbar Dec 31 '10 at 13:10
@Bahbar, you made my day with that comment :P – Kornel Kisielewicz Jan 19 '11 at 13:59
feedback

You can read The Implementation of Lua 5.0 online.

link|improve this answer
Very interesting read as I've always wanted to know how it all works in some code-related details. – Nick Bedford Oct 1 '09 at 1:57
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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