forked from mwillsey/bril
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmp
2327 lines (2255 loc) · 103 KB
/
tmp
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
(processing (label _special_entry_for_ssa))
("adding to worklist" (label _special_entry_for_ssa) (adding (__b0)))
(processing (label __b0))
("adding to worklist" (label __b0) (adding (for.cond.3)))
(processing (label for.cond.3))
("adding to worklist" (label for.cond.3) (adding (for.body.3 for.end.3)))
(processing (label for.body.3))
("adding to worklist" (label for.body.3) (adding (if.body for.incre)))
(processing (label if.body))
("adding to worklist" (label if.body) (adding (for.cond.3)))
(processing (label for.incre))
("adding to worklist" (label for.incre) (adding (for.cond.3)))
(processing (label for.end.3))
("adding to worklist" (label for.end.3) (adding ()))
(processing (label for.cond.3))
("reached fixpoint" (label for.cond.3))
(dominance
(blocks
((__b0
((instructions
(((Label __b0) (Some (_special_entry_for_ssa)))
((Unary (n IntType) Id input) (Some (__b0 _special_entry_for_ssa)))
((Const (v0 IntType) (Int 0)) (Some (__b0 _special_entry_for_ssa)))
((Const (v1 IntType) (Int 10)) (Some (__b0 _special_entry_for_ssa)))
((Unary (result IntType) Id v0) (Some (__b0 _special_entry_for_ssa)))
((Const (v2 BoolType) (Bool true))
(Some (__b0 _special_entry_for_ssa)))
((Unary (notdone BoolType) Id v2)
(Some (__b0 _special_entry_for_ssa)))))
(block_end (Some (__b0 _special_entry_for_ssa)))))
(_special_entry_for_ssa
((instructions (((Label _special_entry_for_ssa) (Some ()))))
(block_end (Some (_special_entry_for_ssa)))))
(for.body.3
((instructions
(((Label for.body.3) (Some (__b0 _special_entry_for_ssa for.cond.3)))
((Unary (v5 IntType) Id n)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Binary (a IntType) Div v5 v1)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Binary (floor IntType) Mul a v1)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Binary (remainder IntType) Sub v5 floor)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Binary (result IntType) Mul result v1)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Binary (result IntType) Add result remainder)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Unary (n IntType) Id a)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Binary (comp1 BoolType) Eq n v0)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Br comp1 if.body for.incre)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))))
(block_end (Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))))
(for.cond.3
((instructions
(((Label for.cond.3) (Some (__b0 _special_entry_for_ssa)))
((Unary (v4 BoolType) Id notdone)
(Some (__b0 _special_entry_for_ssa for.cond.3)))
((Br v4 for.body.3 for.end.3)
(Some (__b0 _special_entry_for_ssa for.cond.3)))))
(block_end (Some (__b0 _special_entry_for_ssa for.cond.3)))))
(for.end.3
((instructions
(((Label for.end.3) (Some (__b0 _special_entry_for_ssa for.cond.3)))
((Print (result))
(Some (__b0 _special_entry_for_ssa for.cond.3 for.end.3)))))
(block_end (Some (__b0 _special_entry_for_ssa for.cond.3 for.end.3)))))
(for.incre
((instructions
(((Label for.incre)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Jmp for.cond.3)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3 for.incre)))))
(block_end
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3 for.incre)))))
(if.body
((instructions
(((Label if.body)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3)))
((Const (notdone BoolType) (Bool false))
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3 if.body)))
((Jmp for.cond.3)
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3 if.body)))))
(block_end
(Some (__b0 _special_entry_for_ssa for.body.3 for.cond.3 if.body))))))))
("dominance frontier"
(dominance_frontier
((__b0 ()) (_special_entry_for_ssa ()) (for.body.3 (for.cond.3))
(for.cond.3 (for.cond.3)) (for.end.3 ()) (for.incre (for.cond.3))
(if.body (for.cond.3)))))
(processing (label _special_entry_for_ssa))
("adding to worklist" (label _special_entry_for_ssa) (adding (__b0)))
(processing (label __b0))
("adding to worklist" (label __b0) (adding (for.cond.3)))
(processing (label for.cond.3))
("adding to worklist" (label for.cond.3) (adding (for.body.3 for.end.3)))
(processing (label for.body.3))
("adding to worklist" (label for.body.3) (adding (if.body for.incre)))
(processing (label if.body))
("adding to worklist" (label if.body) (adding (for.cond.3)))
(processing (label for.incre))
("adding to worklist" (label for.incre) (adding (for.cond.3)))
(processing (label for.end.3))
("adding to worklist" (label for.end.3) (adding ()))
(processing (label for.cond.3))
("adding to worklist" (label for.cond.3) (adding (for.body.3 for.end.3)))
(processing (label for.body.3))
("reached fixpoint" (label for.body.3))
(processing (label for.end.3))
("reached fixpoint" (label for.end.3))
((__b0
((instructions
(((Label __b0) ((input (Value input _special_entry_for_ssa))))
((Unary (n.0 IntType) Id input)
((input (Value input _special_entry_for_ssa))))
((Const (v0.0 IntType) (Int 0))
((input (Value input _special_entry_for_ssa)) (n (Value n.0 __b0))))
((Const (v1.0 IntType) (Int 10))
((input (Value input _special_entry_for_ssa)) (n (Value n.0 __b0))
(v0 (Value v0.0 __b0))))
((Unary (result.0 IntType) Id v0)
((input (Value input _special_entry_for_ssa)) (n (Value n.0 __b0))
(v0 (Value v0.0 __b0)) (v1 (Value v1.0 __b0))))
((Const (v2.0 BoolType) (Bool true))
((input (Value input _special_entry_for_ssa)) (n (Value n.0 __b0))
(result (Value result.0 __b0)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0))))
((Unary (notdone.0 BoolType) Id v2)
((input (Value input _special_entry_for_ssa)) (n (Value n.0 __b0))
(result (Value result.0 __b0)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))))))
(block_end
((input (Value input _special_entry_for_ssa)) (n (Value n.0 __b0))
(notdone (Value notdone.0 __b0)) (result (Value result.0 __b0))
(v0 (Value v0.0 __b0)) (v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))))))
(_special_entry_for_ssa
((instructions
(((Label _special_entry_for_ssa)
((input (Value input _special_entry_for_ssa))))))
(block_end ((input (Value input _special_entry_for_ssa))))))
(for.body.3
((instructions
(((Label for.body.3)
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.0 for.cond.3))))
((Unary (v5.1 IntType) Id n)
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.0 for.cond.3))))
((Binary (a.1 IntType) Div v5 v1)
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Binary (floor.1 IntType) Mul a v1)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Binary (remainder.1 IntType) Sub v5 floor)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Binary (result.2 IntType) Mul result v1)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Binary (result.3 IntType) Add result remainder)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.2 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Unary (n.2 IntType) Id a)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Binary (comp1.1 BoolType) Eq n v0)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.2 for.body.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Br comp1 if.body for.incre)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.2 for.body.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))))
(block_end
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa)) (n (Value n.2 for.body.3))
(notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))))
(for.cond.3
((instructions
(((Label for.cond.3)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa)) (n Multiple_values)
(notdone Multiple_values) (remainder (Value remainder.1 for.body.3))
(result Multiple_values) (v0 (Value v0.0 __b0)) (v1 (Value v1.0 __b0))
(v2 (Value v2.0 __b0)) (v4 (Value v4.1 for.cond.3))
(v5 (Value v5.1 for.body.3))))
((Phi (result.1 IntType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa)) (n Multiple_values)
(notdone Multiple_values) (remainder (Value remainder.1 for.body.3))
(result Multiple_values) (v0 (Value v0.0 __b0)) (v1 (Value v1.0 __b0))
(v2 (Value v2.0 __b0)) (v4 (Value v4.1 for.cond.3))
(v5 (Value v5.1 for.body.3))))
((Phi (v4.0 BoolType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa)) (n Multiple_values)
(notdone Multiple_values) (remainder (Value remainder.1 for.body.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Phi (floor.0 IntType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa)) (n Multiple_values)
(notdone Multiple_values) (remainder (Value remainder.1 for.body.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.0 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Phi (remainder.0 IntType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa)) (n Multiple_values)
(notdone Multiple_values) (remainder (Value remainder.1 for.body.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.0 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Phi (v5.0 IntType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa)) (n Multiple_values)
(notdone Multiple_values) (remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.0 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Phi (notdone.1 BoolType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa)) (n Multiple_values)
(notdone Multiple_values) (remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.0 for.cond.3)) (v5 (Value v5.0 for.cond.3))))
((Phi (n.1 IntType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa)) (n Multiple_values)
(notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.0 for.cond.3)) (v5 (Value v5.0 for.cond.3))))
((Phi (comp1.0 BoolType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.0 for.cond.3)) (v5 (Value v5.0 for.cond.3))))
((Phi (a.0 IntType) ())
((a (Value a.1 for.body.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.0 for.cond.3)) (v5 (Value v5.0 for.cond.3))))
((Unary (v4.1 BoolType) Id notdone)
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.0 for.cond.3)) (v5 (Value v5.0 for.cond.3))))
((Br v4 for.body.3 for.end.3)
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.0 for.cond.3))))))
(block_end
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa)) (n (Value n.1 for.cond.3))
(notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.0 for.cond.3))))))
(for.end.3
((instructions
(((Label for.end.3)
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.0 for.cond.3))))
((Print (result))
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.1 for.cond.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.0 for.cond.3))))))
(block_end
((a (Value a.0 for.cond.3)) (comp1 (Value comp1.0 for.cond.3))
(floor (Value floor.0 for.cond.3))
(input (Value input _special_entry_for_ssa)) (n (Value n.1 for.cond.3))
(notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.0 for.cond.3))
(result (Value result.1 for.cond.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.0 for.cond.3))))))
(for.incre
((instructions
(((Label for.incre)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.2 for.body.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Jmp for.cond.3)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.2 for.body.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))))
(block_end
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa)) (n (Value n.2 for.body.3))
(notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))))
(if.body
((instructions
(((Label if.body)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.2 for.body.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Const (notdone.2 BoolType) (Bool false))
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.2 for.body.3)) (notdone (Value notdone.1 for.cond.3))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))
((Jmp for.cond.3)
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa))
(n (Value n.2 for.body.3)) (notdone (Value notdone.2 if.body))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3))))))
(block_end
((a (Value a.1 for.body.3)) (comp1 (Value comp1.1 for.body.3))
(floor (Value floor.1 for.body.3))
(input (Value input _special_entry_for_ssa)) (n (Value n.2 for.body.3))
(notdone (Value notdone.2 if.body))
(remainder (Value remainder.1 for.body.3))
(result (Value result.3 for.body.3)) (v0 (Value v0.0 __b0))
(v1 (Value v1.0 __b0)) (v2 (Value v2.0 __b0))
(v4 (Value v4.1 for.cond.3)) (v5 (Value v5.1 for.body.3)))))))
("Processing instruction" (instr (Label _special_entry_for_ssa)))
("Processing instruction" (instr (Label __b0)))
("Processing instruction" (instr (Unary (n.0 IntType) Id input)))
("Processing instruction" (instr (Const (v0.0 IntType) (Int 0))))
("Processing instruction" (instr (Const (v1.0 IntType) (Int 10))))
("Processing instruction" (instr (Unary (result.0 IntType) Id v0.0)))
("Processing instruction" (instr (Const (v2.0 BoolType) (Bool true))))
("Processing instruction" (instr (Unary (notdone.0 BoolType) Id v2.0)))
("Attempting to simplify" (expr (Unary Id 0)))
("Attempting to simplify" (expr (Const (Int 0))))
("Attempting to simplify" (expr (Const (Int 10))))
("Attempting to simplify" (expr (Unary Id 2)))
("Simplified to" (expr (Const (Int 0))))
("Attempting to simplify" (expr (Const (Bool true))))
("Attempting to simplify" (expr (Unary Id 5)))
("Simplified to" (expr (Const (Bool true))))
("Processing instruction" (instr (Label for.cond.3)))
("Processing instruction"
(instr
(Phi (result.1 IntType)
((__b0 result.0) (if.body result.3) (for.incre result.3)))))
("Processing instruction"
(instr
(Phi (v4.0 BoolType) ((__b0 __undefined) (if.body v4.1) (for.incre v4.1)))))
("Processing instruction"
(instr
(Phi (floor.0 IntType)
((__b0 __undefined) (if.body floor.1) (for.incre floor.1)))))
("Processing instruction"
(instr
(Phi (remainder.0 IntType)
((__b0 __undefined) (if.body remainder.1) (for.incre remainder.1)))))
("Processing instruction"
(instr
(Phi (v5.0 IntType) ((__b0 __undefined) (if.body v5.1) (for.incre v5.1)))))
("Processing instruction"
(instr
(Phi (notdone.1 BoolType)
((__b0 notdone.0) (if.body notdone.2) (for.incre notdone.1)))))
("Processing instruction"
(instr (Phi (n.1 IntType) ((__b0 n.0) (if.body n.2) (for.incre n.2)))))
("Processing instruction"
(instr
(Phi (comp1.0 BoolType)
((__b0 __undefined) (if.body comp1.1) (for.incre comp1.1)))))
("Processing instruction"
(instr
(Phi (a.0 IntType) ((__b0 __undefined) (if.body a.1) (for.incre a.1)))))
("Processing instruction" (instr (Unary (v4.1 BoolType) Id notdone.1)))
("Processing instruction" (instr (Br v4.1 for.body.3 for.end.3)))
("Attempting to simplify" (expr (Unary Id 0)))
("Processing instruction" (instr (Label for.body.3)))
("Processing instruction" (instr (Unary (v5.1 IntType) Id n.1)))
("Processing instruction" (instr (Binary (a.1 IntType) Div v5.1 v1.0)))
("Processing instruction" (instr (Binary (floor.1 IntType) Mul a.1 v1.0)))
("Processing instruction"
(instr (Binary (remainder.1 IntType) Sub v5.1 floor.1)))
("Processing instruction"
(instr (Binary (result.2 IntType) Mul result.1 v1.0)))
("Processing instruction"
(instr (Binary (result.3 IntType) Add result.2 remainder.1)))
("Processing instruction" (instr (Unary (n.2 IntType) Id a.1)))
("Processing instruction" (instr (Binary (comp1.1 BoolType) Eq n.2 v0.0)))
("Processing instruction" (instr (Br comp1.1 if.body for.incre)))
("Attempting to simplify" (expr (Unary Id 0)))
("Attempting to simplify" (expr (Binary Div 1 2)))
("Attempting to simplify" (expr (Binary Mul 3 2)))
("Attempting to simplify" (expr (Binary Sub 1 4)))
("Attempting to simplify" (expr (Binary Mul 6 2)))
("Attempting to simplify" (expr (Binary Add 7 5)))
("Attempting to simplify" (expr (Unary Id 3)))
("Simplified to" (expr (Binary Div 1 2)))
("Attempting to simplify" (expr (Binary Eq 9 10)))
("Processing instruction" (instr (Label if.body)))
("Processing instruction" (instr (Const (notdone.2 BoolType) (Bool false))))
("Processing instruction" (instr (Jmp for.cond.3)))
("Attempting to simplify" (expr (Const (Bool false))))
("Processing instruction" (instr (Label for.incre)))
("Processing instruction" (instr (Jmp for.cond.3)))
("Processing instruction" (instr (Label for.end.3)))
("Processing instruction" (instr (Print (result.1))))
(processing (label _special_entry_for_ssa))
("reached fixpoint" (label _special_entry_for_ssa))
(processing (label __b0))
("adding to worklist" (label __b0) (adding (for.cond.3)))
(processing (label for.cond.3))
("adding to worklist" (label for.cond.3) (adding (for.body.3 for.end.3)))
(processing (label for.body.3))
("adding to worklist" (label for.body.3) (adding (if.body for.incre)))
(processing (label if.body))
("adding to worklist" (label if.body) (adding (for.cond.3)))
(processing (label for.incre))
("adding to worklist" (label for.incre) (adding (for.cond.3)))
(processing (label for.end.3))
("adding to worklist" (label for.end.3) (adding ()))
(processing (label for.cond.3))
("adding to worklist" (label for.cond.3) (adding (for.body.3 for.end.3)))
(processing (label for.body.3))
("adding to worklist" (label for.body.3) (adding (if.body for.incre)))
(processing (label for.end.3))
("adding to worklist" (label for.end.3) (adding ()))
(processing (label if.body))
("adding to worklist" (label if.body) (adding (for.cond.3)))
(processing (label for.incre))
("adding to worklist" (label for.incre) (adding (for.cond.3)))
(processing (label for.cond.3))
("reached fixpoint" (label for.cond.3))
(processing (label for.end.3))
("adding to worklist" (label for.end.3) (adding (for.cond.3)))
(processing (label for.incre))
("reached fixpoint" (label for.incre))
(processing (label if.body))
("reached fixpoint" (label if.body))
(processing (label for.body.3))
("reached fixpoint" (label for.body.3))
(processing (label for.cond.3))
("adding to worklist" (label for.cond.3) (adding (if.body for.incre __b0)))
(processing (label __b0))
("adding to worklist" (label __b0) (adding (_special_entry_for_ssa)))
(processing (label _special_entry_for_ssa))
("adding to worklist" (label _special_entry_for_ssa) (adding ()))
(processing (label if.body))
("adding to worklist" (label if.body) (adding (for.body.3)))
(processing (label for.incre))
("adding to worklist" (label for.incre) (adding (for.body.3)))
(processing (label for.body.3))
("adding to worklist" (label for.body.3) (adding (for.cond.3)))
(processing (label for.cond.3))
("reached fixpoint" (label for.cond.3))
("very busy expressions"
(blocks
((__b0
((instructions
(((Label __b0)
(Some
((Const IntType (Int 0)) (Const IntType (Int 10))
(Const BoolType (Bool true)) (Unary IntType Id input))))
((Unary (n.0 IntType) Id input)
(Some
((Const IntType (Int 0)) (Const IntType (Int 10))
(Const BoolType (Bool true)))))
((Const (v0.0 IntType) (Int 0))
(Some
((Const IntType (Int 0)) (Const IntType (Int 10))
(Const BoolType (Bool true)))))
((Const (v1.0 IntType) (Int 10))
(Some ((Const IntType (Int 0)) (Const BoolType (Bool true)))))
((Const (result.0 IntType) (Int 0))
(Some ((Const BoolType (Bool true)))))
((Const (v2.0 BoolType) (Bool true))
(Some ((Const BoolType (Bool true)))))
((Const (notdone.0 BoolType) (Bool true)) (Some ()))))
(block_end
(Some
((Const IntType (Int 0)) (Const IntType (Int 10))
(Const BoolType (Bool true)) (Unary IntType Id input))))))
(_special_entry_for_ssa
((instructions
(((Label _special_entry_for_ssa)
(Some
((Const IntType (Int 0)) (Const IntType (Int 10))
(Const BoolType (Bool true)) (Unary IntType Id input))))))
(block_end
(Some
((Const IntType (Int 0)) (Const IntType (Int 10))
(Const BoolType (Bool true)) (Unary IntType Id input))))))
(for.body.3
((instructions
(((Label for.body.3)
(Some ((Unary IntType Id n.1) (Binary IntType result.1 Mul v1.0))))
((Unary (v5.1 IntType) Id n.1)
(Some
((Binary IntType result.1 Mul v1.0) (Binary IntType v5.1 Div v1.0))))
((Binary (a.1 IntType) Div v5.1 v1.0)
(Some
((Binary IntType a.1 Mul v1.0) (Binary IntType result.1 Mul v1.0)
(Binary IntType v5.1 Div v1.0))))
((Binary (floor.1 IntType) Mul a.1 v1.0)
(Some
((Binary IntType result.1 Mul v1.0)
(Binary IntType v5.1 Sub floor.1) (Binary IntType v5.1 Div v1.0))))
((Binary (remainder.1 IntType) Sub v5.1 floor.1)
(Some
((Binary IntType result.1 Mul v1.0) (Binary IntType v5.1 Div v1.0))))
((Binary (result.2 IntType) Mul result.1 v1.0)
(Some
((Binary IntType result.2 Add remainder.1)
(Binary IntType v5.1 Div v1.0))))
((Binary (result.3 IntType) Add result.2 remainder.1)
(Some ((Binary IntType v5.1 Div v1.0))))
((Binary (n.2 IntType) Div v5.1 v1.0)
(Some ((Binary BoolType n.2 Eq v0.0))))
((Binary (comp1.1 BoolType) Eq n.2 v0.0) (Some ()))
((Br comp1.1 if.body for.incre) (Some ()))))
(block_end
(Some ((Unary IntType Id n.1) (Binary IntType result.1 Mul v1.0))))))
(for.cond.3
((instructions
(((Label for.cond.3) (Some ()))
((Phi (result.1 IntType)
((__b0 result.0) (if.body result.3) (for.incre result.3)))
(Some ()))
((Phi (v4.0 BoolType)
((__b0 __undefined) (if.body v4.1) (for.incre v4.1)))
(Some ()))
((Phi (floor.0 IntType)
((__b0 __undefined) (if.body floor.1) (for.incre floor.1)))
(Some ()))
((Phi (remainder.0 IntType)
((__b0 __undefined) (if.body remainder.1) (for.incre remainder.1)))
(Some ()))
((Phi (v5.0 IntType)
((__b0 __undefined) (if.body v5.1) (for.incre v5.1)))
(Some ()))
((Phi (notdone.1 BoolType)
((__b0 notdone.0) (if.body notdone.2) (for.incre notdone.1)))
(Some ((Unary BoolType Id notdone.1))))
((Phi (n.1 IntType) ((__b0 n.0) (if.body n.2) (for.incre n.2)))
(Some ((Unary BoolType Id notdone.1))))
((Phi (comp1.0 BoolType)
((__b0 __undefined) (if.body comp1.1) (for.incre comp1.1)))
(Some ((Unary BoolType Id notdone.1))))
((Phi (a.0 IntType)
((__b0 __undefined) (if.body a.1) (for.incre a.1)))
(Some ((Unary BoolType Id notdone.1))))
((Unary (v4.1 BoolType) Id notdone.1) (Some ()))
((Br v4.1 for.body.3 for.end.3) (Some ()))))
(block_end (Some ()))))
(for.end.3
((instructions
(((Label for.end.3) (Some ())) ((Print (result.1)) (Some ()))))
(block_end (Some ()))))
(for.incre
((instructions
(((Label for.incre) (Some ())) ((Jmp for.cond.3) (Some ()))))
(block_end (Some ()))))
(if.body
((instructions
(((Label if.body) (Some ((Const BoolType (Bool false)))))
((Const (notdone.2 BoolType) (Bool false)) (Some ()))
((Jmp for.cond.3) (Some ()))))
(block_end (Some ((Const BoolType (Bool false))))))))))
((before
(Some
((Const IntType (Int 0)) (Const IntType (Int 10))
(Const BoolType (Bool true)) (Unary IntType Id input))))
(label _special_entry_for_ssa))
((before (Some ())) (label __b0))
((before (Some ())) (label for.cond.3))
((before (Some ())) (label for.body.3))
((before (Some ())) (label if.body))
((before (Some ())) (label for.incre))
((before (Some ())) (label for.end.3))
(with_early_busy_instrs
((Label _special_entry_for_ssa) (Const (1106257803.0 IntType) (Int 0))
(Const (1106257803.1 IntType) (Int 10))
(Const (1106257803.2 BoolType) (Bool true)) (Label __b0)
(Unary (n.0 IntType) Id input) (Const (v0.0 IntType) (Int 0))
(Const (v1.0 IntType) (Int 10)) (Const (result.0 IntType) (Int 0))
(Const (v2.0 BoolType) (Bool true))
(Const (notdone.0 BoolType) (Bool true)) (Label for.cond.3)
(Phi (result.1 IntType)
((__b0 result.0) (if.body result.3) (for.incre result.3)))
(Phi (v4.0 BoolType) ((__b0 __undefined) (if.body v4.1) (for.incre v4.1)))
(Phi (floor.0 IntType)
((__b0 __undefined) (if.body floor.1) (for.incre floor.1)))
(Phi (remainder.0 IntType)
((__b0 __undefined) (if.body remainder.1) (for.incre remainder.1)))
(Phi (v5.0 IntType) ((__b0 __undefined) (if.body v5.1) (for.incre v5.1)))
(Phi (notdone.1 BoolType)
((__b0 notdone.0) (if.body notdone.2) (for.incre notdone.1)))
(Phi (n.1 IntType) ((__b0 n.0) (if.body n.2) (for.incre n.2)))
(Phi (comp1.0 BoolType)
((__b0 __undefined) (if.body comp1.1) (for.incre comp1.1)))
(Phi (a.0 IntType) ((__b0 __undefined) (if.body a.1) (for.incre a.1)))
(Unary (v4.1 BoolType) Id notdone.1) (Br v4.1 for.body.3 for.end.3)
(Label for.body.3) (Unary (v5.1 IntType) Id n.1)
(Binary (a.1 IntType) Div v5.1 v1.0)
(Binary (floor.1 IntType) Mul a.1 v1.0)
(Binary (remainder.1 IntType) Sub v5.1 floor.1)
(Binary (result.2 IntType) Mul result.1 v1.0)
(Binary (result.3 IntType) Add result.2 remainder.1)
(Binary (n.2 IntType) Div v5.1 v1.0)
(Binary (comp1.1 BoolType) Eq n.2 v0.0) (Br comp1.1 if.body for.incre)
(Label if.body) (Const (notdone.2 BoolType) (Bool false)) (Jmp for.cond.3)
(Label for.incre) (Jmp for.cond.3) (Label for.end.3) (Print (result.1))))
(processing (label _special_entry_for_ssa))
("adding to worklist" (label _special_entry_for_ssa) (adding (__b0)))
(processing (label __b0))
("adding to worklist" (label __b0) (adding (for.cond.3)))
(processing (label for.cond.3))
("adding to worklist" (label for.cond.3) (adding (for.body.3 for.end.3)))
(processing (label for.body.3))
("adding to worklist" (label for.body.3) (adding (if.body for.incre)))
(processing (label if.body))
("adding to worklist" (label if.body) (adding (for.cond.3)))
(processing (label for.incre))
("adding to worklist" (label for.incre) (adding (for.cond.3)))
(processing (label for.end.3))
("adding to worklist" (label for.end.3) (adding ()))
(processing (label for.cond.3))
("reached fixpoint" (label for.cond.3))
("available expressions"
(blocks
((__b0
((instructions
(((Label __b0)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2))))
((Unary (n.0 IntType) Id input)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2))))
((Const (v0.0 IntType) (Int 0))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))
((Const (v1.0 IntType) (Int 10))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))
((Const (result.0 IntType) (Int 0))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))
((Const (v2.0 BoolType) (Bool true))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))
((Const (notdone.0 BoolType) (Bool true))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))))
(block_end
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))))
(_special_entry_for_ssa
((instructions
(((Label _special_entry_for_ssa) (Some ()))
((Const (1106257803.0 IntType) (Int 0)) (Some ()))
((Const (1106257803.1 IntType) (Int 10))
(Some (((Const IntType (Int 0)) 1106257803.0))))
((Const (1106257803.2 BoolType) (Bool true))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1))))))
(block_end
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2))))))
(for.body.3
((instructions
(((Label for.body.3)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0)
((Unary BoolType Id notdone.1) v4.1))))
((Unary (v5.1 IntType) Id n.1)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0)
((Unary BoolType Id notdone.1) v4.1))))
((Binary (a.1 IntType) Div v5.1 v1.0)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1))))
((Binary (floor.1 IntType) Mul a.1 v1.0)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1)
((Binary IntType v5.1 Div v1.0) a.1))))
((Binary (remainder.1 IntType) Sub v5.1 floor.1)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1)
((Binary IntType a.1 Mul v1.0) floor.1)
((Binary IntType v5.1 Div v1.0) a.1))))
((Binary (result.2 IntType) Mul result.1 v1.0)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1)
((Binary IntType a.1 Mul v1.0) floor.1)
((Binary IntType v5.1 Sub floor.1) remainder.1)
((Binary IntType v5.1 Div v1.0) a.1))))
((Binary (result.3 IntType) Add result.2 remainder.1)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1)
((Binary IntType a.1 Mul v1.0) floor.1)
((Binary IntType result.1 Mul v1.0) result.2)
((Binary IntType v5.1 Sub floor.1) remainder.1)
((Binary IntType v5.1 Div v1.0) a.1))))
((Binary (n.2 IntType) Div v5.1 v1.0)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1)
((Binary IntType a.1 Mul v1.0) floor.1)
((Binary IntType result.1 Mul v1.0) result.2)
((Binary IntType result.2 Add remainder.1) result.3)
((Binary IntType v5.1 Sub floor.1) remainder.1)
((Binary IntType v5.1 Div v1.0) a.1))))
((Binary (comp1.1 BoolType) Eq n.2 v0.0)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1)
((Binary IntType a.1 Mul v1.0) floor.1)
((Binary IntType result.1 Mul v1.0) result.2)
((Binary IntType result.2 Add remainder.1) result.3)
((Binary IntType v5.1 Sub floor.1) remainder.1)
((Binary IntType v5.1 Div v1.0) a.1))))
((Br comp1.1 if.body for.incre)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1)
((Binary IntType a.1 Mul v1.0) floor.1)
((Binary IntType result.1 Mul v1.0) result.2)
((Binary IntType result.2 Add remainder.1) result.3)
((Binary IntType v5.1 Sub floor.1) remainder.1)
((Binary IntType v5.1 Div v1.0) a.1)
((Binary BoolType n.2 Eq v0.0) comp1.1))))))
(block_end
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0) ((Unary IntType Id n.1) v5.1)
((Unary BoolType Id notdone.1) v4.1)
((Binary IntType a.1 Mul v1.0) floor.1)
((Binary IntType result.1 Mul v1.0) result.2)
((Binary IntType result.2 Add remainder.1) result.3)
((Binary IntType v5.1 Sub floor.1) remainder.1)
((Binary IntType v5.1 Div v1.0) a.1)
((Binary BoolType n.2 Eq v0.0) comp1.1))))))
(for.cond.3
((instructions
(((Label for.cond.3)
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))
((Phi (result.1 IntType)
((__b0 result.0) (if.body result.3) (for.incre result.3)))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))
((Phi (v4.0 BoolType)
((__b0 __undefined) (if.body v4.1) (for.incre v4.1)))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))
((Phi (floor.0 IntType)
((__b0 __undefined) (if.body floor.1) (for.incre floor.1)))
(Some
(((Const IntType (Int 0)) 1106257803.0)
((Const IntType (Int 10)) 1106257803.1)
((Const BoolType (Bool true)) 1106257803.2)
((Unary IntType Id input) n.0))))
((Phi (remainder.0 IntType)
((__b0 __undefined) (if.body remainder.1) (for.incre remainder.1)))
(Some
(((Const IntType (Int 0)) 1106257803.0)