aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/include/type.hpp
blob: 9b9bbba37628bd3867d7ac72d0ae029cf9f393b7 (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
76
77
78
#ifndef TYPE_HPP
#define TYPE_HPP

#include "bindings.hpp"
#include "node.hpp"

#include <memory>
#include <string>

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, unsigned& label_count) 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:
    TypePtr array_type_;    
    unsigned size_;

public:
    Array(Type* array_type, unsigned 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