Skip to content
vic

hippyvm/hippyvm

HippyVM - an implementation of the PHP language in RPython

hippyvm/hippyvm.json
{
"createdAt": "2014-03-24T13:10:37Z",
"defaultBranch": "master",
"description": "HippyVM - an implementation of the PHP language in RPython",
"fullName": "hippyvm/hippyvm",
"homepage": "http://hippyvm.baroquesoftware.com/",
"language": "PHP",
"name": "hippyvm",
"pushedAt": "2022-04-26T15:50:13Z",
"stargazersCount": 870,
"topics": [],
"updatedAt": "2025-11-03T01:49:01Z",
"url": "https://github.com/hippyvm/hippyvm"
}

HippyVM is an implementation of the PHP language using RPython/PyPy technology.

HippyVM right now works only on 64bit linux on x86 platform (this limitation is temporary though, the RPython toolchain supports 32 and 64 bit x86, ARMv6 and ARMv7 on windows, os x and linux).

The build process was tested for Ubuntu 14.04. Please create an issue/submit pull request if things are not working as expected.

git clone https://github.com/hippyvm/hippyvm

There are two alternative ways to achieve this, both equally functional:

pip install -r requirements.txt
sudo apt-get install libmysqlclient-dev libpcre3-dev librhash-dev libbz2-dev php5-cli libffi-dev
cd hippyvm
<path to pypy>/rpython/bin/rpython -Ojit targethippy.py

This will create a hippy-c binary that works mostly like a php-cli without readline support.

You can run it with ./hippy-c <file.php>. Example of benchmarks are in bench/ sub-directory.

Like many open-source projects, HippyVM is looking for contributors.

In contrast with most language implementations that use C or C++, HippyVM has a low barrier of entry since it uses RPython, a subset of the Python language. It’s really easy to write and read. Check out our implementation of strstr

@wrap(['space', str, W_Root, Optional(bool)], aliases=['strchr'])
def strstr(space, haystack, w_needle, before_needle=False):
"""Find the first occurrence of a string."""
try:
needle = unwrap_needle(space, w_needle)
except ValidationError as exc:
space.ec.warn("strstr(): " + exc.msg)
return space.w_False
if len(needle) == 0:
space.ec.warn("strstr(): Empty delimiter")
return space.w_False
pos = haystack.find(needle)
if pos < 0:
return space.w_False
if before_needle:
return space.newstr(haystack[:pos])
else:
return space.newstr(haystack[pos:])

Doesn’t look that scary, right?

The reasons why HippyVM uses RPython go beyond this README. If you are interested, you can read more here

If the project is up and running, which means the building section from this README went well, you can try to run HippyVM’s tests.

Terminal window
PYTHONPATH=$PYTHONPATH:/path-to-pypy py.test testing

This will execute all the tests that were explicitly written for HippyVM, these tests are written in Python as well. The example test for the strstr is here.

After having HippyVM tests up and running you can try running PHP’s tests against the HippyVM implementation.

Terminal window
PYTHONPATH=$PYTHONPATH:/path-to-pypy py.test test_phpt/

Those tests are exact copies from the reference PHP implementation

If you find something missing, broken, or poorly implemented:

  • please create an issue, or better,
  • create a pull request and update the AUTHORS file.

Also please visit us on the irc channel #hippyvm@freenode.net