« luaY_parser :: コンテンツ :: luaV_execute »
12 分くらいで知るLuaVM
Luaのコード生成
Instruction のリスト表示
luac -l hello.lua
static void PrintCode(const Proto* f) { const Instruction* code=f->code; int pc,n=f->sizecode; for (pc=0; pc<n; pc++) { Instruction i=code[pc];