-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContext.hpp
101 lines (73 loc) · 2.17 KB
/
Context.hpp
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
#pragma once
#include <unordered_map>
#include <stack>
#include "Identifier.hpp"
#include "Value.hpp"
#include "Type.hpp"
#include "Exceptions.hpp"
#include "Selector.hpp"
#include "Procedure.hpp"
class Selector;
class Type;
class Procedure;
class Context
{
public:
Context();
~Context();
void declareVariable(Identifier identifier, Type* varType);
void declareType(Identifier identifier, Type* type);
void declareProcedure(Identifier identifier, Procedure* procedure);
void setVariable(Identifier identifier, Value* value);
void setVariable(Identifier identifier, Selector* selector, Value* value);
void declareAndSetVariable(Identifier identifier, Value* value);
void declareAndReferenceVariable(Identifier identifier, Value* value);
void removeObsoleteVariables();
void restoreShadowedVariables();
Value* getVariableValue(Identifier identifier);
Value* getVariableValue(Identifier identifier, Selector* selector);
Value* getVariableReference(Identifier identifier);
Value* getVariableReference(Identifier identifier, Selector* selector);
Value* createValueOfType(Identifier typeIdentifier);
Procedure* getProcedure(Identifier identifier);
bool variableIsDeclared(Identifier identifier);
bool procedureIsDeclared(Identifier identifier);
bool typeIsDeclared(Identifier identifier);
Type* getType(Identifier identifier);
struct Variable
{
Variable()
{
identifier = "";
value = nullptr;
declarationLevel = 0;
}
Variable(Identifier identifier, Value* value, int declarationLevel):
identifier(identifier), value(value), declarationLevel(declarationLevel)
{
}
Identifier identifier;
Value* value;
int declarationLevel;
};
struct ShadowedVariable
{
ShadowedVariable()
{
variable = nullptr;
shadowLevel = 0;
}
ShadowedVariable(Variable* variable, int shadowLevel):
variable(variable), shadowLevel(shadowLevel)
{
}
Variable* variable;
int shadowLevel;
};
std::unordered_map<Identifier, Type*> types;
std::unordered_map<Identifier, Variable*> variables;
std::unordered_map<Identifier, Procedure*> procedures;
std::stack<ShadowedVariable*> shadowedVariables;
std::stack<Variable*> declaredVariables;
int currentLevel;
};