luaV_execute

LUAI_FUNC void luaV_execute(lua_State *L, int nexeccalls);

pc (プログラムカウンター) を進めながらコードを実行する。 interpreter 本体。

    const Instruction *pc;
    pc = L->savedpc;
    for (;;)
    {
        const Instruction i = *pc++;