HipHop Virtual Machine

HipHop Virtual Machine
HHVM logo, featuring white uppercase "HHVM" letters on a black background, with stylized triangular geometric shapes on the left
Developer(s) Facebook
Initial release December 9, 2011 (2011-12-09)[1]
Stable release
3.13.0[2] / March 30, 2016 (2016-03-30)
Repository github.com/facebook/hhvm
Development status Active
Written in C++[3] and OCaml[4][lower-alpha 1]
License PHP License and Zend License[5]
Website www.hhvm.com

HipHop Virtual Machine (HHVM) is an open-source virtual machine based on just-in-time (JIT) compilation that serves as an execution engine for the PHP and Hack programming languages. By using the principle of JIT compilation, executed PHP or Hack code is first transformed into intermediate HipHop bytecode (HHBC), which is then dynamically translated into x86-64 machine code, optimized, and natively executed.[1][6] This contrasts with PHP's usual interpreted execution, in which the Zend Engine transforms PHP source code into opcodes that serve as a form of bytecode, and executes the opcodes directly on the Zend Engine's virtual CPU.[7]

HHVM is developed by Facebook, with the project's source code hosted on GitHub; it is licensed under the terms of the PHP License and Zend License.[1][5]

Overview

HHVM was created as the successor of the HipHop for PHP (HPHPc) PHP execution engine, which is a PHP-to-C++ transpiler that has also been created by Facebook.[8][9] Based on the gained experience and aiming to solve issues introduced by HPHPc, Facebook decided in early 2010 to create a JIT-based PHP virtual machine.[10] Issues associated with HPHPc included its reaching of a plateau for further performance improvements, lack of full support for all features of the PHP language, and difficulties arising from specific time- and resource-consuming development and deployment processes required for PHP projects that used HPHPc.[8] In Q1 2013, the production version of facebook.com website stopped using HPHPc and switched to HHVM.

Following the JIT compilation principle, HHVM first converts the executed PHP or Hack code into a high-level bytecode, HHBC, which is also known as an intermediate language. HHBC is a bytecode format created specifically for HHVM, in a form that is appropriate for consumption by both interpreters and just-in-time compilers. As the next steps in execution, HHVM dynamically ("just-in-time") translates the HHBC bytecode into x86-64 machine code, performs its additional optimizations through a dynamic analysis of the translated bytecode, and executes the x86-64 machine code.[1][8][11] As a result, HHVM has certain similarities to the virtual machines used by other programming languages, including the Common Language Runtime (CLR, for the C# language) and Java virtual machine (JVM, for the Java language).[10]

HHVM brings many benefits in comparison with HPHPc, and one of them is almost complete support for the entire PHP language as defined by the official implementation of PHP version 5.4, including the HHVM's support for create_function() and eval() constructs.[12][13] Furthermore, HHVM uses the same execution engine when deployed in both production and development environments, while supporting integration between the execution engine and the HPHPd debugger in both environment types; as a result, maintaining HPHPi (HipHop interpreter) separately as a development utility is no longer needed as it was the case with HPHPc. HHVM also eliminates the lengthy builds required by HPHPc to run PHP programs, resulting in much simpler development and deployment processes than it was the case with HPHPc.[1]

Together with HHVM, Facebook also released Hack, which is a programming language specifically tailored for HHVM and can be seen as a new version of the PHP language.[14][15] Hack allows programmers to use both dynamic typing and static typing, which is a concept also known as gradual typing, and allows types to be specified for function arguments, function return values, and class properties; however, types of local variables cannot be specified. At the same time, Hack does not provide complete backward compatibility by not carrying on some of the PHP features, such as the goto statement and dynamic variable names.[16][17][18][19]

Performance

Studies of end-user behavior conclude that the lack of speed in website operation and even small delays in web server response time, lower than half of a second, can have significant negative impacts on the end-user experience and overall performance of the website.[20] Some formerly popular websites, such as Friendster, have suffered due to prolonged speed issues.[21]

As a process virtual machine that provides the execution environment, HHVM has the ability to use live type information to produce more efficient native code, leading to a higher web server throughput and lower latency. In Q4 2012, the execution of facebook.com's source code on HHVM achieved performance parity with HPHPc,[8] and in December 2013 HPHPc was even surpassed by around 15%.[22]

See also

Notes

  1. Only the Hack's type-checking (hh_server and hh_client) and code-formatting (hh_format) command-line utilities and daemons bundled together with the HipHop Virtual Machine are written in OCaml.

References

  1. 1 2 3 4 5 Jason Evans (December 9, 2011). "The HipHop Virtual Machine". Facebook. Retrieved August 2, 2014.
  2. "facebook/hhvm: Release HHVM-3.13.0". github.com. Facebook. March 30, 2016. Retrieved April 2, 2016.
  3. "Building and installing HHVM on CentOS 7.x". github.com. Facebook. May 26, 2015. Retrieved June 12, 2015.
  4. "Building the Hack typechecker". github.com. Facebook. September 10, 2014. Retrieved June 12, 2015.
  5. 1 2 "facebook/hhvm: License". github.com. Facebook. Retrieved August 2, 2014.
  6. "facebook/hhvm". github.com. Facebook. Retrieved August 2, 2014.
  7. Kaushik Pal (April 28, 2014). "PHP and Zend Engine Internals". phpbuilder.com. Retrieved September 23, 2014.
  8. 1 2 3 4 Drew Paroski (November 29, 2012). "Speeding up PHP-based development with HHVM". Facebook. Retrieved August 2, 2014.
  9. "Announcement on GitHub removing HPHPc support". github.com. Facebook. February 19, 2013. Retrieved May 24, 2013.
  10. 1 2 Cade Metz (June 10, 2013). "How Three Guys Rebuilt the Foundation of Facebook". Wired. Retrieved September 28, 2014.
  11. "HipHop Bytecode v1 revision 18". github.com. Facebook. July 31, 2014. Retrieved May 24, 2013.
  12. "facebook/hhvm: About upgrade to PHP 5.4 engine". github.com. May 2013. Retrieved August 2, 2014.
  13. "facebook/hhvm: Home". github.com. Facebook. May 8, 2014. Retrieved August 2, 2014.
  14. Cade Metz (March 20, 2014). "Facebook Introduces 'Hack,' the Programming Language of the Future". Wired. Retrieved April 15, 2014.
  15. Julien Verlaguet; Alok Menghrajani (April 2014). "Hack: a new programming language for HHVM". code.facebook.com. Facebook. Retrieved March 23, 2014.
  16. Josh Lockhart (April 3, 2014). "Facebook's Hack, HHVM, and the future of PHP". O'Reilly Media. Retrieved August 2, 2014.
  17. "Hack and HHVM: Type Annotations (Hack Manual)". docs.hhvm.com. Retrieved March 25, 2014.
  18. "Hack and HHVM: Type Inference (Hack Manual)". docs.hhvm.com. Retrieved March 25, 2014.
  19. "Hack and HHVM: Unsupported PHP Features in Hack (Hack Manual)". docs.hhvm.com. Retrieved April 2, 2014.
  20. Brady Forrest (June 23, 2009). "Bing and Google Agree: Slow Pages Lose Users". O'Reilly Media. Retrieved September 28, 2014.
  21. Gary Rivlin (October 5, 2006). "Wallflower at the Web Party". The New York Times. Retrieved September 28, 2014.
  22. "We are the 98.5% (and the 16%)". hhvm.com. December 19, 2013. Retrieved August 2, 2014.
This article is issued from Wikipedia - version of the 11/12/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.