Skip to content

CE3006 Compiler with flex, bison & c, 2022, mini Scheme (mini Lisp) interpreter

License

Notifications You must be signed in to change notification settings

RobinHsieh/Compiler_in_C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Compiler

Let's learn how to craft a compiler!

Course

  • NCU CSIE
  • course number: CE3006 at 2022

Textbook

Prerequisite

  • Data Structure
  • Regular Expression
  • Assembly Language

Tools

  • Lex/Flex: lexical analysis(scanning)
  • Yacc/Bison: syntactic analysis(parsing), semantic analysis

Recommended Learning Resources

lex and yacc program information

IBM website

Write text parsers with yacc and lex

IBM website

First+Follow+Predict Calculator

Cal website

Manual for GNU Bison

GNU website


Final Project

This project involves implementing an interpreter for variations of Scheme, a dialect of Lisp.
However, the grammar of this language deviates slightly, and the functions implemented represent a subset of Scheme.

File Structure

├── TestData
│   ├── ….lsp
├── mini_LISP.l    : lexical analyzer(scanner)
├── mini_LISP.y    : syntactic analyzer(parser), semantic analyzer
├── constructAST.c : semantic analyzer
├── constructAST.h

Getting Started

You can compile it by two ways.

1. Shell Script

bison -d -v -o mini_LISP.tab.c mini_LISP.y
gcc -c -g -I.. mini_LISP.tab.c
flex -o mini_LISP.yy.c mini_LISP.l
gcc -c -g -I.. mini_LISP.yy.c
gcc -c constructAST.c
gcc -o mini_LISP mini_LISP.tab.o mini_LISP.yy.o constructAST.o -ll
./mini_LISP < input.scm

2. CMake

cmake_minimum_required(VERSION 3.23)
project(final_project C)

set(CMAKE_C_STANDARD 99)

# Find required packages
find_package(BISON)
find_package(FLEX)

# Generate parser and lexer files
BISON_TARGET(
        MyParser mini_LISP.y ${CMAKE_CURRENT_BINARY_DIR}/mini_LISP.tab.c
        VERBOSE mini_LISP.y.output
)
FLEX_TARGET(
        MyScanner mini_LISP.l  ${CMAKE_CURRENT_BINARY_DIR}/mini_LISP.yy.c
)
ADD_FLEX_BISON_DEPENDENCY(MyScanner MyParser)

# Include directories
include_directories(${CMAKE_CURRENT_BINARY_DIR} .)

# Compile the generated and other source files
add_executable(
        mini_LISP
        ${BISON_MyParser_OUTPUTS}
        ${FLEX_MyScanner_OUTPUTS}
        constructAST.c
)

# Link against the 'l' library
target_link_libraries(mini_LISP l)

Status of Feature Implementation

Basic Features

No. ~~~~~ Feature ~~~~~ ~~~~~~~~~~~~~~~~~ Description ~~~~~~~~~~~~~~~~~~ Points Test Case
1. Syntax Validation Print “syntax error” when parsing invalid syntax 10 ⭕
2. Print Implement print-num statement 10 â­•
3. Numerical Operations Implement all numerical operations 25 â­•
4. Logical Operations Implement all logical operations 25 â­•
5. if Expression Implement if expression 8 â­•
6. Variable Definition Able to define a variable 8 â­•
7. Function Able to declare and call an anonymous function 8 â­•
8. Named Function Able to declare and call a named function 6 â­•

Bonus Features

No. ~~~~~ Feature ~~~~~ ~~~~~~~~~~~~~~~~~ Description ~~~~~~~~~~~~~~~~~~ Points Test Case
1. Recursion Support recursive function call 5 â­•
2. Type Checking Print error messages for type errors 5 🚧
3. Nested Function Nested function (static scope) 5 🚧
4. First-class Function Able to pass functions, support closure 5 ⭕🚧

Note: Some test cases of First-class Function also use the feature of nested function.

AST Structure

Basic structure of nodes in AST is shown below.

---
title: nodeAST
---
classDiagram
    class nodeAST{
        +enum nodeType
        +int integer
        +char* string
        +nodeAST* leftChild
        +nodeAST* rightChild
    }
    class leftChild
    class rightChild
    leftChild <|-- nodeAST
    rightChild <|-- nodeAST
---
title: node_If_AST
---
classDiagram
    class node_If_AST{
        +enum nodeType
        +nodeAST* conditionChild
        +nodeAST* thenChild
        +nodeAST* elseChild
    }
    class conditionChild
    class thenChild
    class elseChild
    conditionChild <|-- node_If_AST
    thenChild <|-- node_If_AST
    elseChild <|-- node_If_AST

Node Types are defined as follows.

  • nodeType for leaf nodes
  1. NODE_INTEGER
  2. NODE_BOOLEAN
  3. NODE_STRING
  • nodeType for internal nodes
  1. NODE_ADDITION
  2. NODE_SUBTRACTION
  3. NODE_MULTIPLICATION
  4. NODE_DIVISION
  5. NODE_MODULUS
  6. NODE_GREATER
  7. NODE_SMALLER
  8. NODE_EQUAL
  9. NODE_AND
  10. NODE_OR
  11. NODE_NOT
  12. NODE_PRINT_NUM
  13. NODE_PRINT_BOOL
  14. NODE_IF_EXPRESSION
  15. NODE_VARIABLE
  16. NODE_DEFINE
  17. NODE_PARAMETER
  18. NODE_ARGUMENT
  19. NODE_FUNCTION_CALLEE
  20. NODE_FUNCTION_CALLER
  21. NODE_STATEMENT

Here are some examples of AST structure.

Operators of Addition, Muliplication and Equal

(OP 1 2 3)
graph TB
3(OP) --> 103(OP)
3 --> 200(NODE_INTEGER\n3)
103 --> 300(NODE_INTEGER\n1)
103 --> 400(NODE_INTEGER\n2)

linkStyle 0,2 stroke:orange;
linkStyle 1,3 stroke:purple;
classDef gray fill:gray;
class 3,103 gray;

Statement

(print-num 1)
(print-num 2)
(print-num 3)
graph TB
23(NODE_STATEMENT) --> 123(NODE_STATEMENT)
23 --> 214(NODE_PRINT_NUM)
123 --> 314(NODE_PRINT_NUM)
314 --> 0(NODE_INTEGER\n1)
123 --> 414(NODE_PRINT_NUM)
414 --> 100(NODE_INTEGER\n2)
214 --> 400(NODE_INTEGER\n3)

linkStyle 0,2,3,5,6 stroke:orange;
linkStyle 1,4 stroke:purple;
classDef gray fill:gray;
class 23,123 gray;

Parameter

(x y z)
graph TB
19(NODE_PARAMETER) --> 2(NODE_STRING\nx)
19 --> 119(NODE_PARAMETER)
119 --> 102(NODE_STRING\ny)
119 --> 219(NODE_PARAMETER)
219 --> 202(NODE_STRING\nz)

linkStyle 0,2,4 stroke:orange;
linkStyle 1,3 stroke:purple;
classDef gray fill:gray;
class 19,119,219 gray;

Argument

(function-name 4 3 (- x 1))
graph TB
20(NODE_ARGUMENT) --> 0(NODE_INTEGER\n4)
20 --> 120(NODE_ARGUMENT)
120 --> 100(NODE_INTEGER\n3)
120 --> 220(NODE_ARGUMENT)
220 --> 4(NODE_SUBTRACTION)
4 --> 17(NODE_VARIABLE)
4 --> 200(NODE_INTEGER\n1)
17 --> 2(NODE_STRING\nx)

linkStyle 0,2,4,5,7 stroke:orange;
linkStyle 1,3,6 stroke:purple;
classDef gray fill:gray;
class 20,120,220 gray;

Anonymous Funcion

(print-num ((fun (x) (+ x 1)) 3))
graph TB
14(NODE_PRINT_NUM) --> 22(NODE_FUNCTION_CALLER)
22 --> 21(NODE_FUNCTION_CALLEE)
22 --> 20(NODE_ARGUMENT)
21 --> 19(NODE_PARAMETER)
21 --> 3(NODE_ADDITION)
19 --> 2(NODE_STRING\nx)
3 --> 17(NODE_VARIABLE)
3 --> 0(NODE_INTEGER\n1)
17 --> 102(NODE_STRING\nx)
20 --> 100(NODE_INTEGER\n3)

linkStyle 0,1,3,5,6,8,9 stroke:orange;
linkStyle 2,4,7 stroke:purple;

Recursion

(define factorial
  (fun (x)
    (if
      (= x 1)
      x
      (* x (factorial (- x 1)))
    )
  )
)

(print-num (factorial 4))
graph TB
23(NODE_STATEMENT) --> 18(NODE_DEFINE)
23 --> 14(NODE_PRINT_NUM)
18 --> 2(NODE_STRING\nfactorial)
18 --> 21(NODE_FUNCTION_CALLEE)
21 --> 19(NODE_PARAMETER)
21 --> 16(NODE_IF_EXPRESSION)
19 --> 102(NODE_STRING\nx)
16 --> 10(NODE_EQUAL)
16 --> 17(NODE_VARIABLE)
16 --> 3(NODE_MULTIPLICATION)
10 --> 117(NODE_VARIABLE)
10 --> 100(NODE_INTEGER\n1)
17 --> 202(NODE_STRING\nx)
3 --> 217(NODE_VARIABLE)
3 --> 22(NODE_FUNCTION_CALLER)
117 --> 302(NODE_STRING\nx)
22 --> 402(NODE_STRING\nfactorial)
22 --> 20(NODE_ARGUMENT)
20 --> 4(NODE_SUBTRACTION)
4 --> 317(NODE_VARIABLE)
4 --> 200(NODE_INTEGER\n1)
317 --> 502(NODE_STRING\nx)
217 --> 602(NODE_STRING\nx)
14 --> 122(NODE_FUNCTION_CALLER)
122 --> 702(NODE_STRING\nfactorial)
122 --> 220(NODE_ARGUMENT)
220 --> 300(NODE_INTEGER\n4)

linkStyle 0,2,4,6,7,10,12,13,15,16,18,19,21,22,23,24,26 stroke:orange;
linkStyle 8 stroke:green;
linkStyle 1,3,5,9,11,14,17,20,25 stroke:purple;

First-class Function (pass argument as function expression)

(define foo
  (fun (f x) (f x)))

(print-num
  (foo (fun (x) (- x 1)) 10))
graph TB
23(NODE_STATEMENT) --> 18(NODE_DEFINE)
23 --> 114(NODE_PRINT_NUM)
18 --> 2(NODE_STRING\nfoo)
18 --> 21(NODE_FUNCTION_CALLEE)
21 --> 19(NODE_PARAMETER)
21 --> 22(NODE_FUNCTION_CALLER)
19 --> 102(NODE_STRING\nf)
19 --> 119(NODE_PARAMETER)
119 --> 202(NODE_STRING\nx)
22 --> 302(NODE_STRING\nf)
22 --> 20(NODE_ARGUMENT)
20 --> 17(NODE_VARIABLE)
17 --> 402(NODE_STRING\nx)
114 --> 122(NODE_FUNCTION_CALLER)
122 --> 502(NODE_STRING\nfoo)
122 --> 120(NODE_ARGUMENT)
120 --> 121(NODE_FUNCTION_CALLEE)
120 --> 220(NODE_ARGUMENT)
121 --> 219(NODE_PARAMETER)
121 --> 4(NODE_SUBTRACTION)
219 --> 602(NODE_STRING\nx)
4 --> 317(NODE_VARIABLE)
4 --> 0(NODE_INTEGER\n1)
317 --> 702(NODE_STRING\nx)
220 --> 300(NODE_INTEGER\n10)

linkStyle 0,2,4,6,8,9,11,12,13,14,16,18,20,21,23,24 stroke:orange;
linkStyle 1,3,5,7,10,15,17,19,22 stroke:purple;

First-class Function (pass argument as function name)

(define foo
  (fun (f x) (f x)))

(define hihi
  (fun (x) (- x 1)))

(print-num
  (foo hihi 10))
graph TB
23(NODE_STATEMENT) --> 123(NODE_STATEMENT)
23 --> 214(NODE_PRINT_NUM)
123 --> 18(NODE_DEFINE)
123 --> 118(NODE_DEFINE)
18 --> 2(NODE_STRING\nfoo)
18 --> 21(NODE_FUNCTION_CALLEE)
21 --> 19(NODE_PARAMETER)
21 --> 22(NODE_FUNCTION_CALLER)
19 --> 102(NODE_STRING\nf)
19 --> 119(NODE_PARAMETER)
119 --> 202(NODE_STRING\nx)
22 --> 302(NODE_STRING\nf)
22 --> 20(NODE_ARGUMENT)
20 --> 17(NODE_VARIABLE)
17 --> 402(NODE_STRING\nx)
118 --> 502(NODE_STRING\nhihi)
118 --> 121(NODE_FUNCTION_CALLEE)
121 --> 219(NODE_PARAMETER)
121 --> 4(NODE_SUBTRACTION)
219 --> 602(NODE_STRING\nx)
4 --> 117(NODE_VARIABLE)
4 --> 0(NODE_INTEGER\n1)
117 --> 702(NODE_STRING\nx)
214 --> 122(NODE_FUNCTION_CALLER)
122 --> 802(NODE_STRING\nfoo)
122 --> 220(NODE_ARGUMENT)
220 --> 217(NODE_VARIABLE)
220 --> 320(NODE_ARGUMENT)
217 --> 902(NODE_STRING\nhihi)
320 --> 100(NODE_INTEGER\n10)

linkStyle 0,2,4,6,8,10,11,13,14,15,17,19,20,22,23,24,26,28,29 stroke:orange;
linkStyle 1,3,5,7,9,12,16,18,21,25,27 stroke:purple;

Stack Frame

Here is an example about exponentiation to show that how the stack frame works

For instance: Exponentiation

Implement using MiniLisp

(define power
  (fun (a b)
    (if (= b 0)
        1
        (* a (power a (- b 1))))))

(print-num (power 2 3))

Mathmatical expression

$$ a^b = \begin{cases} 1 & \text{if } b = 0 \\ a \times a^{(b-1)} & \text{otherwise} \end{cases} $$

Schematic diagram

As shown in the schematic diagram, at this time:
a = passedArgumentStack[basePtr - 1] = 2, b = passedArgumentStack[basePtr - 2] = 0