Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 486 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 486 Bytes

JIT/AOT compiler for virtual machine

This is the repository of MIPT course where will be written a compiler with Sea of nodes IR for a virtual machine which is written earlier.

Build project:

mkdir build && cd build
cmake -GNinja ..
ninja

Run tests:

cd build
ninja tests

Source list

  1. A Simple Graph-Based Intermediate Representation, Cliff Click, Michael Paleczny, 1995
  2. Global code motion/global value numbering, Cliff Click, 1995