π¦ C-to-Assembly-Compiler
βββ π src
β βββ π Analyses
β β βββ π AnalyseLexicale.cpp
β β βββ π AnalyseSemantique.cpp
β β βββ π AnalyseSyntaxique.cpp
β βββ π Objets
β β βββ π Noeud.cpp
β β βββ π Operateur.cpp
β β βββ π Sybole.cpp
β β βββ π Token.cpp
β βββ π Tests
β βββ π prog.c
βββ π compilation.cpp
βββ π GenCode.cpp
βββ π Types.cpp
βββ π README.md
This repository contains a compiler that translates a C program into an assembly script. It performs lexical analysis, syntax analysis, semantic analysis, and code generation to produce assembly code from a given C program.
- Lexical Analysis: Tokenizes the input C source code.
- Syntax Analysis: Checks for syntactical correctness and builds an Abstract Syntax Tree (AST).
- Semantic Analysis: Ensures proper type checking and variable scope handling.
- Code Generation: Converts the AST into assembly code for execution.
- A C++ compiler (e.g.,
g++
) - Basic knowledge of C and Assembly language
To compile the project, run the following command:
g++ compilation.cpp -o compilation
To execute the compiler, make sure to set the correct input file path inside compilation.cpp
:
std::string chemin = "path/to/your/c_program.c";
Then, run the compiled binary:
./compilation
The compiler reads a C program from the specified file and processes it.
The generated assembly code is printed to the standard output (terminal).
A sample C program:
int main() {
int a = 5;
int b = 10;
int c = a + b;
return c;
}
Would be converted into:
.start
prep main
call 0
halt
.push 5
.push 10
add
ret