aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/type.cpp
blob: 04bc245d016b7c46ffd453d10f0fb7dba0193bf9 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#include "type.hpp"

#include <cstdio>
#include <exception>


// Type definition

void Type::print() const
{
    printf("%s\n", getType().c_str());
}

void Type::printXml() const
{}

VariableStackBindings Type::printAsm(VariableStackBindings bindings, unsigned&) const
{
    return bindings;
}

TypePtr Type::type()
{
    throw std::runtime_error("Error : does not have a type");
}

TypePtr Type::type(Type*)
{
    throw std::runtime_error("Error : cannot assign type");
}

TypePtr Type::type(TypePtr)
{
    throw std::runtime_error("Error : cannot assign type");
}

void Type::setSigned(bool)
{
    throw std::runtime_error("Error : cannot set sign");
}

void Type::setExtern(bool)
{
    throw std::runtime_error("Error : cannot set extern");
}

void Type::setStatic(bool)
{
    throw std::runtime_error("Error : cannot set static");
}

void Type::setConst(bool)
{
    throw std::runtime_error("Error : cannot set const");
}

void Type::setSize(int)
{
    throw std::runtime_error("Error : cannot set size");
}


// Pointer definition

Pointer::Pointer()
{}

std::string Pointer::getType() const
{
    return "pointer";
}


// Array definition

Array::Array()
{}

std::string Array::getType() const
{
    return "array";
}


// TypeContainer definition

TypeContainer::TypeContainer()
    : type_(nullptr), size_(32), extern_(false), static_(false), const_(false), signed_(true)
{}

std::string TypeContainer::getType() const
{
    return type_->getType();
}

TypePtr TypeContainer::type()
{
    return type_;
}

TypePtr TypeContainer::type(Type* type_ptr)
{
    TypePtr new_type_ptr(type_ptr);
    type_ = new_type_ptr;

    return type_;
}

TypePtr TypeContainer::type(TypePtr type_ptr)
{
    type_ = type_ptr;
    
    return type_;
}

void TypeContainer::setSigned(bool _signed)
{
    signed_ = _signed;
}

void TypeContainer::setExtern(bool _extern)
{
    extern_ = _extern;
}

void TypeContainer::setStatic(bool _static)
{
    static_ = _static;
}

void TypeContainer::setConst(bool _const)
{
    const_ = _const;
}

void TypeContainer::setSize(int size)
{
    size_ = size;
}


// Int definition

Int::Int()
{}

std::string Int::getType() const
{
    return "int";
}


// Void definition

Void::Void()
{}

std::string Void::getType() const
{
    return "void";
}


// Char definition

Char::Char()
{}

std::string Char::getType() const
{
    return "char";
}


// Float definition

Float::Float()
{}

std::string Float::getType() const
{
    return "float";
}