jwang0306 / uc-compiler

A simple compiler for the micro-C programming language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

µC Compiler

A simple µC programming language compiler for Java Assembly Code Generation.

The grammar used here is based on ANSI C Yacc grammar rules basically.

You can switch branches to see how it was built from scanner to parser, and finally a compiler.

Prerequisite

  • Environment
    • Linux (Ubuntu 16.04 LTS (or later)
  • Lexical analyzer (Flex) and syntax analyzer (Bison):
    sudo apt-get install flex bison
    
  • Java Virtual Machine (JVM):
    sudo add-apt-repository ppa:webupd8team/java
    sudo apt-get update
    sudo apt-get install default-jre
    

Usage

  1. compile
    make
    
  2. generate java asembly code
    ./myparser < ./example_input/xxx.c
    
  3. translate to java bytecode
    java -jar jasmin.jar uc_compiler.j
    
  4. run by JVM and output the executed result
    java uc_compiler
    

Example

  • µC program:

    int foo(int a) {
        a += 6;
        return a;
    }
    
    void lol(int a) {
        print(a);
        return;
    }
    
    void main(){
        int a;
        a = foo(4);
        lol(a);
        return;
    }
    
    
  • generated java asembly code

    .class public uc_compiler
    .super java/lang/Object
    .method public static foo(I)I
    .limit stack 50
    .limit locals 50
        ldc 6
        iload 0
        swap
        iadd
        istore 0
        iload 0
        ireturn
    .end method
    .method public static lol(I)V
    .limit stack 50
    .limit locals 50
        iload 0
        getstatic java/lang/System/out Ljava/io/PrintStream;
        swap
        invokevirtual java/io/PrintStream/println(I)V
        return
    .end method
    .method public static main([Ljava/lang/String;)V
    .limit stack 50
    .limit locals 50
        ldc 0
        istore 0
        ldc 4
        invokestatic uc_compiler/foo(I)I
        istore 0
        iload 0
        invokestatic uc_compiler/lol(I)V
        return
    .end method
    
    
  • executed result

    10
    

Work flow

STAR this repo if you like it!

About

A simple compiler for the micro-C programming language.


Languages

Language:Yacc 87.3%Language:Lex 8.7%Language:C 3.2%Language:Makefile 0.9%