-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPoolTableGenerator.java
143 lines (119 loc) · 4.28 KB
/
PoolTableGenerator.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
import java.util.*;
// public class PoolTableGenerator {
// public static void main(String[] args) {
// String[] sourceCode = {
// "START 100",
// "READ A",
// "MOVER AREG, ='1'",
// "MOVEM AREG, B",
// "MOVER BREG, ='6'",
// "ADD AREG, BREG",
// "COMP AREG, A",
// "BC GT, LAST",
// "LTORG",
// "NEXT SUB AREG, ='1'",
// "MOVER CREG, B",
// "ADD CREG, ='8'",
// "MOVEM CREG, B",
// "PRINT B",
// "LAST STOP",
// "A DS 1",
// "B DS 1",
// "END"
// };
// HashMap<String, Integer> poolTable = new HashMap<>();
// int literalCounter = 0;
// for (String line : sourceCode) {
// String[] tokens = line.split("\\s+");
// for (String token : tokens) {
// if (token.startsWith("='") && token.endsWith("'")) {
// String literal = token.substring(2, token.length() - 1);
// if (!poolTable.containsKey(literal)) {
// poolTable.put(literal, literalCounter);
// literalCounter++;
// }
// }
// }
// }
// // Print pool table
// System.out.println("Pool Table:");
// System.out.println("Literal\tAddress");
// for (String literal : poolTable.keySet()) {
// System.out.println(literal + "\t" + poolTable.get(literal));
// }
// }
// }
class PoolTableGenerator{
public static void main(String [] args){
String[] sourceCode = {
"START 100",
"READ A",
"LTORG",
"MOVER AREG, ='1'",
"MOVER AREG, ='2'",
"MOVEM AREG, B",
"MOVER BREG, ='6'",
"ADD AREG, BREG",
"COMP AREG, A",
"BC GT, LAST",
"LTORG",
"NEXT SUB AREG, ='1'",
"MOVER CREG, B",
"LTORG",
"ADD CREG, ='8'",
"MOVEM CREG, B",
"PRINT B",
"LAST STOP",
"A DS 1",
"B DS 1",
"END"
};
// ArrayList<Integer> poolTable= new ArrayList<>();
// int count=0;
// boolean flag=false;
// for(String line : sourceCode){
// String[] tokens = line.split("\\s+");
// for(String token : tokens){
// if(token.startsWith("='") && token.endsWith("'")){
// if(count==0 && poolTable.isEmpty()){
// poolTable.add(1);
// }
// if(flag ==true){
// poolTable.add(count+1);
// flag=false;
// }
// count++;
// }
// else if(token.equals("LTORG") && !poolTable.isEmpty()){
// System.out.println("Flag set true");
// flag=true;
// }
// }
// }
ArrayList<Integer> poolTable = new ArrayList<>();
int count=0;
boolean flag = false;
for(String line : sourceCode){
String[] tokens = line.split("\\s+");
for(String token : tokens){
if(token.startsWith("='") && token.endsWith("'")){
if(poolTable.isEmpty() && count==0)
poolTable.add(1);
count++;
if(flag && !poolTable.isEmpty()){
poolTable.add(count);
flag = false;
}
}
else if(token.equals("LTORG") && !poolTable.isEmpty()){
flag=true;
}
}
}
System.out.println("\nLiteral Table : ");
// System.out.println("literal\tcount");
for(Integer literal : poolTable){
System.out.print(literal+"\n");
}
}
}