aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/type.cpp
blob: 44c4ddb7f0b53e31a5bb96bd7d39411d0c5595ee (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 <iostream>


// Type definition

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

void Type::printXml() const
{}

VariableStackBindings Type::printAsm(VariableStackBindings bindings, unsigned& label_count) 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, unsigned size)
    : array_type_(array_type), size_(size)
{}

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";
}