-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAst.cpp
More file actions
129 lines (105 loc) · 2.61 KB
/
Ast.cpp
File metadata and controls
129 lines (105 loc) · 2.61 KB
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
#include "Ast.h"
namespace AST
{
void Node::Accept(AstVisitor* visitor)
{
visitor->Visit(this);
}
LabelNode::LabelNode(const char* name)
: Name(name)
, Next(nullptr)
{
}
LabelNode::~LabelNode()
{
delete Next;
free(const_cast<char*>(Name));
}
void LabelNode::Accept(AstVisitor* visitor)
{
visitor->Visit(this);
}
OperandNode::OperandNode(const OperandType optype, const int value, const AddressingType addrType, const char* labelName, const int indexedOffset)
: OpType(optype)
, Value(value)
, AddrType(addrType)
, IndexedOffset(indexedOffset)
, LabelName(labelName)
{
}
void OperandNode::Accept(AstVisitor* visitor)
{
visitor->Visit(this);
}
CommandNode::CommandNode(const int opcode, const int line)
: Opcode(opcode)
, Line(line)
, Next(nullptr)
, Labels(nullptr)
{
}
CommandNode::~CommandNode()
{
delete(Next);
}
void CommandNode::Accept(AstVisitor* visitor)
{
visitor->Visit(this);
}
OneOperandCommandNode::OneOperandCommandNode(const int opcode, OperandNode* first, const int line)
: CommandNode(opcode, line)
, First(first)
{
}
OneOperandCommandNode::~OneOperandCommandNode()
{
delete First;
}
void OneOperandCommandNode::Accept(AstVisitor* visitor)
{
visitor->Visit(this);
}
DoubleOperandCommandNode::DoubleOperandCommandNode(const int opcode, OperandNode* first, OperandNode* second, const int line)
: CommandNode(opcode, line)
, First(first)
, Second(second)
{
}
DoubleOperandCommandNode::~DoubleOperandCommandNode()
{
delete First;
delete Second;
}
void DoubleOperandCommandNode::Accept(AstVisitor* visitor)
{
visitor->Visit(this);
}
void ProgramNode::Accept(AstVisitor* visitor)
{
visitor->Visit(this);
for (CommandNode* n = Commands; n != nullptr; n = n->Next)
n->Accept(visitor);
}
ProgramNode::ProgramNode(CommandNode* commands)
: Commands(commands)
{
}
ProgramNode::~ProgramNode()
{
delete Commands;
}
AbstractSyntaxTree::AbstractSyntaxTree()
: Program(nullptr)
{
}
void AbstractSyntaxTree::SetProgram(ProgramNode* node)
{
if (Program)
delete Program;
Program = node;
}
void AbstractSyntaxTree::Accept(AstVisitor* visitor)
{
Program->Accept(visitor);
}
}