d8
is V8’s own developer shell.
D8 是一个非常有用的调试工具,你可以把它看成是 debug for V8 的缩写。我们可以使用 d8 来查看 V8 在执行 JavaScript 过程中的各种中间数据,比如作用域、AST、字节码、优化的二进制代码、垃圾回收的状态,还可以使用 d8 提供的私有 API 查看一些内部信息。
前言 jsvu 是 JavaScript 引擎版本管理工具
以下是在Windows10下的操作,建议在 CMD 窗口里面操作。
1、安装 前提:node V14+
运行 jsvu,交互式命令行选择需要安装的平台和引擎
安装指定版本的引擎可以参考下面的命令
jsvu --os=win64 --engines=v8,v8-debug
执行 jsvu安装引擎,可在 %USERPROFILE% /.jsvu 目录下查看安装的引擎
安装 v8-debug
1 jsvu --os=win64 --engines=v8-debug
操作系统支持的引擎 查看jsvu版本 1 2 3 4 5 6 7 8 9 jsvu -h 📦 jsvu v1.13 .3 — the JavaScript engine Version Updater 📦 [<engine>@<version>] [--os={mac64,mac64arm,linux32,linux64,win32,win64,default}] [--engines={chakra,graaljs,hermes,javascriptcore,quickjs,spidermonkey,v8,v8-debug,xs},…] Complete documentation is online: https:
管理js引擎,可以调用多个引擎执行js代码,更加方便调试不同引擎下的代码
1 npm install -g eshost-cli
Windows 下配置 1 eshost --add <host name > <host type > <host path > --args <optional arguments >
根据需要使用的引擎,自行配置,如下
1 2 3 4 5 6 7 eshost --add "Chakra" ch "%USERPROFILE%.jsvu\chakra.cmd" eshost --add "GraalJS" graaljs "%USERPROFILE%.jsvu\graaljs.cmd" eshost --add "JavaScriptCore" jsc "%USERPROFILE%.jsvu\javascriptcore.cmd" eshost --add "SpiderMonkey" jsshell "%USERPROFILE%.jsvu\spidermonkey.cmd" eshost --add "V8 --harmony" d8 "%USERPROFILE%.jsvu\v8.cmd" --args "--harmony" eshost --add "V8" d8 "%USERPROFILE%.jsvu\v8.cmd" eshost --add "XS" xs "%USERPROFILE%.jsvu\xs.cmd"
这里我个人配置如下(有没有这个配置貌似没什么影响,)
1 2 3 eshost --add "V8" d8 "C:\Users\xiao.jsvu\v8.cmd" eshost --add "V8-debug" d8 "C:\Users\xiao.jsvu\v8-debug.cmd" eshost --add "V8 --harmony" d8 "C:\Users\xiao.jsvu\v8.cmd" --args "--harmony"
查看 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 C :\Users\xiao.jsvu>eshost Using config "C:\Users\xiao.eshost-config.json" ┌──────────────┬──────┬──────────────────────────────────┬───────────┬─────────────┐ │ name │ type │ path │ args │ tags │ ├──────────────┼──────┼──────────────────────────────────┼───────────┼─────────────┤ │ ChakraCore │ ch │ C :\Users\xiao.jsvu\chakra.cmd │ │ 1.11 .24 ,web │ ├──────────────┼──────┼──────────────────────────────────┼───────────┼─────────────┤ │ V8 ├──────────────┼──────┼──────────────────────────────────┼───────────┼─────────────┤ │ V8 │ d8 │ C :\Users\xiao.jsvu\v8.cmd │ │ │ ├──────────────┼──────┼──────────────────────────────────┼───────────┼─────────────┤ │ V8-debug │ d8 │ C :\Users\xiao.jsvu\v8-debug .cmd │ │ │ └──────────────┴──────┴──────────────────────────────────┴───────────┴─────────────┘ C :\Users\xiao.jsvu>
有大佬知道上面问题在哪,麻烦您指点一下,感谢😊
说明: %USERPROFILE% =C:\Users\用户名
win+r,输入cmd 回车
在cmd窗口下输入 set 回车,可以查看系统变量(想要了解更多 set 命令请看👉 这里 )
3、先简单了解一下抽象语法树 在传统的编译语言的流程中,程序的一段源代码在执行之前会经历三个步骤,统称为”编译”:
分词/词法分析 这个过程会将由字符组成的字符串分解 成有意义的代码块,这些代码块统称为词法单元 (token)
举个例子: let a = 1; 这段程序通常会被分解成为下面这些词法单元: let 、a、=、1、 ;空格是否被当成词法单元,取决于空格在这门语言中的意义。
解析/语法分析 这个过程是将词法单元流转换成一个由元素嵌套所组成的代表了程序语法结构 的树,这个树被称为”抽象语法树”(abstract syntax code,AST)
代码生成 将AST转换成可执行代码的过程被称为代码生成。
图片来源网络(侵删)
下面看一下在线解析AST 的示例👇
4、使用V8调试分析代码 文档查看 由于文档较长,可以使用命令输出一份本地的帮助文档,方便查看
1 2 3 4 v8 --help >> v8-help.txt v8-debug --help >> v8-debug-help.txt
主要使用的命令参数如下👇
v8-debug --help
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 Synopsis: shell [options] [--shell] [<file>...] d8 [options] [-e <string>] [--shell] [[--module|--web-snapshot] <file>...] -e execute a string in V8 --shell run an interactive JavaScript shell --module execute a file as a JavaScript module --web-snapshot execute a file as a web snapshot SSE3=1 SSSE3=1 SSE4_1=1 SSE4_2=1 SAHF=1 AVX=1 AVX2=1 FMA3=1 BMI1=1 BMI2=1 LZCNT=1 POPCNT=1 ATOM=0 The following syntax for options is accepted (both '-' and '--' are ok): --flag (bool flags only) --no-flag (bool flags only) --flag=value (non-bool flags only, no spaces around '=' ) --flag value (non-bool flags only) -- (captures all remaining args in JavaScript) Options: --print-bytecode (print bytecode generated by ignition interpreter) type : bool default: --noprint-bytecode --trace-opt (trace optimized compilation) type : bool default: --notrace-opt --trace-opt-verbose (extra verbose optimized compilation tracing) type : bool default: --notrace-opt-verbose --trace-opt-stats (trace optimized compilation statistics) type : bool default: --notrace-opt-stats --trace-deopt (trace deoptimization) type : bool default: --notrace-deopt --log-deopt (log deoptimization) type : bool default: --nolog-deopt --trace-deopt-verbose (extra verbose deoptimization tracing) type : bool default: --notrace-deopt-verbose --print-deopt-stress (print number of possible deopt points) --print-ast (print source AST) type : bool default: --noprint-ast --print-code (print generated code) type : bool default: --noprint-code --print-opt-code (print optimized code) type : bool default: --noprint-opt-code --allow-natives-syntax (allow natives syntax) type : bool default: --noallow-natives-syntax
4.1、查看 ast 1 v8-debug -e --print-ast "const name='xiao'"
接收到代码后,第一步就是“解释”,即解释器生成 AST 和作用域。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 C:\Users\xiao>v8-debug -e --print-ast "const name='xiao'" [generating bytecode for function : ] --- AST --- FUNC at 0 . KIND 0 . LITERAL ID 0 . SUSPEND COUNT 0 . NAME "" . INFERRED NAME "" . DECLS . . VARIABLE (000001FA12EFAF80) (mode = CONST, assigned = false ) "name" . BLOCK NOCOMPLETIONS at -1 . . EXPRESSION STATEMENT at 11 . . . INIT at 11 . . . . VAR PROXY context[2] (000001FA12EFAF80) (mode = CONST, assigned = false ) "name" . . . . LITERAL "xiao" C:\Users\xiao>
4.2、查看作用域 1 v8-debug -e --print-scopes "const name='xiao'"
1 2 3 4 5 6 7 8 9 10 11 12 13 14 C:\Users\xiao>v8-debug -e --print-scopes "const name='xiao'" Global scope: global { // (000001DB6010D600) (0, 17) // will be compiled // NormalFunction // 1 stack slots // 3 heap slots // temporary vars: TEMPORARY .result; // (000001DB6010D910) local [0] // local vars: CONST name; // (000001DB6010D820) context[2], never assigned } C:\Users\xiao>
4.3、查看生成的字节码 1 v8-debug -e --print-bytecode "const name='xiao'"
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 C:\Users\xiao>v8-debug -e --print-bytecode "const name='xiao'" [generated bytecode for function : (0x0113002538bd <SharedFunctionInfo>)] Bytecode length: 6 Parameter count 1 Register count 1 Frame size 8 Bytecode age: 0 000001130025393A @ 0 : 13 00 LdaConstant [0] 000001130025393C @ 2 : 25 02 StaCurrentContextSlot [2] 000001130025393E @ 4 : 0e LdaUndefined 000001130025393F @ 5 : a9 Return Constant pool (size = 1) 000001130025390D: [FixedArray] in OldSpace - map: 0x011300002229 <Map(FIXED_ARRAY_TYPE)> - length: 1 0: 0x0113002538a1 <String[4]: Handler Table (size = 0) Source Position Table (size = 0) C:\Users\xiao>
4.4、查看详细的运行时信息 通过 --allow-natives-syntax
参数可以在 JavaScript 中调用 %DebugPrint 底层的 Native API
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 function testV8 (properties, elements ) { for (let i = 0 ; i < elements; i++) { this [i] = `element${i} ` ; } for (let i = 0 ; i < properties; i++) { const prop = `property${i} ` ; this [prop] = prop; } } const testobj1 = new testV8 (12 , 13 );%DebugPrint (testobj1);
执行
1 v8-debug --allow-natives-syntax .\src\libs\demo.js
输出
相关文章一览 🎈🎈🎈
🌹 持续更文,关注我,你会发现一个踏实努力的宝藏前端😊,让我们一起学习,共同成长吧。
🎉 喜欢的小伙伴记得点赞关注收藏哟,回看不迷路 😉
🎁 欢迎大家评论交流, 蟹蟹😊