Original author(s) | Lars Bak of Google |
---|---|
Developer(s) | The Chromium Project |
Initial release | 2 September 2008 |
Stable release | 9.0[1]
/ 17 March 2021 |
Repository | |
Written in | C++[2] |
Platform | IA-32, x86-64, ARM, AArch64, MIPS, MIPS64[3]PowerPC, IBM s390 |
Type | JavaScript engine |
License | BSD[4] |
Website | v8 |
V8 is an open-source JavaScript engine developed by The Chromium Project for Google Chrome and Chromium web browsers.[5] The project’s creator is Lars Bak.[6] The first version of the V8 engine was released at the same time as the first version of Chrome: 2 September 2008. It has also been used on the server side, for example in Couchbase, and Node.js.
The V8 assembler is based on the Strongtalk assembler.[7] On 7 December 2010, a new compiling infrastructure named Crankshaft was released, with speed improvements.[8] In version 41 of Chrome in 2015, project TurboFan was added to provide more performance improvements with previously challenging workloads such as asm.js.[9]
In 2016, the Ignition interpreter was added to V8 with the design goal of reducing the memory usage on small memory Android phones in comparison with TurboFan and Crankshaft.[10]
In 2017, V8 shipped a brand-new compiler pipeline, consisting of Ignition (the interpreter) and TurboFan (the optimizing compiler). Starting with V8 version 5.9, Full-codegen (the early baseline compiler) and Crankshaft are no longer used in V8 for JavaScript execution, since the team believed they were no longer able to keep pace with new JavaScript language features and the optimizations those features required.[11]
V8 first generates an abstract syntax tree with its own parser.[12] Then, Ignition, the V8 interpreter, generates bytecode from this syntax tree using the internal V8 bytecode format.[13] TurboFan is the V8 optimizing compiler, it takes this bytecode and generates machine code from it. In other words, V8 compiles JavaScript directly to native machine code using just-in-time compilation before executing it.[14] The compiled code is additionally optimized (and re-optimized) dynamically at runtime, based on heuristics of the code's execution profile. Optimization techniques used include inlining, elision of expensive runtime properties, and inline caching. The garbage collector is a generational incremental collector.[15]
V8 can compile to x86, ARM or MIPS instruction set architectures in both their 32- and 64-bit editions; as well, it has been ported to PowerPC[16] and IBM s390[17][18] for use in servers.[3][19]
V8 can be used in a browser or integrated into independent projects. V8 is used in the following software:
By: Wikipedia.org
Edited: 2021-06-18 11:02:18
Source: Wikipedia.org