Skip to content

gastonduault/compiler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

020d2fb Β· Feb 5, 2025

History

11 Commits
Jul 16, 2024
Jul 16, 2024
Feb 5, 2025

Repository files navigation

C to Assembly Compiler Repository

Repository Structure

πŸ“¦ 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              

Description

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.

Features

  • 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.

Installation & Compilation

Prerequisites

  • A C++ compiler (e.g., g++)
  • Basic knowledge of C and Assembly language

Compilation

To compile the project, run the following command:

    g++ compilation.cpp -o compilation

Running the Compiler

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

Input

The compiler reads a C program from the specified file and processes it.

Output

The generated assembly code is printed to the standard output (terminal).

Example

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

About

C to assembly language compiler

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published