温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Lua源码建议阅读顺序

发布时间:2020-04-10 14:21:29 来源:网络 阅读:1309 作者:萌谷王 栏目:开发技术
  • lmathlib.c, lstrlib.c: get familiar with the external C API. Don't bother with the pattern matcher though. Just the easy functions.

  • lapi.c: Check how the API is implemented internally. Only skim this to get a feeling for the code. Cross-reference to lua.h and luaconf.h as needed.

  • lobject.h: tagged values and object representation. skim through this first. you'll want to keep a window with this file open all the time.

  • lstate.h: state objects. ditto.

  • lopcodes.h: bytecode instruction format and opcode definitions. easy.

  • lvm.c: scroll down to luaV_execute, the main interpreter loop. see how all of the instructions are implemented. skip the details for now. reread later.

  • ldo.c: calls, stacks, exceptions, coroutines. tough read.

  • lstring.c: string interning. cute, huh?

  • ltable.c: hash tables and arrays. tricky code.

  • ltm.c: metamethod handling, reread all of lvm.c now.

  • You may want to reread lapi.c now.

  • ldebug.c: surprise waiting for you. abstract interpretation is used to find object names for tracebacks. does bytecode verification, too.

  • lparser.c, lcode.c: recursive descent parser, targetting a register-based VM. start from chunk() and work your way through. read the expression parser and the code generator parts last.

  • lgc.c: incremental garbage collector. take your time.

  • Read all the other files as you see references to them. Don't let your stack get too deep though.


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI