aboutsummaryrefslogtreecommitdiff
path: root/src/include/tree.h
blob: 8954ef8a34d4b794b507c343b862228bdb7e663f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#ifndef TREE_H
#define TREE_H

#include "util.h"

typedef enum TREE_TYPE {
      TREE_TYPE_BLOCK,
      TREE_TYPE_EXPR,
      TREE_TYPE_LINT,
      TREE_TYPE_LSTR,
      TREE_TYPE_TAG,
      TREE_TYPE_DARG,
      TREE_TYPE_CARG,
      TREE_TYPE_DEF,
      TREE_TYPE_CALL,
} tree_type_t;

/* The Abstract Syntax Tree (AST) structure. */
typedef struct TREE {
   tree_type_t type;

   union TREE_DATA{
      /* Block. */
      struct TREE_DATA_BLOCK {
         /* The first expression in the block. */
         struct TREE* val;
         /* 
            The next block in the linked list.
            - If it's `NULL`, it's the end of the block.
         */
         struct TREE* nxt;
      } block;

      /* Expression. */
      struct TREE_DATA_EXPR {
         /* The contents of the expression. */
         struct TREE* val;
      } expr;

      /* Literal integer. */
      struct TREE_DATA_LINT {
         int val;
      } lint;

      /* Literal string. */
      struct TREE_DATA_LSTR {
         size_t len;
         char* val;
      } lstr;

      /* Tags. */
      struct TREE_DATA_TAG {
         char* val;
         struct TREE* nxt; /* TAG* */
      } tag;

      /* Definition arguments. */
      struct TREE_DATA_DARG {
         struct TREE* tag; /* TAG* */
         struct TREE* nxt; /* DARG */
      } darg;

      /* Call arguments. */
      struct TREE_DATA_CARG {
         struct TREE* val;
         struct TREE* nxt; /* CARG */
      } carg;
      
      /* Definitions. */
      struct TREE_DATA_DEF {
         struct TREE* tag; /* TAG */
         struct TREE* arg; /* DARG */
         struct TREE* val;
      } def;

      /* Calls. */
      struct TREE_DATA_CALL {
         char* target;
         struct TREE* arg; /* CARG */
      } call;

   } data;
} tree_t;

/* Create a new AST. */
tree_t* tree_init(int type);
/* Destroy the AST. */
void tree_destroy(tree_t* tree);

/* Print a tree. */
void tree_print(tree_t* tree, int nest);

#endif