Facebook Releases a PHP Just-in-Time Compiler
Facebook finds a new way to render PHP even more quickly
Fri, December 09, 2011
IDG News Service — In its continuing endeavor to serve its 800 million users as quickly as possible, Facebook is once again revamping the way it handles its PHP-based Web pages.
Friday, Facebook posted on GitHub its HipHop Virtual Machine (HHVM), which the company's engineers call a just-in-time PHP compiler. According to Facebook, this PHP execution engine is 60 percent faster than its current PHP interpreter and uses 90 percent less memory.
Facebook is currently using HHVM in its test environments as a replacement for its home-built PHP interpreter, and plans to eventually use it to run the PHP code for its website.
Facebook made its quest for faster PHP code public in 2010, when it released what it called a PHP source code transformer, called HipHop, which it had already been using in production.
PHP was originally designed as a Web scripting language, one used to add dynamic content to Web pages. PHP is a vital part of Facebook, in that it, along with JavaScript, is used to help assemble each user's unique home page. As with code rendered by most scripting languages, however, PHP applications do not run as fast as programs written in full-fledged programming languages such as C++, which are compiled into machine-readable byte code ahead of time.
Facebook's HipHop transforms PHP extensions into highly optimized C++ code, which means they run faster when executed. PHP developers at Facebook can write their extensions in PHP, and have HipHop transform it into C++ code, which then can be compiled into speedy binary objects.
The company migrated all its own servers over to HipHop in 2010, claiming that it had cut CPU usage in half. The company released the source code of HipHop so others could use it as well.
At the time, Facebook also developed a PHP interpreter, called HPHPi, which allows PHP developers to run their PHP code without compiling it. Code run on HPHPi is slower than code compiled and run on HipHop, but it provides developers with an easier way to debug their code.
With HHVM, Facebook engineers have combined the speed of a compiled language with the flexibility of a scripted language. "A dynamic translator can observe data types as the program executes, and generate type-specialized machine code," wrote Facebook software engineer Jason Evans, in a blog post announcing the release of HHVM.
HHVM also solves an internal problem for Facebook. HPHPi and HipHop "don't have identical language semantics," wrote Evans in an email interview. This means that code that runs perfectly well in an HPHPi test environment might not run on HipHop.


