V8 (JavaScript引擎)
Google開發的JavaScript引擎
V8是一个由Google开发的开源JavaScript引擎,用于Google Chrome及Chromium中[3],项目以V8发动机其命名[4]。此项目由Lars Bak主导开发[5]。
开发者 | |
---|---|
首次发布 | 2008年9月2日 |
当前版本 | 11.4[1][2](2023年5月24日,17个月前) |
原始码库 | |
编程语言 | C++ |
操作系统 | Microsoft Windows、Mac OS X、Linux、FreeBSD、Android、webOS |
类型 | JavaScript引擎 |
许可协议 | BSD许可证 |
网站 | v8 |
运作方式
V8在执行之前将JavaScript编译成了机器代码,而非字节码或是解释执行它,以此提升性能。更进一步,使用了如内联缓存(inline caching)等方法来提高性能。有了这些功能,JavaScript程序与V8引擎的速度媲美二进制编译。[6]
传统的Javascript是动态语言,又可称之为Prototype-based Language,JavaScript继承方法是使用prototype,透过指定prototype属性,便可以指定要继承的目标。属性可以在运行时添加到或从对象中删除,引擎会为执行中的物件建立一个属性字典,新的属性都要透过字典查找属性在内存中的位置。V8为object新增属性的时候,就以上次的hidden class为父类别,创建新属性的hidden class的子类别,如此一来属性访问不再需要动态字典查找了。
为了缩短由垃圾回收造成的停顿,V8使用stop-the-world, generational, accurate的垃圾回收器[7]。在执行回收之时会暂时中断程序的执行,而且只处理物件堆栈。还会收集内存内所有物件的指针,可以避免内存溢出的情况。V8汇编器是基于Strongtalk汇编器[8]。
参考文献
- ^ 1.0 1.1 Chrome Platform Status. [2023年6月29日].
- ^ 2.0 2.1 Discontinuing release blog posts. 2022年6月17日 [2023年6月19日].
- ^ Philipp Lenssen. Google on Google Chrome - comic book. Google Blogoscoped. 2008-09-01 [2008-09-01]. (原始内容存档于2015-06-18).
- ^ Bynens, Mathias. Celebrating 10 years of V8. September 11, 2018 [2019-05-21]. (原始内容存档于2022-05-06).
- ^ Minto, Rob. The genius behind Google's web browser. Financial Times. 27 March 2009 [1 June 2021]. (原始内容存档于1 December 2011).
- ^ Seeley, Rich; Jack Vaughan. Google Chrome shifts architects' equations as V8 powers the browser. SOA News. 5 September 2008 [2008-09-07]. (原始内容存档于2010-04-27).
- ^ V8 JavaScript Engine: Introduction. Google Code. Google. [17 August 2010]. (原始内容存档于2010年6月6日).
- ^ v8 Licenses. [2010-03-17]. (原始内容存档于2015-11-27).
外部链接
- Google Code project page (页面存档备份,存于互联网档案馆)
- cproxyv8 (页面存档备份,存于互联网档案馆)及v8-juice (页面存档备份,存于互联网档案馆) are C++ libraries for extending v8, e.g. to assist in binding client-side C++ classes to JavaScript.
- v8cgi (页面存档备份,存于互联网档案馆) is a v8-based framework for serving web application written in JavaScript.
- node.js(页面存档备份,存于互联网档案馆)[1](页面存档备份,存于互联网档案馆) is a toolkit for writing performant non-blocking event-driven network servers in JavaScript.
- Inside V8 - A Javascript Virtual Machine (页面存档备份,存于互联网档案馆)