Ave V8 JavaScript Engine: the Non-stop Improvements

Written by Alexandra | Published 2020/01/12
Tech Story Tags: javascript | nodejs | c++ | google | chrome | chromium | software-development | programming

TLDR V8 is an open-source JavaScript engine for Google Chrome and more Chromium browsers. It is written in C++ and can run standalone or be embedded into the C++ app. V8's subprocesses are named in accordance with automotive details. The engine combines the best of interpreters and compilers to make it faster. It runs on Windows 7 or later, MacOS 10.12+Linux systems using x64, IA-32, MIPS and ARM processor processor. It's easier to remember because it's like a car engine now, says Lars Bak.via the TL;DR App

V8 is not only a famous eight-cylinder engine you can find in Dodge Charger, Bentley Continental GT or Boss Hoss motorcycles. In 2008 The Chromium Project developers released a new JavaScript and WebAssembly engine with the same name – V8, such a groovy reference to the engineering marvel. So one more Vee-eight engine was born.
"One of the interesting properties of JavaScript and the reason why V8 being used for today is that it's platform-independent", - Lars Bak, danish programmer, the tech lead of V8 project
WHAT IS JAVASCRIPT ENGINE?
In short, JS engines are programs converting JavaScript code into low-level or machine code. They follow the ECMAScript Standards that define features and execution process.

The same as V8 was a remarkable piece of machinery, V8 JS engine found a niche for itself. Most likely you have already "met" Vee-eight face-to-face. As a part of Chrome, this engine runs the JavaScript when you visit a web page. In other words, V8 provides the runtime environment for JS. And the web-platform APIs (Application Programming Interfaces) are already provided by the browser. Except for browsers V8 is embedded in such server-side technologies, as Node.js, MongoDB and Couchbase.
V8 is written in C++, and can run standalone or be embedded into the C++ app. It is portable and runs on:
  • Windows 7 or later
  • macOS 10.12+
  • Linux systems using x64, IA-32, MIPS and ARM processor
Among the famous JavaScript engines except V8 are:
  • SpiderMonkey - Firefox
  • JavaScriptCore (Nitro) - Safari
  • Chakra JS - Microsoft Edge
"It doesn't matter if you run it in the browser or Node.js or an IoT device: to go from something that you write to executing that - that's what the engines are doing. JS engines are the heart of everything that we do", - Franziska Hinkelmann, Senior Engineer at Google
PREHISTORY: LET'S START THE ENGINE!

JavaScript is the most popular scripting language for the web today, JS modules are supported in all major browsers. And it's a great achievement that V8 is independent of the browser in which it's hosted. How did this happen?

This open-source JS engine came into being with the Chromium Project for Google Chrome and more Chromium browsers. Lars Bak, a danish programmer, was a project's creator and he's the one who led the V8 team. This man is a true virtual machine expert and guru of object-oriented design. By the way, Lars Bak spent 30 years developing programming languages. Once upon a time, he implemented a runtime system for BETA. Since then, Mr. Bak has left marks on a dramatic list of different software systems and finally get to the V8. How it was?

Autumn, 2006. Google hired Lars Bak for building a new JavaScript engine aimed at the Chrome browser. The team focused on building the fastest JS runtime worldwide. For such a dynamic, loosely typed language it was a real feat. The new JS runtime was named "V8" – such allusion to the famous powerful muscle car engine.

WHAT GOES ON UNDER THE HOOD

It is interesting that V8's subprocesses are named in accordance with automotive details. That is not only a stylish brand idea. It's also a good way for users to gain insight into JS engine behavior.
"I like how they changed the names of the processing of the V8 engine to stuff like "ignition" and "turbofan". It's easier to remember because it's like a car engine now", - Ksee, YouTube user
And what is exactly happens with JavaScript parsed by the V8?

In the basic terms, JS engine:
  1. Taking your fuel(source code)
  2. The parser is generating an abstract syntax tree from the source
  3. V8's interpreter is generating a bytecode from the syntax tree that a compiler can understand
  4. V8's compiler is generating a graph from bytecode (replacing bytecode sections with optimized machine code)
  5. And, ta-dah – executing!
And what is making code runs so fast? Let's consider some interesting V8's characteristics.

Interpreted or compiled?
JS is usually perceived as an interpreted language, but its modern engines are much more than just interpreters in order to get a more performant execution. The basis of the V8 that allows a high-speed JS executing is the JIT (Just-In-Time) compiler optimizing code during runtime (not Ahead-Of-Time). It combines the best features of interpreters and compilers, mixing these steps and making translation and execution faster.

The first optimizing compiler of V8 was "FullCodegen". The newest and more advanced is "Turbofan". Its backend is used by the V8's low-level register-based interpreter called 'Ignition'. This combined Ignition+TurboFan pipeline was launched in 2017.

In 2018 was released Liftoff, WebAssembly's (Wasm) first-tier compiler in V8 for a fast startup of complex websites with big Wasm modules, for example, Google Earth.

Keep calm and maintain cleanliness
Over the past years, V8's developers worked on the garbage collection process improvement a lot. Finally, they implemented a 2 generation-based garbage collector (also known as a full GC) called "Orinoco". It applies the latest effective techniques to free the thread. Collector finds objects and data that are no longer referenced and collects them. This contributes to well-improved latency and page load, smoother animation, scrolling, and user interaction.

Latency-off
Also, there is an efficient memory management system at V8's disposal. It allows fast allocation and minimal process while running JavaScript what means a lack of latency and hiccups using JS inside the browser.

In 2018, Chromium team started a project called V8 Lite. The main aim was a forcefully reducing memory usage.
Originally, it was intended as a Lite mode for low-memory devices or embedded use-cases. But soon developers decided to fully implement that optimization bonuses in the regular V8, advancing all vee-eight usage areas. You can consult technical details of memory savings and improved execution speed without wizardry in V8's official blog.

The main goal of engines development is to make JavaScript run as fast as possible. Developers emphasize that one of the crucial tasks is improving a distributed system where it is possible to shut down the individual unit and the rest of the units take over the functionality. That makes the systems more robust. It can be compared to cloud systems architecture, where one can tolerate a single device crashing, while the overall system runs smoothly.
"Our philosophy is that if you make a quick feedback loop, from programming to receiving feedback from the running system, in under a second, it inspires the programmer to experiment and invent new things", -
Lars Bak, danish programmer, the tech lead of V8 project

VROOM VROOM: DRIVE ON!

The famous Peter Drucker's quote "The overwhelming majority of successful innovations exploit change" is especially relevant in the world of JavaScript. Every 6 weeks Chromium's team creates a new branch of V8 engine as part of their release process. The newest V8's v.8.0 (yay!) was announced on December 18th.

There is a short list of presented developer-facing goodies:
  • 40% less memory use due to pointer compression
  • nullish coalescing
  • faster higher-order builtins
  • optional chaining

ALL ROADS LEAD TO CHROME

All those v.8.0 highlights are especially enjoyable in anticipation of the new Chrome release. Chrome 80 Stable will be released on February 4th, 2020, as reported by Chromium. So let's check bug fixes and performance improvements and drive on with V8 JS in 2020!
This article was originally posted on Freschode blog where you can find more articles about web development.

Written by Alexandra | Author, copywriter, editor | Сreation and optimization of varied information content
Published by HackerNoon on 2020/01/12