-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBlock.java
76 lines (68 loc) · 1.97 KB
/
Block.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
/**
* Structure for the liveness analysis. Here are the information about DEF, USE, IN and OUT stored
* I create for each line one so called Block and store the above mentioned information in it
*/
import java.util.LinkedList;
public class Block {
private String def;
public LinkedList<String> use;
private LinkedList<String> in = new LinkedList<String>();
private LinkedList<String> out = new LinkedList<String>();
private LinkedList<Block> successor;
private boolean hasSuccessor = false;
private boolean hasUse = false;
protected int blockID;
public Block(String identifier, int blockID) { // for an assignment context
this.blockID = blockID;
this.def = identifier;
}
public Block(int blockID) {
this.blockID = blockID;
}
////////////////////////////////////////////////////////////////////////////////
public void addUse(String input) {
if (!hasUse) {
use = new LinkedList<String>();
hasUse = true;
}
use.add(input);
}
public void addIn(String input) {
in.add(input);
}
public void addOut(String input) {
out.add(input);
}
public void addSuccessor(Block input) {
if (!hasSuccessor) {
successor = new LinkedList<Block>();
hasSuccessor = true;
}
successor.add(input);
}
////////////////////////////////////////////////////////////////////////////////
public LinkedList<String> getUse() {
return use;
}
public LinkedList<String> getIn() {
return in;
}
public LinkedList<String> getOut() {
return out;
}
public LinkedList<Block> getSuccessor() {
return successor;
}
public String getDef() {
return def;
}
public boolean hasSuccessor() {
return hasSuccessor;
}
public int getBlockID() {
return blockID;
}
public boolean hasUse() {
return hasUse;
}
}