博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
lua 1.0 源码分析 -- 1 lua 的虚拟指令
阅读量:5174 次
发布时间:2019-06-13

本文共 1770 字,大约阅读时间需要 5 分钟。

  lua的解释器拿到 lua 编写的源码,首先进行解析,就是进行词法分析和语法分析,将源码转换成 lua 的指令集,然后执行这个指令集。

  

  lua 源码:

  

function f(val)    return val;endfunction main()    local i = 1;    local j = 2;    local b = i + f(2);    --local b = i + j;    print("retval = "..b);    return b;end

   调用 main 的指令集分析:

  

in while  opcode = [CALLFUNC]. -- main in while  opcode = [NOP]. in while  opcode = [SETFUNCTION]. in while  opcode = [ADJUST]. in while  opcode = [NOP]. in while  opcode = [SETLINE]. in while  opcode = [PUSH1].  -- i  in while  opcode = [SETLINE]. in while  opcode = [PUSH2].  -- j in while  opcode = [SETLINE].  -- local b = i + f(2) in while  opcode = [PUSHLOCAL0]. -- i in while  opcode = [PUSHGLOBAL]. -- f in while  opcode = [PUSHMARK]. in while  opcode = [PUSH2].    -- val in while  opcode = [CALLFUNC]. -- f() in while  opcode = [NOP]. in while  opcode = [SETFUNCTION]. in while  opcode = [ADJUST]. in while  opcode = [NOP]. in while  opcode = [SETLINE]. in while  opcode = [PUSHLOCAL0]. -- val  in while  opcode = [RESET]. in while  opcode = [RETCODE]. in while  opcode = [SETLINE]. in while  opcode = [ADJUST]. in while  opcode = [ADDOP].  -- local b = i + f(2) in while  opcode = [SETLINE]. in while  opcode = [NOP]. in while  opcode = [PUSHGLOBAL]. --  print in while  opcode = [PUSHMARK]. in while  opcode = [PUSHSTRING]. -- retval = in while  opcode = [PUSHLOCAL2]. -- b in while  opcode = [CONCOP]. in while  opcode = [CALLFUNC]. -- print()retval = 3 in while  opcode = [ADJUST]. in while  opcode = [SETLINE]. in while  opcode = [PUSHLOCAL2]. in while  opcode = [RESET]. in while  opcode = [RETCODE]. in while  opcode = [HALT].

 PS:

  函数就是一个入口地址,入口是通向将要执行的指令集。想下 汇编 中的 call,ret。lua 中的虚拟指令类似,只不过入口中的指令集是 lua 自己的虚拟指令,不是像 c 那样的机器指令。

转载于:https://www.cnblogs.com/ashen/p/11547044.html

你可能感兴趣的文章
常用Dockerfile举例
查看>>
jquery的ajax用法
查看>>
设计模式-策略模式(Strategy)
查看>>
django orm 数据查询详解
查看>>
JarvisOJ Basic 熟悉的声音
查看>>
C# list导出Excel(二)
查看>>
CAS 单点登录模块学习
查看>>
Android应用开发-网络编程①
查看>>
input中的name,value以及label中的for
查看>>
静态库制作-混编(工程是oc为基础)
查看>>
jQuery 显示加载更多
查看>>
Confluence 6 系统运行信息中的 JVM 内存使用情况
查看>>
Confluence 6 升级以后
查看>>
用JS实现版面拖拽效果
查看>>
二丶CSS
查看>>
《avascript 高级程序设计(第三版)》 ---第二章 在HTML中使用Javascript
查看>>
JS一些概念知识及参考链接
查看>>
TCP/IP协议原理与应用笔记24:网际协议(IP)之 IP协议的简介
查看>>
SAP HANA开发中常见问题- 基于SAP HANA平台的多团队产品研发
查看>>
游戏中的心理学(一):认知失调有前提条件
查看>>