blaumeise20 / optimizing-mini-compiler

A simple compiler for a hypothetical language called Mini

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Optimizing Mini compiler

This compiler has been written as the project for the Advanced Compiler Construction course at the Johannes Kepler University Linz.

I chose to do the second available project, because I am more interested in optimizing topics than code generation.

I also did some cleanup work afterwards, you should be able to pretty easily understand what is going on.

To run the compiler, you have to pass it the input file like cargo run --release myprogram.mini. It will not execute your code, but compile it into a control flow graph. The graph will be outputted as a Graphviz graph. You can optinally pass a --output <file> parameter to save the graph into a file. Examples can be found in examples.mini.

About

A simple compiler for a hypothetical language called Mini


Languages

Language:Rust 100.0%