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


// VariableStackBindings definition

VariableStackBindings::VariableStackBindings()
    : break_label_(""), continue_label_(""), stack_counter_(0), expression_stack_(16)
{}

void VariableStackBindings::insertBinding(const std::string &id, TypePtr type, const int &stack_position)
{
    auto binding = bindings_.find(id);

    if(binding == bindings_.end())
    {
	DeclarationData decl_data;
	decl_data.type = type;
	decl_data.stack_position = stack_position;
	bindings_.insert(std::pair<std::string, DeclarationData>(id, decl_data));
    }
    else
    {
	(*binding).second.stack_position = stack_position;
	(*binding).second.type = type;
    }
}

void VariableStackBindings::increaseStackPosition()
{
    stack_counter_ += 4;
}

void VariableStackBindings::increaseStackPosition(const int &position)
{
    stack_counter_ += position;
}

void VariableStackBindings::setStackPosition(const int &stack_counter)
{
    stack_counter_ = stack_counter;
}

void VariableStackBindings::nextExpressionStackPosition()
{
    expression_stack_ += 4;
}

void VariableStackBindings::setExpressionStackPosition(const int &stack_counter)
{
    expression_stack_ = stack_counter;
}

TypePtr VariableStackBindings::getType(const std::string &id) const
{
    auto binding = bindings_.find(id);
    return (*binding).second.type;
}

std::string VariableStackBindings::breakLabel()
{
    return break_label_;
}

std::string VariableStackBindings::breakLabel(const std::string &label)
{
    break_label_ = label;
    return break_label_;
}

std::string VariableStackBindings::continueLabel()
{
    return continue_label_;
}

std::string VariableStackBindings::continueLabel(const std::string &label)
{
    continue_label_ = label;
    return continue_label_;
}

int VariableStackBindings::currentStackPosition() const
{
    return stack_counter_;
}

int VariableStackBindings::stackPosition(const std::string &id) const
{
    auto binding = bindings_.find(id);

    if(binding != bindings_.end())
	return (*binding).second.stack_position;

    else return 0;
}

int VariableStackBindings::currentExpressionStackPosition() const
{
    return expression_stack_;
}

bool VariableStackBindings::bindingExists(const std::string &id) const
{
    auto binding = bindings_.find(id);

    if(binding == bindings_.end())
	return false;

    else
	return true;
}