aboutsummaryrefslogtreecommitdiff
path: root/src/include/tree.h
blob: 3dfb5be4e7ade8e4bc19f4c451d98324463a2afc (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
#ifndef TREE_H
#define TREE_H

#include "util.h"

typedef enum TREE_TYPE {
      TREE_TYPE_BLOCK,
      TREE_TYPE_LINT,
      TREE_TYPE_LSTR,
      TREE_TYPE_TAG,
      TREE_TYPE_DARG,
      TREE_TYPE_CARG,
      TREE_TYPE_DEF,
      TREE_TYPE_CAL,
} 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;

      /* 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_DATA_TAG* nxt;
      } tag;

      /* Definition arguments. */
      struct TREE_DATA_DARG {
         struct TREE_DATA_TAG* tag;
         struct TREE_DATA_DARG* nxt;
      } darg;

      /* Call arguments. */
      struct TREE_DATA_CARG {
         struct TREE* val;
         struct TREE_DATA_CARG* nxt;
      } carg;
      
      /* Definitions. */
      struct TREE_DATA_DEF {
         struct TREE_DATA_TAG* tag;
         struct TREE_DATA_DARG* arg;
         struct TREE* val;
      } def;

      /* Calls. */
      struct TREE_DATA_CAL {
         char* target;
         struct TREE_DATA_CARG* arg;
      } cal;

   } 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