-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconpiler(6).cpp
430 lines (411 loc) · 9.52 KB
/
conpiler(6).cpp
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
// conpiler.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<iostream>
#include<fstream>
#include<string>
#include<stack>
#include<sstream>
#include<algorithm>
#include<vector>
#include<fstream>
using namespace std;
#include"wordAnalysis.h"
const string syntax[11] = { "B", "BB", "B_^{B}{B}", "B^{B}",
"B_{B}", "T{B}{B}{B}", "M{B}{B}{B}",
"i", "n", " ", "(B)" };//T:\int,M:\sum,i:id,n:num
//DFA转移符号集
const string x = { 'B', '(', ')', '{', '}', '_', '^', 'T', 'M', 'n', 'i', ' ' };
const string terminal = { '(', ')', '{', '}', '_', '^', 'T', 'M', 'n', 'i', ' ', '$' };//length:12
const string follow_B = terminal;
#include"Item_GotoTable.h"
struct actiontype{
char action = ' ';
//default do nothing,{'a','s','r',' '},'a'=acc,'s'=shift in and goto state
//'j'=reduce and using syntax[ind]
//' '=blank means error;
int ind;
int state;
char action2 = ' ';//slave action
int ind2;
int state2;
};
struct actiontypeSingle{
char action = ' ';
int ind;
int state;
};
//SLR_Analysis_Table consist of action_table and transfer_table
struct SLR_Analysis_Table{
actiontype** ActionTable;
int *Tansfer_table;//cause only terminal symbol B
};
SLR_Analysis_Table GenSLR_Action_Table(const ItemSet_Goto A)
{
SLR_Analysis_Table ret;
const vector<setOfItems> C = A.ItemSets;
const vector<IGotoX>goto_t = A.GotoTable;
int statenum = C.size();
int *Transfer_table = new int[statenum];
for (size_t i = 0; i < statenum; i++)
{
Transfer_table[i] = -1;
}
int terminal_num = terminal.length();
actiontype **actiontable = new actiontype*[statenum];
for (int i = 0; i < statenum; i++)
{
actiontable[i] = new actiontype[terminal_num];//row is terminal
}
for (size_t i = 0; i < statenum; i++)
{//for each itemset
setOfItems its = C[i];
for (size_t j = 0; j < C[i].size(); j++)
{//for each item
item it = its[j];
if (it.synind == 0)
{
if (it.point_pos == 1)
{
//if S->B· exist in itemset-i then set action[i,$]=acc;
//as $ is the last symbol of non_terminal
actiontable[i][terminal.length() - 1].action = 'a';
}
else
{
Transfer_table[i] = goto_t[i].toX[0].toState;
}
}
else
{
if (it.point_pos==syntax[it.synind].length())
{//点在末尾,归约
for (size_t k = 0; k <terminal.length(); k++)
{
if (actiontable[i][k].action == 's')
{//检测是否有移进归约冲突
cout << "ERROR1" << endl;
}
if (actiontable[i][k].ind!= it.synind && actiontable[i][k].action == 'r')
{//检测是否有归约归约冲突
cout << "ERROR3" << endl;
}
actiontable[i][k].action = 'r';//reduce by syntax[it.synind]
actiontable[i][k].ind = it.synind;
}
}
else
{//点不在末尾,移进
char ch = syntax[it.synind][it.point_pos];
if (ch=='B')
{//第一个就是B
Transfer_table[i] = goto_t[i].toX[0].toState;
}
else
{
int k = 0;
for ( k = 0; k < terminal.length(); k++)
{
if (ch == terminal[k])
{
break;
}
}
int xp = 0;
for (; xp < x.length(); xp++)
{
if (ch == goto_t[i].toX[xp].x)
{
break;
}
}
if (actiontable[i][k].action == 'r')//已经有归约操作了
{
//检测是否有移进归约冲突
cout << "Items: " << i << " terminal:" << ch << endl;
cout << "using syntax No."<<actiontable[i][k].ind << endl;
cout << "移进归约冲突" << endl;
actiontable[i][k].action2 = 's';
if (goto_t[i].toX[xp].toState == -1)cout << ch << endl;
actiontable[i][k].state2 = goto_t[i].toX[xp].toState;
continue;
}
if (actiontable[i][k].state != goto_t[i].toX[xp].toState&& actiontable[i][k].action == 's')
{//检测是否有移进移进冲突
cout << "ERROR4" << endl;
}
actiontable[i][k].action = 's';//
if (goto_t[i].toX[xp].toState == -1)cout << ch << endl;
actiontable[i][k].state = goto_t[i].toX[xp].toState;
}
}
}
}
}
ret.Tansfer_table = Transfer_table;
ret.ActionTable = actiontable;
return ret;
}
class Analysis
{
public:
stack<int> state;
stack<actiontypeSingle>List;
int pos=0;
Analysis(const string t, const SLR_Analysis_Table T);
Analysis(const stack<int> s, const stack<actiontypeSingle>L, const int p, const string t);
~Analysis();
int Analysis::generateActList();//1:acc,0:fork,-1:error
//m_s 1: for master 2 for slave
int Analysis::actionBy(const int m_s);//1:acc,0:fork,-1:error
private:
string text;
int ind_ter;
int currentState;
void Analysis::updateind_ter();
void Analysis::updatecurrentState();
SLR_Analysis_Table SLR_T;
};
void Analysis::updatecurrentState()
{
if (state.top()==-1)cout << "why -1" << endl;
currentState = state.top();
}
int Analysis::actionBy(const int m_s)
{
actiontype** ActionTable = SLR_T.ActionTable;
int *Tansfer_table = SLR_T.Tansfer_table;
actiontypeSingle act;
if (m_s==1)
{//master
act.action = ActionTable[currentState][ind_ter].action;
act.ind = ActionTable[currentState][ind_ter].ind;
act.state = ActionTable[currentState][ind_ter].state;
}
else
{//slave
act.action = ActionTable[currentState][ind_ter].action2;
act.ind = ActionTable[currentState][ind_ter].ind2;
act.state = ActionTable[currentState][ind_ter].state2;
}
if (act.action == 'a')return 1;//acc
if (act.action == 's')
{
//debug 2016年4月21日17:49:23
if (act.state==-1)
{
cout << currentState <<" "<< ind_ter <<" "<<terminal[ind_ter]<< endl;
cout << act.action << endl;
cout << "why 1" << endl;
}
state.push(act.state);
updatecurrentState();
List.push(act);
}
else
{//reduce
//debug 2016年4月21日17:48:54
if (act.action==' ')
{
cout << "eeeeeeee" << endl;
}
cout << act.action << endl;
size_t length = syntax[act.ind].length();
for (size_t i = 0; i < length; i++)
{
state.pop();
if (state.empty())cout << "err:pop too much" << endl;
updatecurrentState();
}
int toState = Tansfer_table[currentState];
state.push(toState);
if (toState == -1)
{
cout << "why 2" << endl;
}
updatecurrentState();
List.push(act);
}
return 0;//normal
}
int Analysis::generateActList(){
actiontype** ActionTable=SLR_T.ActionTable;
int *Tansfer_table = SLR_T.Tansfer_table;
while (true)
{
updateind_ter();
updatecurrentState();
if (ActionTable[currentState][ind_ter].action == ' ')return -1;//error
if (ActionTable[currentState][ind_ter].action == 'r')
{
cout << currentState << terminal[ind_ter] << endl;
}
else
{
if (ActionTable[currentState][ind_ter].action2 != ' ')return 0;//fork
int ret=actionBy(1);
if (ret==1)
{
return 1;
}
pos++;
if (pos==text.length())
{
List.pop();//没有必要,-1就直接忽略
return -1;
}
}
}
}
Analysis::Analysis(stack<int> s, stack<actiontypeSingle>L, int p, string t)
{
List = L;
state = s;
pos = p;
text = t;
char ch = text[pos];
int i = 0;
for (; i < terminal.length(); i++)
{
if (ch == terminal[i])
{
break;
}
}
ind_ter = i;
}
Analysis::Analysis(const string t, const SLR_Analysis_Table T)
{
state.push(0);
text = t;
SLR_T = T;
}
void Analysis::updateind_ter()
{
char ch = text[pos];
int i = 0;
for (; i < terminal.length(); i++)
{
if (ch == terminal[i])
{
break;
}
}
if (ind_ter==terminal.length() )
{
cout << "ind_ter exceed" << endl;
}
ind_ter = i;
}
Analysis::~Analysis()
{
}
class AnalysisTree
{
public:
stack<Analysis> ATree;
stack<actiontypeSingle> AnalysisTree::Grow();
AnalysisTree(const string t, const SLR_Analysis_Table T);
~AnalysisTree();
private:
string input;
void AnalysisTree::init();
SLR_Analysis_Table SLR_T;
};
stack<actiontypeSingle>AnalysisTree::Grow(){
init();
while (true)
{
if (ATree.empty())
{
Analysis activityNode(input,SLR_T);
cout << "FAILED" <<endl;
return activityNode.List;
}
Analysis activityNode = ATree.top();
ATree.pop();
int retsta=activityNode.generateActList();
if (retsta==-1)
{//Failed
//?
if (ATree.empty())
{
cout << "Fail all,no result" << endl;
stack<actiontypeSingle> ret;
return ret;
}
activityNode = ATree.top();
ATree.pop();
}
else
{
if (retsta==1)
{
return activityNode.List;
}
else
{
//resta==0 fork
Analysis activityNode1 = activityNode;
if (activityNode1.actionBy(1) == 1)
{
return activityNode1.List;
}
ATree.push(activityNode1);
if (activityNode.actionBy(2) == 1)
{
return activityNode.List;
}
ATree.push(activityNode);
}
}
}
}
void AnalysisTree::init()
{
Analysis root(input, SLR_T);
ATree.push(root);
}
AnalysisTree::AnalysisTree(const string t, const SLR_Analysis_Table T)
{
input = t;
SLR_T = T;
}
AnalysisTree::~AnalysisTree()
{
}
int _tmain(int argc, _TCHAR* argv[])
{
string input = readFile2String("sample06.txt");
cout << input << endl;
if (isspace(input.back()))
{
input.erase(input.end() - 1);
}
input.erase(input.begin());
input.erase(input.end() - 1);
cout << input << endl;
if (!BracketMatch(input) || !NoOtherNotation(input))
{
//括号不匹配或者有意外字符结束进程
return 0;
}
string output;
NoteList = InstallNote(input,output);
cout << output << endl;
OutputList();
//求出LR(0)项目集规范族
ItemSet_Goto A = Items();
printItems2file(A.ItemSets, "Items.txt");
SLR_Analysis_Table SLR_Table= GenSLR_Action_Table(A);
printGototable2file(A.GotoTable, "GotoTable.txt");
//SLR_Table 中有冲突地方action!=‘ ’&&action2!=' ' 出错回溯
//input+$
output.push_back('$');
string no_ind = noindex(output);
cout << output << endl;
cout << no_ind << endl;
AnalysisTree Anatree(no_ind, SLR_Table);
stack<actiontypeSingle> List = Anatree.Grow();
return 0;
}