-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMayAnalysis
700 lines (667 loc) · 26.2 KB
/
MayAnalysis
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
//Copyright
//Author: Qinglin,Xia and Patricia,Chin
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.Set;
import soot.Body;
import soot.Local;
import soot.Scene;
import soot.SootClass;
import soot.SootMethod;
import soot.Unit;
import soot.Value;
import soot.ValueBox;
import soot.jimple.AddExpr;
import soot.jimple.AssignStmt;
import soot.jimple.BinopExpr;
import soot.jimple.DefinitionStmt;
import soot.jimple.DivExpr;
import soot.jimple.FieldRef;
import soot.jimple.InstanceFieldRef;
import soot.jimple.IntConstant;
import soot.jimple.MulExpr;
import soot.jimple.NumericConstant;
import soot.jimple.Stmt;
import soot.jimple.SubExpr;
import soot.jimple.internal.JAssignStmt;
import soot.jimple.toolkits.annotation.logic.Loop;
import soot.tagkit.LineNumberTag;
import soot.toolkits.graph.ExceptionalUnitGraph;
import soot.toolkits.graph.LoopNestTree;
import soot.toolkits.graph.UnitGraph;
public class MayAnalysis {
public static Map<Unit, Map<Value,LatticeElement>> entries = new HashMap<Unit,Map<Value,LatticeElement>>();
public static Map<Unit, Map<Value,LatticeElement>> exits = new HashMap<Unit, Map<Value,LatticeElement>>();
public static UnitGraph g;
public static List<Unit> worklist = new LinkedList<Unit>();
public static Set<Value> blacklist = new HashSet<Value>();
public static List<Stmt> loopStatement = new LinkedList<Stmt>();
// declare bottom field
// declare top field
public static void MayAnalysis(UnitGraph g)
{
LoopNestTree loopTree = new LoopNestTree(g.getBody());
Iterator<Loop> it = loopTree.iterator();
while(it.hasNext())
{
Loop next = it.next();
loopStatement.addAll(next.getLoopStatements());
}
Iterator<Stmt> loopIterator = loopStatement.iterator();
while(loopIterator.hasNext())
{
Stmt next = loopIterator.next();
if(next instanceof AssignStmt)
{
blacklist.add(((AssignStmt) next).getLeftOp());
}
}
initializeEntryAndExitNodes(g);
worklist.addAll(g.getHeads());
while(worklist.size()>0)
{
Unit currentNode = worklist.remove(0);
List<Unit> pres = g.getPredsOf(currentNode);
// Initialize the entry(u) value
if(pres.size() > 0)
{
for(Unit u: pres)
{
entries.put(currentNode, ValueTransfer(exits.get(u),entries.get(currentNode)));
exits.put(currentNode, ValueTransfer(exits.get(u),entries.get(currentNode)));
}
}
if(currentNode instanceof AssignStmt)
{
AssignStmt stmt = (AssignStmt) currentNode;
Value variable = stmt.getLeftOp();
LatticeElement entry_element = entries.get(currentNode).get(variable);
}
// Do the transfer function. To get exit(currentNode) from the entry(currentNode)
Map<Value,LatticeElement> before_Transfer = new HashMap<Value,LatticeElement>();
Set<Value> values = exits.get(currentNode).keySet();
for(Value v: values)
{
before_Transfer.put(v, exits.get(currentNode).get(v));
}
exits.put(currentNode, generate(currentNode));
if(currentNode instanceof AssignStmt)
{
AssignStmt stmt1 = (AssignStmt) currentNode;
Value variable1 = stmt1.getLeftOp();
LatticeElement exit_element = exits.get(currentNode).get(variable1);
System.out.println("Statement: "+currentNode.toString());
System.out.println("The May Set for"+ " "+ variable1+ " is: "+ exit_element.toString());
}
Map<Value,LatticeElement> after_Transfer = exits.get(currentNode);
if(currentNode instanceof AssignStmt)
{
if(fixedPointLocating(before_Transfer,after_Transfer) == false)
{
List<Unit> succs = g.getSuccsOf(currentNode);
for(Unit u: succs)
{
if(!worklist.contains(u))
{
worklist.add(u);
}
}
}
}
else
{
List<Unit> succs = g.getSuccsOf(currentNode);
for(Unit u: succs)
{
if(!worklist.contains(u))
{
worklist.add(u);
}
}
}
}
}
public static Map<Value,LatticeElement> ValueTransfer(Map<Value,LatticeElement> exit, Map<Value,LatticeElement> entry)
{
Map<Value,LatticeElement> newEntry = new HashMap<Value,LatticeElement>();
Set<Value> valueSet = entry.keySet();
Iterator<Value> valueIt = valueSet.iterator();
while(valueIt.hasNext())
{
Value currentValue = valueIt.next();
newEntry.put(currentValue, exit.get(currentValue));
LatticeElement entryElement = newEntry.get(currentValue).Join(entry.get(currentValue));
newEntry.put(currentValue, entryElement);
}
return newEntry;
}
public static boolean fixedPointLocating(Map<Value,LatticeElement> before_Transfer,Map<Value,LatticeElement> after_Transfer)
{
boolean isEqual = true;
Set<Value> localVariables = before_Transfer.keySet();
for(Value value: localVariables)
{
if(!before_Transfer.get(value).equals(after_Transfer.get(value)))
{
isEqual = false;
}
}
return isEqual;
}
public static Map<Value, LatticeElement> generate(Unit unit)
{
if(unit instanceof AssignStmt)
{
AssignStmt stmt = (AssignStmt) unit;
Value rightOperator = stmt.getRightOp();
if (rightOperator instanceof IntConstant)
{
IntConstant rightValue = (IntConstant)rightOperator;
Set<Integer> integers = new HashSet<Integer>();
integers.add(rightValue.value);
RegularLatticeElement element = new RegularLatticeElement(integers);
exits.get(unit).put(stmt.getLeftOp(), element);
}
else if (rightOperator instanceof BinopExpr)
{
BinopExpr rightOperation = (BinopExpr) rightOperator;
Set<Integer> results = new HashSet<Integer>();
if(rightOperation instanceof AddExpr)
{
Value operand1 = rightOperation.getOp1();
Value operand2 = rightOperation.getOp2();
if (operand1 instanceof IntConstant && !(operand2 instanceof IntConstant))
{
IntConstant field1= (IntConstant) operand1;
LatticeElement operand2Element = entries.get(unit).get(operand2);
if(operand2Element instanceof RegularLatticeElement)
{
RegularLatticeElement element = (RegularLatticeElement) operand2Element;
Set<Integer> integers = element.getElementValue();
Iterator<Integer> it = integers.iterator();
while(it.hasNext())
{
Integer next = it.next();
results.add(next+field1.value);
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
else if (!(operand1 instanceof IntConstant) && operand2 instanceof IntConstant)
{
IntConstant field2= (IntConstant) operand2;
LatticeElement operand1Element = entries.get(unit).get(operand1);
if(operand1Element instanceof RegularLatticeElement)
{
RegularLatticeElement element = (RegularLatticeElement) operand1Element;
Set<Integer> integers = element.getElementValue();
Iterator<Integer> it = integers.iterator();
while(it.hasNext())
{
Integer next = it.next();
results.add(next+field2.value);
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand1Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
else if (!(operand1 instanceof IntConstant) && !(operand1 instanceof IntConstant))
{
LatticeElement operand1Element = entries.get(unit).get(operand1);
LatticeElement operand2Element = entries.get(unit).get(operand2);
if(operand1Element instanceof RegularLatticeElement && operand2Element instanceof RegularLatticeElement)
{
RegularLatticeElement element1 = (RegularLatticeElement) operand1Element;
RegularLatticeElement element2 = (RegularLatticeElement) operand2Element;
Set<Integer> integers_1 = element1.getElementValue();
Set<Integer> integers_2 = element2.getElementValue();
for(Integer i : integers_1)
{
for(Integer j: integers_2)
{
Integer result = i + j;
results.add(result);
}
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof RegularLatticeElement && operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof RegularLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof RegularLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement && operand2Element instanceof RegularLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
}
else if (rightOperation instanceof SubExpr)
{
Value operand1 = rightOperation.getOp1();
Value operand2 = rightOperation.getOp2();
if (operand1 instanceof IntConstant && !(operand2 instanceof IntConstant))
{
IntConstant field1= (IntConstant) operand1;
LatticeElement operand2Element = entries.get(unit).get(operand2);
if(operand2Element instanceof RegularLatticeElement)
{
RegularLatticeElement element = (RegularLatticeElement) operand2Element;
Set<Integer> integers = element.getElementValue();
Iterator<Integer> it = integers.iterator();
while(it.hasNext())
{
Integer next = it.next();
results.add(field1.value-next);
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
else if (!(operand1 instanceof IntConstant) && operand2 instanceof IntConstant)
{
IntConstant field2= (IntConstant) operand2;
LatticeElement operand1Element = entries.get(unit).get(operand1);
if(operand1Element instanceof RegularLatticeElement)
{
RegularLatticeElement element = (RegularLatticeElement) operand1Element;
Set<Integer> integers = element.getElementValue();
Iterator<Integer> it = integers.iterator();
while(it.hasNext())
{
Integer next = it.next();
results.add(next-field2.value);
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand1Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
else if (!(operand1 instanceof IntConstant) && !(operand1 instanceof IntConstant))
{
LatticeElement operand1Element = entries.get(unit).get(operand1);
LatticeElement operand2Element = entries.get(unit).get(operand2);
if(operand1Element instanceof RegularLatticeElement && operand2Element instanceof RegularLatticeElement)
{
RegularLatticeElement element1 = (RegularLatticeElement) operand1Element;
RegularLatticeElement element2 = (RegularLatticeElement) operand2Element;
Set<Integer> integers_1 = element1.getElementValue();
Set<Integer> integers_2 = element2.getElementValue();
for(Integer i : integers_1)
{
for(Integer j: integers_2)
{
Integer result = i - j;
results.add(result);
}
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof RegularLatticeElement && operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof RegularLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof RegularLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement && operand2Element instanceof RegularLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
}
if(rightOperation instanceof MulExpr)
{
Value operand1 = rightOperation.getOp1();
Value operand2 = rightOperation.getOp2();
if (operand1 instanceof IntConstant && !(operand2 instanceof IntConstant))
{
IntConstant field1= (IntConstant) operand1;
LatticeElement operand2Element = entries.get(unit).get(operand2);
if(operand2Element instanceof RegularLatticeElement)
{
RegularLatticeElement element = (RegularLatticeElement) operand2Element;
Set<Integer> integers = element.getElementValue();
Iterator<Integer> it = integers.iterator();
while(it.hasNext())
{
Integer next = it.next();
results.add(next*field1.value);
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
else if (!(operand1 instanceof IntConstant) && operand2 instanceof IntConstant)
{
IntConstant field2= (IntConstant) operand2;
LatticeElement operand1Element = entries.get(unit).get(operand1);
if(operand1Element instanceof RegularLatticeElement)
{
RegularLatticeElement element = (RegularLatticeElement) operand1Element;
Set<Integer> integers = element.getElementValue();
Iterator<Integer> it = integers.iterator();
while(it.hasNext())
{
Integer next = it.next();
results.add(next*field2.value);
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand1Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
else if (!(operand1 instanceof IntConstant) && !(operand1 instanceof IntConstant))
{
LatticeElement operand1Element = entries.get(unit).get(operand1);
LatticeElement operand2Element = entries.get(unit).get(operand2);
if(operand1Element instanceof RegularLatticeElement && operand2Element instanceof RegularLatticeElement)
{
RegularLatticeElement element1 = (RegularLatticeElement) operand1Element;
RegularLatticeElement element2 = (RegularLatticeElement) operand2Element;
Set<Integer> integers_1 = element1.getElementValue();
Set<Integer> integers_2 = element2.getElementValue();
for(Integer i : integers_1)
{
for(Integer j: integers_2)
{
Integer result = i * j;
results.add(result);
}
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof RegularLatticeElement && operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof RegularLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof RegularLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement && operand2Element instanceof RegularLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
}
else if (rightOperation instanceof DivExpr)
{
Value operand1 = rightOperation.getOp1();
Value operand2 = rightOperation.getOp2();
if (operand1 instanceof IntConstant && !(operand2 instanceof IntConstant))
{
IntConstant field1= (IntConstant) operand1;
LatticeElement operand2Element = entries.get(unit).get(operand2);
if(operand2Element instanceof RegularLatticeElement)
{
RegularLatticeElement element = (RegularLatticeElement) operand2Element;
Set<Integer> integers = element.getElementValue();
Iterator<Integer> it = integers.iterator();
while(it.hasNext())
{
Integer next = it.next();
results.add(field1.value/next);
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
else if (!(operand1 instanceof IntConstant) && operand2 instanceof IntConstant)
{
IntConstant field2= (IntConstant) operand2;
LatticeElement operand1Element = entries.get(unit).get(operand1);
if(operand1Element instanceof RegularLatticeElement)
{
RegularLatticeElement element = (RegularLatticeElement) operand1Element;
Set<Integer> integers = element.getElementValue();
Iterator<Integer> it = integers.iterator();
while(it.hasNext())
{
Integer next = it.next();
results.add(next/field2.value);
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand1Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
else if (!(operand1 instanceof IntConstant) && !(operand1 instanceof IntConstant))
{
LatticeElement operand1Element = entries.get(unit).get(operand1);
LatticeElement operand2Element = entries.get(unit).get(operand2);
if(operand1Element instanceof RegularLatticeElement && operand2Element instanceof RegularLatticeElement)
{
RegularLatticeElement element1 = (RegularLatticeElement) operand1Element;
RegularLatticeElement element2 = (RegularLatticeElement) operand2Element;
Set<Integer> integers_1 = element1.getElementValue();
Set<Integer> integers_2 = element2.getElementValue();
for(Integer i : integers_1)
{
for(Integer j: integers_2)
{
Integer result = i/j;
results.add(result);
}
}
RegularLatticeElement element_1 = new RegularLatticeElement(results);
exits.get(unit).put(stmt.getLeftOp(), element_1);
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof RegularLatticeElement && operand2Element instanceof TopLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof RegularLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof TopLatticeElement && operand2Element instanceof RegularLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new TopLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement && operand2Element instanceof RegularLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
else if (operand1Element instanceof BottomLatticeElement && operand2Element instanceof BottomLatticeElement)
{
exits.get(unit).put(((AssignStmt)unit).getLeftOp(), new BottomLatticeElement());
}
}
}
}
else if (rightOperator instanceof Value)
{
Value rightVariable = (Value)rightOperator;
LatticeElement element = entries.get(unit).get(rightVariable);
exits.get(unit).put(stmt.getLeftOp(), element);
}
}
return exits.get(unit);
}
// To do this, we need have a list of worklist which could keep track of the node need to be
// analyzed, the current node's successors would be put into a set, if the successors
// set do not belong to the worklist, then they can be added into the worklist.
public static UnitGraph getControlFlow(Body body, String methodName)
{
SootMethod method = body.getMethod();
if (method.getName().equals(methodName)!= false)
{
g = new ExceptionalUnitGraph(body);
}
return g;
}
// Assigning a set of all variables in the unitgraph initially with each of the variable
// associate with a TopLatticeElement
static void initializeEntryAndExitNodes(UnitGraph unitgraph)
{
Iterator<Unit> it = unitgraph.iterator();
Set<Value> variables = getAllVariables(unitgraph);
while(it.hasNext())
{
Unit next = it.next();
Map<Value,LatticeElement> initialValues= new HashMap<Value,LatticeElement>();
Iterator<Value> variableIterator = variables.iterator();
while(variableIterator.hasNext())
{
Value nextValue = variableIterator.next();
if(!blacklist.contains(nextValue))
{
initialValues.put(nextValue, new BottomLatticeElement());
}
else if (blacklist.contains(nextValue))
{
initialValues.put(nextValue, new TopLatticeElement());
}
}
entries.put(next, initialValues);
exits.put(next,initialValues);
}
}
static Set<Value> getAllVariables(UnitGraph unitgraph)
{
Set<Value> variables = new HashSet<Value>();
Iterator<Unit> it = unitgraph.iterator();
while(it.hasNext())
{
Unit next = it.next();
if(next instanceof JAssignStmt)
{
JAssignStmt statement = (JAssignStmt) next;
variables.add(statement.getLeftOp());
}
}
return variables;
}
}