aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/type.cpp
blob: 6a89e2af558093eea726396ed8114e9dace59227 (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
#include "type.hpp"
#include "bindings.hpp"

#include <iostream>


// Type definition

void Type::print() const
{
    std::cout << getType() << " " << std::endl;
}

void Type::printxml() const
{}

VariableStackBindings Type::printasm(VariableStackBindings bindings) const
{
    return bindings;
}


// Pointer definition

Pointer::Pointer(Type* _pointer_type) : pointer_type(_pointer_type)
{}

std::string Pointer::getType() const
{
    return "pointer " + pointer_type->getType();
}


// Array definition

Array::Array(Type* _array_type, int32_t _size) : size(_size), array_type(_array_type)
{}

std::string Array::getType() const
{
    return "array " + array_type->getType();
}


// Void definition

Void::Void()
{}

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


// Int defintion

Int::Int()
{}

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


// Char definition

Char::Char()
{}

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