aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/type.hpp
blob: 608b66021c11892466e9efff0a3b477715c7eb16 (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
71
72
73
74
75
#ifndef TYPE_HPP
#define TYPE_HPP

#include "node.hpp"

#include <memory>

class Type;

typedef std::shared_ptr<Type> TypePtr;

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

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


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


class Pointer : public Type {
protected:
    TypePtr pointer_type;

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


class Array : public Type {
protected:
    int32_t size;
    TypePtr array_type;

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


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


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


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


#endif