-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLiveness.java
215 lines (188 loc) · 7.2 KB
/
Liveness.java
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/**
* Evaluating the information, I stored about IN and OUT.
*/
import java.util.HashMap;
import java.util.LinkedList;
public class Liveness {
private GraphVisitor analysis;
private TypeChecker typeChecker;
private LinkedList<Block> blocks;
/**
* Constructor for the Liveness analysis. Copy first all results from the former graph visitors
* and evaluate all the results
*/
public Liveness(GraphVisitor analysis, TypeChecker typeChecker) {
this.analysis = analysis;
this.blocks = analysis.getBlocks();
this.analysis.exitNode();
this.typeChecker = typeChecker;
addSuccessors();
removeSuccessors();
startLiveness();
// debug();
evaluateLiveness();
}
/**
* Preparing all the missing and unneceassary successors for the liveness analysis
*/
private void addSuccessors() {
// Add last successors to the blocks, which have been stored in a map
HashMap<Integer, Integer> map = analysis.getAddSuccessors();
int value;
for (int key : map.keySet()) {
value = map.get(key);
if (value-1 < blocks.size()) // protecting to run out of the index of blocks
blocks.get(key-1).addSuccessor(blocks.get(value-1));
}
}
private void removeSuccessors() {
for (Integer i : analysis.getRemoveSuccessors())
blocks.get(i-1).getSuccessor().removeFirst();
}
/**
* Print all information about the blocks
*/
private void debug() {
System.out.println("# Evaluating Liveness...");
Block currentBlock;
for (Block block : blocks) {
currentBlock = block;
System.out.print("\t#" + currentBlock.getBlockID() + "\tDef: " + currentBlock.getDef() + "\t\tUse: " + currentBlock.getUse() + "\t\tSuccessor: ");
if (currentBlock.hasSuccessor())
for (Block element : currentBlock.getSuccessor())
System.out.print(element.getBlockID() + " ");
System.out.print("\t\t IN: ");
for (String element : currentBlock.getIn())
System.out.print(element + " ");
System.out.print("\t\t OUT: ");
for (String element : currentBlock.getOut())
System.out.print(element + " ");
System.out.println();
}
}
/****************************************************************************************************/
/**
* Start liveness analysis like in our course
*/
private void startLiveness() {
if (blocks.size() < Integer.MAX_VALUE) {
Block currentBlock = blocks.getFirst();
boolean changed = true;
calcFirstIteration(); // Copy USE to IN in all the blocks!
LinkedList<String> diff;
LinkedList<String> inSuccessor;
while (changed) {
changed = false;
for (Block block : blocks) {
// Get IN
diff = calcDiff(currentBlock);
for (String element : diff)
if (!currentBlock.getIn().contains(element)) {
currentBlock.addIn(element);
changed = true;
}
// Get OUT
inSuccessor = calcInOfSuccessor(currentBlock);
for (String element : inSuccessor)
if (!currentBlock.getOut().contains(element)) {
currentBlock.addOut(element);
changed = true;
}
currentBlock = block;
}
}
}
}
/**
* Copy USE to IN of each Block. First step of algorithm.
*/
private void calcFirstIteration() {
for (Block block : blocks)
if (block.hasUse())
for (String element : block.getUse())
block.addIn(element);
}
/**
* Calculate OUT[n] - DEF[n]
*/
private LinkedList<String> calcDiff(Block currentBlock) {
LinkedList<String> output = new LinkedList<String>();
boolean duplicate = false;
for (String out : currentBlock.getOut()) {
if (out.equals(currentBlock.getDef()))
duplicate = true;
if (!duplicate) {
output.add(out);
duplicate = false;
}
}
return output;
}
private LinkedList<String> calcInOfSuccessor(Block currentBlock) {
LinkedList<String> inSuccessor = new LinkedList<String>();
if (currentBlock.hasSuccessor())
for (Block successor : currentBlock.getSuccessor())
for (String element : successor.getIn())
inSuccessor.add(element);
return inSuccessor;
}
/****************************************** Create Adjacency Matrix ******************************************/
private void evaluateLiveness() {
int registers = calcMaximum();
System.out.println("Registers: "+registers);
if (registers != 0)
createAdjacencyMatrix(); // if it is zero, there are no variables
}
/**
* Calculate maximum of all the OUTs to get the number of registers needed
*/
private int calcMaximum() {
int max = 0;
for (Block block : blocks)
if (max < block.getOut().size())
max = block.getOut().size();
return max;
}
/**
* This method creates a Node for each identifier and calls a method to add edges to
* the other identifiers according to the liveness analysis.
*/
private void createAdjacencyMatrix() {
LinkedList<Nodes> nodes = new LinkedList<Nodes>();
// Make a new Node for all identifier found by the typeChecker
for (String element : typeChecker.getSymbolTable().keySet())
nodes.add(new Nodes(element));
// Add edges to those Nodes
createEdges(nodes);
// Print those Edges
System.out.println();
for (Nodes node : nodes)
System.out.println("ID " + node.getIdentifier() + " -> " + node.getEdge());
System.out.println();
System.out.println("How to read it: ID x has edges to (->) all the IDs in Brackets.\n");
}
/**
* Creates an edge for all identifiers in conflict
*/
private void createEdges(LinkedList<Nodes> nodes) {
Nodes node;
// find for each block
for (Block block : blocks)
for (String element : block.getOut()) { // those variables in OUT
node = nodes.get(findNode(element, nodes)); // set current node
// and add new edges to node
for (String addOut : block.getOut())
if (!node.getEdge().contains(addOut) && !node.getIdentifier().equals(addOut))
node.addEdge(addOut);
}
}
private int findNode(String element, LinkedList<Nodes> nodes) {
int i = 0;
for (Nodes node : nodes)
if (node.getIdentifier().equals(element))
return i;
else
i++;
return -1;
}
}