aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/type.hpp
blob: 415f00f5899a9d03c75a7e9ddb75e1d24b407821 (plain)
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
#ifndef TYPE_HPP
#define TYPE_HPP

#include "ast.hpp"


class Type : public Node {
public:
    virtual void print() const;
    virtual void printxml() const;
    virtual void printasm() const;

    virtual std::string getType() const = 0;
};


class Specifier : Type {
public:
    virtual std::string getType() const = 0;
};


class Pointer : Type {
protected:
    Type* pointer_type;

public:
    Pointer(Type* _pointer_type);
    
    virtual std::string getType() const;
};


class Array : Type {
protected:
    int32_t size;
    Type* array_type;

public:
    Array(Type* _array_type, int32_t _size = 0);
    
    virtual std::string getType() const;
};


class Void : Specifier {
public:
    Void();
    
    virtual std::string getType() const;
};


class Int : Specifier {
public:
    Int();
    
    virtual std::string getType() const;
};


class Char : Specifier {
public:
    Char();
    
    virtual std::string getType() const;
};


#endif