-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis.cpp
2108 lines (2064 loc) · 50.9 KB
/
analysis.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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include<iostream>
#include<fstream>
#include<sstream>
#include<vector>
#include<string>
#include<cstdlib>
#include<cmath>
using namespace std;
/* Data structure */
const double inf=1/0.0;
int G_fcount=0;//全局函数计数
int G_lcount=0;//全局局部变量计数
int G_bcount=0;//全局基本块计数
int G_vcount=0;//全局变量计数
int G_ncount=0;//全局数据流节点计数
int G_pcount=-1;//全局phi函数连接计数
int G_callcount=0;//全局调用计数
int G_call=0;//调用号
int G_bb;//当前基本块
int G_from;//来自的基本块
bool G_module=0;//是否在处理一个函数
bool G_link;//当前基本块与上一基本块是否连接
struct Phi_env
{
int bid;
int fid;
int callid;
Phi_env():bid(-1),fid(-1),callid(-1){}
} G_phi_env;//phi函数环境
struct Range//范围
{
double lb,ub;//下界,上界
Range():lb(-inf),ub(inf){}
void operator= (Range r)//范围赋值
{
if(r.lb>r.ub)//空集
{
lb=inf;
ub=-inf;
}
else
{
lb=r.lb;
ub=r.ub;
}
}
Range operator+ (Range r)//范围加法
{
Range a;
if(lb>ub || r.lb>r.ub)
{
a.lb=inf;
a.ub=-inf;
}
else
{
a.lb=lb+r.lb;
a.ub=ub+r.ub;
}
return a;
}
Range operator- (Range r)//范围减法
{
Range a;
if(lb>ub || r.lb>r.ub)
{
a.lb=inf;
a.ub=-inf;
}
else
{
a.lb=lb-r.ub;
a.ub=ub-r.lb;
}
return a;
}
Range operator* (Range r)//范围乘法
{
Range a;
if(lb>ub || r.lb>r.ub)
{
a.lb=inf;
a.ub=-inf;
}
else
{
a.lb=min(min(lb*r.lb,ub*r.ub),min(lb*r.ub,ub*r.lb));
a.ub=max(max(lb*r.lb,ub*r.ub),max(lb*r.ub,ub*r.lb));
}
return a;
}
Range operator/ (Range r)//范围浮点除法
{
Range a;
if(lb>ub || r.lb>r.ub)
{
a.lb=inf;
a.ub=-inf;
}
else
{
if(r.lb<=0 && r.ub>=0)
{
a.lb=-inf;
a.ub=inf;
return a;
}
a.lb=min(min(lb/r.lb,ub/r.ub),min(lb/r.ub,ub/r.lb));
a.ub=max(max(lb/r.lb,ub/r.ub),max(lb/r.ub,ub/r.lb));
}
return a;
}
Range operator% (Range r)//范围整数除法
{
Range a;
if(lb>ub || r.lb>r.ub)
{
a.lb=inf;
a.ub=-inf;
}
else
{
if(r.lb<=0 && r.ub>=0)
{
a.lb=-inf;
a.ub=inf;
return a;
}
int l=min(min(lb/r.lb,ub/r.ub),min(lb/r.ub,ub/r.lb));
int u=max(max(lb/r.lb,ub/r.ub),max(lb/r.ub,ub/r.lb));
a.lb=l;
a.ub=u;
return a;
}
}
};
struct Vari //变量
{
int id;
int pos;//在符号表中的位置(local表中指向被控制范围的变量)
int bid;//变量当前活跃的基本块
char stat;//变量属性,#为固定范围,+递增,-递减,*既增又减
bool type;//0为int,1为float
string name;
Range range;
Vari(int _id, int _type, string _name):
id(_id),bid(-3),stat('#'),type(_type),name(_name){}
};
struct Sent//语句
{
int left_value;
string arg1;
string arg2;
int op;//0none,1+,2-,3*,4/,5(int),6(float),7func,8phi,9ret
Sent(int _left,string _arg1,string _arg2,int _op):
left_value(_left),arg1(_arg1),arg2(_arg2),op(_op){}
};
struct Cond//控制条件
{
string arg1;
string arg2;
int op;//1==,-1!=,2>,-2<=,3<,-3>=
Cond(string _arg1,string _arg2,int _op):arg1(_arg1),arg2(_arg2),op(_op){}
};
struct Edge //基本块的连接边
{
int s,t;//起点,终点
Cond* cond;
Edge(int _s, int _t):s(_s),t(_t){}
};
struct Basic //基本块,id:0为程序出口,1为程序入口
{
int id;
vector<int> entry;//入口
vector<int> exit;//出口
vector<Sent*> sent;//基本块中的语句
bool visit;//访问标记
Edge* if_edge;
Edge* else_edge;
Basic(int _id):id(_id),if_edge(NULL),else_edge(NULL){}
};
struct Func//函数体
{
int id;
string name;
vector<Vari*> local;//局部变量符号表
vector<Vari*> vari;//变量表
vector<Basic*> basic;//基本块表
vector<Edge*> edge;
Func(int _id, string _name):id(_id),name(_name)
{
basic.push_back(new Basic(0)); //创建出口
basic.push_back(new Basic(1)); //创建入口
}
void clear_tag()
{
for(vector<Basic*>::iterator it=basic.begin();it!=basic.end();it++)
(*it)->visit=0;
}
};
vector<Func*> func;//所有函数
vector<Range> param_range;//函数参数范围
Func* env;//当前环境(函数)
struct Flow//数据流向
{
bool ctrl;//是否有控制条件
int lower;//数据流下界,储存的是数据流图节点ID,-1为inf,-2为-inf
int upper;//数据流上界,储存的是数据流图节点ID,-1为inf,-2为-inf
int next;//流向的下一节点ID
bool strict;//范围是否严格(区间的开闭)
Flow(int _ctrl,int _next):ctrl(_ctrl),next(_next),strict(0){}
};
struct Node//数据流图节点
{
int id;
int lid;//参数表位置(运算点为变量1,是节点ID)
int vid;//变量表位置(运算点为变量2,是节点ID)
int bid;//所属基本块
int fid;//所属函数
int cid;//所属调用(phi函数中表示门开关状态,0全开,1右开,-1左开,-2无效)
double lb;//约束下界(phi函数中表示左变量所在基本块)
double ub;//约束上界(phi函数中表示右变量所在基本块)
Range range;//节点变量范围
int op;//节点运算
vector<Flow*> flow;//流向
bool visit;
Node(int _id,int _lid,int _vid,int _bid,int _fid):op(0),lb(-inf),ub(inf),
id(_id),lid(_lid),vid(_vid),bid(_bid),fid(_fid),cid(G_call){}
};
struct Data_flow_graph
{
vector<Node*> node;//数据流节点
vector<vector<int> > phi_link;//phi函数关联
void clear_tag()
{
for(vector<Node*>::iterator it=node.begin();it!=node.end();it++)
(*it)->visit=0;
}
}dfg;
Node* ret=NULL;//返回值节点
vector<Node*> start;//起始节点
struct Tuple//一对变量,用于记录分支
{
int t1,t2;
Vari* v1;
Vari* v2;
Tuple(int _t1,int _t2):t1(_t1),t2(_t2),v1(NULL),v2(NULL){}
};
/* Function */
bool* btag;//基本块访问标记(在find函数中使用)
int find_v(int vid, Basic* basic, Func* env)//找到之前最近的变量为vid的变量
{
btag[basic->id]=1;
for(vector<Sent*>::iterator it=basic->sent.begin();it!=basic->sent.end();it++)
if((*it)->left_value == vid) return basic->id;
for(int i=0;i<basic->entry.size();i++)
{
if(!btag[basic->entry[i]])
{
int re=find_v(vid,env->basic[basic->entry[i]],env);
if(re!=-1) return re;
}
}
return -1;
}
void build_data_flow(Func* env);
void connect_node(Basic* basic, Sent* sent, Func* env)//连接数据流图节点
{
switch(sent->op)
{
case 0://赋值
case 5://整型强制转换
case 6://浮点强制转换
{
Vari* v=env->vari[sent->left_value];
Node* n;
int nid=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v->id && (*it)->bid==v->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v是否已在数据流图中
nid=(*it)->id;
n=dfg.node[nid];
break;
}
if(nid==-1)//没找到,创建新节点
{
nid=G_ncount;
n=new Node(nid,v->pos,v->id,basic->id,env->id);
v->bid=basic->id;
G_ncount++;
dfg.node.push_back(n);
}
n->op=sent->op;
Node* n2;
if(sent->arg2[0]=='$')
{
double t=atof((sent->arg2).substr(1,(sent->arg2).length()-1).data());
int nid2=G_ncount;
n2=new Node(nid2,-1,-1,basic->id,env->id);
G_ncount++;
dfg.node.push_back(n2);
n2->range.lb=n2->range.ub=t;
start.push_back(n2);
}
else
{
Vari* v2=env->vari[atoi((sent->arg2).data())];
int nid2=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v2->id && (*it)->bid==v2->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v2是否已在数据流图中
nid2=(*it)->id;
n2=dfg.node[nid2];
break;
}
if(nid2==-1)//没找到,创建新节点
{
nid2=G_ncount;
n2=new Node(nid2,v2->pos,v2->id,basic->id,env->id);
v2->bid=basic->id;
G_ncount++;
dfg.node.push_back(n2);
}
}
n2->flow.push_back(new Flow(0,nid));//数据从n2流向n
break;
}
case 1://加法
case 2://减法
case 3://乘法
case 4://除法
{
Vari* v=env->vari[sent->left_value];
Node* n;
int nid=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v->id && (*it)->bid==v->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v是否已在数据流图中
nid=(*it)->id;
n=dfg.node[nid];
break;
}
if(nid==-1)//没找到,创建新节点
{
nid=G_ncount;
n=new Node(nid,v->pos,v->id,basic->id,env->id);
v->bid=basic->id;
G_ncount++;
dfg.node.push_back(n);
}
Node* n1;
if(sent->arg1[0]=='$')
{
double t=atof((sent->arg1).substr(1,(sent->arg1).length()-1).data());
int nid1=G_ncount;
n1=new Node(nid1,-1,-1,basic->id,env->id);
G_ncount++;
dfg.node.push_back(n1);
n1->range.lb=n1->range.ub=t;
}
else
{
Vari* v1=env->vari[atoi((sent->arg1).data())];
int nid1=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v1->id && (*it)->bid==v1->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v1是否已在数据流图中
nid1=(*it)->id;
n1=dfg.node[nid1];
break;
}
if(nid1==-1)//没找到,创建新节点
{
nid1=G_ncount;
n1=new Node(nid1,v1->pos,v1->id,basic->id,env->id);
v1->bid=basic->id;
G_ncount++;
dfg.node.push_back(n1);
}
}
Node* n2;
if(sent->arg2[0]=='$')
{
double t=atof((sent->arg2).substr(1,(sent->arg2).length()-1).data());
int nid2=G_ncount;
n2=new Node(nid2,-1,-1,basic->id,env->id);
G_ncount++;
dfg.node.push_back(n2);
n2->range.lb=n2->range.ub=t;
}
else
{
Vari* v2=env->vari[atoi((sent->arg2).data())];
int nid2=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v2->id && (*it)->bid==v2->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v2是否已在数据流图中
nid2=(*it)->id;
n2=dfg.node[nid2];
break;
}
if(nid2==-1)//没找到,创建新节点
{
nid2=G_ncount;
n2=new Node(nid2,v2->pos,v2->id,basic->id,env->id);
G_ncount++;
v2->bid=basic->id;
dfg.node.push_back(n2);
}
}
int tempnid=G_ncount;
Node* tempn=new Node(tempnid,n1->id,n2->id,-1,env->id);
G_ncount++;
dfg.node.push_back(tempn);
tempn->op=sent->op;
tempn->flow.push_back(new Flow(0,nid));
n1->flow.push_back(new Flow(0,tempnid));
n2->flow.push_back(new Flow(0,tempnid));
break;
}
case 7://函数调用
{
G_callcount++;
Vari* v=env->vari[sent->left_value];
Node* n;
int nid=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v->id && (*it)->bid==v->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v是否已在数据流图中
nid=(*it)->id;
n=dfg.node[nid];
break;
}
if(nid==-1)//没找到,创建新节点
{
nid=G_ncount;
n=new Node(nid,v->pos,v->id,basic->id,env->id);
v->bid=basic->id;
G_ncount++;
dfg.node.push_back(n);
}
int fid;
for(int i=0;i<func.size();i++)//找到被调用函数
if(func[i]->name == sent->arg1)
{
fid=i;
break;
}
int old_call=G_call;
G_call=G_callcount;
build_data_flow(func[fid]);
G_call=old_call;
string args=sent->arg2;
int c=0;
int pos=0;
while(1)
{
int i=pos;
if(i>=args.length()) break;
for(;args[i]!=';';i++);
string arg=args.substr(pos,i-pos);
Node* n1;
if(arg[0]=='$')
{
double t=atof(arg.substr(1,arg.length()-1).data());
int nid1=G_ncount;
n1=new Node(nid1,-1,-1,basic->id,env->id);
G_ncount++;
dfg.node.push_back(n1);
n1->range.lb=n1->range.ub=t;
}
else
{
Vari* v1=env->vari[atoi(arg.data())];
int nid1=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v1->id && (*it)->bid==v1->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v1是否已在数据流图中
nid1=(*it)->id;
n1=dfg.node[nid1];
break;
}
if(nid1==-1)//没找到,创建新节点
{
nid1=G_ncount;
n1=new Node(nid1,v1->pos,v1->id,basic->id,env->id);
v1->bid=basic->id;
G_ncount++;
dfg.node.push_back(n1);
}
}
Node* n2;
Vari* v2=func[fid]->vari[func[fid]->local[c]->pos];
int nid2=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v2->id && (*it)->bid==v2->bid && (*it)->fid==fid && (*it)->cid==G_callcount)
{//看变量v2是否已在数据流图中
nid2=(*it)->id;
n2=dfg.node[nid2];
break;
}
if(nid2==-1)//没找到,创建新节点
{
nid2=G_ncount;
n2=new Node(nid2,v2->pos,v2->id,basic->id,env->id);
G_ncount++;
v2->bid=basic->id;
dfg.node.push_back(n2);
}
n1->flow.push_back(new Flow(0,nid2));//填入参数
c++;
pos=i+1;
}
ret->flow.push_back(new Flow(0,nid));//函数返回值流回左值
break;
}
case 8://phi函数
{
Vari* v=env->vari[sent->left_value];
int pos=0,i;
for(i=pos;sent->arg1[i]!=';';i++);
Vari* v1=env->vari[atoi((sent->arg1).substr(pos,i-pos).data())];
pos=i+1;
for(i=pos;sent->arg1[i]!=';';i++);
int from1=atoi((sent->arg1).substr(pos,i-pos).data());
for(int i=0;i<env->basic.size();i++) btag[i]=0;
from1=find_v(v1->id,env->basic[from1],env);
pos=0;
for(i=pos;sent->arg2[i]!=';';i++);
Vari* v2=env->vari[atoi((sent->arg2).substr(pos,i-pos).data())];
pos=i+1;
for(i=pos;sent->arg2[i]!=';';i++);
int from2=atoi((sent->arg2).substr(pos,i-pos).data());
for(int i=0;i<env->basic.size();i++) btag[i]=0;
from2=find_v(v2->id,env->basic[from2],env);
Node* n;
int nid=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v->id && (*it)->bid==v->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v是否已在数据流图中
nid=(*it)->id;
n=dfg.node[nid];
break;
}
if(nid==-1)//没找到,创建新节点
{
nid=G_ncount;
n=new Node(nid,v->pos,v->id,basic->id,env->id);
G_ncount++;
v->bid=basic->id;
dfg.node.push_back(n);
}
Node* n1;
int nid1=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v1->id && (*it)->bid==from1 && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v1是否已在数据流图中
nid1=(*it)->id;
n1=dfg.node[nid1];
break;
}
if(nid1==-1)//没找到,创建新节点
{
nid1=G_ncount;
n1=new Node(nid1,v1->pos,v1->id,from1,env->id);
G_ncount++;
v1->bid=from1;
dfg.node.push_back(n1);
}
Node* n2;
int nid2=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v2->id && (*it)->bid==from2 && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v2是否已在数据流图中
nid2=(*it)->id;
n2=dfg.node[nid2];
break;
}
if(nid2==-1)//没找到,创建新节点
{
nid2=G_ncount;
n2=new Node(nid2,v2->pos,v2->id,from2,env->id);
G_ncount++;
v2->bid=from2;
dfg.node.push_back(n2);
}
int tempnid=G_ncount;
Node* tempn=new Node(tempnid,n1->id,n2->id,-1,env->id);
tempn->cid=0;
tempn->lb=from1;
tempn->ub=from2;
G_ncount++;
dfg.node.push_back(tempn);
tempn->op=sent->op;
tempn->flow.push_back(new Flow(0,nid));
n1->flow.push_back(new Flow(0,tempnid));
n2->flow.push_back(new Flow(0,tempnid));
//建立phi函数连接
if(G_phi_env.bid==basic->id && G_phi_env.fid==env->id && G_phi_env.callid==G_call)
{
vector<int> ve=dfg.phi_link[G_pcount];
ve.push_back(tempnid);
dfg.phi_link[G_pcount]=ve;
}
else
{
G_pcount++;
vector<int> ve;
ve.push_back(tempnid);
dfg.phi_link.push_back(ve);
}
G_phi_env.bid=basic->id;
G_phi_env.fid=env->id;
G_phi_env.callid=G_call;
break;
}
case 9://return
{
Vari* v=env->vari[sent->left_value];
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v->id && (*it)->bid==v->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{
ret=dfg.node[(*it)->id];
break;
}
break;
}
}
}
Tuple condition_fork(Edge* edge, Func* env)//if的判断条件分叉
{
Vari* v1;
Vari* v2;
if(edge->cond->arg1[0]=='$')
{
double t=atof((edge->cond->arg1).substr(1,(edge->cond->arg1).length()-1).data());
v1=new Vari(-1,1,"const");
v1->range.lb=v1->range.ub=t;
}
else v1=env->vari[atoi((edge->cond->arg1).data())];
if(edge->cond->arg2[0]=='$')
{
double t=atof((edge->cond->arg2).substr(1,(edge->cond->arg2).length()-1).data());
v2=new Vari(-1,1,"const");
v2->range.lb=v2->range.ub=t;
}
else v2=env->vari[atoi((edge->cond->arg2).data())];
switch(edge->cond->op)
{
case 1://==
{
if(v1->range.ub<v2->range.lb || v1->range.lb>v2->range.ub) return Tuple(0,0);
break;
}
case 2://>
{
if(v1->range.ub<=v2->range.lb) return Tuple(0,0);
break;
}
case 3://<
{
if(v1->range.lb>=v2->range.ub) return Tuple(0,0);
break;
}
case -1://!=
{
if(v1->range.lb==v2->range.lb && v1->range.ub==v2->range.ub) return Tuple(0,0);
break;
}
case -2://<=
{
if(v1->range.lb>v2->range.ub) return Tuple(0,0);
break;
}
case -3://>=
{
if(v1->range.ub<v2->range.lb) return Tuple(0,0);
break;
}
}
if(edge->cond->arg1[0]=='$') delete v1;
if(edge->cond->arg2[0]=='$') delete v2;
bool is_int=0;//有整型变量
Tuple tuple(-1,-1);
Node* n1;
Node* n1_next;
if(edge->cond->arg1[0]=='$')
{
double t=atof((edge->cond->arg1).substr(1,(edge->cond->arg1).length()-1).data());
int nid1=G_ncount;
n1=new Node(nid1,-1,-1,edge->s,env->id);
G_ncount++;
dfg.node.push_back(n1);
n1->range.lb=n1->range.ub=t;
nid1=G_ncount;
n1_next=new Node(nid1,-1,-1,edge->t,env->id);
G_ncount++;
dfg.node.push_back(n1_next);
n1_next->range.lb=n1_next->range.ub=t;
}
else
{
Vari* v1=env->vari[atoi((edge->cond->arg1).data())];
if(!v1->type) is_int=1;
int nid1=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v1->id && (*it)->bid==v1->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v1是否已在数据流图中
nid1=(*it)->id;
n1=dfg.node[nid1];
break;
}
if(nid1==-1)//没找到,创建新节点
{
nid1=G_ncount;
n1=new Node(nid1,v1->pos,v1->id,edge->s,env->id);
G_ncount++;
v1->bid=edge->s;
dfg.node.push_back(n1);
}
nid1=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v1->id && (*it)->bid==edge->t && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v1是否已在数据流图中
nid1=(*it)->id;
n1_next=dfg.node[nid1];
break;
}
if(nid1==-1)//没找到,创建新节点
{
nid1=G_ncount;
n1_next=new Node(nid1,v1->pos,v1->id,edge->t,env->id);
G_ncount++;
dfg.node.push_back(n1_next);
}
tuple.t1=v1->bid;
tuple.v1=v1;
v1->bid=edge->t;
}
Flow* f1=new Flow(1,n1_next->id);
n1->flow.push_back(f1);
Node* n2;
Node* n2_next;
if(edge->cond->arg2[0]=='$')
{
double t=atof((edge->cond->arg2).substr(1,(edge->cond->arg2).length()-1).data());
int nid2=G_ncount;
n2=new Node(nid2,-1,-1,edge->s,env->id);
G_ncount++;
dfg.node.push_back(n2);
n2->range.lb=n2->range.ub=t;
nid2=G_ncount;
n2_next=new Node(nid2,-1,-1,edge->s,env->id);
G_ncount++;
dfg.node.push_back(n2_next);
n2_next->range.lb=n2_next->range.ub=t;
}
else
{
Vari* v2=env->vari[atoi((edge->cond->arg2).data())];
if(!v2->type) is_int=1;
int nid2=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v2->id && (*it)->bid==v2->bid && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v2是否已在数据流图中
nid2=(*it)->id;
n2=dfg.node[nid2];
break;
}
if(nid2==-1)//没找到,创建新节点
{
nid2=G_ncount;
n2=new Node(nid2,v2->pos,v2->id,edge->s,env->id);
G_ncount++;
v2->bid=edge->s;
dfg.node.push_back(n2);
}
nid2=-1;
for(vector<Node*>::iterator it=dfg.node.begin();it!=dfg.node.end();it++)
if((*it)->vid==v2->id && (*it)->bid==edge->t && (*it)->fid==env->id && (*it)->cid==G_call)
{//看变量v2是否已在数据流图中
nid2=(*it)->id;
n2_next=dfg.node[nid2];
break;
}
if(nid2==-1)//没找到,创建新节点
{
nid2=G_ncount;
n2_next=new Node(nid2,v2->pos,v2->id,edge->t,env->id);
G_ncount++;
dfg.node.push_back(n2_next);
}
tuple.t2=v2->bid;
tuple.v2=v2;
v2->bid=edge->t;
}
Flow* f2=new Flow(1,n2_next->id);
n2->flow.push_back(f2);
switch(edge->cond->op)
{
case 1://==
{
f1->lower=n2->id;
f1->upper=n2->id;
f2->lower=n1->id;
f2->upper=n1->id;
break;
}
case 2://>
{
f1->lower=n2->id;
f1->upper=-1;
if(is_int) f1->strict=1;
f2->lower=-2;
f2->upper=n1->id;
if(is_int) f2->strict=1;
break;
}
case 3://<
{
f1->lower=-2;
f1->upper=n2->id;
if(is_int) f1->strict=1;
f2->lower=n1->id;
f2->upper=-1;
if(is_int) f2->strict=1;
break;
}
case -1://!=
{
f1->lower=-2;
f1->upper=-1;
f2->lower=-2;
f2->upper=-1;
break;
}
case -2://<=
{
f1->lower=-2;
f1->upper=n2->id;
f2->lower=n1->id;
f2->upper=-1;
break;
}
case -3://>=
{
f1->lower=n2->id;
f1->upper=-1;
f2->lower=-2;
f2->upper=n1->id;
break;
}
}
return tuple;
}
void parse_vdef(bool type, string s, int pos)//解析变量定义语句
{
int i=pos;
string name;
for(;s[i]!=';';i++);
name=s.substr(pos,i-pos);
if(name.length()>1 && name[1]=='.') return;
cout<<" put local: "<<G_lcount<<' '<<type<<' '<<name<<'\n';
env->local.push_back(new Vari(G_lcount,type,name));
G_lcount++;
}
void parse_goto(string s, int pos)//解析goto语句
{
int i=pos;
for(;s[i]!=' ';i++);
pos=i+1;
string id;
for(i=pos;s[i]!='>';i++);
id=s.substr(pos,i-pos);
int bid=atoi(id.data());
G_bcount=max(G_bcount,bid);
if(bid>G_bb)
{
cout<<" put bb: "<<bid<<'\n';
env->basic.resize(G_bcount+1);
env->basic[bid]=new Basic(bid);
}
cout<<" create edge: "<<G_bb<<"->"<<bid<<'\n';
env->basic[G_bb]->exit.push_back(bid);
env->basic[bid]->entry.push_back(G_bb);
env->edge.push_back(new Edge(G_bb,bid));
G_link=0;
}
void parse_bb(string s, int pos)//解析基本块语句
{
string id;
int i=pos;
for(;s[i]!='>';i++);
id=s.substr(pos,i-pos);
int bid=atoi(id.data());
if(bid>G_bcount || env->basic[bid]==NULL)
{
G_bcount=max(G_bcount,bid);
cout<<" put bb: "<<bid<<'\n';
env->basic.resize(G_bcount+1);
env->basic[bid]=new Basic(bid);
}
if(G_link)
{
cout<<" create edge: "<<G_bb<<"->"<<bid<<'\n';
env->basic[G_bb]->exit.push_back(bid);
env->basic[bid]->entry.push_back(G_bb);
env->edge.push_back(new Edge(G_bb,bid));
}
G_bb=bid;
G_link=1;
}
string put_vari(string s);
void parse_return(string s, int pos)//解析return语句
{
cout<<" create edge: "<<G_bb<<"->0\n";
env->basic[G_bb]->exit.push_back(0);
env->basic[0]->entry.push_back(G_bb);
env->edge.push_back(new Edge(G_bb,0));
if(pos<s.length())
{
int i=pos;
for(;s[i]!=';';i++);
string word=s.substr(pos,i-pos);
int arg=atoi(put_vari(word).data());
int op=9;
cout<<" put sentence: op"<<op<<' '<<arg<<'\n';
env->basic[G_bb]->sent.push_back(new Sent(arg,"","",op));
}
G_module=0;
cout<<"___________________graph______________________\n";
for(vector<Basic*>::iterator it=env->basic.begin();it!=env->basic.end();it++)
{
cout<<"bb"<<(*it)->id<<": can get to ";
for(vector<int>::iterator t=(*it)->exit.begin();t!=(*it)->exit.end();t++)
{
cout<<*t;
if((*it)->if_edge!=NULL)
{
if(*t==(*it)->if_edge->t)
{
Cond* cond=(*it)->if_edge->cond;
cout<<'('<<cond->arg1<<" op"<<cond->op<<' '<<cond->arg2<<") ";
}
else
{
Cond* cond=(*it)->else_edge->cond;
cout<<'('<<cond->arg1<<" op"<<cond->op<<' '<<cond->arg2<<") ";
}
}
}
cout<<'\n';
for(vector<Sent*>::iterator t=(*it)->sent.begin();t!=(*it)->sent.end();t++)
cout<<" "<<(*t)->left_value<<" = "<<(*t)->arg1<<" op"<<(*t)->op<<' '<<(*t)->arg2<<'\n';
}
cout<<"___________________graph______________________\n";
}
string put_vari(string s)//向函数变量表中增加变量,返回变量id
{
if((s[0]>='0'&&s[0]<='9')||s[0]=='-') return "c";//常量
int l=s.length();
int i;
for(i=0;i<l&&s[i]!='_';i++);
if(i==l) return "f";//函数
string name=s.substr(0,i);
int j;
for(j=i+1;j<l&&s[j]!='(';j++);
if(name.length()==0) name=s.substr(i,j-i);
string id=s.substr(i+1,j-i-1);
int vid=atoi(id.data());
int type;
int lid;
for(vector<Vari*>::iterator it=env->local.begin();it!=env->local.end();it++)
if((*it)->name==name) //从函数的局部变量表中找到该变量的定义
{
type=(*it)->type;
lid=(*it)->id;
break;