Tag: jit

失败$ grunt buildcontrol:页面jit-grunt未find

简单的应用与Yeoman只是testing,看看我能否部署…我已经运行: npm install grunt-build-control –save-dev npm install jit-grunt –save-dev 但是我从terminal上得到一个错误,说找不到插件了? 我知道静态映射中可能有一个答案只是不知道如何去做。 这是从terminal的错误: $ grunt buildcontrol:pages jit-grunt: Plugin for the "buildcontrol" task not found. If you have installed the plugin already, please setting the static mapping. See https://github.com/shootaroo/jit-grunt#static-mappings Warning: Task "buildcontrol:pages" failed. Use –force to continue. Aborted due to warnings. Execution Time (2015-12-08 20:00:17 UTC) loading […]

如何在后续的节点运行中重新使用V8 JIT优化?

我打算多次运行node somefile.js 。 据推测,每次我用Node执行这个文件,它都会JIT编译脚本并执行其他优化。 可悲的是:每次执行结束,都会忘记所有的工作。 有没有办法让我从之前的运行中保留V8已经产生的优化,并将它们应用于后续运行?

find未被V8优化的相应JS源代码

我尝试优化node.js应用程序的性能,因此我正在分析V8的JIT编译器的行为。 当通过node –trace_deopt –trace_opt –code_comments –print_optcode …运行应用程序时,输出包含许多重复的行,如下所示: [didn't find optimized code in optimized code map for 0x490a8b4aa69 <SharedFunctionInfo>] 我怎样才能找出哪个JavaScript代码对应于0x490a8b4aa69 ? 完整的输出在这里可用。

从节点转储v8 JIT输出

node.js(或者一些其他的v8接口或v8的wrapper)能从v8 JIT中输出生成的程序集吗? 我想看看生成的程序集看起来像各种片段。