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
|
package vaporize.library;
import cs132.vapor.ast.*;
import st.*;
import misc.*;
import java.util.*;
public class SpillEverywhere<P, R> extends VInstr.VisitorPR<P, R, RuntimeException> {
ArrayList<String> vapor;
String vaporm;
public SpillEverywhere(ArrayList<String> vapor) {
this.vapor = vapor;
this.vaporm = "";
}
public R visit(P p, VMemRead n) throws RuntimeException {
PrintFilter.print(String.format("%s (%s:%s)",
n.getClass().getSimpleName(),
this.vapor.get(n.sourcePos.line-1),
n.sourcePos.toString()), true);
return null;
}
public R visit(P p, VMemWrite n) throws RuntimeException {
PrintFilter.print(String.format("%s (%s:%s)",
n.getClass().getSimpleName(),
this.vapor.get(n.sourcePos.line-1),
n.sourcePos.toString()), true);
return null;
}
public R visit(P p, VAssign n) throws RuntimeException {
PrintFilter.print(String.format("%s (%s:%s)",
n.getClass().getSimpleName(),
this.vapor.get(n.sourcePos.line-1),
n.sourcePos.toString()), true);
return null;
}
public R visit(P p, VBranch n) throws RuntimeException {
PrintFilter.print(String.format("%s (%s:%s)",
n.getClass().getSimpleName(),
this.vapor.get(n.sourcePos.line-1),
n.sourcePos.toString()), true);
return null;
}
public R visit(P p, VGoto n) throws RuntimeException {
PrintFilter.print(String.format("%s (%s:%s)",
n.getClass().getSimpleName(),
this.vapor.get(n.sourcePos.line-1),
n.sourcePos.toString()), true);
return null;
}
public R visit(P p, VCall n) throws RuntimeException {
PrintFilter.print(String.format("%s (%s:%s)",
n.getClass().getSimpleName(),
this.vapor.get(n.sourcePos.line-1),
n.sourcePos.toString()), true);
return null;
}
public R visit(P p, VBuiltIn n) throws RuntimeException {
PrintFilter.print(String.format("%s (%s:%s)",
n.op.name,
this.vapor.get(n.sourcePos.line-1),
n.sourcePos.toString()), true);
return null;
}
public R visit(P p, VReturn n) throws RuntimeException {
PrintFilter.print(String.format("%s (%s:%s)",
n.getClass().getSimpleName(),
this.vapor.get(n.sourcePos.line-1),
n.sourcePos.toString()), true);
return null;
}
}
|