A .imp compiler project for JFTT 2024 at Wrocław University of Science and Technology.
The Imperator Compiler is designed to compile .imp
files into machine-readable .mr
files. This project is part of the JFTT 2024 course at Wrocław University of Science and Technology.
- Supports a wide range of control structures including loops and conditionals.
- Handles procedures and nested procedures (recursion is not supported).
- Supports arrays and basic arithmetic operations.
- Provides detailed error handling and reporting.
To install and build the compiler, you need to have g++ (C++20)
, flex
, and bison
installed on your system.
-
Clone from github:
git clone https://github.com/yourusername/imperator-compiler.git cd compiler make
-
Build from zip:
unzip *index_number*.zip cd compiler make
To compile a .imp
file, use the following command:
./compiler <source-file> <output-file> [-t]
<source-file>
: The input.imp
file to be compiled.<output-file>
: The output.mr
file.-t
: Optional flag to print tokens.
./compiler input.imp output.mr
compiler/
: Contains the source code for the compiler.Token.hpp
: Defines theToken
class and related enums.Node.hpp
: Defines theNode
class and its derived classes for AST.postprocessing.hpp
: Contains functions for post-processing the generated assembly code.preprocessing.hpp
: Contains functions for pre-processing the source code.parser.y
: Bison file for parsing the.imp
source code.lexer.l
: Flex file for lexical analysis of the.imp
source code.main.cpp
: The main entry point for the compiler.Makefile
: Build script for the compiler.
.gitignore
: Gitignore file.labor4.pdf
: Specyfication in polish by dr Maciej Gębala.labor4.zip
: VM source code and examples by dr Maciej Gębala.LICENSE
: LICENSEREADME.md
: This README file.
This project is licensed under the MIT License. See the LICENSE file for details.
- Author: Dobrosław Dębicki
- Professor: dr Maciej Gębala