Skip to content

grigory-rechistov/interpreters-comparison

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Compare Performance and Complexity of Software Interpreters of a Virtual Machine

Sample programs for comparison of different VM interpretation techniques. See the Makefile for the full list of targets.

  • switched - switched interpreter
  • threaded - threaded interpreter
  • predecoded - switched interpreter with preliminary decoding phase
  • subroutined - subroutined interpreter
  • threaded-cached - threaded interpreter with pre-decoding.
  • tailrecursive - subroutined interpreter with tail-call optimization
  • translated - binary translator to Intel 64 machine code
  • native - a static implementation of the test program in C

Build

Just type make. For Visual Studio builds, open corresponding project or solution files.

Use make sanity to perform a quick check of all variants.

Measure performance

Use ./measure.sh to measure run time of individual binaries or to perform a comparison of all techniques (alternatively, run make all measure).

The graph plotting part of the script uses Gnuplot and AWK.

Supported Environments

  • Tested to compile and run with GCC 4.8.1, GCC 5.1.0 and ICC 15.0.3 on Ubuntu Linux 12.04.5. Limited testing was also done on Windows 8.1 Cygwin64 environment, GCC 4.8.
  • Limited support for Visual Studio builds is provided. Certain types of interpreters will not build because of the CL compiler limitations or source code dependencies on GCC language extensions.

References

An article discussing structure, performance variations, and comparison of interpreters: http://habrahabr.ru/company/intel/blog/261665/ (in Russian).

About

Sample programs for comparison of different VM interpretation techniques

Resources

License

Stars

Watchers

Forks

Packages

No packages published