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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
|
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1590" onload="init(evt)" viewBox="0 0 1200 1590" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) {
currentSearchTerm = term;
search();
}
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1590.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1573" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="1573" > </text>
<g id="frames">
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (318 samples, 22.35%)</title><rect x="852.5" y="309" width="263.7" height="15.0" fill="rgb(226,156,18)" rx="2" ry="2" />
<text x="855.50" y="319.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="805.2" y="213" width="1.7" height="15.0" fill="rgb(252,25,11)" rx="2" ry="2" />
<text x="808.24" y="223.5" ></text>
</g>
<g >
<title><unknown> (2 samples, 0.14%)</title><rect x="717.3" y="1413" width="1.7" height="15.0" fill="rgb(212,118,25)" rx="2" ry="2" />
<text x="720.34" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="805.2" y="357" width="1.7" height="15.0" fill="rgb(229,151,10)" rx="2" ry="2" />
<text x="808.24" y="367.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="1117.0" y="709" width="0.9" height="15.0" fill="rgb(207,228,33)" rx="2" ry="2" />
<text x="1120.03" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="1116.2" y="245" width="0.8" height="15.0" fill="rgb(213,13,0)" rx="2" ry="2" />
<text x="1119.20" y="255.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.07%)</title><rect x="725.6" y="1413" width="0.9" height="15.0" fill="rgb(230,25,48)" rx="2" ry="2" />
<text x="728.63" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="827.6" y="213" width="1.7" height="15.0" fill="rgb(242,221,30)" rx="2" ry="2" />
<text x="830.62" y="223.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Val::Num (4 samples, 0.28%)</title><rect x="1175.1" y="1525" width="3.3" height="15.0" fill="rgb(225,91,15)" rx="2" ry="2" />
<text x="1178.07" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="789.5" y="757" width="0.8" height="15.0" fill="rgb(252,184,40)" rx="2" ry="2" />
<text x="792.48" y="767.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="840.1" y="645" width="1.6" height="15.0" fill="rgb(253,156,29)" rx="2" ry="2" />
<text x="843.06" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="1061" width="330.9" height="15.0" fill="rgb(216,22,26)" rx="2" ry="2" />
<text x="789.99" y="1071.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 1.41%)</title><rect x="790.3" y="693" width="16.6" height="15.0" fill="rgb(205,26,54)" rx="2" ry="2" />
<text x="793.31" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="787.8" y="773" width="0.9" height="15.0" fill="rgb(205,37,27)" rx="2" ry="2" />
<text x="790.82" y="783.5" ></text>
</g>
<g >
<title>Composer\Autoload\ClassLoader::loadClass (2 samples, 0.14%)</title><rect x="11.7" y="1461" width="1.6" height="15.0" fill="rgb(212,156,15)" rx="2" ry="2" />
<text x="14.66" y="1471.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="779.5" y="1173" width="0.9" height="15.0" fill="rgb(218,124,46)" rx="2" ry="2" />
<text x="782.53" y="1183.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.42%)</title><rect x="782.0" y="1237" width="5.0" height="15.0" fill="rgb(253,217,48)" rx="2" ry="2" />
<text x="785.02" y="1247.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.07%)</title><rect x="813.5" y="453" width="0.9" height="15.0" fill="rgb(244,54,12)" rx="2" ry="2" />
<text x="816.53" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="782.8" y="949" width="3.4" height="15.0" fill="rgb(250,56,36)" rx="2" ry="2" />
<text x="785.85" y="959.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="1157" width="330.9" height="15.0" fill="rgb(250,93,24)" rx="2" ry="2" />
<text x="789.99" y="1167.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="801.9" y="437" width="0.8" height="15.0" fill="rgb(254,40,0)" rx="2" ry="2" />
<text x="804.92" y="447.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="816.0" y="421" width="0.8" height="15.0" fill="rgb(233,106,33)" rx="2" ry="2" />
<text x="819.02" y="431.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (10 samples, 0.70%)</title><rect x="1164.3" y="1525" width="8.3" height="15.0" fill="rgb(246,210,7)" rx="2" ry="2" />
<text x="1167.29" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="853" width="330.9" height="15.0" fill="rgb(218,145,33)" rx="2" ry="2" />
<text x="789.99" y="863.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (319 samples, 22.42%)</title><rect x="852.5" y="581" width="264.5" height="15.0" fill="rgb(229,216,45)" rx="2" ry="2" />
<text x="855.50" y="591.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="1125" width="330.9" height="15.0" fill="rgb(220,15,42)" rx="2" ry="2" />
<text x="789.99" y="1135.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (319 samples, 22.42%)</title><rect x="852.5" y="725" width="264.5" height="15.0" fill="rgb(208,210,1)" rx="2" ry="2" />
<text x="855.50" y="735.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>assert (1 samples, 0.07%)</title><rect x="622.0" y="1413" width="0.8" height="15.0" fill="rgb(211,220,39)" rx="2" ry="2" />
<text x="624.97" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (410 samples, 28.81%)</title><rect x="777.9" y="1381" width="340.0" height="15.0" fill="rgb(229,194,22)" rx="2" ry="2" />
<text x="780.87" y="1391.5" >Nsfisis\Waddiwasi\Execution\Runtime::invokeByF..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1117.0" y="757" width="0.9" height="15.0" fill="rgb(229,67,50)" rx="2" ry="2" />
<text x="1120.03" y="767.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="1141" width="0.9" height="15.0" fill="rgb(206,177,27)" rx="2" ry="2" />
<text x="782.53" y="1151.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (402 samples, 28.25%)</title><rect x="309.4" y="1461" width="333.3" height="15.0" fill="rgb(232,123,3)" rx="2" ry="2" />
<text x="312.35" y="1471.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.28%)</title><rect x="803.6" y="565" width="3.3" height="15.0" fill="rgb(206,24,38)" rx="2" ry="2" />
<text x="806.58" y="575.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="827.6" y="309" width="1.7" height="15.0" fill="rgb(210,9,53)" rx="2" ry="2" />
<text x="830.62" y="319.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="1111.2" y="149" width="0.9" height="15.0" fill="rgb(223,188,8)" rx="2" ry="2" />
<text x="1114.22" y="159.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="830.9" y="693" width="0.9" height="15.0" fill="rgb(241,36,53)" rx="2" ry="2" />
<text x="833.94" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (4 samples, 0.28%)</title><rect x="726.5" y="1429" width="3.3" height="15.0" fill="rgb(251,44,29)" rx="2" ry="2" />
<text x="729.46" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (4 samples, 0.28%)</title><rect x="730.6" y="1445" width="3.3" height="15.0" fill="rgb(238,164,22)" rx="2" ry="2" />
<text x="733.60" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="779.5" y="789" width="0.9" height="15.0" fill="rgb(210,27,42)" rx="2" ry="2" />
<text x="782.53" y="799.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (2 samples, 0.14%)</title><rect x="1173.4" y="1525" width="1.7" height="15.0" fill="rgb(218,35,42)" rx="2" ry="2" />
<text x="1176.42" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="779.5" y="885" width="0.9" height="15.0" fill="rgb(242,172,22)" rx="2" ry="2" />
<text x="782.53" y="895.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="1237" width="330.9" height="15.0" fill="rgb(233,215,15)" rx="2" ry="2" />
<text x="789.99" y="1247.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="805.2" y="469" width="1.7" height="15.0" fill="rgb(225,148,17)" rx="2" ry="2" />
<text x="808.24" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::push (2 samples, 0.14%)</title><rect x="572.2" y="1429" width="1.7" height="15.0" fill="rgb(226,171,23)" rx="2" ry="2" />
<text x="575.22" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.42%)</title><rect x="847.5" y="677" width="5.0" height="15.0" fill="rgb(244,127,22)" rx="2" ry="2" />
<text x="850.53" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="846.7" y="677" width="0.8" height="15.0" fill="rgb(215,86,5)" rx="2" ry="2" />
<text x="849.70" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1118.7" y="853" width="0.8" height="15.0" fill="rgb(212,56,27)" rx="2" ry="2" />
<text x="1121.69" y="863.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="1117.9" y="1013" width="2.4" height="15.0" fill="rgb(206,190,34)" rx="2" ry="2" />
<text x="1120.86" y="1023.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1137.8" y="1477" width="0.8" height="15.0" fill="rgb(206,100,30)" rx="2" ry="2" />
<text x="1140.76" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="819.3" y="405" width="0.9" height="15.0" fill="rgb(230,128,42)" rx="2" ry="2" />
<text x="822.33" y="415.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="1118.7" y="757" width="0.8" height="15.0" fill="rgb(232,2,38)" rx="2" ry="2" />
<text x="1121.69" y="767.5" ></text>
</g>
<g >
<title>count (1 samples, 0.07%)</title><rect x="725.6" y="1397" width="0.9" height="15.0" fill="rgb(232,150,8)" rx="2" ry="2" />
<text x="728.63" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::__construct (3 samples, 0.21%)</title><rect x="773.7" y="1445" width="2.5" height="15.0" fill="rgb(207,29,7)" rx="2" ry="2" />
<text x="776.72" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 1.34%)</title><rect x="791.1" y="645" width="15.8" height="15.0" fill="rgb(231,102,46)" rx="2" ry="2" />
<text x="794.14" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (22 samples, 1.55%)</title><rect x="747.2" y="1445" width="18.2" height="15.0" fill="rgb(252,114,3)" rx="2" ry="2" />
<text x="750.19" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="850.8" y="613" width="0.9" height="15.0" fill="rgb(222,130,46)" rx="2" ry="2" />
<text x="853.84" y="623.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (11 samples, 0.77%)</title><rect x="1073.1" y="181" width="9.1" height="15.0" fill="rgb(228,115,29)" rx="2" ry="2" />
<text x="1076.08" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="779.5" y="869" width="0.9" height="15.0" fill="rgb(242,106,31)" rx="2" ry="2" />
<text x="782.53" y="879.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.56%)</title><rect x="809.4" y="533" width="6.6" height="15.0" fill="rgb(236,73,16)" rx="2" ry="2" />
<text x="812.38" y="543.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="787.8" y="725" width="0.9" height="15.0" fill="rgb(233,205,7)" rx="2" ry="2" />
<text x="790.82" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.14%)</title><rect x="805.2" y="325" width="1.7" height="15.0" fill="rgb(215,218,13)" rx="2" ry="2" />
<text x="808.24" y="335.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="820.2" y="501" width="0.8" height="15.0" fill="rgb(230,55,12)" rx="2" ry="2" />
<text x="823.16" y="511.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="405" width="264.5" height="15.0" fill="rgb(249,183,45)" rx="2" ry="2" />
<text x="855.50" y="415.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="341" width="264.5" height="15.0" fill="rgb(233,139,52)" rx="2" ry="2" />
<text x="855.50" y="351.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title><unknown> (2 samples, 0.14%)</title><rect x="1176.7" y="1509" width="1.7" height="15.0" fill="rgb(251,175,22)" rx="2" ry="2" />
<text x="1179.73" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1118.7" y="789" width="0.8" height="15.0" fill="rgb(254,66,12)" rx="2" ry="2" />
<text x="1121.69" y="799.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="850.8" y="581" width="0.9" height="15.0" fill="rgb(246,163,3)" rx="2" ry="2" />
<text x="853.84" y="591.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="850.8" y="597" width="0.9" height="15.0" fill="rgb(232,33,32)" rx="2" ry="2" />
<text x="853.84" y="607.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1253" width="3.3" height="15.0" fill="rgb(231,14,38)" rx="2" ry="2" />
<text x="1120.86" y="1263.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.28%)</title><rect x="791.1" y="501" width="3.4" height="15.0" fill="rgb(223,226,50)" rx="2" ry="2" />
<text x="794.14" y="511.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1143.6" y="1429" width="0.8" height="15.0" fill="rgb(246,132,43)" rx="2" ry="2" />
<text x="1146.56" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (318 samples, 22.35%)</title><rect x="852.5" y="293" width="263.7" height="15.0" fill="rgb(225,199,44)" rx="2" ry="2" />
<text x="855.50" y="303.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="792.8" y="405" width="1.7" height="15.0" fill="rgb(253,229,24)" rx="2" ry="2" />
<text x="795.80" y="415.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrsForInit (600 samples, 42.16%)</title><rect x="278.7" y="1493" width="497.5" height="15.0" fill="rgb(223,42,35)" rx="2" ry="2" />
<text x="281.67" y="1503.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrsForInit</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.07%)</title><rect x="1161.0" y="1493" width="0.8" height="15.0" fill="rgb(235,132,20)" rx="2" ry="2" />
<text x="1163.98" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1118.7" y="805" width="0.8" height="15.0" fill="rgb(210,157,14)" rx="2" ry="2" />
<text x="1121.69" y="815.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="780.4" y="1141" width="0.8" height="15.0" fill="rgb(239,180,8)" rx="2" ry="2" />
<text x="783.36" y="1151.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="1182.5" y="1413" width="0.9" height="15.0" fill="rgb(223,224,2)" rx="2" ry="2" />
<text x="1185.54" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1116.2" y="277" width="0.8" height="15.0" fill="rgb(234,213,19)" rx="2" ry="2" />
<text x="1119.20" y="287.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI64 (1 samples, 0.07%)</title><rect x="790.3" y="661" width="0.8" height="15.0" fill="rgb(230,118,26)" rx="2" ry="2" />
<text x="793.31" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="1138.6" y="1509" width="2.5" height="15.0" fill="rgb(218,183,22)" rx="2" ry="2" />
<text x="1141.59" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1159.3" y="1493" width="0.8" height="15.0" fill="rgb(242,48,4)" rx="2" ry="2" />
<text x="1162.32" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="806.9" y="565" width="1.7" height="15.0" fill="rgb(206,98,17)" rx="2" ry="2" />
<text x="809.89" y="575.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="838.4" y="693" width="3.3" height="15.0" fill="rgb(209,38,51)" rx="2" ry="2" />
<text x="841.40" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="781.2" y="1125" width="0.8" height="15.0" fill="rgb(205,138,19)" rx="2" ry="2" />
<text x="784.19" y="1135.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="826.8" y="341" width="3.3" height="15.0" fill="rgb(249,112,31)" rx="2" ry="2" />
<text x="829.80" y="351.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="801.9" y="357" width="0.8" height="15.0" fill="rgb(221,99,32)" rx="2" ry="2" />
<text x="804.92" y="367.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="779.5" y="773" width="0.9" height="15.0" fill="rgb(248,46,32)" rx="2" ry="2" />
<text x="782.53" y="783.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.42%)</title><rect x="782.0" y="1093" width="5.0" height="15.0" fill="rgb(221,7,22)" rx="2" ry="2" />
<text x="785.02" y="1103.5" ></text>
</g>
<g >
<title>print_r (1 samples, 0.07%)</title><rect x="763.8" y="1413" width="0.8" height="15.0" fill="rgb(253,99,46)" rx="2" ry="2" />
<text x="766.77" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="805" width="0.9" height="15.0" fill="rgb(221,177,6)" rx="2" ry="2" />
<text x="782.53" y="815.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="816.8" y="469" width="2.5" height="15.0" fill="rgb(235,117,11)" rx="2" ry="2" />
<text x="819.84" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (3 samples, 0.21%)</title><rect x="1107.9" y="165" width="2.5" height="15.0" fill="rgb(231,181,24)" rx="2" ry="2" />
<text x="1110.91" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1143.6" y="1509" width="0.8" height="15.0" fill="rgb(212,163,45)" rx="2" ry="2" />
<text x="1146.56" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.77%)</title><rect x="777.9" y="1269" width="9.1" height="15.0" fill="rgb(212,41,33)" rx="2" ry="2" />
<text x="780.87" y="1279.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="1117.9" y="917" width="2.4" height="15.0" fill="rgb(225,187,49)" rx="2" ry="2" />
<text x="1120.86" y="927.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (1 samples, 0.07%)</title><rect x="1118.7" y="661" width="0.8" height="15.0" fill="rgb(233,150,26)" rx="2" ry="2" />
<text x="1121.69" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 1.05%)</title><rect x="791.1" y="565" width="12.5" height="15.0" fill="rgb(210,222,14)" rx="2" ry="2" />
<text x="794.14" y="575.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="568.9" y="1397" width="0.8" height="15.0" fill="rgb(238,170,54)" rx="2" ry="2" />
<text x="571.90" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="661" width="0.9" height="15.0" fill="rgb(229,151,7)" rx="2" ry="2" />
<text x="782.53" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1118.7" y="693" width="0.8" height="15.0" fill="rgb(241,205,54)" rx="2" ry="2" />
<text x="1121.69" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="469" width="264.5" height="15.0" fill="rgb(223,61,43)" rx="2" ry="2" />
<text x="855.50" y="479.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="801.9" y="453" width="0.8" height="15.0" fill="rgb(208,80,10)" rx="2" ry="2" />
<text x="804.92" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (53 samples, 3.72%)</title><rect x="581.3" y="1445" width="44.0" height="15.0" fill="rgb(223,147,20)" rx="2" ry="2" />
<text x="584.34" y="1455.5" >Nsfi..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="853" width="0.9" height="15.0" fill="rgb(244,158,37)" rx="2" ry="2" />
<text x="782.53" y="863.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.35%)</title><rect x="1117.9" y="1413" width="4.1" height="15.0" fill="rgb(252,74,31)" rx="2" ry="2" />
<text x="1120.86" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.21%)</title><rect x="811.0" y="469" width="2.5" height="15.0" fill="rgb(225,41,16)" rx="2" ry="2" />
<text x="814.04" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.07%)</title><rect x="625.3" y="1445" width="0.8" height="15.0" fill="rgb(212,77,28)" rx="2" ry="2" />
<text x="628.29" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.63%)</title><rect x="822.6" y="501" width="7.5" height="15.0" fill="rgb(231,38,35)" rx="2" ry="2" />
<text x="825.65" y="511.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="565" width="264.5" height="15.0" fill="rgb(248,29,18)" rx="2" ry="2" />
<text x="855.50" y="575.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::TableInit (1 samples, 0.07%)</title><rect x="777.0" y="1493" width="0.9" height="15.0" fill="rgb(225,122,51)" rx="2" ry="2" />
<text x="780.04" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (344 samples, 24.17%)</title><rect x="832.6" y="821" width="285.3" height="15.0" fill="rgb(247,195,9)" rx="2" ry="2" />
<text x="835.60" y="831.5" >Nsfisis\Waddiwasi\Execution\Runtime::e..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.70%)</title><rect x="795.3" y="485" width="8.3" height="15.0" fill="rgb(231,41,54)" rx="2" ry="2" />
<text x="798.28" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="816.0" y="501" width="0.8" height="15.0" fill="rgb(223,219,2)" rx="2" ry="2" />
<text x="819.02" y="511.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::__construct (1 samples, 0.07%)</title><rect x="729.8" y="1429" width="0.8" height="15.0" fill="rgb(244,210,47)" rx="2" ry="2" />
<text x="732.78" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.07%)</title><rect x="1177.6" y="1493" width="0.8" height="15.0" fill="rgb(242,72,30)" rx="2" ry="2" />
<text x="1180.56" y="1503.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1140.2" y="1493" width="0.9" height="15.0" fill="rgb(219,143,46)" rx="2" ry="2" />
<text x="1143.25" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="801.9" y="389" width="0.8" height="15.0" fill="rgb(239,225,1)" rx="2" ry="2" />
<text x="804.92" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="789.5" y="693" width="0.8" height="15.0" fill="rgb(253,179,48)" rx="2" ry="2" />
<text x="792.48" y="703.5" ></text>
</g>
<g >
<title>array_fill (319 samples, 22.42%)</title><rect x="13.3" y="1461" width="264.5" height="15.0" fill="rgb(249,210,11)" rx="2" ry="2" />
<text x="16.32" y="1471.5" >array_fill</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.77%)</title><rect x="777.9" y="1253" width="9.1" height="15.0" fill="rgb(205,60,48)" rx="2" ry="2" />
<text x="780.87" y="1263.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="801.9" y="325" width="0.8" height="15.0" fill="rgb(252,99,14)" rx="2" ry="2" />
<text x="804.92" y="335.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="803.6" y="517" width="3.3" height="15.0" fill="rgb(227,149,0)" rx="2" ry="2" />
<text x="806.58" y="527.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="830.9" y="677" width="0.9" height="15.0" fill="rgb(250,111,48)" rx="2" ry="2" />
<text x="833.94" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="1109" width="0.9" height="15.0" fill="rgb(253,170,50)" rx="2" ry="2" />
<text x="782.53" y="1119.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1397" width="3.3" height="15.0" fill="rgb(207,156,29)" rx="2" ry="2" />
<text x="1120.86" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="820.2" y="469" width="0.8" height="15.0" fill="rgb(235,41,1)" rx="2" ry="2" />
<text x="823.16" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="794.5" y="437" width="0.8" height="15.0" fill="rgb(236,61,18)" rx="2" ry="2" />
<text x="797.46" y="447.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="840.1" y="629" width="1.6" height="15.0" fill="rgb(212,30,54)" rx="2" ry="2" />
<text x="843.06" y="639.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 1.26%)</title><rect x="837.6" y="741" width="14.9" height="15.0" fill="rgb(239,68,4)" rx="2" ry="2" />
<text x="840.58" y="751.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="780.4" y="1109" width="0.8" height="15.0" fill="rgb(222,34,53)" rx="2" ry="2" />
<text x="783.36" y="1119.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (1 samples, 0.07%)</title><rect x="781.2" y="1109" width="0.8" height="15.0" fill="rgb(244,81,5)" rx="2" ry="2" />
<text x="784.19" y="1119.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="794.5" y="485" width="0.8" height="15.0" fill="rgb(216,163,39)" rx="2" ry="2" />
<text x="797.46" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="813.5" y="469" width="2.5" height="15.0" fill="rgb(206,207,32)" rx="2" ry="2" />
<text x="816.53" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.42%)</title><rect x="782.0" y="1205" width="5.0" height="15.0" fill="rgb(214,110,1)" rx="2" ry="2" />
<text x="785.02" y="1215.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.14%)</title><rect x="827.6" y="245" width="1.7" height="15.0" fill="rgb(233,203,18)" rx="2" ry="2" />
<text x="830.62" y="255.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.70%)</title><rect x="795.3" y="501" width="8.3" height="15.0" fill="rgb(216,90,37)" rx="2" ry="2" />
<text x="798.28" y="511.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="802.7" y="469" width="0.9" height="15.0" fill="rgb(238,41,19)" rx="2" ry="2" />
<text x="805.75" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.42%)</title><rect x="782.0" y="1141" width="5.0" height="15.0" fill="rgb(247,195,35)" rx="2" ry="2" />
<text x="785.02" y="1151.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1116.2" y="197" width="0.8" height="15.0" fill="rgb(216,217,41)" rx="2" ry="2" />
<text x="1119.20" y="207.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="1097.1" y="165" width="0.9" height="15.0" fill="rgb(223,47,19)" rx="2" ry="2" />
<text x="1100.13" y="175.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="732.3" y="1413" width="0.8" height="15.0" fill="rgb(253,155,45)" rx="2" ry="2" />
<text x="735.26" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="779.5" y="1157" width="0.9" height="15.0" fill="rgb(244,0,40)" rx="2" ry="2" />
<text x="782.53" y="1167.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="1141" width="330.9" height="15.0" fill="rgb(249,216,40)" rx="2" ry="2" />
<text x="789.99" y="1151.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>count (3 samples, 0.21%)</title><rect x="756.3" y="1413" width="2.5" height="15.0" fill="rgb(218,56,23)" rx="2" ry="2" />
<text x="759.31" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="801.9" y="293" width="0.8" height="15.0" fill="rgb(249,226,26)" rx="2" ry="2" />
<text x="804.92" y="303.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="641.0" y="1413" width="0.9" height="15.0" fill="rgb(253,41,26)" rx="2" ry="2" />
<text x="644.05" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="789.5" y="725" width="0.8" height="15.0" fill="rgb(236,2,12)" rx="2" ry="2" />
<text x="792.48" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="827.6" y="149" width="1.7" height="15.0" fill="rgb(223,162,7)" rx="2" ry="2" />
<text x="830.62" y="159.5" ></text>
</g>
<g >
<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.07%)</title><rect x="777.0" y="1477" width="0.9" height="15.0" fill="rgb(242,94,39)" rx="2" ry="2" />
<text x="780.04" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.56%)</title><rect x="823.5" y="373" width="6.6" height="15.0" fill="rgb(211,177,41)" rx="2" ry="2" />
<text x="826.48" y="383.5" ></text>
</g>
<g >
<title>all (1,423 samples, 100%)</title><rect x="10.0" y="1541" width="1180.0" height="15.0" fill="rgb(221,147,29)" rx="2" ry="2" />
<text x="13.00" y="1551.5" ></text>
</g>
<g >
<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.07%)</title><rect x="277.8" y="1461" width="0.9" height="15.0" fill="rgb(247,57,36)" rx="2" ry="2" />
<text x="280.84" y="1471.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.14%)</title><rect x="805.2" y="341" width="1.7" height="15.0" fill="rgb(221,62,28)" rx="2" ry="2" />
<text x="808.24" y="351.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.07%)</title><rect x="852.5" y="213" width="0.8" height="15.0" fill="rgb(229,105,41)" rx="2" ry="2" />
<text x="855.50" y="223.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="733.1" y="1429" width="0.8" height="15.0" fill="rgb(240,167,14)" rx="2" ry="2" />
<text x="736.09" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="805.2" y="309" width="1.7" height="15.0" fill="rgb(225,3,35)" rx="2" ry="2" />
<text x="808.24" y="319.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="811.9" y="405" width="0.8" height="15.0" fill="rgb(218,134,39)" rx="2" ry="2" />
<text x="814.87" y="415.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="1141.1" y="1509" width="0.8" height="15.0" fill="rgb(251,103,16)" rx="2" ry="2" />
<text x="1144.08" y="1519.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1107.1" y="165" width="0.8" height="15.0" fill="rgb(206,131,35)" rx="2" ry="2" />
<text x="1110.08" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="819.3" y="453" width="0.9" height="15.0" fill="rgb(233,175,21)" rx="2" ry="2" />
<text x="822.33" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="645" width="264.5" height="15.0" fill="rgb(248,130,11)" rx="2" ry="2" />
<text x="855.50" y="655.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (2 samples, 0.14%)</title><rect x="765.4" y="1445" width="1.7" height="15.0" fill="rgb(234,35,3)" rx="2" ry="2" />
<text x="768.43" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.07%)</title><rect x="636.1" y="1413" width="0.8" height="15.0" fill="rgb(238,99,33)" rx="2" ry="2" />
<text x="639.07" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.35%)</title><rect x="782.8" y="1013" width="4.2" height="15.0" fill="rgb(224,39,31)" rx="2" ry="2" />
<text x="785.85" y="1023.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="816.0" y="357" width="0.8" height="15.0" fill="rgb(236,80,51)" rx="2" ry="2" />
<text x="819.02" y="367.5" ></text>
</g>
<g >
<title><unknown> (2 samples, 0.14%)</title><rect x="1153.5" y="1509" width="1.7" height="15.0" fill="rgb(241,59,39)" rx="2" ry="2" />
<text x="1156.51" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (1 samples, 0.07%)</title><rect x="785.3" y="901" width="0.9" height="15.0" fill="rgb(245,108,17)" rx="2" ry="2" />
<text x="788.33" y="911.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.35%)</title><rect x="782.8" y="1045" width="4.2" height="15.0" fill="rgb(246,186,15)" rx="2" ry="2" />
<text x="785.85" y="1055.5" ></text>
</g>
<g >
<title>file_exists (1 samples, 0.07%)</title><rect x="10.8" y="1445" width="0.9" height="15.0" fill="rgb(241,198,33)" rx="2" ry="2" />
<text x="13.83" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1117.0" y="661" width="0.9" height="15.0" fill="rgb(226,191,53)" rx="2" ry="2" />
<text x="1120.03" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="791.1" y="405" width="0.9" height="15.0" fill="rgb(238,10,32)" rx="2" ry="2" />
<text x="794.14" y="415.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="840.1" y="613" width="1.6" height="15.0" fill="rgb(222,193,9)" rx="2" ry="2" />
<text x="843.06" y="623.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="816.0" y="405" width="0.8" height="15.0" fill="rgb(253,79,26)" rx="2" ry="2" />
<text x="819.02" y="415.5" ></text>
</g>
<g >
<title><unknown> (22 samples, 1.55%)</title><rect x="700.8" y="1445" width="18.2" height="15.0" fill="rgb(223,162,8)" rx="2" ry="2" />
<text x="703.75" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="805.2" y="453" width="1.7" height="15.0" fill="rgb(217,81,50)" rx="2" ry="2" />
<text x="808.24" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.07%)</title><rect x="1154.3" y="1477" width="0.9" height="15.0" fill="rgb(227,10,47)" rx="2" ry="2" />
<text x="1157.34" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="917" width="330.9" height="15.0" fill="rgb(216,49,28)" rx="2" ry="2" />
<text x="789.99" y="927.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>print_r (1 samples, 0.07%)</title><rect x="627.0" y="1413" width="0.8" height="15.0" fill="rgb(233,19,37)" rx="2" ry="2" />
<text x="629.95" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="816.0" y="517" width="0.8" height="15.0" fill="rgb(243,202,36)" rx="2" ry="2" />
<text x="819.02" y="527.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="816.8" y="405" width="2.5" height="15.0" fill="rgb(207,110,28)" rx="2" ry="2" />
<text x="819.84" y="415.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="677" width="0.9" height="15.0" fill="rgb(240,217,39)" rx="2" ry="2" />
<text x="782.53" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="780.4" y="1093" width="0.8" height="15.0" fill="rgb(234,108,43)" rx="2" ry="2" />
<text x="783.36" y="1103.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (30 samples, 2.11%)</title><rect x="806.9" y="725" width="24.9" height="15.0" fill="rgb(254,19,45)" rx="2" ry="2" />
<text x="809.89" y="735.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (317 samples, 22.28%)</title><rect x="853.3" y="213" width="262.9" height="15.0" fill="rgb(220,114,52)" rx="2" ry="2" />
<text x="856.33" y="223.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.07%)</title><rect x="776.2" y="1477" width="0.8" height="15.0" fill="rgb(213,57,18)" rx="2" ry="2" />
<text x="779.21" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="805.2" y="197" width="1.7" height="15.0" fill="rgb(243,13,46)" rx="2" ry="2" />
<text x="808.24" y="207.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.07%)</title><rect x="818.5" y="373" width="0.8" height="15.0" fill="rgb(254,67,43)" rx="2" ry="2" />
<text x="821.50" y="383.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="1117.9" y="997" width="2.4" height="15.0" fill="rgb(239,154,45)" rx="2" ry="2" />
<text x="1120.86" y="1007.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1159.3" y="1477" width="0.8" height="15.0" fill="rgb(210,116,9)" rx="2" ry="2" />
<text x="1162.32" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="789.5" y="645" width="0.8" height="15.0" fill="rgb(242,69,13)" rx="2" ry="2" />
<text x="792.48" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (6 samples, 0.42%)</title><rect x="617.8" y="1429" width="5.0" height="15.0" fill="rgb(221,52,4)" rx="2" ry="2" />
<text x="620.83" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="781.2" y="1141" width="0.8" height="15.0" fill="rgb(212,34,43)" rx="2" ry="2" />
<text x="784.19" y="1151.5" ></text>
</g>
<g >
<title>ord (1 samples, 0.07%)</title><rect x="1142.7" y="1509" width="0.9" height="15.0" fill="rgb(209,14,17)" rx="2" ry="2" />
<text x="1145.73" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="811.9" y="373" width="0.8" height="15.0" fill="rgb(246,58,51)" rx="2" ry="2" />
<text x="814.87" y="383.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="827.6" y="325" width="1.7" height="15.0" fill="rgb(242,79,10)" rx="2" ry="2" />
<text x="830.62" y="335.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="821" width="0.9" height="15.0" fill="rgb(207,193,54)" rx="2" ry="2" />
<text x="782.53" y="831.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (318 samples, 22.35%)</title><rect x="852.5" y="229" width="263.7" height="15.0" fill="rgb(209,104,20)" rx="2" ry="2" />
<text x="855.50" y="239.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="840.1" y="661" width="1.6" height="15.0" fill="rgb(225,71,1)" rx="2" ry="2" />
<text x="843.06" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.07%)</title><rect x="635.2" y="1413" width="0.9" height="15.0" fill="rgb(247,203,38)" rx="2" ry="2" />
<text x="638.24" y="1423.5" ></text>
</g>
<g >
<title>count (1 samples, 0.07%)</title><rect x="772.9" y="1429" width="0.8" height="15.0" fill="rgb(242,186,34)" rx="2" ry="2" />
<text x="775.90" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.42%)</title><rect x="782.0" y="1125" width="5.0" height="15.0" fill="rgb(250,46,18)" rx="2" ry="2" />
<text x="785.02" y="1135.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (9 samples, 0.63%)</title><rect x="573.9" y="1429" width="7.4" height="15.0" fill="rgb(252,95,53)" rx="2" ry="2" />
<text x="576.88" y="1439.5" ></text>
</g>
<g >
<title>count (1 samples, 0.07%)</title><rect x="728.9" y="1397" width="0.9" height="15.0" fill="rgb(235,34,1)" rx="2" ry="2" />
<text x="731.95" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="1117.9" y="1029" width="2.4" height="15.0" fill="rgb(207,1,35)" rx="2" ry="2" />
<text x="1120.86" y="1039.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="1182.5" y="1461" width="0.9" height="15.0" fill="rgb(206,85,42)" rx="2" ry="2" />
<text x="1185.54" y="1471.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.07%)</title><rect x="794.5" y="501" width="0.8" height="15.0" fill="rgb(222,130,23)" rx="2" ry="2" />
<text x="797.46" y="511.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="779.5" y="725" width="0.9" height="15.0" fill="rgb(248,142,34)" rx="2" ry="2" />
<text x="782.53" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.14%)</title><rect x="620.3" y="1413" width="1.7" height="15.0" fill="rgb(252,157,32)" rx="2" ry="2" />
<text x="623.32" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (54 samples, 3.79%)</title><rect x="787.8" y="805" width="44.8" height="15.0" fill="rgb(217,33,21)" rx="2" ry="2" />
<text x="790.82" y="815.5" >Nsfi..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="780.4" y="1125" width="0.8" height="15.0" fill="rgb(218,77,27)" rx="2" ry="2" />
<text x="783.36" y="1135.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="811.0" y="437" width="1.7" height="15.0" fill="rgb(254,222,13)" rx="2" ry="2" />
<text x="814.04" y="447.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 1.90%)</title><rect x="808.6" y="613" width="22.3" height="15.0" fill="rgb(225,118,41)" rx="2" ry="2" />
<text x="811.55" y="623.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (29 samples, 2.04%)</title><rect x="806.9" y="677" width="24.0" height="15.0" fill="rgb(244,168,1)" rx="2" ry="2" />
<text x="809.89" y="687.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.42%)</title><rect x="811.0" y="501" width="5.0" height="15.0" fill="rgb(232,41,16)" rx="2" ry="2" />
<text x="814.04" y="511.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="949" width="0.9" height="15.0" fill="rgb(241,36,27)" rx="2" ry="2" />
<text x="782.53" y="959.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="840.1" y="597" width="0.8" height="15.0" fill="rgb(211,162,36)" rx="2" ry="2" />
<text x="843.06" y="607.5" ></text>
</g>
<g >
<title><unknown> (65 samples, 4.57%)</title><rect x="518.3" y="1429" width="53.9" height="15.0" fill="rgb(207,72,53)" rx="2" ry="2" />
<text x="521.32" y="1439.5" ><unkn..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="827.6" y="277" width="1.7" height="15.0" fill="rgb(225,144,48)" rx="2" ry="2" />
<text x="830.62" y="287.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (8 samples, 0.56%)</title><rect x="767.1" y="1445" width="6.6" height="15.0" fill="rgb(206,54,29)" rx="2" ry="2" />
<text x="770.09" y="1455.5" ></text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:249-258) (410 samples, 28.81%)</title><rect x="777.9" y="1397" width="340.0" height="15.0" fill="rgb(231,145,29)" rx="2" ry="2" />
<text x="780.87" y="1407.5" >{closure}(/home/ken/src/php-waddiwasi/examples..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="1117.9" y="949" width="2.4" height="15.0" fill="rgb(250,144,48)" rx="2" ry="2" />
<text x="1120.86" y="959.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.35%)</title><rect x="782.8" y="1061" width="4.2" height="15.0" fill="rgb(240,138,7)" rx="2" ry="2" />
<text x="785.85" y="1071.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1116.2" y="261" width="0.8" height="15.0" fill="rgb(209,145,45)" rx="2" ry="2" />
<text x="1119.20" y="271.5" ></text>
</g>
<g >
<title><unknown> (82 samples, 5.76%)</title><rect x="513.3" y="1445" width="68.0" height="15.0" fill="rgb(236,55,7)" rx="2" ry="2" />
<text x="516.35" y="1455.5" ><unknown></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.28%)</title><rect x="838.4" y="725" width="3.3" height="15.0" fill="rgb(220,70,10)" rx="2" ry="2" />
<text x="841.40" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="1221" width="330.9" height="15.0" fill="rgb(248,44,1)" rx="2" ry="2" />
<text x="789.99" y="1231.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (399 samples, 28.04%)</title><rect x="787.0" y="885" width="330.9" height="15.0" fill="rgb(239,208,16)" rx="2" ry="2" />
<text x="789.99" y="895.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="791.1" y="469" width="3.4" height="15.0" fill="rgb(213,101,25)" rx="2" ry="2" />
<text x="794.14" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (318 samples, 22.35%)</title><rect x="852.5" y="277" width="263.7" height="15.0" fill="rgb(213,63,52)" rx="2" ry="2" />
<text x="855.50" y="287.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="933" width="0.9" height="15.0" fill="rgb(206,52,24)" rx="2" ry="2" />
<text x="782.53" y="943.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.28%)</title><rect x="816.8" y="533" width="3.4" height="15.0" fill="rgb(225,90,11)" rx="2" ry="2" />
<text x="819.84" y="543.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::I32Store8 (51 samples, 3.58%)</title><rect x="733.9" y="1461" width="42.3" height="15.0" fill="rgb(242,180,39)" rx="2" ry="2" />
<text x="736.92" y="1471.5" >Nsf..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="801.9" y="261" width="0.8" height="15.0" fill="rgb(231,223,28)" rx="2" ry="2" />
<text x="804.92" y="271.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.07%)</title><rect x="580.5" y="1413" width="0.8" height="15.0" fill="rgb(223,119,33)" rx="2" ry="2" />
<text x="583.51" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (415 samples, 29.16%)</title><rect x="777.9" y="1477" width="344.1" height="15.0" fill="rgb(205,37,34)" rx="2" ry="2" />
<text x="780.87" y="1487.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeW..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.35%)</title><rect x="782.8" y="965" width="4.2" height="15.0" fill="rgb(250,3,23)" rx="2" ry="2" />
<text x="785.85" y="975.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1093" width="3.3" height="15.0" fill="rgb(237,14,36)" rx="2" ry="2" />
<text x="1120.86" y="1103.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="827.6" y="261" width="1.7" height="15.0" fill="rgb(205,141,39)" rx="2" ry="2" />
<text x="830.62" y="271.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.07%)</title><rect x="845.9" y="677" width="0.8" height="15.0" fill="rgb(245,34,11)" rx="2" ry="2" />
<text x="848.87" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.42%)</title><rect x="782.0" y="1189" width="5.0" height="15.0" fill="rgb(207,43,53)" rx="2" ry="2" />
<text x="785.02" y="1199.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="827.6" y="117" width="1.7" height="15.0" fill="rgb(207,206,21)" rx="2" ry="2" />
<text x="830.62" y="127.5" ></text>
</g>
<g >
<title><unknown> (2 samples, 0.14%)</title><rect x="1135.3" y="1509" width="1.6" height="15.0" fill="rgb(242,121,48)" rx="2" ry="2" />
<text x="1138.27" y="1519.5" ></text>
</g>
<g >
<title>pack (1 samples, 0.07%)</title><rect x="764.6" y="1429" width="0.8" height="15.0" fill="rgb(212,127,49)" rx="2" ry="2" />
<text x="767.60" y="1439.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1143.6" y="1493" width="0.8" height="15.0" fill="rgb(222,193,17)" rx="2" ry="2" />
<text x="1146.56" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="638.6" y="1445" width="0.8" height="15.0" fill="rgb(245,139,22)" rx="2" ry="2" />
<text x="641.56" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="820.2" y="485" width="0.8" height="15.0" fill="rgb(208,28,35)" rx="2" ry="2" />
<text x="823.16" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Val::Num (2 samples, 0.14%)</title><rect x="568.1" y="1413" width="1.6" height="15.0" fill="rgb(252,57,42)" rx="2" ry="2" />
<text x="571.07" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="517" width="264.5" height="15.0" fill="rgb(222,147,46)" rx="2" ry="2" />
<text x="855.50" y="527.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.07%)</title><rect x="1118.7" y="629" width="0.8" height="15.0" fill="rgb(216,170,22)" rx="2" ry="2" />
<text x="1121.69" y="639.5" ></text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (2 samples, 0.14%)</title><rect x="11.7" y="1445" width="1.6" height="15.0" fill="rgb(251,186,38)" rx="2" ry="2" />
<text x="14.66" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pop (1 samples, 0.07%)</title><rect x="724.8" y="1397" width="0.8" height="15.0" fill="rgb(226,215,1)" rx="2" ry="2" />
<text x="727.80" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (15 samples, 1.05%)</title><rect x="791.1" y="597" width="12.5" height="15.0" fill="rgb(227,64,26)" rx="2" ry="2" />
<text x="794.14" y="607.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (110 samples, 7.73%)</title><rect x="642.7" y="1461" width="91.2" height="15.0" fill="rgb(242,72,10)" rx="2" ry="2" />
<text x="645.71" y="1471.5" >Nsfisis\Wa..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="1093" width="0.9" height="15.0" fill="rgb(224,195,6)" rx="2" ry="2" />
<text x="782.53" y="1103.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.07%)</title><rect x="807.7" y="517" width="0.9" height="15.0" fill="rgb(230,63,20)" rx="2" ry="2" />
<text x="810.72" y="527.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1154.3" y="1493" width="0.9" height="15.0" fill="rgb(205,156,17)" rx="2" ry="2" />
<text x="1157.34" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="820.2" y="517" width="0.8" height="15.0" fill="rgb(235,45,26)" rx="2" ry="2" />
<text x="823.16" y="527.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::MemoryInit (1 samples, 0.07%)</title><rect x="776.2" y="1493" width="0.8" height="15.0" fill="rgb(212,214,26)" rx="2" ry="2" />
<text x="779.21" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="779.5" y="1045" width="0.9" height="15.0" fill="rgb(216,48,13)" rx="2" ry="2" />
<text x="782.53" y="1055.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.28%)</title><rect x="791.1" y="485" width="3.4" height="15.0" fill="rgb(234,109,8)" rx="2" ry="2" />
<text x="794.14" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="645" width="0.9" height="15.0" fill="rgb(237,219,9)" rx="2" ry="2" />
<text x="782.53" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1381" width="3.3" height="15.0" fill="rgb(212,44,43)" rx="2" ry="2" />
<text x="1120.86" y="1391.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (3 samples, 0.21%)</title><rect x="1160.1" y="1509" width="2.5" height="15.0" fill="rgb(239,173,9)" rx="2" ry="2" />
<text x="1163.15" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="1117.9" y="933" width="2.4" height="15.0" fill="rgb(210,200,10)" rx="2" ry="2" />
<text x="1120.86" y="943.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="806.9" y="549" width="1.7" height="15.0" fill="rgb(252,87,11)" rx="2" ry="2" />
<text x="809.89" y="559.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="741" width="264.5" height="15.0" fill="rgb(208,67,24)" rx="2" ry="2" />
<text x="855.50" y="751.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.07%)</title><rect x="1143.6" y="1525" width="0.8" height="15.0" fill="rgb(212,0,43)" rx="2" ry="2" />
<text x="1146.56" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="787.8" y="677" width="0.9" height="15.0" fill="rgb(220,57,34)" rx="2" ry="2" />
<text x="790.82" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="805.2" y="373" width="1.7" height="15.0" fill="rgb(232,191,36)" rx="2" ry="2" />
<text x="808.24" y="383.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (5 samples, 0.35%)</title><rect x="754.7" y="1429" width="4.1" height="15.0" fill="rgb(215,98,26)" rx="2" ry="2" />
<text x="757.65" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="801.1" y="469" width="1.6" height="15.0" fill="rgb(223,15,51)" rx="2" ry="2" />
<text x="804.09" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="1077" width="330.9" height="15.0" fill="rgb(225,31,53)" rx="2" ry="2" />
<text x="789.99" y="1087.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="789.5" y="709" width="0.8" height="15.0" fill="rgb(209,190,14)" rx="2" ry="2" />
<text x="792.48" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.07%)</title><rect x="1092.2" y="165" width="0.8" height="15.0" fill="rgb(234,221,43)" rx="2" ry="2" />
<text x="1095.15" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="805.2" y="389" width="1.7" height="15.0" fill="rgb(250,139,3)" rx="2" ry="2" />
<text x="808.24" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.07%)</title><rect x="1110.4" y="149" width="0.8" height="15.0" fill="rgb(208,138,48)" rx="2" ry="2" />
<text x="1113.39" y="159.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 1.34%)</title><rect x="791.1" y="661" width="15.8" height="15.0" fill="rgb(247,128,7)" rx="2" ry="2" />
<text x="794.14" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (2 samples, 0.14%)</title><rect x="1087.2" y="181" width="1.6" height="15.0" fill="rgb(208,214,28)" rx="2" ry="2" />
<text x="1090.17" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="1117.9" y="1077" width="2.4" height="15.0" fill="rgb(215,179,5)" rx="2" ry="2" />
<text x="1120.86" y="1087.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="811.0" y="421" width="1.7" height="15.0" fill="rgb(234,137,2)" rx="2" ry="2" />
<text x="814.04" y="431.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="794.5" y="453" width="0.8" height="15.0" fill="rgb(253,172,13)" rx="2" ry="2" />
<text x="797.46" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.42%)</title><rect x="782.0" y="1157" width="5.0" height="15.0" fill="rgb(206,133,18)" rx="2" ry="2" />
<text x="785.02" y="1167.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1117.0" y="693" width="0.9" height="15.0" fill="rgb(217,96,1)" rx="2" ry="2" />
<text x="1120.03" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.07%)</title><rect x="779.5" y="581" width="0.9" height="15.0" fill="rgb(243,24,8)" rx="2" ry="2" />
<text x="782.53" y="591.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="1109" width="330.9" height="15.0" fill="rgb(252,99,36)" rx="2" ry="2" />
<text x="789.99" y="1119.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="805.2" y="293" width="1.7" height="15.0" fill="rgb(209,196,8)" rx="2" ry="2" />
<text x="808.24" y="303.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="816.0" y="485" width="0.8" height="15.0" fill="rgb(232,130,47)" rx="2" ry="2" />
<text x="819.02" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (4 samples, 0.28%)</title><rect x="722.3" y="1429" width="3.3" height="15.0" fill="rgb(232,131,25)" rx="2" ry="2" />
<text x="725.31" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1137.8" y="1493" width="0.8" height="15.0" fill="rgb(226,127,39)" rx="2" ry="2" />
<text x="1140.76" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (3 samples, 0.21%)</title><rect x="770.4" y="1429" width="2.5" height="15.0" fill="rgb(254,58,40)" rx="2" ry="2" />
<text x="773.41" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.56%)</title><rect x="809.4" y="549" width="6.6" height="15.0" fill="rgb(222,215,10)" rx="2" ry="2" />
<text x="812.38" y="559.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="816.8" y="421" width="2.5" height="15.0" fill="rgb(236,190,33)" rx="2" ry="2" />
<text x="819.84" y="431.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (4 samples, 0.28%)</title><rect x="715.7" y="1429" width="3.3" height="15.0" fill="rgb(248,43,32)" rx="2" ry="2" />
<text x="718.68" y="1439.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="579.7" y="1397" width="0.8" height="15.0" fill="rgb(226,35,29)" rx="2" ry="2" />
<text x="582.68" y="1407.5" ></text>
</g>
<g >
<title>assert (8 samples, 0.56%)</title><rect x="1183.4" y="1525" width="6.6" height="15.0" fill="rgb(215,220,16)" rx="2" ry="2" />
<text x="1186.37" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="805.2" y="229" width="1.7" height="15.0" fill="rgb(226,127,37)" rx="2" ry="2" />
<text x="808.24" y="239.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="811.9" y="357" width="0.8" height="15.0" fill="rgb(221,62,39)" rx="2" ry="2" />
<text x="814.87" y="367.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1143.6" y="1461" width="0.8" height="15.0" fill="rgb(213,29,51)" rx="2" ry="2" />
<text x="1146.56" y="1471.5" ></text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:345-352) (399 samples, 28.04%)</title><rect x="787.0" y="981" width="330.9" height="15.0" fill="rgb(251,221,51)" rx="2" ry="2" />
<text x="789.99" y="991.5" >{closure}(/home/ken/src/php-waddiwasi/exampl..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="805.2" y="181" width="0.9" height="15.0" fill="rgb(237,140,17)" rx="2" ry="2" />
<text x="808.24" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (399 samples, 28.04%)</title><rect x="787.0" y="869" width="330.9" height="15.0" fill="rgb(227,35,35)" rx="2" ry="2" />
<text x="789.99" y="879.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (5 samples, 0.35%)</title><rect x="1093.8" y="181" width="4.2" height="15.0" fill="rgb(214,220,5)" rx="2" ry="2" />
<text x="1096.81" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="1117.0" y="789" width="0.9" height="15.0" fill="rgb(229,102,9)" rx="2" ry="2" />
<text x="1120.03" y="799.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (51 samples, 3.58%)</title><rect x="790.3" y="741" width="42.3" height="15.0" fill="rgb(206,113,35)" rx="2" ry="2" />
<text x="793.31" y="751.5" >Nsf..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.42%)</title><rect x="782.0" y="1109" width="5.0" height="15.0" fill="rgb(205,77,44)" rx="2" ry="2" />
<text x="785.02" y="1119.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="1116.2" y="229" width="0.8" height="15.0" fill="rgb(205,203,20)" rx="2" ry="2" />
<text x="1119.20" y="239.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="1013" width="0.9" height="15.0" fill="rgb(253,60,18)" rx="2" ry="2" />
<text x="782.53" y="1023.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="714.0" y="1397" width="0.8" height="15.0" fill="rgb(206,95,21)" rx="2" ry="2" />
<text x="717.02" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (22 samples, 1.55%)</title><rect x="1098.0" y="181" width="18.2" height="15.0" fill="rgb(215,125,19)" rx="2" ry="2" />
<text x="1100.96" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.07%)</title><rect x="831.8" y="725" width="0.8" height="15.0" fill="rgb(245,79,26)" rx="2" ry="2" />
<text x="834.77" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.28%)</title><rect x="816.8" y="517" width="3.4" height="15.0" fill="rgb(208,112,18)" rx="2" ry="2" />
<text x="819.84" y="527.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Num::I32 (2 samples, 0.14%)</title><rect x="1162.6" y="1509" width="1.7" height="15.0" fill="rgb(231,1,54)" rx="2" ry="2" />
<text x="1165.64" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.28%)</title><rect x="778.7" y="1221" width="3.3" height="15.0" fill="rgb(206,166,21)" rx="2" ry="2" />
<text x="781.70" y="1231.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.63%)</title><rect x="822.6" y="453" width="7.5" height="15.0" fill="rgb(221,70,48)" rx="2" ry="2" />
<text x="825.65" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 2.04%)</title><rect x="806.9" y="645" width="24.0" height="15.0" fill="rgb(250,27,50)" rx="2" ry="2" />
<text x="809.89" y="655.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.56%)</title><rect x="809.4" y="565" width="6.6" height="15.0" fill="rgb(240,205,7)" rx="2" ry="2" />
<text x="812.38" y="575.5" ></text>
</g>
<g >
<title>count (2 samples, 0.14%)</title><rect x="612.0" y="1397" width="1.7" height="15.0" fill="rgb(220,72,26)" rx="2" ry="2" />
<text x="615.02" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.14%)</title><rect x="827.6" y="229" width="1.7" height="15.0" fill="rgb(243,134,30)" rx="2" ry="2" />
<text x="830.62" y="239.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="1045" width="330.9" height="15.0" fill="rgb(241,201,54)" rx="2" ry="2" />
<text x="789.99" y="1055.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (415 samples, 29.16%)</title><rect x="777.9" y="1461" width="344.1" height="15.0" fill="rgb(233,64,52)" rx="2" ry="2" />
<text x="780.87" y="1471.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.42%)</title><rect x="782.0" y="1221" width="5.0" height="15.0" fill="rgb(211,113,11)" rx="2" ry="2" />
<text x="785.02" y="1231.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="965" width="0.9" height="15.0" fill="rgb(238,99,47)" rx="2" ry="2" />
<text x="782.53" y="975.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="803.6" y="501" width="3.3" height="15.0" fill="rgb(238,103,15)" rx="2" ry="2" />
<text x="806.58" y="511.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.63%)</title><rect x="822.6" y="469" width="7.5" height="15.0" fill="rgb(240,170,37)" rx="2" ry="2" />
<text x="825.65" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="778.7" y="1205" width="3.3" height="15.0" fill="rgb(227,173,32)" rx="2" ry="2" />
<text x="781.70" y="1215.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1117.0" y="629" width="0.9" height="15.0" fill="rgb(207,222,3)" rx="2" ry="2" />
<text x="1120.03" y="639.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="791.1" y="437" width="0.9" height="15.0" fill="rgb(214,118,1)" rx="2" ry="2" />
<text x="794.14" y="447.5" ></text>
</g>
<g >
<title>count (1 samples, 0.07%)</title><rect x="619.5" y="1397" width="0.8" height="15.0" fill="rgb(216,30,7)" rx="2" ry="2" />
<text x="622.49" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="1118.7" y="901" width="1.6" height="15.0" fill="rgb(207,142,40)" rx="2" ry="2" />
<text x="1121.69" y="911.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="613" width="264.5" height="15.0" fill="rgb(221,148,43)" rx="2" ry="2" />
<text x="855.50" y="623.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::invoke (415 samples, 29.16%)</title><rect x="777.9" y="1509" width="344.1" height="15.0" fill="rgb(229,64,49)" rx="2" ry="2" />
<text x="780.87" y="1519.5" >Nsfisis\Waddiwasi\Execution\Runtime::invoke</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="1088.0" y="165" width="0.8" height="15.0" fill="rgb(208,75,48)" rx="2" ry="2" />
<text x="1091.00" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1333" width="3.3" height="15.0" fill="rgb(207,216,30)" rx="2" ry="2" />
<text x="1120.86" y="1343.5" ></text>
</g>
<g >
<title><unknown> (6 samples, 0.42%)</title><rect x="1166.8" y="1509" width="5.0" height="15.0" fill="rgb(228,59,41)" rx="2" ry="2" />
<text x="1169.78" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="812.7" y="453" width="0.8" height="15.0" fill="rgb(233,101,36)" rx="2" ry="2" />
<text x="815.70" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.14%)</title><rect x="806.9" y="613" width="1.7" height="15.0" fill="rgb(245,52,52)" rx="2" ry="2" />
<text x="809.89" y="623.5" ></text>
</g>
<g >
<title>Composer\Autoload\ClassLoader::findFileWithExtension (1 samples, 0.07%)</title><rect x="10.8" y="1461" width="0.9" height="15.0" fill="rgb(223,58,48)" rx="2" ry="2" />
<text x="13.83" y="1471.5" ></text>
</g>
<g >
<title>print_r (1 samples, 0.07%)</title><rect x="772.9" y="1413" width="0.8" height="15.0" fill="rgb(253,110,54)" rx="2" ry="2" />
<text x="775.90" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.07%)</title><rect x="819.3" y="469" width="0.9" height="15.0" fill="rgb(249,225,11)" rx="2" ry="2" />
<text x="822.33" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.28%)</title><rect x="838.4" y="709" width="3.3" height="15.0" fill="rgb(243,208,23)" rx="2" ry="2" />
<text x="841.40" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (24 samples, 1.69%)</title><rect x="597.9" y="1429" width="19.9" height="15.0" fill="rgb(207,21,13)" rx="2" ry="2" />
<text x="600.93" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.07%)</title><rect x="619.5" y="1413" width="0.8" height="15.0" fill="rgb(208,167,29)" rx="2" ry="2" />
<text x="622.49" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="852.5" y="197" width="0.8" height="15.0" fill="rgb(254,17,2)" rx="2" ry="2" />
<text x="855.50" y="207.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (6 samples, 0.42%)</title><rect x="608.7" y="1413" width="5.0" height="15.0" fill="rgb(226,141,6)" rx="2" ry="2" />
<text x="611.71" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="779.5" y="1189" width="2.5" height="15.0" fill="rgb(226,78,2)" rx="2" ry="2" />
<text x="782.53" y="1199.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1116.2" y="149" width="0.8" height="15.0" fill="rgb(209,127,54)" rx="2" ry="2" />
<text x="1119.20" y="159.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (3 samples, 0.21%)</title><rect x="1088.8" y="181" width="2.5" height="15.0" fill="rgb(206,145,54)" rx="2" ry="2" />
<text x="1091.83" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.07%)</title><rect x="787.8" y="645" width="0.9" height="15.0" fill="rgb(235,223,48)" rx="2" ry="2" />
<text x="790.82" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1117.0" y="645" width="0.9" height="15.0" fill="rgb(228,222,36)" rx="2" ry="2" />
<text x="1120.03" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.07%)</title><rect x="1120.3" y="1077" width="0.9" height="15.0" fill="rgb(233,151,39)" rx="2" ry="2" />
<text x="1123.34" y="1087.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="805.2" y="437" width="1.7" height="15.0" fill="rgb(230,35,42)" rx="2" ry="2" />
<text x="808.24" y="447.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.07%)</title><rect x="831.8" y="709" width="0.8" height="15.0" fill="rgb(236,163,33)" rx="2" ry="2" />
<text x="834.77" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="816.0" y="549" width="0.8" height="15.0" fill="rgb(226,50,6)" rx="2" ry="2" />
<text x="819.02" y="559.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="850.8" y="629" width="0.9" height="15.0" fill="rgb(224,109,26)" rx="2" ry="2" />
<text x="853.84" y="639.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.28%)</title><rect x="803.6" y="549" width="3.3" height="15.0" fill="rgb(220,73,49)" rx="2" ry="2" />
<text x="806.58" y="559.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="814.4" y="453" width="1.6" height="15.0" fill="rgb(249,176,24)" rx="2" ry="2" />
<text x="817.36" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.42%)</title><rect x="1082.2" y="181" width="5.0" height="15.0" fill="rgb(219,135,4)" rx="2" ry="2" />
<text x="1085.20" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="801.9" y="341" width="0.8" height="15.0" fill="rgb(232,30,38)" rx="2" ry="2" />
<text x="804.92" y="351.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="693" width="0.9" height="15.0" fill="rgb(221,175,26)" rx="2" ry="2" />
<text x="782.53" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (399 samples, 28.04%)</title><rect x="787.0" y="949" width="330.9" height="15.0" fill="rgb(238,119,49)" rx="2" ry="2" />
<text x="789.99" y="959.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.56%)</title><rect x="823.5" y="389" width="6.6" height="15.0" fill="rgb(216,177,20)" rx="2" ry="2" />
<text x="826.48" y="399.5" ></text>
</g>
<g >
<title><main> (1,341 samples, 94.24%)</title><rect x="10.0" y="1525" width="1112.0" height="15.0" fill="rgb(228,34,24)" rx="2" ry="2" />
<text x="13.00" y="1535.5" ><main></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.07%)</title><rect x="851.7" y="661" width="0.8" height="15.0" fill="rgb(251,105,7)" rx="2" ry="2" />
<text x="854.67" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (5 samples, 0.35%)</title><rect x="1112.1" y="165" width="4.1" height="15.0" fill="rgb(215,123,37)" rx="2" ry="2" />
<text x="1115.05" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.07%)</title><rect x="725.6" y="1429" width="0.9" height="15.0" fill="rgb(210,209,52)" rx="2" ry="2" />
<text x="728.63" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (319 samples, 22.42%)</title><rect x="852.5" y="597" width="264.5" height="15.0" fill="rgb(207,142,30)" rx="2" ry="2" />
<text x="855.50" y="607.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="783.7" y="917" width="1.6" height="15.0" fill="rgb(228,202,43)" rx="2" ry="2" />
<text x="786.68" y="927.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="801.9" y="405" width="0.8" height="15.0" fill="rgb(206,30,43)" rx="2" ry="2" />
<text x="804.92" y="415.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.77%)</title><rect x="843.4" y="709" width="9.1" height="15.0" fill="rgb(207,84,26)" rx="2" ry="2" />
<text x="846.38" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="1285" width="330.9" height="15.0" fill="rgb(205,53,20)" rx="2" ry="2" />
<text x="789.99" y="1295.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="533" width="264.5" height="15.0" fill="rgb(221,166,26)" rx="2" ry="2" />
<text x="855.50" y="543.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="787.8" y="709" width="0.9" height="15.0" fill="rgb(222,204,3)" rx="2" ry="2" />
<text x="790.82" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="629" width="264.5" height="15.0" fill="rgb(217,57,53)" rx="2" ry="2" />
<text x="855.50" y="639.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.42%)</title><rect x="782.0" y="1173" width="5.0" height="15.0" fill="rgb(239,189,50)" rx="2" ry="2" />
<text x="785.02" y="1183.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 1.12%)</title><rect x="816.8" y="549" width="13.3" height="15.0" fill="rgb(238,134,8)" rx="2" ry="2" />
<text x="819.84" y="559.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="850.8" y="549" width="0.9" height="15.0" fill="rgb(246,185,23)" rx="2" ry="2" />
<text x="853.84" y="559.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="997" width="0.9" height="15.0" fill="rgb(206,57,50)" rx="2" ry="2" />
<text x="782.53" y="1007.5" ></text>
</g>
<g >
<title><unknown> (3 samples, 0.21%)</title><rect x="712.4" y="1413" width="2.4" height="15.0" fill="rgb(248,7,22)" rx="2" ry="2" />
<text x="715.36" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="784.5" y="901" width="0.8" height="15.0" fill="rgb(212,220,21)" rx="2" ry="2" />
<text x="787.50" y="911.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="780.4" y="1077" width="0.8" height="15.0" fill="rgb(208,227,33)" rx="2" ry="2" />
<text x="783.36" y="1087.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="816.8" y="501" width="3.4" height="15.0" fill="rgb(243,212,31)" rx="2" ry="2" />
<text x="819.84" y="511.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="816.8" y="437" width="2.5" height="15.0" fill="rgb(236,224,44)" rx="2" ry="2" />
<text x="819.84" y="447.5" ></text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:754-769) (1 samples, 0.07%)</title><rect x="845.9" y="661" width="0.8" height="15.0" fill="rgb(213,183,41)" rx="2" ry="2" />
<text x="848.87" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.07%)</title><rect x="1115.4" y="149" width="0.8" height="15.0" fill="rgb(217,132,36)" rx="2" ry="2" />
<text x="1118.37" y="159.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (399 samples, 28.04%)</title><rect x="787.0" y="1205" width="330.9" height="15.0" fill="rgb(206,158,26)" rx="2" ry="2" />
<text x="789.99" y="1215.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1118.7" y="677" width="0.8" height="15.0" fill="rgb(206,106,26)" rx="2" ry="2" />
<text x="1121.69" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (29 samples, 2.04%)</title><rect x="806.9" y="693" width="24.0" height="15.0" fill="rgb(239,137,9)" rx="2" ry="2" />
<text x="809.89" y="703.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.28%)</title><rect x="778.7" y="1237" width="3.3" height="15.0" fill="rgb(223,25,33)" rx="2" ry="2" />
<text x="781.70" y="1247.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="1117.9" y="1045" width="2.4" height="15.0" fill="rgb(236,218,11)" rx="2" ry="2" />
<text x="1120.86" y="1055.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.14%)</title><rect x="850.0" y="645" width="1.7" height="15.0" fill="rgb(249,109,45)" rx="2" ry="2" />
<text x="853.01" y="655.5" ></text>
</g>
<g >
<title><unknown> (6 samples, 0.42%)</title><rect x="575.5" y="1413" width="5.0" height="15.0" fill="rgb(207,165,1)" rx="2" ry="2" />
<text x="578.54" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1116.2" y="309" width="0.8" height="15.0" fill="rgb(247,217,45)" rx="2" ry="2" />
<text x="1119.20" y="319.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1118.7" y="837" width="0.8" height="15.0" fill="rgb(253,208,54)" rx="2" ry="2" />
<text x="1121.69" y="847.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.07%)</title><rect x="636.9" y="1413" width="0.8" height="15.0" fill="rgb(211,5,35)" rx="2" ry="2" />
<text x="639.90" y="1423.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="787.8" y="629" width="0.9" height="15.0" fill="rgb(210,173,6)" rx="2" ry="2" />
<text x="790.82" y="639.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="780.4" y="1157" width="1.6" height="15.0" fill="rgb(233,29,23)" rx="2" ry="2" />
<text x="783.36" y="1167.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1237" width="3.3" height="15.0" fill="rgb(232,81,30)" rx="2" ry="2" />
<text x="1120.86" y="1247.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="801.9" y="421" width="0.8" height="15.0" fill="rgb(234,128,50)" rx="2" ry="2" />
<text x="804.92" y="431.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.07%)</title><rect x="1156.0" y="1493" width="0.8" height="15.0" fill="rgb(252,158,38)" rx="2" ry="2" />
<text x="1159.00" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.07%)</title><rect x="1096.3" y="165" width="0.8" height="15.0" fill="rgb(230,92,13)" rx="2" ry="2" />
<text x="1099.30" y="175.5" ></text>
</g>
<g >
<title><unknown> (13 samples, 0.91%)</title><rect x="704.9" y="1429" width="10.8" height="15.0" fill="rgb(232,137,24)" rx="2" ry="2" />
<text x="707.90" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="794.5" y="405" width="0.8" height="15.0" fill="rgb(239,27,20)" rx="2" ry="2" />
<text x="797.46" y="415.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.56%)</title><rect x="823.5" y="405" width="6.6" height="15.0" fill="rgb(248,182,48)" rx="2" ry="2" />
<text x="826.48" y="415.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="803.6" y="533" width="3.3" height="15.0" fill="rgb(232,179,1)" rx="2" ry="2" />
<text x="806.58" y="543.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="661" width="264.5" height="15.0" fill="rgb(205,74,15)" rx="2" ry="2" />
<text x="855.50" y="671.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="828.5" y="53" width="0.8" height="15.0" fill="rgb(248,69,48)" rx="2" ry="2" />
<text x="831.45" y="63.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="389" width="264.5" height="15.0" fill="rgb(219,19,1)" rx="2" ry="2" />
<text x="855.50" y="399.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (318 samples, 22.35%)</title><rect x="852.5" y="245" width="263.7" height="15.0" fill="rgb(229,125,15)" rx="2" ry="2" />
<text x="855.50" y="255.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (53 samples, 3.72%)</title><rect x="788.7" y="773" width="43.9" height="15.0" fill="rgb(246,177,32)" rx="2" ry="2" />
<text x="791.65" y="783.5" >Nsfi..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="827.6" y="101" width="1.7" height="15.0" fill="rgb(220,75,8)" rx="2" ry="2" />
<text x="830.62" y="111.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="629" width="0.9" height="15.0" fill="rgb(218,152,52)" rx="2" ry="2" />
<text x="782.53" y="639.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="819.3" y="421" width="0.9" height="15.0" fill="rgb(225,179,32)" rx="2" ry="2" />
<text x="822.33" y="431.5" ></text>
</g>
<g >
<title>array_pop (6 samples, 0.42%)</title><rect x="1178.4" y="1525" width="5.0" height="15.0" fill="rgb(220,74,22)" rx="2" ry="2" />
<text x="1181.39" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.07%)</title><rect x="790.3" y="645" width="0.8" height="15.0" fill="rgb(229,227,27)" rx="2" ry="2" />
<text x="793.31" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.77%)</title><rect x="777.9" y="1301" width="9.1" height="15.0" fill="rgb(218,26,14)" rx="2" ry="2" />
<text x="780.87" y="1311.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="1093" width="330.9" height="15.0" fill="rgb(212,31,51)" rx="2" ry="2" />
<text x="789.99" y="1103.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="787.8" y="693" width="0.9" height="15.0" fill="rgb(208,148,22)" rx="2" ry="2" />
<text x="790.82" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.14%)</title><rect x="811.0" y="453" width="1.7" height="15.0" fill="rgb(253,106,21)" rx="2" ry="2" />
<text x="814.04" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="816.8" y="389" width="2.5" height="15.0" fill="rgb(250,122,21)" rx="2" ry="2" />
<text x="819.84" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 1.34%)</title><rect x="791.1" y="613" width="15.8" height="15.0" fill="rgb(206,205,38)" rx="2" ry="2" />
<text x="794.14" y="623.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="794.5" y="469" width="0.8" height="15.0" fill="rgb(234,31,0)" rx="2" ry="2" />
<text x="797.46" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="805.2" y="405" width="1.7" height="15.0" fill="rgb(249,93,35)" rx="2" ry="2" />
<text x="808.24" y="415.5" ></text>
</g>
<g >
<title>print_r (1 samples, 0.07%)</title><rect x="761.3" y="1413" width="0.8" height="15.0" fill="rgb(213,224,20)" rx="2" ry="2" />
<text x="764.29" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (399 samples, 28.04%)</title><rect x="787.0" y="997" width="330.9" height="15.0" fill="rgb(222,226,51)" rx="2" ry="2" />
<text x="789.99" y="1007.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="816.0" y="533" width="0.8" height="15.0" fill="rgb(238,69,14)" rx="2" ry="2" />
<text x="819.02" y="543.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="453" width="264.5" height="15.0" fill="rgb(232,134,47)" rx="2" ry="2" />
<text x="855.50" y="463.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.84%)</title><rect x="820.2" y="533" width="9.9" height="15.0" fill="rgb(236,103,33)" rx="2" ry="2" />
<text x="823.16" y="543.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1118.7" y="709" width="0.8" height="15.0" fill="rgb(253,110,53)" rx="2" ry="2" />
<text x="1121.69" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="789.5" y="661" width="0.8" height="15.0" fill="rgb(242,198,17)" rx="2" ry="2" />
<text x="792.48" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.77%)</title><rect x="821.0" y="517" width="9.1" height="15.0" fill="rgb(251,59,12)" rx="2" ry="2" />
<text x="823.99" y="527.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.91%)</title><rect x="841.7" y="725" width="10.8" height="15.0" fill="rgb(222,187,20)" rx="2" ry="2" />
<text x="844.72" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.42%)</title><rect x="811.0" y="485" width="5.0" height="15.0" fill="rgb(232,100,1)" rx="2" ry="2" />
<text x="814.04" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="819.3" y="437" width="0.9" height="15.0" fill="rgb(248,61,10)" rx="2" ry="2" />
<text x="822.33" y="447.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="613" width="0.9" height="15.0" fill="rgb(236,27,3)" rx="2" ry="2" />
<text x="782.53" y="623.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (319 samples, 22.42%)</title><rect x="852.5" y="501" width="264.5" height="15.0" fill="rgb(215,170,13)" rx="2" ry="2" />
<text x="855.50" y="511.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.07%)</title><rect x="625.3" y="1429" width="0.8" height="15.0" fill="rgb(241,140,21)" rx="2" ry="2" />
<text x="628.29" y="1439.5" ></text>
</g>
<g >
<title><unknown> (2 samples, 0.14%)</title><rect x="563.9" y="1397" width="1.7" height="15.0" fill="rgb(239,222,43)" rx="2" ry="2" />
<text x="566.93" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="693" width="264.5" height="15.0" fill="rgb(243,128,43)" rx="2" ry="2" />
<text x="855.50" y="703.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1159.3" y="1509" width="0.8" height="15.0" fill="rgb(215,31,42)" rx="2" ry="2" />
<text x="1162.32" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="1116.2" y="165" width="0.8" height="15.0" fill="rgb(219,90,18)" rx="2" ry="2" />
<text x="1119.20" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::instantiate (925 samples, 65.00%)</title><rect x="10.8" y="1509" width="767.1" height="15.0" fill="rgb(244,14,51)" rx="2" ry="2" />
<text x="13.83" y="1519.5" >Nsfisis\Waddiwasi\Execution\Runtime::instantiate</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.07%)</title><rect x="724.0" y="1413" width="0.8" height="15.0" fill="rgb(239,175,30)" rx="2" ry="2" />
<text x="726.97" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1117.0" y="613" width="0.9" height="15.0" fill="rgb(220,135,36)" rx="2" ry="2" />
<text x="1120.03" y="623.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.07%)</title><rect x="786.2" y="949" width="0.8" height="15.0" fill="rgb(207,174,35)" rx="2" ry="2" />
<text x="789.16" y="959.5" ></text>
</g>
<g >
<title><unknown> (3 samples, 0.21%)</title><rect x="730.6" y="1429" width="2.5" height="15.0" fill="rgb(230,152,49)" rx="2" ry="2" />
<text x="733.60" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (319 samples, 22.42%)</title><rect x="852.5" y="485" width="264.5" height="15.0" fill="rgb(242,30,32)" rx="2" ry="2" />
<text x="855.50" y="495.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.07%)</title><rect x="637.7" y="1413" width="0.9" height="15.0" fill="rgb(246,222,2)" rx="2" ry="2" />
<text x="640.73" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="787.8" y="661" width="0.9" height="15.0" fill="rgb(211,220,37)" rx="2" ry="2" />
<text x="790.82" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushI64 (1 samples, 0.07%)</title><rect x="806.1" y="181" width="0.8" height="15.0" fill="rgb(244,119,8)" rx="2" ry="2" />
<text x="809.06" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.07%)</title><rect x="1144.4" y="1509" width="0.8" height="15.0" fill="rgb(223,122,23)" rx="2" ry="2" />
<text x="1147.39" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (19 samples, 1.34%)</title><rect x="836.7" y="773" width="15.8" height="15.0" fill="rgb(208,15,50)" rx="2" ry="2" />
<text x="839.75" y="783.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.77%)</title><rect x="777.9" y="1285" width="9.1" height="15.0" fill="rgb(240,205,38)" rx="2" ry="2" />
<text x="780.87" y="1295.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="1125" width="0.9" height="15.0" fill="rgb(236,61,9)" rx="2" ry="2" />
<text x="782.53" y="1135.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (399 samples, 28.04%)</title><rect x="787.0" y="1013" width="330.9" height="15.0" fill="rgb(252,34,0)" rx="2" ry="2" />
<text x="789.99" y="1023.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (2 samples, 0.14%)</title><rect x="1155.2" y="1509" width="1.6" height="15.0" fill="rgb(250,21,15)" rx="2" ry="2" />
<text x="1158.17" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="794.5" y="421" width="0.8" height="15.0" fill="rgb(220,113,17)" rx="2" ry="2" />
<text x="797.46" y="431.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 1.41%)</title><rect x="790.3" y="677" width="16.6" height="15.0" fill="rgb(211,189,41)" rx="2" ry="2" />
<text x="793.31" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="1173" width="330.9" height="15.0" fill="rgb(235,206,10)" rx="2" ry="2" />
<text x="789.99" y="1183.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="806.1" y="165" width="0.8" height="15.0" fill="rgb(247,71,5)" rx="2" ry="2" />
<text x="809.06" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="773" width="264.5" height="15.0" fill="rgb(233,92,37)" rx="2" ry="2" />
<text x="855.50" y="783.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1317" width="3.3" height="15.0" fill="rgb(247,111,46)" rx="2" ry="2" />
<text x="1120.86" y="1327.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.07%)</title><rect x="714.8" y="1413" width="0.9" height="15.0" fill="rgb(239,199,37)" rx="2" ry="2" />
<text x="717.85" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.07%)</title><rect x="1170.9" y="1493" width="0.9" height="15.0" fill="rgb(235,225,43)" rx="2" ry="2" />
<text x="1173.93" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="780.4" y="1173" width="1.6" height="15.0" fill="rgb(235,93,14)" rx="2" ry="2" />
<text x="783.36" y="1183.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="827.6" y="293" width="1.7" height="15.0" fill="rgb(232,10,50)" rx="2" ry="2" />
<text x="830.62" y="303.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="325" width="264.5" height="15.0" fill="rgb(211,133,21)" rx="2" ry="2" />
<text x="855.50" y="335.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Types\ResultType::equals (1 samples, 0.07%)</title><rect x="830.1" y="549" width="0.8" height="15.0" fill="rgb(209,195,44)" rx="2" ry="2" />
<text x="833.11" y="559.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="830.9" y="645" width="0.9" height="15.0" fill="rgb(226,68,30)" rx="2" ry="2" />
<text x="833.94" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="1116.2" y="181" width="0.8" height="15.0" fill="rgb(223,7,15)" rx="2" ry="2" />
<text x="1119.20" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.07%)</title><rect x="1086.3" y="165" width="0.9" height="15.0" fill="rgb(254,69,11)" rx="2" ry="2" />
<text x="1089.35" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="819.3" y="389" width="0.9" height="15.0" fill="rgb(237,123,49)" rx="2" ry="2" />
<text x="822.33" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.07%)</title><rect x="769.6" y="1429" width="0.8" height="15.0" fill="rgb(226,41,34)" rx="2" ry="2" />
<text x="772.58" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="677" width="264.5" height="15.0" fill="rgb(225,68,53)" rx="2" ry="2" />
<text x="855.50" y="687.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (5 samples, 0.35%)</title><rect x="613.7" y="1413" width="4.1" height="15.0" fill="rgb(240,9,12)" rx="2" ry="2" />
<text x="616.68" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="805.2" y="421" width="1.7" height="15.0" fill="rgb(230,103,3)" rx="2" ry="2" />
<text x="808.24" y="431.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1143.6" y="1445" width="0.8" height="15.0" fill="rgb(253,77,1)" rx="2" ry="2" />
<text x="1146.56" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="791.1" y="421" width="0.9" height="15.0" fill="rgb(247,169,4)" rx="2" ry="2" />
<text x="794.14" y="431.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="803.6" y="485" width="3.3" height="15.0" fill="rgb(218,200,44)" rx="2" ry="2" />
<text x="806.58" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="792.8" y="389" width="1.7" height="15.0" fill="rgb(242,20,50)" rx="2" ry="2" />
<text x="795.80" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.14%)</title><rect x="850.0" y="661" width="1.7" height="15.0" fill="rgb(212,29,42)" rx="2" ry="2" />
<text x="853.01" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (319 samples, 22.42%)</title><rect x="852.5" y="437" width="264.5" height="15.0" fill="rgb(213,173,24)" rx="2" ry="2" />
<text x="855.50" y="447.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1118.7" y="885" width="0.8" height="15.0" fill="rgb(248,66,9)" rx="2" ry="2" />
<text x="1121.69" y="895.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.07%)</title><rect x="1093.0" y="165" width="0.8" height="15.0" fill="rgb(210,167,48)" rx="2" ry="2" />
<text x="1095.98" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="792.0" y="437" width="2.5" height="15.0" fill="rgb(243,31,36)" rx="2" ry="2" />
<text x="794.97" y="447.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="789.5" y="741" width="0.8" height="15.0" fill="rgb(232,151,33)" rx="2" ry="2" />
<text x="792.48" y="751.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (51 samples, 3.58%)</title><rect x="790.3" y="757" width="42.3" height="15.0" fill="rgb(206,123,54)" rx="2" ry="2" />
<text x="793.31" y="767.5" >Nsf..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="757" width="264.5" height="15.0" fill="rgb(238,21,46)" rx="2" ry="2" />
<text x="855.50" y="767.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (319 samples, 22.42%)</title><rect x="852.5" y="421" width="264.5" height="15.0" fill="rgb(245,195,24)" rx="2" ry="2" />
<text x="855.50" y="431.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (3 samples, 0.21%)</title><rect x="639.4" y="1445" width="2.5" height="15.0" fill="rgb(239,41,45)" rx="2" ry="2" />
<text x="642.39" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="806.1" y="149" width="0.8" height="15.0" fill="rgb(226,12,44)" rx="2" ry="2" />
<text x="809.06" y="159.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="806.9" y="533" width="0.8" height="15.0" fill="rgb(213,180,6)" rx="2" ry="2" />
<text x="809.89" y="543.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="787.8" y="741" width="0.9" height="15.0" fill="rgb(253,214,14)" rx="2" ry="2" />
<text x="790.82" y="751.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="782.8" y="933" width="3.4" height="15.0" fill="rgb(215,191,10)" rx="2" ry="2" />
<text x="785.85" y="943.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (410 samples, 28.81%)</title><rect x="777.9" y="1413" width="340.0" height="15.0" fill="rgb(213,41,27)" rx="2" ry="2" />
<text x="780.87" y="1423.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeH..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 1.12%)</title><rect x="816.8" y="565" width="13.3" height="15.0" fill="rgb(233,206,51)" rx="2" ry="2" />
<text x="819.84" y="575.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.14%)</title><rect x="845.9" y="693" width="1.6" height="15.0" fill="rgb(250,1,14)" rx="2" ry="2" />
<text x="848.87" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1365" width="3.3" height="15.0" fill="rgb(205,222,52)" rx="2" ry="2" />
<text x="1120.86" y="1375.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (399 samples, 28.04%)</title><rect x="787.0" y="933" width="330.9" height="15.0" fill="rgb(231,202,10)" rx="2" ry="2" />
<text x="789.99" y="943.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.14%)</title><rect x="827.6" y="181" width="1.7" height="15.0" fill="rgb(228,178,15)" rx="2" ry="2" />
<text x="830.62" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 1.90%)</title><rect x="808.6" y="597" width="22.3" height="15.0" fill="rgb(241,119,44)" rx="2" ry="2" />
<text x="811.55" y="607.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 1.05%)</title><rect x="791.1" y="549" width="12.5" height="15.0" fill="rgb(231,184,19)" rx="2" ry="2" />
<text x="794.14" y="559.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="827.6" y="197" width="1.7" height="15.0" fill="rgb(213,87,6)" rx="2" ry="2" />
<text x="830.62" y="207.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="1182.5" y="1477" width="0.9" height="15.0" fill="rgb(242,197,19)" rx="2" ry="2" />
<text x="1185.54" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.07%)</title><rect x="816.0" y="469" width="0.8" height="15.0" fill="rgb(239,177,38)" rx="2" ry="2" />
<text x="819.02" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (4 samples, 0.28%)</title><rect x="758.8" y="1429" width="3.3" height="15.0" fill="rgb(253,83,30)" rx="2" ry="2" />
<text x="761.80" y="1439.5" ></text>
</g>
<g >
<title>print_r (1 samples, 0.07%)</title><rect x="762.9" y="1413" width="0.9" height="15.0" fill="rgb(209,4,34)" rx="2" ry="2" />
<text x="765.94" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.07%)</title><rect x="787.8" y="789" width="0.9" height="15.0" fill="rgb(231,227,10)" rx="2" ry="2" />
<text x="790.82" y="799.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (399 samples, 28.04%)</title><rect x="787.0" y="1253" width="330.9" height="15.0" fill="rgb(222,219,23)" rx="2" ry="2" />
<text x="789.99" y="1263.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Types\FuncType::equals (1 samples, 0.07%)</title><rect x="830.1" y="565" width="0.8" height="15.0" fill="rgb(212,64,10)" rx="2" ry="2" />
<text x="833.11" y="575.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="901" width="330.9" height="15.0" fill="rgb(241,214,24)" rx="2" ry="2" />
<text x="789.99" y="911.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::push (2 samples, 0.14%)</title><rect x="1162.6" y="1525" width="1.7" height="15.0" fill="rgb(212,127,44)" rx="2" ry="2" />
<text x="1165.64" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="801.9" y="309" width="0.8" height="15.0" fill="rgb(224,110,28)" rx="2" ry="2" />
<text x="804.92" y="319.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1182.5" y="1429" width="0.9" height="15.0" fill="rgb(233,218,37)" rx="2" ry="2" />
<text x="1185.54" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.07%)</title><rect x="816.0" y="565" width="0.8" height="15.0" fill="rgb(235,132,11)" rx="2" ry="2" />
<text x="819.02" y="575.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="816.0" y="453" width="0.8" height="15.0" fill="rgb(240,71,15)" rx="2" ry="2" />
<text x="819.02" y="463.5" ></text>
</g>
<g >
<title>print_r (1 samples, 0.07%)</title><rect x="772.1" y="1413" width="0.8" height="15.0" fill="rgb(220,226,34)" rx="2" ry="2" />
<text x="775.07" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::push (2 samples, 0.14%)</title><rect x="1110.4" y="165" width="1.7" height="15.0" fill="rgb(226,50,9)" rx="2" ry="2" />
<text x="1113.39" y="175.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1169.3" y="1493" width="0.8" height="15.0" fill="rgb(249,182,22)" rx="2" ry="2" />
<text x="1172.27" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1117.0" y="741" width="0.9" height="15.0" fill="rgb(242,95,15)" rx="2" ry="2" />
<text x="1120.03" y="751.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1117.0" y="725" width="0.9" height="15.0" fill="rgb(237,28,39)" rx="2" ry="2" />
<text x="1120.03" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.35%)</title><rect x="782.8" y="981" width="4.2" height="15.0" fill="rgb(210,92,9)" rx="2" ry="2" />
<text x="785.85" y="991.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1182.5" y="1493" width="0.9" height="15.0" fill="rgb(233,92,0)" rx="2" ry="2" />
<text x="1185.54" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="827.6" y="133" width="1.7" height="15.0" fill="rgb(225,89,37)" rx="2" ry="2" />
<text x="830.62" y="143.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1125" width="3.3" height="15.0" fill="rgb(249,98,20)" rx="2" ry="2" />
<text x="1120.86" y="1135.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (20 samples, 1.41%)</title><rect x="835.9" y="789" width="16.6" height="15.0" fill="rgb(253,148,51)" rx="2" ry="2" />
<text x="838.92" y="799.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (415 samples, 29.16%)</title><rect x="777.9" y="1445" width="344.1" height="15.0" fill="rgb(215,58,15)" rx="2" ry="2" />
<text x="780.87" y="1455.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 1.34%)</title><rect x="791.1" y="629" width="15.8" height="15.0" fill="rgb(240,84,42)" rx="2" ry="2" />
<text x="794.14" y="639.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::opName (1 samples, 0.07%)</title><rect x="641.9" y="1445" width="0.8" height="15.0" fill="rgb(232,2,42)" rx="2" ry="2" />
<text x="644.88" y="1455.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="732.3" y="1397" width="0.8" height="15.0" fill="rgb(209,30,32)" rx="2" ry="2" />
<text x="735.26" y="1407.5" ></text>
</g>
<g >
<title>print_r (1 samples, 0.07%)</title><rect x="621.1" y="1397" width="0.9" height="15.0" fill="rgb(252,219,35)" rx="2" ry="2" />
<text x="624.15" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="792.8" y="421" width="1.7" height="15.0" fill="rgb(224,165,52)" rx="2" ry="2" />
<text x="795.80" y="431.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1109" width="3.3" height="15.0" fill="rgb(210,185,2)" rx="2" ry="2" />
<text x="1120.86" y="1119.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1116.2" y="213" width="0.8" height="15.0" fill="rgb(236,225,7)" rx="2" ry="2" />
<text x="1119.20" y="223.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1118.7" y="869" width="0.8" height="15.0" fill="rgb(238,95,18)" rx="2" ry="2" />
<text x="1121.69" y="879.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.07%)</title><rect x="816.0" y="341" width="0.8" height="15.0" fill="rgb(235,63,48)" rx="2" ry="2" />
<text x="819.02" y="351.5" ></text>
</g>
<g >
<title><unknown> (10 samples, 0.70%)</title><rect x="630.3" y="1429" width="8.3" height="15.0" fill="rgb(253,101,43)" rx="2" ry="2" />
<text x="633.27" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (30 samples, 2.11%)</title><rect x="806.9" y="709" width="24.9" height="15.0" fill="rgb(219,129,33)" rx="2" ry="2" />
<text x="809.89" y="719.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="816.0" y="373" width="0.8" height="15.0" fill="rgb(216,62,36)" rx="2" ry="2" />
<text x="819.02" y="383.5" ></text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.07%)</title><rect x="277.8" y="1445" width="0.9" height="15.0" fill="rgb(239,8,32)" rx="2" ry="2" />
<text x="280.84" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.49%)</title><rect x="810.2" y="517" width="5.8" height="15.0" fill="rgb(218,27,25)" rx="2" ry="2" />
<text x="813.21" y="527.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1182.5" y="1445" width="0.9" height="15.0" fill="rgb(207,187,36)" rx="2" ry="2" />
<text x="1185.54" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Allocator::allocModule (322 samples, 22.63%)</title><rect x="11.7" y="1493" width="267.0" height="15.0" fill="rgb(241,34,8)" rx="2" ry="2" />
<text x="14.66" y="1503.5" >Nsfisis\Waddiwasi\Execution\Allocat..</text>
</g>
<g >
<title>count (1 samples, 0.07%)</title><rect x="1141.9" y="1509" width="0.8" height="15.0" fill="rgb(254,203,43)" rx="2" ry="2" />
<text x="1144.90" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="1119.5" y="885" width="0.8" height="15.0" fill="rgb(223,68,37)" rx="2" ry="2" />
<text x="1122.52" y="895.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (3 samples, 0.21%)</title><rect x="569.7" y="1413" width="2.5" height="15.0" fill="rgb(228,101,18)" rx="2" ry="2" />
<text x="572.73" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.07%)</title><rect x="1172.6" y="1525" width="0.8" height="15.0" fill="rgb(230,163,0)" rx="2" ry="2" />
<text x="1175.59" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 2.04%)</title><rect x="806.9" y="661" width="24.0" height="15.0" fill="rgb(237,225,3)" rx="2" ry="2" />
<text x="809.89" y="671.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.35%)</title><rect x="782.8" y="997" width="4.2" height="15.0" fill="rgb(230,22,29)" rx="2" ry="2" />
<text x="785.85" y="1007.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="806.9" y="597" width="1.7" height="15.0" fill="rgb(254,106,12)" rx="2" ry="2" />
<text x="809.89" y="607.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="787.8" y="757" width="0.9" height="15.0" fill="rgb(248,196,14)" rx="2" ry="2" />
<text x="790.82" y="767.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="803.6" y="597" width="3.3" height="15.0" fill="rgb(206,220,31)" rx="2" ry="2" />
<text x="806.58" y="607.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.07%)</title><rect x="638.6" y="1429" width="0.8" height="15.0" fill="rgb(232,127,31)" rx="2" ry="2" />
<text x="641.56" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="850.8" y="565" width="0.9" height="15.0" fill="rgb(233,30,25)" rx="2" ry="2" />
<text x="853.84" y="575.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (410 samples, 28.81%)</title><rect x="777.9" y="1317" width="340.0" height="15.0" fill="rgb(221,50,45)" rx="2" ry="2" />
<text x="780.87" y="1327.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="800.3" y="469" width="0.8" height="15.0" fill="rgb(209,203,36)" rx="2" ry="2" />
<text x="803.26" y="479.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (399 samples, 28.04%)</title><rect x="787.0" y="1269" width="330.9" height="15.0" fill="rgb(253,102,20)" rx="2" ry="2" />
<text x="789.99" y="1279.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="1117.9" y="1061" width="2.4" height="15.0" fill="rgb(238,58,40)" rx="2" ry="2" />
<text x="1120.86" y="1071.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="917" width="0.9" height="15.0" fill="rgb(228,89,35)" rx="2" ry="2" />
<text x="782.53" y="927.5" ></text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.07%)</title><rect x="777.0" y="1461" width="0.9" height="15.0" fill="rgb(206,187,9)" rx="2" ry="2" />
<text x="780.04" y="1471.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="1117.0" y="773" width="0.9" height="15.0" fill="rgb(237,6,14)" rx="2" ry="2" />
<text x="1120.03" y="783.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1221" width="3.3" height="15.0" fill="rgb(213,116,3)" rx="2" ry="2" />
<text x="1120.86" y="1231.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (2 samples, 0.14%)</title><rect x="566.4" y="1413" width="1.7" height="15.0" fill="rgb(205,34,9)" rx="2" ry="2" />
<text x="569.42" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (3 samples, 0.21%)</title><rect x="1091.3" y="181" width="2.5" height="15.0" fill="rgb(215,172,27)" rx="2" ry="2" />
<text x="1094.32" y="191.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1189" width="3.3" height="15.0" fill="rgb(223,72,8)" rx="2" ry="2" />
<text x="1120.86" y="1199.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 1.90%)</title><rect x="808.6" y="581" width="22.3" height="15.0" fill="rgb(243,12,30)" rx="2" ry="2" />
<text x="811.55" y="591.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (415 samples, 29.16%)</title><rect x="777.9" y="1493" width="344.1" height="15.0" fill="rgb(216,154,5)" rx="2" ry="2" />
<text x="780.87" y="1503.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeF..</text>
</g>
<g >
<title>assert (2 samples, 0.14%)</title><rect x="762.1" y="1429" width="1.7" height="15.0" fill="rgb(240,36,36)" rx="2" ry="2" />
<text x="765.12" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Allocator::allocMem (321 samples, 22.56%)</title><rect x="11.7" y="1477" width="266.1" height="15.0" fill="rgb(236,83,17)" rx="2" ry="2" />
<text x="14.66" y="1487.5" >Nsfisis\Waddiwasi\Execution\Allocat..</text>
</g>
<g >
<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.07%)</title><rect x="1118.7" y="645" width="0.8" height="15.0" fill="rgb(227,180,10)" rx="2" ry="2" />
<text x="1121.69" y="655.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 1.05%)</title><rect x="791.1" y="533" width="12.5" height="15.0" fill="rgb(246,177,52)" rx="2" ry="2" />
<text x="794.14" y="543.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (399 samples, 28.04%)</title><rect x="787.0" y="965" width="330.9" height="15.0" fill="rgb(243,18,43)" rx="2" ry="2" />
<text x="789.99" y="975.5" >Nsfisis\Waddiwasi\Execution\Runtime::invokeB..</text>
</g>
<g >
<title>assert (1 samples, 0.07%)</title><rect x="1081.4" y="165" width="0.8" height="15.0" fill="rgb(221,226,15)" rx="2" ry="2" />
<text x="1084.37" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="901" width="0.9" height="15.0" fill="rgb(248,31,13)" rx="2" ry="2" />
<text x="782.53" y="911.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1143.6" y="1477" width="0.8" height="15.0" fill="rgb(208,104,29)" rx="2" ry="2" />
<text x="1146.56" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.07%)</title><rect x="565.6" y="1397" width="0.8" height="15.0" fill="rgb(231,80,33)" rx="2" ry="2" />
<text x="568.59" y="1407.5" ></text>
</g>
<g >
<title>array_pop (1 samples, 0.07%)</title><rect x="1121.2" y="1397" width="0.8" height="15.0" fill="rgb(252,3,18)" rx="2" ry="2" />
<text x="1124.17" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="789.5" y="677" width="0.8" height="15.0" fill="rgb(215,163,11)" rx="2" ry="2" />
<text x="792.48" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.07%)</title><rect x="806.1" y="133" width="0.8" height="15.0" fill="rgb(213,184,52)" rx="2" ry="2" />
<text x="809.06" y="143.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (13 samples, 0.91%)</title><rect x="627.8" y="1445" width="10.8" height="15.0" fill="rgb(212,36,30)" rx="2" ry="2" />
<text x="630.78" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1269" width="3.3" height="15.0" fill="rgb(248,195,30)" rx="2" ry="2" />
<text x="1120.86" y="1279.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="805.2" y="245" width="1.7" height="15.0" fill="rgb(206,121,20)" rx="2" ry="2" />
<text x="808.24" y="255.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.42%)</title><rect x="847.5" y="693" width="5.0" height="15.0" fill="rgb(234,157,51)" rx="2" ry="2" />
<text x="850.53" y="703.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="816.0" y="437" width="0.8" height="15.0" fill="rgb(238,148,10)" rx="2" ry="2" />
<text x="819.02" y="447.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="791.1" y="453" width="3.4" height="15.0" fill="rgb(244,212,36)" rx="2" ry="2" />
<text x="794.14" y="463.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.35%)</title><rect x="782.8" y="1029" width="4.2" height="15.0" fill="rgb(224,27,41)" rx="2" ry="2" />
<text x="785.85" y="1039.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.07%)</title><rect x="785.3" y="917" width="0.9" height="15.0" fill="rgb(221,85,8)" rx="2" ry="2" />
<text x="788.33" y="927.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\ExternVal::Mem (1 samples, 0.07%)</title><rect x="277.8" y="1477" width="0.9" height="15.0" fill="rgb(220,138,17)" rx="2" ry="2" />
<text x="280.84" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::__construct (3 samples, 0.21%)</title><rect x="622.8" y="1429" width="2.5" height="15.0" fill="rgb(210,210,0)" rx="2" ry="2" />
<text x="625.80" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.07%)</title><rect x="1170.1" y="1493" width="0.8" height="15.0" fill="rgb(254,122,8)" rx="2" ry="2" />
<text x="1173.10" y="1503.5" ></text>
</g>
<g >
<title><unknown> (15 samples, 1.05%)</title><rect x="554.0" y="1413" width="12.4" height="15.0" fill="rgb(239,2,11)" rx="2" ry="2" />
<text x="556.98" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="789" width="264.5" height="15.0" fill="rgb(224,161,50)" rx="2" ry="2" />
<text x="855.50" y="799.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="357" width="264.5" height="15.0" fill="rgb(208,228,33)" rx="2" ry="2" />
<text x="855.50" y="367.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.07%)</title><rect x="776.2" y="1461" width="0.8" height="15.0" fill="rgb(211,77,51)" rx="2" ry="2" />
<text x="779.21" y="1471.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.63%)</title><rect x="822.6" y="485" width="7.5" height="15.0" fill="rgb(236,205,50)" rx="2" ry="2" />
<text x="825.65" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.56%)</title><rect x="823.5" y="421" width="6.6" height="15.0" fill="rgb(229,157,47)" rx="2" ry="2" />
<text x="826.48" y="431.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1118.7" y="821" width="0.8" height="15.0" fill="rgb(246,167,37)" rx="2" ry="2" />
<text x="1121.69" y="831.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="1117.9" y="965" width="2.4" height="15.0" fill="rgb(210,94,23)" rx="2" ry="2" />
<text x="1120.86" y="975.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.14%)</title><rect x="805.2" y="277" width="1.7" height="15.0" fill="rgb(239,168,31)" rx="2" ry="2" />
<text x="808.24" y="287.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (319 samples, 22.42%)</title><rect x="852.5" y="709" width="264.5" height="15.0" fill="rgb(224,223,17)" rx="2" ry="2" />
<text x="855.50" y="719.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="803.6" y="581" width="3.3" height="15.0" fill="rgb(231,171,6)" rx="2" ry="2" />
<text x="806.58" y="591.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="838.4" y="677" width="3.3" height="15.0" fill="rgb(243,169,0)" rx="2" ry="2" />
<text x="841.40" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="840.9" y="597" width="0.8" height="15.0" fill="rgb(232,82,2)" rx="2" ry="2" />
<text x="843.89" y="607.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="811.9" y="389" width="0.8" height="15.0" fill="rgb(206,182,44)" rx="2" ry="2" />
<text x="814.87" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="816.0" y="389" width="0.8" height="15.0" fill="rgb(235,5,31)" rx="2" ry="2" />
<text x="819.02" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.56%)</title><rect x="823.5" y="437" width="6.6" height="15.0" fill="rgb(245,15,12)" rx="2" ry="2" />
<text x="826.48" y="447.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (2 samples, 0.14%)</title><rect x="1108.7" y="149" width="1.7" height="15.0" fill="rgb(247,121,0)" rx="2" ry="2" />
<text x="1111.74" y="159.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.07%)</title><rect x="1144.4" y="1525" width="0.8" height="15.0" fill="rgb(207,212,6)" rx="2" ry="2" />
<text x="1147.39" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (319 samples, 22.42%)</title><rect x="852.5" y="373" width="264.5" height="15.0" fill="rgb(233,90,42)" rx="2" ry="2" />
<text x="855.50" y="383.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (415 samples, 29.16%)</title><rect x="777.9" y="1429" width="344.1" height="15.0" fill="rgb(241,50,2)" rx="2" ry="2" />
<text x="780.87" y="1439.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeF..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (319 samples, 22.42%)</title><rect x="852.5" y="549" width="264.5" height="15.0" fill="rgb(243,152,39)" rx="2" ry="2" />
<text x="855.50" y="559.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="801.9" y="373" width="0.8" height="15.0" fill="rgb(241,180,36)" rx="2" ry="2" />
<text x="804.92" y="383.5" ></text>
</g>
<g >
<title>count (1 samples, 0.07%)</title><rect x="763.8" y="1429" width="0.8" height="15.0" fill="rgb(228,151,9)" rx="2" ry="2" />
<text x="766.77" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 1.34%)</title><rect x="836.7" y="757" width="15.8" height="15.0" fill="rgb(217,193,54)" rx="2" ry="2" />
<text x="839.75" y="767.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (410 samples, 28.81%)</title><rect x="777.9" y="1349" width="340.0" height="15.0" fill="rgb(220,31,19)" rx="2" ry="2" />
<text x="780.87" y="1359.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeW..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="805.2" y="165" width="0.9" height="15.0" fill="rgb(232,2,2)" rx="2" ry="2" />
<text x="808.24" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (301 samples, 21.15%)</title><rect x="866.6" y="197" width="249.6" height="15.0" fill="rgb(210,65,36)" rx="2" ry="2" />
<text x="869.60" y="207.5" >Nsfisis\Waddiwasi\Execution\Runti..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (600 samples, 42.16%)</title><rect x="278.7" y="1477" width="497.5" height="15.0" fill="rgb(241,110,3)" rx="2" ry="2" />
<text x="281.67" y="1487.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (15 samples, 1.05%)</title><rect x="791.1" y="581" width="12.5" height="15.0" fill="rgb(220,92,31)" rx="2" ry="2" />
<text x="794.14" y="591.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="757" width="0.9" height="15.0" fill="rgb(216,122,34)" rx="2" ry="2" />
<text x="782.53" y="767.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="806.9" y="581" width="1.7" height="15.0" fill="rgb(248,36,18)" rx="2" ry="2" />
<text x="809.89" y="591.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (20 samples, 1.41%)</title><rect x="790.3" y="725" width="16.6" height="15.0" fill="rgb(231,171,50)" rx="2" ry="2" />
<text x="793.31" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="794.5" y="389" width="0.8" height="15.0" fill="rgb(220,219,35)" rx="2" ry="2" />
<text x="797.46" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1117.0" y="677" width="0.9" height="15.0" fill="rgb(207,86,25)" rx="2" ry="2" />
<text x="1120.03" y="687.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="1090.5" y="165" width="0.8" height="15.0" fill="rgb(207,209,40)" rx="2" ry="2" />
<text x="1093.49" y="175.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1115.4" y="133" width="0.8" height="15.0" fill="rgb(205,170,36)" rx="2" ry="2" />
<text x="1118.37" y="143.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1157" width="3.3" height="15.0" fill="rgb(208,161,17)" rx="2" ry="2" />
<text x="1120.86" y="1167.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (410 samples, 28.81%)</title><rect x="777.9" y="1365" width="340.0" height="15.0" fill="rgb(215,22,47)" rx="2" ry="2" />
<text x="780.87" y="1375.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeF..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.07%)</title><rect x="724.8" y="1413" width="0.8" height="15.0" fill="rgb(237,207,50)" rx="2" ry="2" />
<text x="727.80" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="1029" width="330.9" height="15.0" fill="rgb(235,190,10)" rx="2" ry="2" />
<text x="789.99" y="1039.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.14%)</title><rect x="626.1" y="1429" width="1.7" height="15.0" fill="rgb(248,90,38)" rx="2" ry="2" />
<text x="629.12" y="1439.5" ></text>
</g>
<g >
<title>count (1 samples, 0.07%)</title><rect x="829.3" y="325" width="0.8" height="15.0" fill="rgb(238,218,16)" rx="2" ry="2" />
<text x="832.28" y="335.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="634.4" y="1413" width="0.8" height="15.0" fill="rgb(234,1,6)" rx="2" ry="2" />
<text x="637.41" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1205" width="3.3" height="15.0" fill="rgb(245,145,49)" rx="2" ry="2" />
<text x="1120.86" y="1215.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.14%)</title><rect x="827.6" y="165" width="1.7" height="15.0" fill="rgb(232,85,13)" rx="2" ry="2" />
<text x="830.62" y="175.5" ></text>
</g>
<g >
<title><unknown> (26 samples, 1.83%)</title><rect x="1122.0" y="1525" width="21.6" height="15.0" fill="rgb(247,11,10)" rx="2" ry="2" />
<text x="1125.00" y="1535.5" ><..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.07%)</title><rect x="1171.8" y="1509" width="0.8" height="15.0" fill="rgb(230,51,41)" rx="2" ry="2" />
<text x="1174.76" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="1156.8" y="1509" width="0.9" height="15.0" fill="rgb(238,189,44)" rx="2" ry="2" />
<text x="1159.83" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="1061" width="0.9" height="15.0" fill="rgb(229,137,24)" rx="2" ry="2" />
<text x="782.53" y="1071.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1141" width="3.3" height="15.0" fill="rgb(228,83,6)" rx="2" ry="2" />
<text x="1120.86" y="1151.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (410 samples, 28.81%)</title><rect x="777.9" y="1333" width="340.0" height="15.0" fill="rgb(218,158,18)" rx="2" ry="2" />
<text x="780.87" y="1343.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="801.9" y="277" width="0.8" height="15.0" fill="rgb(226,15,44)" rx="2" ry="2" />
<text x="804.92" y="287.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1118.7" y="773" width="0.8" height="15.0" fill="rgb(243,184,33)" rx="2" ry="2" />
<text x="1121.69" y="783.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="791.1" y="389" width="0.9" height="15.0" fill="rgb(209,101,41)" rx="2" ry="2" />
<text x="794.14" y="399.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.07%)</title><rect x="728.9" y="1413" width="0.9" height="15.0" fill="rgb(254,173,51)" rx="2" ry="2" />
<text x="731.95" y="1423.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.07%)</title><rect x="1182.5" y="1509" width="0.9" height="15.0" fill="rgb(211,177,49)" rx="2" ry="2" />
<text x="1185.54" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 1.05%)</title><rect x="791.1" y="517" width="12.5" height="15.0" fill="rgb(222,192,1)" rx="2" ry="2" />
<text x="794.14" y="527.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.21%)</title><rect x="1117.9" y="981" width="2.4" height="15.0" fill="rgb(251,75,20)" rx="2" ry="2" />
<text x="1120.86" y="991.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (53 samples, 3.72%)</title><rect x="788.7" y="789" width="43.9" height="15.0" fill="rgb(213,122,8)" rx="2" ry="2" />
<text x="791.65" y="799.5" >Nsfi..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (2 samples, 0.14%)</title><rect x="1079.7" y="165" width="1.7" height="15.0" fill="rgb(219,54,28)" rx="2" ry="2" />
<text x="1082.71" y="175.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.07%)</title><rect x="641.0" y="1429" width="0.9" height="15.0" fill="rgb(214,137,28)" rx="2" ry="2" />
<text x="644.05" y="1439.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 1.90%)</title><rect x="808.6" y="629" width="22.3" height="15.0" fill="rgb(209,149,48)" rx="2" ry="2" />
<text x="811.55" y="639.5" >N..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1349" width="3.3" height="15.0" fill="rgb(231,31,20)" rx="2" ry="2" />
<text x="1120.86" y="1359.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (20 samples, 1.41%)</title><rect x="790.3" y="709" width="16.6" height="15.0" fill="rgb(250,204,23)" rx="2" ry="2" />
<text x="793.31" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (399 samples, 28.04%)</title><rect x="787.0" y="1301" width="330.9" height="15.0" fill="rgb(206,145,11)" rx="2" ry="2" />
<text x="789.99" y="1311.5" >Nsfisis\Waddiwasi\Execution\Runtime::execIns..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (399 samples, 28.04%)</title><rect x="787.0" y="837" width="330.9" height="15.0" fill="rgb(238,185,45)" rx="2" ry="2" />
<text x="789.99" y="847.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (6 samples, 0.42%)</title><rect x="1157.7" y="1525" width="4.9" height="15.0" fill="rgb(225,80,47)" rx="2" ry="2" />
<text x="1160.66" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="779.5" y="1029" width="0.9" height="15.0" fill="rgb(236,203,37)" rx="2" ry="2" />
<text x="782.53" y="1039.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (318 samples, 22.35%)</title><rect x="852.5" y="261" width="263.7" height="15.0" fill="rgb(206,7,34)" rx="2" ry="2" />
<text x="855.50" y="271.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popRef (2 samples, 0.14%)</title><rect x="626.1" y="1445" width="1.7" height="15.0" fill="rgb(241,209,49)" rx="2" ry="2" />
<text x="629.12" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.14%)</title><rect x="806.9" y="629" width="1.7" height="15.0" fill="rgb(228,141,18)" rx="2" ry="2" />
<text x="809.89" y="639.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.07%)</title><rect x="807.7" y="533" width="0.9" height="15.0" fill="rgb(218,171,32)" rx="2" ry="2" />
<text x="810.72" y="543.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.14%)</title><rect x="827.6" y="69" width="1.7" height="15.0" fill="rgb(219,88,5)" rx="2" ry="2" />
<text x="830.62" y="79.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="1077" width="0.9" height="15.0" fill="rgb(206,15,24)" rx="2" ry="2" />
<text x="782.53" y="1087.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="1111.2" y="133" width="0.9" height="15.0" fill="rgb(209,151,51)" rx="2" ry="2" />
<text x="1114.22" y="143.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (14 samples, 0.98%)</title><rect x="719.0" y="1445" width="11.6" height="15.0" fill="rgb(246,204,37)" rx="2" ry="2" />
<text x="722.00" y="1455.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (344 samples, 24.17%)</title><rect x="832.6" y="805" width="285.3" height="15.0" fill="rgb(214,227,29)" rx="2" ry="2" />
<text x="835.60" y="815.5" >Nsfisis\Waddiwasi\Execution\Runtime::e..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1116.2" y="293" width="0.8" height="15.0" fill="rgb(223,203,0)" rx="2" ry="2" />
<text x="1119.20" y="303.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="741" width="0.9" height="15.0" fill="rgb(245,72,30)" rx="2" ry="2" />
<text x="782.53" y="751.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1173" width="3.3" height="15.0" fill="rgb(231,146,27)" rx="2" ry="2" />
<text x="1120.86" y="1183.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.07%)</title><rect x="1161.8" y="1493" width="0.8" height="15.0" fill="rgb(240,196,50)" rx="2" ry="2" />
<text x="1164.81" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="806.9" y="517" width="0.8" height="15.0" fill="rgb(212,229,17)" rx="2" ry="2" />
<text x="809.89" y="527.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="779.5" y="709" width="0.9" height="15.0" fill="rgb(252,74,17)" rx="2" ry="2" />
<text x="782.53" y="719.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.07%)</title><rect x="779.5" y="597" width="0.9" height="15.0" fill="rgb(254,23,20)" rx="2" ry="2" />
<text x="782.53" y="607.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="826.8" y="325" width="0.8" height="15.0" fill="rgb(232,227,16)" rx="2" ry="2" />
<text x="829.80" y="335.5" ></text>
</g>
<g >
<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.07%)</title><rect x="10.8" y="1493" width="0.9" height="15.0" fill="rgb(231,181,4)" rx="2" ry="2" />
<text x="13.83" y="1503.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="1117.9" y="1285" width="3.3" height="15.0" fill="rgb(210,197,48)" rx="2" ry="2" />
<text x="1120.86" y="1295.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.07%)</title><rect x="1172.6" y="1509" width="0.8" height="15.0" fill="rgb(212,204,49)" rx="2" ry="2" />
<text x="1175.59" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="779.5" y="981" width="0.9" height="15.0" fill="rgb(254,126,52)" rx="2" ry="2" />
<text x="782.53" y="991.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 1.05%)</title><rect x="1145.2" y="1525" width="12.5" height="15.0" fill="rgb(243,181,39)" rx="2" ry="2" />
<text x="1148.22" y="1535.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.14%)</title><rect x="805.2" y="261" width="1.7" height="15.0" fill="rgb(215,89,7)" rx="2" ry="2" />
<text x="808.24" y="271.5" ></text>
</g>
<g >
<title><unknown> (1 samples, 0.07%)</title><rect x="718.2" y="1397" width="0.8" height="15.0" fill="rgb(242,128,47)" rx="2" ry="2" />
<text x="721.17" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (2 samples, 0.14%)</title><rect x="1136.9" y="1509" width="1.7" height="15.0" fill="rgb(217,111,17)" rx="2" ry="2" />
<text x="1139.93" y="1519.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.35%)</title><rect x="782.8" y="1077" width="4.2" height="15.0" fill="rgb(208,206,5)" rx="2" ry="2" />
<text x="785.85" y="1087.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.28%)</title><rect x="1117.9" y="1301" width="3.3" height="15.0" fill="rgb(215,133,6)" rx="2" ry="2" />
<text x="1120.86" y="1311.5" ></text>
</g>
<g >
<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.07%)</title><rect x="10.8" y="1477" width="0.9" height="15.0" fill="rgb(233,210,47)" rx="2" ry="2" />
<text x="13.83" y="1487.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (54 samples, 3.79%)</title><rect x="787.8" y="821" width="44.8" height="15.0" fill="rgb(243,139,17)" rx="2" ry="2" />
<text x="790.82" y="831.5" >Nsfi..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.14%)</title><rect x="827.6" y="85" width="1.7" height="15.0" fill="rgb(228,177,14)" rx="2" ry="2" />
<text x="830.62" y="95.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="1182.5" y="1397" width="0.9" height="15.0" fill="rgb(249,28,27)" rx="2" ry="2" />
<text x="1185.54" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.21%)</title><rect x="816.8" y="453" width="2.5" height="15.0" fill="rgb(247,69,22)" rx="2" ry="2" />
<text x="819.84" y="463.5" ></text>
</g>
<g >
<title>print_r (4 samples, 0.28%)</title><rect x="614.5" y="1397" width="3.3" height="15.0" fill="rgb(241,104,17)" rx="2" ry="2" />
<text x="617.51" y="1407.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (399 samples, 28.04%)</title><rect x="787.0" y="1189" width="330.9" height="15.0" fill="rgb(250,18,18)" rx="2" ry="2" />
<text x="789.99" y="1199.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvok..</text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.07%)</title><rect x="828.5" y="37" width="0.8" height="15.0" fill="rgb(215,13,36)" rx="2" ry="2" />
<text x="831.45" y="47.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.07%)</title><rect x="1118.7" y="741" width="0.8" height="15.0" fill="rgb(247,199,40)" rx="2" ry="2" />
<text x="1121.69" y="751.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1117.0" y="597" width="0.9" height="15.0" fill="rgb(217,72,6)" rx="2" ry="2" />
<text x="1120.03" y="607.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="846.7" y="661" width="0.8" height="15.0" fill="rgb(239,174,9)" rx="2" ry="2" />
<text x="849.70" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="1118.7" y="725" width="0.8" height="15.0" fill="rgb(232,48,32)" rx="2" ry="2" />
<text x="1121.69" y="735.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.49%)</title><rect x="824.3" y="357" width="5.8" height="15.0" fill="rgb(252,83,0)" rx="2" ry="2" />
<text x="827.31" y="367.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.07%)</title><rect x="830.9" y="661" width="0.9" height="15.0" fill="rgb(231,180,3)" rx="2" ry="2" />
<text x="833.94" y="671.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.28%)</title><rect x="816.8" y="485" width="3.4" height="15.0" fill="rgb(250,220,31)" rx="2" ry="2" />
<text x="819.84" y="495.5" ></text>
</g>
<g >
<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.07%)</title><rect x="779.5" y="837" width="0.9" height="15.0" fill="rgb(237,140,44)" rx="2" ry="2" />
<text x="782.53" y="847.5" ></text>
</g>
</g>
</svg>
|