-
Notifications
You must be signed in to change notification settings - Fork 1
/
simple-frp-test.prof
982 lines (975 loc) · 142 KB
/
simple-frp-test.prof
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
Sun Nov 06 23:21 2016 Time and Allocation Profiling Report (Final)
simple-frp-test.exe +RTS -N -p -RTS
total time = 0.01 secs (8 ticks @ 1000 us, 1 processor)
total alloc = 470,920 bytes (excludes profiling overheads)
COST CENTRE MODULE %time %alloc
safeTry Test.Hspec.Core.Util 37.5 16.1
MAIN MAIN 12.5 0.7
ppr FRP.AST 12.5 0.6
ppputStrLn FRP.Pretty 12.5 1.1
hspecWithResult Test.Hspec.Core.Runner 12.5 12.6
createBlock256 System.Random.TF.Gen 12.5 0.1
spec FRP.SemanticsSpec 0.0 2.1
ppshow FRP.Pretty 0.0 3.8
defaultFooter Test.Hspec.Core.Formatters 0.0 5.0
liftIO Test.Hspec.Core.Formatters.Internal 0.0 5.1
write Test.Hspec.Core.Formatters.Internal 0.0 4.1
gets Test.Hspec.Core.Formatters.Internal 0.0 1.6
sequenceA.go Test.Hspec.Core.Tree 0.0 2.1
showsPrec Test.Hspec.FailureReport 0.0 4.2
withAsyncUsing.\.\ Control.Concurrent.Async 0.0 7.1
CAF GHC.IO.Handle.FD 0.0 7.4
CAF GHC.Float 0.0 9.8
individual inherited
COST CENTRE MODULE no. entries %time %alloc %time %alloc
MAIN MAIN 2029 0 12.5 0.7 100.0 100.0
main Main 4062 0 0.0 0.0 75.0 69.7
hspec Test.Hspec.Core.Runner 4063 0 0.0 0.0 75.0 69.7
hspecWith Test.Hspec.Core.Runner 4064 0 0.0 0.0 75.0 69.7
summaryFailures Test.Hspec.Core.Runner 4847 1 0.0 0.0 0.0 0.0
hspecWithResult Test.Hspec.Core.Runner 4065 1 12.5 12.6 75.0 69.7
hspecWithResult.\ Test.Hspec.Core.Runner 4093 0 0.0 0.1 0.0 0.4
getFailCount Test.Hspec.Core.Formatters.Internal 4823 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4824 0 0.0 0.0 0.0 0.0
failCount Test.Hspec.Core.Formatters.Internal 4848 1 0.0 0.0 0.0 0.0
getTotalCount Test.Hspec.Core.Formatters.Internal 4821 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4822 0 0.0 0.0 0.0 0.0
maxDiscardRatio Test.QuickCheck.Test 4812 1 0.0 0.0 0.0 0.0
maxSize Test.QuickCheck.Test 4810 1 0.0 0.0 0.0 0.0
hspecWithResult.\.qcArgs Test.Hspec.Core.Runner 4790 1 0.0 0.0 0.0 0.0
configQuickCheckArgs Test.Hspec.Config 4791 1 0.0 0.0 0.0 0.0
configQuickCheckArgs.qcArgs Test.Hspec.Config 4792 1 0.0 0.0 0.0 0.0
configQuickCheckArgs.setSeed Test.Hspec.Config 4808 1 0.0 0.0 0.0 0.0
configQuickCheckMaxDiscardRatio Test.Hspec.Options 4805 1 0.0 0.0 0.0 0.0
configQuickCheckMaxSize Test.Hspec.Options 4802 1 0.0 0.0 0.0 0.0
configQuickCheckMaxSuccess Test.Hspec.Options 4794 1 0.0 0.0 0.0 0.0
configQuickCheckSeed Test.Hspec.Options 4793 1 0.0 0.0 0.0 0.0
maxSuccess Test.QuickCheck.Test 4789 1 0.0 0.0 0.0 0.0
hspecWithResult.\.seed Test.Hspec.Core.Runner 4724 1 0.0 0.0 0.0 0.0
configQuickCheckSeed Test.Hspec.Options 4725 1 0.0 0.0 0.0 0.0
getFailMessages Test.Hspec.Core.Formatters.Internal 4704 0 0.0 0.0 0.0 0.1
gets Test.Hspec.Core.Formatters.Internal 4705 0 0.0 0.0 0.0 0.0
failMessages Test.Hspec.Core.Formatters.Internal 4814 1 0.0 0.0 0.0 0.0
footerFormatter Test.Hspec.Core.Formatters.Internal 4592 1 0.0 0.0 0.0 0.0
failedFormatter Test.Hspec.Core.Formatters.Internal 4570 1 0.0 0.0 0.0 0.0
configHtmlOutput Test.Hspec.Options 4415 1 0.0 0.0 0.0 0.0
filterSpecs Test.Hspec.Core.Runner 4268 0 0.0 0.0 0.0 0.0
filterSpecs.go Test.Hspec.Core.Runner 4269 0 0.0 0.0 0.0 0.0
filterSpecs.goSpec Test.Hspec.Core.Runner 4270 0 0.0 0.0 0.0 0.0
filterSpecs.p Test.Hspec.Core.Runner 4271 0 0.0 0.0 0.0 0.0
configSkipPredicate Test.Hspec.Options 4277 1 0.0 0.0 0.0 0.0
configFilterPredicate Test.Hspec.Options 4272 1 0.0 0.0 0.0 0.0
hspecWithResult.\.formatter Test.Hspec.Core.Runner 4209 1 0.0 0.0 0.0 0.0
configFormatter Test.Hspec.Options 4210 1 0.0 0.0 0.0 0.0
configPrintCpuTime Test.Hspec.Options 4201 1 0.0 0.0 0.0 0.0
hspecWithResult.doesUseColor Test.Hspec.Core.Runner 4094 0 0.0 0.0 0.0 0.2
isDumb Test.Hspec.Core.Runner 4097 0 0.0 0.1 0.0 0.1
configColorMode Test.Hspec.Options 4095 1 0.0 0.0 0.0 0.0
hspecWithResult.withHandle Test.Hspec.Core.Runner 4087 1 0.0 0.0 62.5 56.0
hspecWithResult.\ Test.Hspec.Core.Runner 4089 1 0.0 0.3 62.5 56.0
writeFailureReport Test.Hspec.FailureReport 4707 1 0.0 0.0 0.0 0.0
liftIO Test.Hspec.Core.Formatters.Internal 4706 0 0.0 0.0 0.0 8.1
writeFailureReport Test.Hspec.FailureReport 4708 0 0.0 0.0 0.0 8.1
showsPrec Test.Hspec.FailureReport 4721 1 0.0 2.1 0.0 2.1
safeTry Test.Hspec.Core.Util 4709 1 0.0 0.0 0.0 6.0
withAsync Control.Concurrent.Async 4710 0 0.0 0.0 0.0 6.0
withAsyncUsing Control.Concurrent.Async 4711 0 0.0 0.0 0.0 6.0
withAsyncUsing.\ Control.Concurrent.Async 4712 1 0.0 0.0 0.0 6.0
withAsyncUsing.\.\ Control.Concurrent.Async 4714 1 0.0 5.8 0.0 5.9
putTMVar Control.Concurrent.STM.TMVar 4816 1 0.0 0.0 0.0 0.0
withAsyncUsing.\.\.a Control.Concurrent.Async 4716 1 0.0 0.0 0.0 0.0
readTMVar Control.Concurrent.STM.TMVar 4717 1 0.0 0.0 0.0 0.0
catchAll Control.Concurrent.Async 4715 0 0.0 0.1 0.0 0.2
withAsyncUsing.\.\.a Control.Concurrent.Async 4718 0 0.0 0.0 0.0 0.0
readTMVar Control.Concurrent.STM.TMVar 4719 0 0.0 0.0 0.0 0.0
newEmptyTMVarIO Control.Concurrent.STM.TMVar 4713 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4594 0 0.0 4.4 0.0 8.0
pluralize Test.Hspec.Core.Util 4693 2 0.0 0.3 0.0 0.3
write Test.Hspec.Core.Formatters.Internal 4683 2 0.0 0.0 0.0 0.0
withSuccessColor Test.Hspec.Core.Formatters.Internal 4637 0 0.0 0.0 0.0 1.4
withColor Test.Hspec.Core.Formatters.Internal 4638 1 0.0 0.0 0.0 1.4
withColor_ Test.Hspec.Core.Formatters.Internal 4641 1 0.0 0.1 0.0 1.3
withColor_.\ Test.Hspec.Core.Formatters.Internal 4643 1 0.0 0.1 0.0 1.2
write Test.Hspec.Core.Formatters.Internal 4684 0 0.0 0.0 0.0 0.5
liftIO Test.Hspec.Core.Formatters.Internal 4686 0 0.0 0.4 0.0 0.4
gets Test.Hspec.Core.Formatters.Internal 4685 0 0.0 0.1 0.0 0.1
stateHandle Test.Hspec.Core.Formatters.Internal 4687 2 0.0 0.0 0.0 0.0
hSetSGR System.Console.ANSI.Windows.Emulator 4645 2 0.0 0.1 0.0 0.6
withHandle System.Console.ANSI.Windows.Emulator 4647 2 0.0 0.0 0.0 0.0
emulatorFallback System.Console.ANSI.Windows.Emulator 4646 2 0.0 0.0 0.0 0.5
withHandle System.Console.ANSI.Windows.Emulator 4648 0 0.0 0.1 0.0 0.5
withHandleToHANDLE System.Console.ANSI.Windows.Foreign 4650 2 0.0 0.0 0.0 0.4
withStablePtr System.Console.ANSI.Windows.Foreign 4651 2 0.0 0.1 0.0 0.4
hSetSGR.\ System.Console.ANSI.Windows.Emulator 4654 2 0.0 0.0 0.0 0.3
setConsoleTextAttribute System.Console.ANSI.Windows.Foreign 4682 2 0.0 0.0 0.0 0.0
hSetSGR.\.attribute' System.Console.ANSI.Windows.Emulator 4677 2 0.0 0.0 0.0 0.0
applyANSISGRToAttribute System.Console.ANSI.Windows.Emulator 4680 2 0.0 0.0 0.0 0.0
applyForegroundANSIColorToAttribute System.Console.ANSI.Windows.Emulator 4681 0 0.0 0.0 0.0 0.0
hSetSGR.\.attribute System.Console.ANSI.Windows.Emulator 4675 2 0.0 0.0 0.0 0.0
csbi_attributes System.Console.ANSI.Windows.Foreign 4676 2 0.0 0.0 0.0 0.0
getConsoleScreenBufferInfo System.Console.ANSI.Windows.Foreign 4655 2 0.0 0.0 0.0 0.2
getConsoleScreenBufferInfo.\ System.Console.ANSI.Windows.Foreign 4660 2 0.0 0.0 0.0 0.2
peek System.Console.ANSI.Windows.Foreign 4661 2 0.0 0.2 0.0 0.2
peek System.Console.ANSI.Windows.Foreign 4673 2 0.0 0.0 0.0 0.0
peek.ptr' System.Console.ANSI.Windows.Foreign 4674 2 0.0 0.0 0.0 0.0
peekAndOffset System.Console.ANSI.Windows.Foreign 4662 8 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4671 2 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4672 4 0.0 0.0 0.0 0.0
peek System.Console.ANSI.Windows.Foreign 4666 2 0.0 0.0 0.0 0.0
peek System.Console.ANSI.Windows.Foreign 4669 4 0.0 0.0 0.0 0.0
peek.ptr' System.Console.ANSI.Windows.Foreign 4670 4 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4668 4 0.0 0.0 0.0 0.0
peek.ptr' System.Console.ANSI.Windows.Foreign 4667 2 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4665 4 0.0 0.0 0.0 0.0
peek System.Console.ANSI.Windows.Foreign 4663 4 0.0 0.0 0.0 0.0
peek.ptr' System.Console.ANSI.Windows.Foreign 4664 4 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4656 2 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4658 2 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4659 4 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4657 6 0.0 0.0 0.0 0.0
withHandleToHANDLE.\ System.Console.ANSI.Windows.Foreign 4653 2 0.0 0.0 0.0 0.0
withHandleToHANDLE.write_handle_mvar System.Console.ANSI.Windows.Foreign 4652 2 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4642 0 0.0 0.1 0.0 0.1
stateHandle Test.Hspec.Core.Formatters.Internal 4649 1 0.0 0.0 0.0 0.0
stateUseColor Test.Hspec.Core.Formatters.Internal 4644 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4639 0 0.0 0.0 0.0 0.0
produceHTML Test.Hspec.Core.Formatters.Internal 4640 1 0.0 0.0 0.0 0.0
defaultFooter.c Test.Hspec.Core.Formatters 4634 1 0.0 0.0 0.0 0.0
getTotalCount Test.Hspec.Core.Formatters.Internal 4632 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4633 0 0.0 0.0 0.0 0.0
totalCount Test.Hspec.Core.Formatters.Internal 4688 1 0.0 0.0 0.0 0.0
failCount Test.Hspec.Core.Formatters.Internal 4692 1 0.0 0.0 0.0 0.0
pendingCount Test.Hspec.Core.Formatters.Internal 4691 1 0.0 0.0 0.0 0.0
successCount Test.Hspec.Core.Formatters.Internal 4689 1 0.0 0.0 0.0 0.0
getPendingCount Test.Hspec.Core.Formatters.Internal 4628 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4629 0 0.0 0.0 0.0 0.0
pendingCount Test.Hspec.Core.Formatters.Internal 4636 1 0.0 0.0 0.0 0.0
getFailCount Test.Hspec.Core.Formatters.Internal 4624 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4625 0 0.0 0.0 0.0 0.0
failCount Test.Hspec.Core.Formatters.Internal 4635 1 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4615 1 0.0 0.0 0.0 1.4
write Test.Hspec.Core.Formatters.Internal 4616 1 0.0 0.1 0.0 1.4
liftIO Test.Hspec.Core.Formatters.Internal 4618 0 0.0 1.2 0.0 1.2
gets Test.Hspec.Core.Formatters.Internal 4617 0 0.0 0.1 0.0 0.1
stateHandle Test.Hspec.Core.Formatters.Internal 4619 4 0.0 0.0 0.0 0.0
getCPUTime Test.Hspec.Core.Formatters.Internal 4609 0 0.0 0.1 0.0 0.1
gets Test.Hspec.Core.Formatters.Internal 4614 0 0.0 0.0 0.0 0.0
cpuStartTime Test.Hspec.Core.Formatters.Internal 4622 1 0.0 0.0 0.0 0.0
liftIO Test.Hspec.Core.Formatters.Internal 4611 0 0.0 0.0 0.0 0.0
getRealTime Test.Hspec.Core.Formatters.Internal 4601 0 0.0 0.2 0.0 0.3
gets Test.Hspec.Core.Formatters.Internal 4606 0 0.0 0.0 0.0 0.0
startTime Test.Hspec.Core.Formatters.Internal 4621 1 0.0 0.0 0.0 0.0
liftIO Test.Hspec.Core.Formatters.Internal 4603 0 0.0 0.1 0.0 0.1
applyDryRun Test.Hspec.Core.Runner 4247 1 0.0 0.0 0.0 0.0
configDryRun Test.Hspec.Options 4248 1 0.0 0.0 0.0 0.0
filterSpecs Test.Hspec.Core.Runner 4245 1 0.0 0.0 0.0 0.2
filterSpecs.go Test.Hspec.Core.Runner 4246 4 0.0 0.1 0.0 0.2
filterSpecs.goSpec Test.Hspec.Core.Runner 4253 6 0.0 0.1 0.0 0.1
filterSpecs.p Test.Hspec.Core.Runner 4267 3 0.0 0.0 0.0 0.0
filterSpecs.goSpecs Test.Hspec.Core.Runner 4262 3 0.0 0.0 0.0 0.0
runFormatter Test.Hspec.Core.Runner.Eval 4206 1 0.0 0.1 0.0 0.4
run Test.Hspec.Core.Runner.Eval 4326 0 0.0 0.0 0.0 0.0
run.queueSpec Test.Hspec.Core.Runner.Eval 4560 0 0.0 0.0 0.0 0.0
exampleGroupDone Test.Hspec.Core.Formatters.Internal 4561 1 0.0 0.0 0.0 0.0
configFastFail Test.Hspec.Options 4327 1 0.0 0.0 0.0 0.0
runFormatter.toEvalTree Test.Hspec.Core.Runner.Eval 4244 1 0.0 0.0 0.0 0.3
fmap Test.Hspec.Core.Tree 4279 6 0.0 0.2 0.0 0.3
runFormatter.toEvalTree.f Test.Hspec.Core.Runner.Eval 4283 3 0.0 0.1 0.0 0.1
parallelize Test.Hspec.Core.Runner.Eval 4290 3 0.0 0.0 0.0 0.0
runFormatter.mkReportProgress Test.Hspec.Core.Runner.Eval 4233 1 0.0 0.0 0.0 0.0
every Test.Hspec.Core.Runner.Eval 4234 1 0.0 0.0 0.0 0.0
headerFormatter Test.Hspec.Core.Formatters.Internal 4208 1 0.0 0.0 0.0 0.0
finally_ Test.Hspec.Core.Formatters.Internal 4203 1 0.0 0.0 0.0 0.0
runFormatM Test.Hspec.Core.Formatters.Internal 4199 1 0.0 0.0 0.0 0.0
hspecWithResult.withHiddenCursor Test.Hspec.Core.Runner 4176 1 0.0 0.0 25.0 18.3
hShowCursor System.Console.ANSI.Windows.Emulator 4825 1 0.0 0.0 0.0 0.2
withHandle System.Console.ANSI.Windows.Emulator 4827 1 0.0 0.0 0.0 0.0
emulatorFallback System.Console.ANSI.Windows.Emulator 4826 1 0.0 0.0 0.0 0.1
withHandle System.Console.ANSI.Windows.Emulator 4828 0 0.0 0.0 0.0 0.1
withHandleToHANDLE System.Console.ANSI.Windows.Foreign 4829 1 0.0 0.0 0.0 0.1
withStablePtr System.Console.ANSI.Windows.Foreign 4830 1 0.0 0.0 0.0 0.1
hShowCursor.\ System.Console.ANSI.Windows.Emulator 4833 1 0.0 0.0 0.0 0.0
hChangeCursorVisibility System.Console.ANSI.Windows.Emulator 4834 1 0.0 0.0 0.0 0.0
setConsoleCursorInfo System.Console.ANSI.Windows.Foreign 4841 1 0.0 0.0 0.0 0.0
setConsoleCursorInfo.\ System.Console.ANSI.Windows.Foreign 4846 1 0.0 0.0 0.0 0.0
poke System.Console.ANSI.Windows.Foreign 4844 1 0.0 0.0 0.0 0.0
pokeAndOffset System.Console.ANSI.Windows.Foreign 4845 1 0.0 0.0 0.0 0.0
alignment System.Console.ANSI.Windows.Foreign 4843 1 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4842 1 0.0 0.0 0.0 0.0
getConsoleCursorInfo System.Console.ANSI.Windows.Foreign 4835 1 0.0 0.0 0.0 0.0
getConsoleCursorInfo.\ System.Console.ANSI.Windows.Foreign 4838 1 0.0 0.0 0.0 0.0
peek System.Console.ANSI.Windows.Foreign 4839 1 0.0 0.0 0.0 0.0
peekAndOffset System.Console.ANSI.Windows.Foreign 4840 1 0.0 0.0 0.0 0.0
alignment System.Console.ANSI.Windows.Foreign 4837 1 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4836 1 0.0 0.0 0.0 0.0
withHandleToHANDLE.\ System.Console.ANSI.Windows.Foreign 4832 1 0.0 0.0 0.0 0.0
withHandleToHANDLE.write_handle_mvar System.Console.ANSI.Windows.Foreign 4831 1 0.0 0.0 0.0 0.0
runFormatM Test.Hspec.Core.Formatters.Internal 4200 0 0.0 0.1 25.0 17.9
finally_ Test.Hspec.Core.Formatters.Internal 4204 0 0.0 0.0 25.0 17.8
finally_.\ Test.Hspec.Core.Formatters.Internal 4205 1 0.0 0.0 25.0 17.8
defaultFailedFormatter Test.Hspec.Core.Formatters 4572 0 0.0 0.0 0.0 0.8
getFailMessages Test.Hspec.Core.Formatters.Internal 4586 0 0.0 0.0 0.0 0.1
gets Test.Hspec.Core.Formatters.Internal 4589 0 0.0 0.0 0.0 0.0
failMessages Test.Hspec.Core.Formatters.Internal 4590 1 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4575 0 0.0 0.0 0.0 0.7
write Test.Hspec.Core.Formatters.Internal 4579 0 0.0 0.0 0.0 0.7
liftIO Test.Hspec.Core.Formatters.Internal 4581 0 0.0 0.6 0.0 0.6
gets Test.Hspec.Core.Formatters.Internal 4580 0 0.0 0.1 0.0 0.1
stateHandle Test.Hspec.Core.Formatters.Internal 4582 2 0.0 0.0 0.0 0.0
runFormatter Test.Hspec.Core.Runner.Eval 4207 0 0.0 0.1 25.0 17.0
runFormatter.toEvalTree Test.Hspec.Core.Runner.Eval 4291 0 0.0 0.0 0.0 0.1
fmap Test.Hspec.Core.Tree 4292 0 0.0 0.0 0.0 0.1
runFormatter.toEvalTree.f Test.Hspec.Core.Runner.Eval 4293 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4357 0 0.0 0.0 0.0 0.0
it Test.Hspec.Core.Spec 4358 0 0.0 0.0 0.0 0.0
specItem Test.Hspec.Core.Tree 4359 0 0.0 0.0 0.0 0.0
evaluateExample Test.Hspec.Core.Example 4360 0 0.0 0.0 0.0 0.0
evaluateExample Test.Hspec.Core.Example 4361 3 0.0 0.0 0.0 0.0
parallelize Test.Hspec.Core.Runner.Eval 4294 0 0.0 0.0 0.0 0.0
runSequentially Test.Hspec.Core.Runner.Eval 4295 3 0.0 0.0 0.0 0.0
run Test.Hspec.Core.Runner.Eval 4242 1 0.0 0.1 25.0 14.3
processMessages Test.Hspec.Core.Runner.Eval 4304 1 0.0 0.0 25.0 12.7
processMessages.go Test.Hspec.Core.Runner.Eval 4305 1 0.0 0.0 25.0 12.7
processMessages.go.\ Test.Hspec.Core.Runner.Eval 4307 10 0.0 0.3 25.0 12.6
silent Test.Hspec.Core.Formatters 4564 0 0.0 0.0 0.0 0.0
getFailCount Test.Hspec.Core.Formatters.Internal 4324 0 0.0 0.0 0.0 0.3
gets Test.Hspec.Core.Formatters.Internal 4325 0 0.0 0.3 0.0 0.3
liftIO Test.Hspec.Core.Formatters.Internal 4311 0 0.0 0.3 25.0 12.0
run.queueSpec Test.Hspec.Core.Runner.Eval 4312 0 0.0 0.0 25.0 11.7
run.queueExample Test.Hspec.Core.Runner.Eval 4333 0 0.0 0.0 25.0 9.6
run.queueExample.formatResult Test.Hspec.Core.Runner.Eval 4395 3 0.0 0.0 0.0 4.5
specdoc.\ Test.Hspec.Core.Formatters 4408 0 0.0 0.0 0.0 4.3
writeLine Test.Hspec.Core.Formatters.Internal 4474 0 0.0 0.0 0.0 0.8
write Test.Hspec.Core.Formatters.Internal 4477 0 0.0 0.7 0.0 0.8
gets Test.Hspec.Core.Formatters.Internal 4478 0 0.0 0.1 0.0 0.1
stateHandle Test.Hspec.Core.Formatters.Internal 4479 3 0.0 0.0 0.0 0.0
withSuccessColor Test.Hspec.Core.Formatters.Internal 4409 0 0.0 0.0 0.0 3.6
withColor Test.Hspec.Core.Formatters.Internal 4410 0 0.0 0.0 0.0 3.6
withColor_ Test.Hspec.Core.Formatters.Internal 4416 3 0.0 0.2 0.0 3.4
withColor_.\ Test.Hspec.Core.Formatters.Internal 4425 3 0.0 0.2 0.0 3.1
writeLine Test.Hspec.Core.Formatters.Internal 4475 0 0.0 0.0 0.0 1.3
write Test.Hspec.Core.Formatters.Internal 4483 0 0.0 1.2 0.0 1.3
gets Test.Hspec.Core.Formatters.Internal 4484 0 0.0 0.1 0.0 0.1
stateHandle Test.Hspec.Core.Formatters.Internal 4485 3 0.0 0.0 0.0 0.0
hSetSGR System.Console.ANSI.Windows.Emulator 4427 6 0.0 0.2 0.0 1.6
withHandle System.Console.ANSI.Windows.Emulator 4429 6 0.0 0.0 0.0 0.0
emulatorFallback System.Console.ANSI.Windows.Emulator 4428 6 0.0 0.0 0.0 1.5
withHandle System.Console.ANSI.Windows.Emulator 4430 0 0.0 0.2 0.0 1.4
withHandleToHANDLE System.Console.ANSI.Windows.Foreign 4432 6 0.0 0.1 0.0 1.2
withStablePtr System.Console.ANSI.Windows.Foreign 4433 6 0.0 0.3 0.0 1.1
hSetSGR.\ System.Console.ANSI.Windows.Emulator 4436 6 0.0 0.0 0.0 0.8
setConsoleTextAttribute System.Console.ANSI.Windows.Foreign 4472 6 0.0 0.0 0.0 0.0
hSetSGR.\.attribute' System.Console.ANSI.Windows.Emulator 4461 6 0.0 0.0 0.0 0.1
applyANSISGRToAttribute System.Console.ANSI.Windows.Emulator 4464 6 0.0 0.0 0.0 0.1
applyForegroundANSIColorToAttribute System.Console.ANSI.Windows.Emulator 4466 0 0.0 0.0 0.0 0.0
hSetSGR.\.attribute System.Console.ANSI.Windows.Emulator 4459 6 0.0 0.0 0.0 0.0
csbi_attributes System.Console.ANSI.Windows.Foreign 4460 6 0.0 0.0 0.0 0.0
getConsoleScreenBufferInfo System.Console.ANSI.Windows.Foreign 4437 6 0.0 0.1 0.0 0.7
getConsoleScreenBufferInfo.\ System.Console.ANSI.Windows.Foreign 4444 6 0.0 0.0 0.0 0.6
peek System.Console.ANSI.Windows.Foreign 4445 6 0.0 0.5 0.0 0.6
peek System.Console.ANSI.Windows.Foreign 4457 6 0.0 0.0 0.0 0.0
peek.ptr' System.Console.ANSI.Windows.Foreign 4458 6 0.0 0.0 0.0 0.0
peekAndOffset System.Console.ANSI.Windows.Foreign 4446 24 0.0 0.0 0.0 0.1
sizeOf System.Console.ANSI.Windows.Foreign 4455 6 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4456 12 0.0 0.0 0.0 0.0
peek System.Console.ANSI.Windows.Foreign 4450 6 0.0 0.0 0.0 0.0
peek System.Console.ANSI.Windows.Foreign 4453 12 0.0 0.0 0.0 0.0
peek.ptr' System.Console.ANSI.Windows.Foreign 4454 12 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4452 12 0.0 0.0 0.0 0.0
peek.ptr' System.Console.ANSI.Windows.Foreign 4451 6 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4449 12 0.0 0.0 0.0 0.0
peek System.Console.ANSI.Windows.Foreign 4447 12 0.0 0.0 0.0 0.0
peek.ptr' System.Console.ANSI.Windows.Foreign 4448 12 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4438 6 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4440 6 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4441 12 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4439 18 0.0 0.0 0.0 0.0
withHandleToHANDLE.\ System.Console.ANSI.Windows.Foreign 4435 6 0.0 0.0 0.0 0.0
withHandleToHANDLE.write_handle_mvar System.Console.ANSI.Windows.Foreign 4434 6 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4421 0 0.0 0.2 0.0 0.2
stateHandle Test.Hspec.Core.Formatters.Internal 4431 3 0.0 0.0 0.0 0.0
stateUseColor Test.Hspec.Core.Formatters.Internal 4426 3 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4413 0 0.0 0.1 0.0 0.1
produceHTML Test.Hspec.Core.Formatters.Internal 4414 3 0.0 0.0 0.0 0.0
increaseSuccessCount Test.Hspec.Core.Formatters.Internal 4399 0 0.0 0.0 0.0 0.1
modify Test.Hspec.Core.Formatters.Internal 4400 0 0.0 0.1 0.0 0.1
increaseSuccessCount.\ Test.Hspec.Core.Formatters.Internal 4401 3 0.0 0.0 0.0 0.0
successCount Test.Hspec.Core.Formatters.Internal 4690 3 0.0 0.0 0.0 0.0
runFormatter.toEvalTree Test.Hspec.Core.Runner.Eval 4334 0 0.0 0.0 25.0 5.2
fmap Test.Hspec.Core.Tree 4335 0 0.0 0.0 25.0 5.2
runFormatter.toEvalTree.f Test.Hspec.Core.Runner.Eval 4336 0 0.0 0.0 25.0 5.2
spec FRP.SemanticsSpec 4362 0 0.0 0.0 25.0 4.0
ppputStrLn FRP.Pretty 4370 0 12.5 1.1 25.0 3.2
ppshow FRP.Pretty 4372 0 0.0 1.7 12.5 2.1
ppr FRP.AST 4373 11 12.5 0.2 12.5 0.4
ppr FRP.AST 4499 1 0.0 0.0 0.0 0.0
ppr.prns FRP.AST 4492 2 0.0 0.0 0.0 0.0
ppr FRP.AST 4392 4 0.0 0.1 0.0 0.1
it Test.Hspec.Core.Spec 4363 0 0.0 0.0 0.0 0.8
specItem Test.Hspec.Core.Tree 4364 0 0.0 0.0 0.0 0.8
evaluateExample Test.Hspec.Core.Example 4365 0 0.0 0.0 0.0 0.8
evaluateExample.\ Test.Hspec.Core.Example 4367 3 0.0 0.0 0.0 0.0
evaluateExample Test.Hspec.Core.Example 4366 0 0.0 0.8 0.0 0.8
parallelize Test.Hspec.Core.Runner.Eval 4337 0 0.0 0.0 0.0 1.1
runSequentially Test.Hspec.Core.Runner.Eval 4338 0 0.0 0.0 0.0 1.1
evalExample Test.Hspec.Core.Runner.Eval 4344 0 0.0 0.0 0.0 1.1
safeTry Test.Hspec.Core.Util 4345 0 0.0 0.0 0.0 1.1
evalExample.forceResult Test.Hspec.Core.Runner.Eval 4393 3 0.0 0.0 0.0 0.0
withAsync Control.Concurrent.Async 4346 0 0.0 0.0 0.0 1.1
withAsyncUsing Control.Concurrent.Async 4347 0 0.0 0.0 0.0 1.1
withAsyncUsing.\ Control.Concurrent.Async 4348 0 0.0 0.1 0.0 1.1
withAsyncUsing.\.\ Control.Concurrent.Async 4350 3 0.0 0.9 0.0 1.0
putTMVar Control.Concurrent.STM.TMVar 4394 3 0.0 0.0 0.0 0.0
withAsyncUsing.\.\.a Control.Concurrent.Async 4352 3 0.0 0.0 0.0 0.0
readTMVar Control.Concurrent.STM.TMVar 4353 3 0.0 0.0 0.0 0.0
catchAll Control.Concurrent.Async 4351 0 0.0 0.1 0.0 0.1
withAsyncUsing.\.\.a Control.Concurrent.Async 4354 0 0.0 0.0 0.0 0.0
readTMVar Control.Concurrent.STM.TMVar 4355 0 0.0 0.0 0.0 0.0
newEmptyTMVarIO Control.Concurrent.STM.TMVar 4349 0 0.0 0.0 0.0 0.0
specdoc.\ Test.Hspec.Core.Formatters 4313 0 0.0 0.0 0.0 2.1
writeLine Test.Hspec.Core.Formatters.Internal 4314 0 0.0 0.0 0.0 2.1
write Test.Hspec.Core.Formatters.Internal 4316 0 0.0 1.9 0.0 2.1
gets Test.Hspec.Core.Formatters.Internal 4317 0 0.0 0.2 0.0 0.2
stateHandle Test.Hspec.Core.Formatters.Internal 4318 6 0.0 0.0 0.0 0.0
liftIO Test.Hspec.Core.Formatters.Internal 4306 0 0.0 0.0 0.0 0.0
run.queueSpec Test.Hspec.Core.Runner.Eval 4303 0 0.0 0.0 0.0 0.0
run.defer Test.Hspec.Core.Runner.Eval 4280 1 0.0 0.0 0.0 0.0
liftIO Test.Hspec.Core.Formatters.Internal 4243 0 0.0 0.0 0.0 1.6
run.queueSpec Test.Hspec.Core.Runner.Eval 4278 6 0.0 0.1 0.0 1.5
specdoc.\ Test.Hspec.Core.Formatters 4309 3 0.0 0.1 0.0 0.2
specdoc.indentationFor Test.Hspec.Core.Formatters 4319 3 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4310 3 0.0 0.0 0.0 0.1
write Test.Hspec.Core.Formatters.Internal 4315 3 0.0 0.0 0.0 0.0
exampleGroupStarted Test.Hspec.Core.Formatters.Internal 4308 3 0.0 0.0 0.0 0.0
run.queueExample Test.Hspec.Core.Runner.Eval 4282 3 0.0 0.1 0.0 1.0
run.queueExample.path Test.Hspec.Core.Runner.Eval 4403 3 0.0 0.0 0.0 0.0
run.queueExample.formatResult Test.Hspec.Core.Runner.Eval 4396 0 0.0 0.0 0.0 0.7
specdoc.\ Test.Hspec.Core.Formatters 4404 3 0.0 0.3 0.0 0.6
specdoc.indentationFor Test.Hspec.Core.Formatters 4480 3 0.0 0.2 0.0 0.2
writeLine Test.Hspec.Core.Formatters.Internal 4473 3 0.0 0.0 0.0 0.1
write Test.Hspec.Core.Formatters.Internal 4476 3 0.0 0.0 0.0 0.0
withSuccessColor Test.Hspec.Core.Formatters.Internal 4406 0 0.0 0.1 0.0 0.1
withColor Test.Hspec.Core.Formatters.Internal 4407 3 0.0 0.0 0.0 0.1
withColor_ Test.Hspec.Core.Formatters.Internal 4417 0 0.0 0.0 0.0 0.0
exampleSucceeded Test.Hspec.Core.Formatters.Internal 4402 3 0.0 0.0 0.0 0.0
run.defer Test.Hspec.Core.Runner.Eval 4300 0 0.0 0.1 0.0 0.1
runFormatter.toEvalTree Test.Hspec.Core.Runner.Eval 4296 0 0.0 0.0 0.0 0.2
fmap Test.Hspec.Core.Tree 4297 0 0.0 0.0 0.0 0.2
runFormatter.toEvalTree.f Test.Hspec.Core.Runner.Eval 4298 0 0.0 0.0 0.0 0.2
parallelize Test.Hspec.Core.Runner.Eval 4299 0 0.0 0.0 0.0 0.2
runSequentially Test.Hspec.Core.Runner.Eval 4332 0 0.0 0.1 0.0 0.1
evalExample Test.Hspec.Core.Runner.Eval 4339 3 0.0 0.0 0.0 0.0
safeTry Test.Hspec.Core.Util 4340 3 0.0 0.0 0.0 0.0
withAsync Control.Concurrent.Async 4341 0 0.0 0.0 0.0 0.0
withAsyncUsing Control.Concurrent.Async 4342 0 0.0 0.0 0.0 0.0
withAsyncUsing.\ Control.Concurrent.Async 4343 3 0.0 0.0 0.0 0.0
run.defer Test.Hspec.Core.Runner.Eval 4281 0 0.0 0.2 0.0 0.2
runFormatter.mkReportProgress Test.Hspec.Core.Runner.Eval 4235 0 0.0 0.0 0.0 0.0
every Test.Hspec.Core.Runner.Eval 4236 0 0.0 0.0 0.0 0.0
newTimer Test.Hspec.Timer 4241 0 0.0 0.0 0.0 0.0
liftIO Test.Hspec.Core.Formatters.Internal 4232 0 0.0 0.0 0.0 0.0
specdoc Test.Hspec.Core.Formatters 4215 0 0.0 0.0 0.0 2.5
writeLine Test.Hspec.Core.Formatters.Internal 4216 0 0.0 0.0 0.0 2.5
write Test.Hspec.Core.Formatters.Internal 4221 0 0.0 0.1 0.0 2.5
liftIO Test.Hspec.Core.Formatters.Internal 4226 0 0.0 2.3 0.0 2.3
gets Test.Hspec.Core.Formatters.Internal 4224 0 0.0 0.1 0.0 0.1
stateHandle Test.Hspec.Core.Formatters.Internal 4227 2 0.0 0.0 0.0 0.0
hHideCursor System.Console.ANSI.Windows.Emulator 4177 1 0.0 0.0 0.0 0.2
withHandle System.Console.ANSI.Windows.Emulator 4179 1 0.0 0.0 0.0 0.0
emulatorFallback System.Console.ANSI.Windows.Emulator 4178 1 0.0 0.0 0.0 0.2
withHandle System.Console.ANSI.Windows.Emulator 4180 0 0.0 0.0 0.0 0.1
withHandleToHANDLE System.Console.ANSI.Windows.Foreign 4181 1 0.0 0.0 0.0 0.1
withStablePtr System.Console.ANSI.Windows.Foreign 4182 1 0.0 0.0 0.0 0.1
hHideCursor.\ System.Console.ANSI.Windows.Emulator 4185 1 0.0 0.0 0.0 0.0
hChangeCursorVisibility System.Console.ANSI.Windows.Emulator 4186 1 0.0 0.0 0.0 0.0
setConsoleCursorInfo System.Console.ANSI.Windows.Foreign 4193 1 0.0 0.0 0.0 0.0
setConsoleCursorInfo.\ System.Console.ANSI.Windows.Foreign 4198 1 0.0 0.0 0.0 0.0
poke System.Console.ANSI.Windows.Foreign 4196 1 0.0 0.0 0.0 0.0
pokeAndOffset System.Console.ANSI.Windows.Foreign 4197 1 0.0 0.0 0.0 0.0
alignment System.Console.ANSI.Windows.Foreign 4195 1 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4194 1 0.0 0.0 0.0 0.0
getConsoleCursorInfo System.Console.ANSI.Windows.Foreign 4187 1 0.0 0.0 0.0 0.0
getConsoleCursorInfo.\ System.Console.ANSI.Windows.Foreign 4190 1 0.0 0.0 0.0 0.0
peek System.Console.ANSI.Windows.Foreign 4191 1 0.0 0.0 0.0 0.0
peekAndOffset System.Console.ANSI.Windows.Foreign 4192 1 0.0 0.0 0.0 0.0
alignment System.Console.ANSI.Windows.Foreign 4189 1 0.0 0.0 0.0 0.0
sizeOf System.Console.ANSI.Windows.Foreign 4188 1 0.0 0.0 0.0 0.0
withHandleToHANDLE.\ System.Console.ANSI.Windows.Foreign 4184 1 0.0 0.0 0.0 0.0
withHandleToHANDLE.write_handle_mvar System.Console.ANSI.Windows.Foreign 4183 1 0.0 0.0 0.0 0.0
runSpecM Test.Hspec.Core.Spec.Monad 4100 1 0.0 0.0 37.5 20.6
>> Test.Hspec.Core.Spec.Monad 4155 0 0.0 0.2 0.0 0.2
spec FRP.SemanticsSpec 4144 0 0.0 0.0 0.0 0.2
describe Test.Hspec.Core.Spec 4145 0 0.0 0.0 0.0 0.2
specGroup Test.Hspec.Core.Tree 4264 0 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad 4171 0 0.0 0.0 0.0 0.0
runIO Test.Hspec.Core.Spec.Monad 4147 0 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Spec.Monad 4146 0 0.0 0.1 0.0 0.1
spec Main 4106 0 0.0 0.0 37.5 20.2
describe Test.Hspec.Core.Spec 4137 0 0.0 0.0 0.0 0.1
specGroup Test.Hspec.Core.Tree 4261 0 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad 4173 0 0.0 0.0 0.0 0.0
runIO Test.Hspec.Core.Spec.Monad 4139 0 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Spec.Monad 4138 0 0.0 0.1 0.0 0.1
locationHeuristicFromFile Test.Hspec.Discover 4107 0 0.0 0.0 37.5 20.1
addLoctions Test.Hspec.Discover 4249 1 0.0 0.0 0.0 0.0
safeTry Test.Hspec.Core.Util 4118 0 37.5 16.1 37.5 16.7
withAsync Control.Concurrent.Async 4119 0 0.0 0.0 0.0 0.6
withAsyncUsing Control.Concurrent.Async 4120 0 0.0 0.0 0.0 0.6
withAsyncUsing.\ Control.Concurrent.Async 4121 0 0.0 0.0 0.0 0.6
withAsyncUsing.\.\ Control.Concurrent.Async 4124 1 0.0 0.4 0.0 0.6
putTMVar Control.Concurrent.STM.TMVar 4132 1 0.0 0.0 0.0 0.0
withAsyncUsing.\.\.a Control.Concurrent.Async 4127 1 0.0 0.0 0.0 0.0
readTMVar Control.Concurrent.STM.TMVar 4128 1 0.0 0.0 0.0 0.0
catchAll Control.Concurrent.Async 4126 0 0.0 0.1 0.0 0.2
withAsyncUsing.\.\.a Control.Concurrent.Async 4129 0 0.0 0.0 0.0 0.0
readTMVar Control.Concurrent.STM.TMVar 4130 0 0.0 0.0 0.0 0.0
newEmptyTMVarIO Control.Concurrent.STM.TMVar 4123 0 0.0 0.0 0.0 0.0
runIO Test.Hspec.Core.Spec.Monad 4111 0 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Spec.Monad 4108 0 0.0 0.1 0.0 3.3
addLoctions Test.Hspec.Discover 4250 0 0.0 0.1 0.0 3.2
addLoctions.f Test.Hspec.Discover 4289 3 0.0 0.0 0.0 0.0
fmap Test.Hspec.Core.Tree 4254 6 0.0 0.2 0.0 0.2
enumerate Test.Hspec.Discover 4251 1 0.0 0.2 0.0 2.9
fmap Test.Hspec.Core.Tree 4259 12 0.0 0.3 0.0 0.4
enumerate.addTotal Test.Hspec.Discover 4287 3 0.0 0.1 0.0 0.1
enumerate.addPosition Test.Hspec.Discover 4284 3 0.0 0.0 0.0 0.0
sequenceA Test.Hspec.Core.Tree 4257 1 0.0 0.0 0.0 2.3
sequenceA.go Test.Hspec.Core.Tree 4258 12 0.0 2.1 0.0 2.3
fmap Test.Hspec.Core.Tree 4285 0 0.0 0.0 0.0 0.2
enumerate.addTotal Test.Hspec.Discover 4288 0 0.0 0.1 0.0 0.1
enumerate.addPosition Test.Hspec.Discover 4286 0 0.0 0.1 0.0 0.1
fromSpecList Test.Hspec.Core.Spec.Monad 4175 0 0.0 0.0 0.0 0.0
hspecWithResult.doesUseColor Test.Hspec.Core.Runner 4092 1 0.0 0.0 0.0 0.0
configConcurrentJobs Test.Hspec.Options 4090 1 0.0 0.0 0.0 0.0
configOutputFile Test.Hspec.Options 4088 1 0.0 0.0 0.0 0.0
ensureSeed Test.Hspec.Core.Runner 4070 1 0.0 0.1 0.0 0.6
newSeed Test.Hspec.Core.QuickCheckUtil 4076 0 0.0 0.0 0.0 0.5
randomR System.Random 4731 0 0.0 0.0 0.0 0.3
randomIvalIntegral System.Random 4732 0 0.0 0.0 0.0 0.3
randomIvalInteger System.Random 4733 1 0.0 0.1 0.0 0.3
randomIvalInteger.b System.Random 4783 1 0.0 0.0 0.0 0.0
randomIvalInteger.genhi System.Random 4782 1 0.0 0.0 0.0 0.0
randomIvalInteger.(...) System.Random 4779 1 0.0 0.0 0.0 0.0
genRange Test.QuickCheck.Random 4780 1 0.0 0.0 0.0 0.0
genRange System.Random.TF.Gen 4781 1 0.0 0.0 0.0 0.0
randomIvalInteger.genlo System.Random 4778 1 0.0 0.0 0.0 0.0
randomIvalInteger.f System.Random 4738 3 0.0 0.0 0.0 0.2
randomIvalInteger.f.g' System.Random 4784 1 0.0 0.0 0.0 0.0
randomIvalInteger.f.(...) System.Random 4741 2 0.0 0.0 0.0 0.2
next Test.QuickCheck.Random 4742 2 0.0 0.0 0.0 0.2
next.g' Test.QuickCheck.Random 4785 1 0.0 0.0 0.0 0.0
next.(...) Test.QuickCheck.Random 4744 2 0.0 0.0 0.0 0.1
tfGenNext' System.Random.TF.Gen 4765 2 0.0 0.1 0.0 0.1
tfGenNext'.g' System.Random.TF.Gen 4786 1 0.0 0.0 0.0 0.0
tfGenNext'.(...) System.Random.TF.Gen 4768 2 0.0 0.0 0.0 0.0
extract System.Random.TF.Gen 4769 2 0.0 0.0 0.0 0.0
indexByteArray# Data.Primitive.Types 4777 2 0.0 0.0 0.0 0.0
tfGenNext'.val System.Random.TF.Gen 4767 2 0.0 0.0 0.0 0.0
tfGenNext'.val' System.Random.TF.Gen 4766 2 0.0 0.0 0.0 0.0
next.x Test.QuickCheck.Random 4743 2 0.0 0.0 0.0 0.0
randomIvalInteger.f.x System.Random 4740 2 0.0 0.0 0.0 0.0
randomIvalInteger.f.v' System.Random 4739 2 0.0 0.0 0.0 0.0
randomIvalInteger.magtgt System.Random 4735 1 0.0 0.0 0.0 0.0
randomIvalInteger.k System.Random 4734 1 0.0 0.0 0.0 0.0
newQCGen Test.QuickCheck.Random 4078 0 0.0 0.0 0.0 0.2
newTFGen System.Random.TF.Init 4081 0 0.0 0.0 0.0 0.2
tfGenSplit System.Random.TF.Gen 4760 1 0.0 0.0 0.0 0.2
tfGenSplit.bi' System.Random.TF.Gen 4764 1 0.0 0.0 0.0 0.0
mkTFGen System.Random.TF.Gen 4763 1 0.0 0.0 0.0 0.1
mash System.Random.TF.Gen 4770 1 0.0 0.0 0.0 0.1
primitive Control.Monad.Primitive 4776 1 0.0 0.0 0.0 0.0
createBlock256 System.Random.TF.Gen 4771 1 0.0 0.1 0.0 0.1
writeByteArray# Data.Primitive.Types 4773 4 0.0 0.0 0.0 0.0
primitive Control.Monad.Primitive 4772 5 0.0 0.0 0.0 0.0
tfGenSplit.b'' System.Random.TF.Gen 4762 1 0.0 0.0 0.0 0.0
tfGenSplit.maxb System.Random.TF.Gen 4761 1 0.0 0.0 0.0 0.0
configQuickCheckSeed Test.Hspec.Options 4071 1 0.0 0.0 0.0 0.0
getConfig Test.Hspec.Config 4066 1 0.0 0.1 0.0 0.1
mkConfig Test.Hspec.Config 4072 1 0.0 0.0 0.0 0.0
mkConfig.mMaxDiscardRatio Test.Hspec.Config 4806 1 0.0 0.0 0.0 0.0
configQuickCheckMaxDiscardRatio Test.Hspec.Options 4807 1 0.0 0.0 0.0 0.0
mkConfig.mMaxSize Test.Hspec.Config 4803 1 0.0 0.0 0.0 0.0
configQuickCheckMaxSize Test.Hspec.Options 4804 1 0.0 0.0 0.0 0.0
mkConfig.mMaxSuccess Test.Hspec.Config 4795 1 0.0 0.0 0.0 0.0
configQuickCheckMaxSuccess Test.Hspec.Options 4796 1 0.0 0.0 0.0 0.0
filterOr Test.Hspec.Options 4276 1 0.0 0.0 0.0 0.0
mkConfig.rerunFilter Test.Hspec.Config 4275 1 0.0 0.0 0.0 0.0
mkConfig.matchFilter Test.Hspec.Config 4273 1 0.0 0.0 0.0 0.0
configFilterPredicate Test.Hspec.Options 4274 1 0.0 0.0 0.0 0.0
mkConfig.mSeed Test.Hspec.Config 4073 1 0.0 0.0 0.0 0.0
configQuickCheckSeed Test.Hspec.Options 4074 1 0.0 0.0 0.0 0.0
configRerun Test.Hspec.Options 4068 1 0.0 0.0 0.0 0.0
parseOptions Test.Hspec.Options 4067 1 0.0 0.0 0.0 0.0
CAF GHC.IO.Encoding.CodePage 4047 0 0.0 0.0 0.0 0.0
CAF GHC.Conc.Windows 4039 0 0.0 0.0 0.0 0.0
CAF System.Environment 4035 0 0.0 0.2 0.0 0.2
CAF System.CPUTime 4033 0 0.0 0.0 0.0 0.0
CAF GHC.IO.Handle.Text 4030 0 0.0 0.0 0.0 0.0
CAF GHC.IO.FD 4029 0 0.0 0.0 0.0 0.0
CAF GHC.Float 4027 0 0.0 9.8 0.0 9.8
CAF Text.Read.Lex 4022 0 0.0 0.1 0.0 0.1
CAF Text.Printf 4021 0 0.0 0.5 0.0 0.5
CAF GHC.IO.Handle.FD 4012 0 0.0 7.4 0.0 7.4
CAF GHC.IO.Encoding 4009 0 0.0 0.0 0.0 0.0
CAF Data.Time.Clock.POSIX 3980 0 0.0 0.1 0.0 0.1
CAF:q_rhT6 System.Random 3829 0 0.0 0.0 0.0 0.0
randomIvalInteger System.Random 4736 0 0.0 0.0 0.0 0.0
randomIvalInteger.q System.Random 4737 1 0.0 0.0 0.0 0.0
CAF:newTFGen1 System.Random.TF.Init 3748 0 0.0 0.0 0.0 0.0
newTFGen System.Random.TF.Init 4080 1 0.0 0.0 0.0 0.0
CAF:theTFGen System.Random.TF.Init 3747 0 0.0 0.0 12.5 0.5
theTFGen System.Random.TF.Init 4082 1 0.0 0.0 12.5 0.5
initTFGen System.Random.TF.Init 4084 0 0.0 0.0 12.5 0.5
seedTFGen System.Random.TF.Gen 4753 1 0.0 0.0 12.5 0.1
mkTFGen System.Random.TF.Gen 4759 1 0.0 0.0 0.0 0.0
createBlock256 System.Random.TF.Gen 4754 1 12.5 0.1 12.5 0.1
writeByteArray# Data.Primitive.Types 4758 4 0.0 0.0 0.0 0.0
primitive Control.Monad.Primitive 4757 5 0.0 0.0 0.0 0.0
mkSeedTime System.Random.TF.Init 4086 0 0.0 0.4 0.0 0.4
mkSeedTime.c1 System.Random.TF.Init 4752 1 0.0 0.0 0.0 0.0
mkSeedTime.d1 System.Random.TF.Init 4751 1 0.0 0.0 0.0 0.0
mkSeedTime.day System.Random.TF.Init 4750 1 0.0 0.0 0.0 0.0
mkSeedTime.t2 System.Random.TF.Init 4749 1 0.0 0.0 0.0 0.0
mkSeedTime.daytime System.Random.TF.Init 4748 1 0.0 0.0 0.0 0.0
mkSeedTime.t1 System.Random.TF.Init 4747 1 0.0 0.0 0.0 0.0
CAF:initTFGen1 System.Random.TF.Init 3745 0 0.0 0.0 0.0 0.0
initTFGen System.Random.TF.Init 4083 1 0.0 0.0 0.0 0.0
CAF:initTFGen2 System.Random.TF.Init 3743 0 0.0 0.0 0.0 0.0
mkSeedTime System.Random.TF.Init 4085 1 0.0 0.0 0.0 0.0
CAF:$fRandomGenTFGen0_$cnext System.Random.TF.Gen 3733 0 0.0 0.0 0.0 0.0
next System.Random.TF.Gen 4745 1 0.0 0.0 0.0 0.0
CAF:$fRandomGenTFGen_$csplit System.Random.TF.Gen 3724 0 0.0 0.0 0.0 0.0
split System.Random.TF.Gen 4746 1 0.0 0.0 0.0 0.0
CAF:$fRandomGenTFGen3 System.Random.TF.Gen 3715 0 0.0 0.0 0.0 0.0
mash System.Random.TF.Gen 4774 0 0.0 0.0 0.0 0.0
primitive Control.Monad.Primitive 4775 1 0.0 0.0 0.0 0.0
CAF:$fRandomGenTFGen5 System.Random.TF.Gen 3714 0 0.0 0.0 0.0 0.0
createBlock256 System.Random.TF.Gen 4755 0 0.0 0.0 0.0 0.0
primitive Control.Monad.Primitive 4756 1 0.0 0.0 0.0 0.0
CAF:newQCGen1 Test.QuickCheck.Random 3487 0 0.0 0.0 0.0 0.0
newQCGen Test.QuickCheck.Random 4077 1 0.0 0.0 0.0 0.0
CAF:newQCGen2 Test.QuickCheck.Random 3484 0 0.0 0.0 0.0 0.0
newTheGen Test.QuickCheck.Random 4079 1 0.0 0.0 0.0 0.0
CAF:stdArgs Test.QuickCheck.Test 3433 0 0.0 0.0 0.0 0.0
stdArgs Test.QuickCheck.Test 4801 1 0.0 0.0 0.0 0.0
CAF:fOREGROUND_WHITE System.Console.ANSI.Windows.Foreign 3254 0 0.0 0.0 0.0 0.0
fOREGROUND_WHITE System.Console.ANSI.Windows.Foreign 4486 1 0.0 0.0 0.0 0.0
CAF:fOREGROUND_WHITE1 System.Console.ANSI.Windows.Foreign 3253 0 0.0 0.0 0.0 0.0
fOREGROUND_WHITE System.Console.ANSI.Windows.Foreign 4487 0 0.0 0.0 0.0 0.0
CAF:fOREGROUND_BLUE System.Console.ANSI.Windows.Foreign 3252 0 0.0 0.0 0.0 0.0
fOREGROUND_BLUE System.Console.ANSI.Windows.Foreign 4471 1 0.0 0.0 0.0 0.0
CAF:fOREGROUND_GREEN System.Console.ANSI.Windows.Foreign 3251 0 0.0 0.0 0.0 0.0
fOREGROUND_GREEN System.Console.ANSI.Windows.Foreign 4470 1 0.0 0.0 0.0 0.0
CAF:fOREGROUND_RED System.Console.ANSI.Windows.Foreign 3250 0 0.0 0.0 0.0 0.0
fOREGROUND_RED System.Console.ANSI.Windows.Foreign 4469 1 0.0 0.0 0.0 0.0
CAF:fOREGROUND_INTENSITY System.Console.ANSI.Windows.Foreign 3249 0 0.0 0.0 0.0 0.0
fOREGROUND_INTENSITY System.Console.ANSI.Windows.Foreign 4468 1 0.0 0.0 0.0 0.0
CAF:withHandleToHANDLE3 System.Console.ANSI.Windows.Foreign 3229 0 0.0 0.1 0.0 0.1
CAF:getConsoleScreenBufferInfo3 System.Console.ANSI.Windows.Foreign 3216 0 0.0 0.0 0.0 0.0
alignment System.Console.ANSI.Windows.Foreign 4442 1 0.0 0.0 0.0 0.0
alignment System.Console.ANSI.Windows.Foreign 4443 1 0.0 0.0 0.0 0.0
CAF:lvl2_rEIa System.Console.ANSI.Windows.Emulator 3103 0 0.0 0.0 0.0 0.0
applyANSISGRToAttribute System.Console.ANSI.Windows.Emulator 4467 0 0.0 0.0 0.0 0.0
CAF:applyForegroundANSIColorToAttribute_rCP8 System.Console.ANSI.Windows.Emulator 3101 0 0.0 0.0 0.0 0.0
applyForegroundANSIColorToAttribute System.Console.ANSI.Windows.Emulator 4465 1 0.0 0.0 0.0 0.0
CAF:newEmptyTMVarIO1 Control.Concurrent.STM.TMVar 2882 0 0.0 0.0 0.0 0.0
newEmptyTMVarIO Control.Concurrent.STM.TMVar 4122 1 0.0 0.0 0.0 0.0
CAF:withAsync1 Control.Concurrent.Async 2867 0 0.0 0.0 0.0 0.0
withAsync Control.Concurrent.Async 4113 1 0.0 0.0 0.0 0.0
withAsyncUsing Control.Concurrent.Async 4114 1 0.0 0.0 0.0 0.0
CAF:catchAll Control.Concurrent.Async 2847 0 0.0 0.0 0.0 0.0
catchAll Control.Concurrent.Async 4125 1 0.0 0.0 0.0 0.0
CAF:defaultConfig Test.Hspec.Options 2722 0 0.0 0.0 0.0 0.0
defaultConfig Test.Hspec.Options 4069 1 0.0 0.0 0.0 0.0
CAF:lvl7_rt7K Test.Hspec.FailureReport 2694 0 0.0 0.0 0.0 0.0
showsPrec Test.Hspec.FailureReport 4815 0 0.0 0.0 0.0 0.0
CAF:lvl6_rt7J Test.Hspec.FailureReport 2693 0 0.0 0.0 0.0 0.3
showsPrec Test.Hspec.FailureReport 4813 0 0.0 0.3 0.0 0.3
CAF:lvl5_rt7I Test.Hspec.FailureReport 2692 0 0.0 0.0 0.0 0.5
showsPrec Test.Hspec.FailureReport 4811 0 0.0 0.5 0.0 0.5
CAF:lvl4_rt7H Test.Hspec.FailureReport 2691 0 0.0 0.0 0.0 0.4
showsPrec Test.Hspec.FailureReport 4809 0 0.0 0.4 0.0 0.4
CAF:lvl3_rt7G Test.Hspec.FailureReport 2690 0 0.0 0.0 0.0 0.4
showsPrec Test.Hspec.FailureReport 4788 0 0.0 0.4 0.0 0.4
CAF:lvl2_rt7F Test.Hspec.FailureReport 2689 0 0.0 0.0 0.0 0.0
showsPrec Test.Hspec.FailureReport 4787 0 0.0 0.0 0.0 0.0
CAF:lvl1_rt7E Test.Hspec.FailureReport 2688 0 0.0 0.0 0.0 0.3
showsPrec Test.Hspec.FailureReport 4723 0 0.0 0.3 0.0 0.3
CAF:lvl_rt7D Test.Hspec.FailureReport 2687 0 0.0 0.0 0.0 0.2
showsPrec Test.Hspec.FailureReport 4722 0 0.0 0.2 0.0 0.2
CAF:writeFailureReport4 Test.Hspec.FailureReport 2683 0 0.0 0.0 0.0 0.2
writeFailureReport Test.Hspec.FailureReport 4720 0 0.0 0.2 0.0 0.2
CAF:mapSpecItem3 Test.Hspec.Core.Spec.Monad 2658 0 0.0 0.0 0.0 0.0
runIO Test.Hspec.Core.Spec.Monad 4110 1 0.0 0.0 0.0 0.0
CAF:fromSpecList1 Test.Hspec.Core.Spec.Monad 2656 0 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad 4158 1 0.0 0.0 0.0 0.0
CAF:$fFunctorSpecM2 Test.Hspec.Core.Spec.Monad 2654 0 0.0 0.0 0.0 0.0
fmap Test.Hspec.Core.Spec.Monad 4109 1 0.0 0.0 0.0 0.0
CAF:$fMonadSpecM4 Test.Hspec.Core.Spec.Monad 2642 0 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Spec.Monad 4104 1 0.0 0.0 0.0 0.0
CAF:$fMonadSpecM3 Test.Hspec.Core.Spec.Monad 2640 0 0.0 0.0 0.0 0.1
>> Test.Hspec.Core.Spec.Monad 4154 1 0.0 0.1 0.0 0.1
CAF:lvl8_rM2j Test.Hspec.Core.Runner.Eval 2634 0 0.0 0.0 0.0 0.0
runFormatter Test.Hspec.Core.Runner.Eval 4565 0 0.0 0.0 0.0 0.0
run Test.Hspec.Core.Runner.Eval 4566 0 0.0 0.0 0.0 0.0
processMessages Test.Hspec.Core.Runner.Eval 4567 0 0.0 0.0 0.0 0.0
processMessages.go Test.Hspec.Core.Runner.Eval 4568 0 0.0 0.0 0.0 0.0
processMessages.go.\ Test.Hspec.Core.Runner.Eval 4569 0 0.0 0.0 0.0 0.0
CAF:lvl7_rM2h Test.Hspec.Core.Runner.Eval 2632 0 0.0 0.0 0.0 0.0
runFormatter Test.Hspec.Core.Runner.Eval 4231 0 0.0 0.0 0.0 0.0
CAF:lvl6_rM2g Test.Hspec.Core.Runner.Eval 2631 0 0.0 0.0 0.0 0.0
runFormatter Test.Hspec.Core.Runner.Eval 4237 0 0.0 0.0 0.0 0.0
runFormatter.mkReportProgress Test.Hspec.Core.Runner.Eval 4238 0 0.0 0.0 0.0 0.0
every Test.Hspec.Core.Runner.Eval 4239 0 0.0 0.0 0.0 0.0
newTimer Test.Hspec.Timer 4240 1 0.0 0.0 0.0 0.0
CAF:newSeed1 Test.Hspec.Core.QuickCheckUtil 2628 0 0.0 0.0 0.0 0.0
newSeed Test.Hspec.Core.QuickCheckUtil 4075 1 0.0 0.0 0.0 0.0
CAF:newSeed2 Test.Hspec.Core.QuickCheckUtil 2627 0 0.0 0.0 0.0 0.0
newSeed Test.Hspec.Core.QuickCheckUtil 4726 0 0.0 0.0 0.0 0.0
randomR System.Random 4729 0 0.0 0.0 0.0 0.0
randomIvalIntegral System.Random 4730 1 0.0 0.0 0.0 0.0
CAF:newSeed6 Test.Hspec.Core.QuickCheckUtil 2626 0 0.0 0.0 0.0 0.0
newSeed Test.Hspec.Core.QuickCheckUtil 4727 0 0.0 0.0 0.0 0.0
randomR System.Random 4728 1 0.0 0.0 0.0 0.0
CAF:increaseSuccessCount1 Test.Hspec.Core.Formatters.Internal 2618 0 0.0 0.0 0.0 0.0
increaseSuccessCount Test.Hspec.Core.Formatters.Internal 4397 1 0.0 0.0 0.0 0.0
modify Test.Hspec.Core.Formatters.Internal 4398 1 0.0 0.0 0.0 0.0
CAF:withSuccessColor Test.Hspec.Core.Formatters.Internal 2609 0 0.0 0.0 0.0 0.0
withSuccessColor Test.Hspec.Core.Formatters.Internal 4405 1 0.0 0.0 0.0 0.0
CAF:newParagraph2 Test.Hspec.Core.Formatters.Internal 2599 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4228 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal 4229 1 0.0 0.0 0.0 0.0
CAF:newParagraph3 Test.Hspec.Core.Formatters.Internal 2598 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4230 0 0.0 0.0 0.0 0.0
CAF:getCPUTime1 Test.Hspec.Core.Formatters.Internal 2596 0 0.0 0.0 0.0 0.0
getCPUTime Test.Hspec.Core.Formatters.Internal 4608 1 0.0 0.0 0.0 0.0
CAF:getRealTime1 Test.Hspec.Core.Formatters.Internal 2593 0 0.0 0.0 0.0 0.0
getRealTime Test.Hspec.Core.Formatters.Internal 4600 1 0.0 0.0 0.0 0.0
CAF:$fMonadFormatM2 Test.Hspec.Core.Formatters.Internal 2591 0 0.0 0.0 0.0 0.0
return Test.Hspec.Core.Formatters.Internal 4563 1 0.0 0.0 0.0 0.0
CAF:withFailColor8 Test.Hspec.Core.Formatters.Internal 2590 0 0.0 0.0 0.0 0.0
withColor Test.Hspec.Core.Formatters.Internal 4422 0 0.0 0.0 0.0 0.0
withColor_ Test.Hspec.Core.Formatters.Internal 4423 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4424 1 0.0 0.0 0.0 0.0
CAF:withFailColor9 Test.Hspec.Core.Formatters.Internal 2589 0 0.0 0.0 0.0 0.0
withColor Test.Hspec.Core.Formatters.Internal 4418 0 0.0 0.0 0.0 0.0
withColor_ Test.Hspec.Core.Formatters.Internal 4419 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4420 1 0.0 0.0 0.0 0.0
CAF:withFailColor3 Test.Hspec.Core.Formatters.Internal 2588 0 0.0 0.0 0.0 0.0
withColor Test.Hspec.Core.Formatters.Internal 4411 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4412 1 0.0 0.0 0.0 0.0
CAF:newParagraph5 Test.Hspec.Core.Formatters.Internal 2587 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal 4222 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4223 1 0.0 0.0 0.0 0.0
CAF:getCPUTime6 Test.Hspec.Core.Formatters.Internal 2586 0 0.0 0.0 0.0 0.0
getCPUTime Test.Hspec.Core.Formatters.Internal 4612 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4613 1 0.0 0.0 0.0 0.0
CAF:getRealTime3 Test.Hspec.Core.Formatters.Internal 2585 0 0.0 0.0 0.0 0.0
getRealTime Test.Hspec.Core.Formatters.Internal 4604 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4605 1 0.0 0.0 0.0 0.0
CAF:getFailMessages1 Test.Hspec.Core.Formatters.Internal 2583 0 0.0 0.0 0.0 0.0
getFailMessages Test.Hspec.Core.Formatters.Internal 4584 1 0.0 0.0 0.0 0.0
CAF:getFailMessages2 Test.Hspec.Core.Formatters.Internal 2582 0 0.0 0.0 0.0 0.0
getFailMessages Test.Hspec.Core.Formatters.Internal 4587 0 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4588 1 0.0 0.0 0.0 0.0
CAF:getTotalCount1 Test.Hspec.Core.Formatters.Internal 2580 0 0.0 0.0 0.0 0.0
getTotalCount Test.Hspec.Core.Formatters.Internal 4630 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4631 1 0.0 0.0 0.0 0.0
CAF:getFailCount1 Test.Hspec.Core.Formatters.Internal 2578 0 0.0 0.0 0.0 0.0
getFailCount Test.Hspec.Core.Formatters.Internal 4322 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4323 1 0.0 0.0 0.0 0.0
CAF:getPendingCount1 Test.Hspec.Core.Formatters.Internal 2576 0 0.0 0.0 0.0 0.0
getPendingCount Test.Hspec.Core.Formatters.Internal 4626 1 0.0 0.0 0.0 0.0
gets Test.Hspec.Core.Formatters.Internal 4627 1 0.0 0.0 0.0 0.0
CAF:getCPUTime9 Test.Hspec.Core.Formatters.Internal 2566 0 0.0 0.0 0.0 0.0
getCPUTime Test.Hspec.Core.Formatters.Internal 4610 0 0.0 0.0 0.0 0.0
CAF:getRealTime4 Test.Hspec.Core.Formatters.Internal 2565 0 0.0 0.0 0.0 0.0
getRealTime Test.Hspec.Core.Formatters.Internal 4602 0 0.0 0.0 0.0 0.0
CAF:$fMonadIOFormatM1 Test.Hspec.Core.Formatters.Internal 2563 0 0.0 0.0 0.0 0.0
liftIO Test.Hspec.Core.Formatters.Internal 4225 1 0.0 0.0 0.0 0.0
CAF:$fMonadFormatM3 Test.Hspec.Core.Formatters.Internal 2555 0 0.0 0.0 0.0 0.0
>> Test.Hspec.Core.Formatters.Internal 4202 1 0.0 0.0 0.0 0.0
CAF:$fMonadFormatM4 Test.Hspec.Core.Formatters.Internal 2553 0 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Formatters.Internal 4220 1 0.0 0.0 0.0 0.0
CAF:$fFunctorFormatM2 Test.Hspec.Core.Formatters.Internal 2551 0 0.0 0.0 0.0 0.0
fmap Test.Hspec.Core.Formatters.Internal 4585 1 0.0 0.0 0.0 0.0
CAF:$fApplicativeFormatM3 Test.Hspec.Core.Formatters.Internal 2549 0 0.0 0.0 0.0 0.0
<*> Test.Hspec.Core.Formatters.Internal 4597 1 0.0 0.0 0.0 0.0
CAF:$fApplicativeFormatM4 Test.Hspec.Core.Formatters.Internal 2547 0 0.0 0.0 0.0 0.0
pure Test.Hspec.Core.Formatters.Internal 4591 1 0.0 0.0 0.0 0.0
CAF:defaultParams Test.Hspec.Core.Example 2546 0 0.0 0.0 0.0 0.0
defaultParams Test.Hspec.Core.Example 4800 1 0.0 0.0 0.0 0.0
CAF:configQuickCheckArgs1 Test.Hspec.Config 2477 0 0.0 0.0 0.0 0.0
configQuickCheckArgs Test.Hspec.Config 4797 0 0.0 0.0 0.0 0.0
configQuickCheckArgs.qcArgs Test.Hspec.Config 4798 0 0.0 0.0 0.0 0.0
paramsQuickCheckArgs Test.Hspec.Core.Example 4799 1 0.0 0.0 0.0 0.0
CAF:getDefaultConcurrentJobs1 Test.Hspec.Compat 2475 0 0.0 0.0 0.0 0.0
getDefaultConcurrentJobs Test.Hspec.Compat 4091 1 0.0 0.0 0.0 0.0
CAF:pluralize1 Test.Hspec.Core.Util 2473 0 0.0 0.0 0.0 0.0
pluralize Test.Hspec.Core.Util 4695 0 0.0 0.0 0.0 0.0
CAF:specdoc Test.Hspec.Core.Formatters 2447 0 0.0 0.0 0.0 0.0
specdoc Test.Hspec.Core.Formatters 4211 1 0.0 0.0 0.0 0.0
CAF:specdoc9 Test.Hspec.Core.Formatters 2443 0 0.0 0.0 0.0 0.0
specdoc Test.Hspec.Core.Formatters 4213 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4214 1 0.0 0.0 0.0 0.0
CAF:specdoc10 Test.Hspec.Core.Formatters 2442 0 0.0 0.0 0.0 0.0
specdoc Test.Hspec.Core.Formatters 4217 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4218 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal 4219 1 0.0 0.0 0.0 0.0
CAF:silent Test.Hspec.Core.Formatters 2430 0 0.0 0.0 0.0 0.0
silent Test.Hspec.Core.Formatters 4212 1 0.0 0.0 0.0 0.0
CAF:silent11 Test.Hspec.Core.Formatters 2425 0 0.0 0.0 0.0 0.0
silent Test.Hspec.Core.Formatters 4562 0 0.0 0.0 0.0 0.0
CAF:failed_examples14 Test.Hspec.Core.Formatters 2424 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters 4571 1 0.0 0.0 0.0 0.0
CAF:failed_examples15 Test.Hspec.Core.Formatters 2423 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters 4583 0 0.0 0.0 0.0 0.0
CAF:failed_examples18 Test.Hspec.Core.Formatters 2403 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters 4573 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4574 1 0.0 0.0 0.0 0.0
CAF:failed_examples19 Test.Hspec.Core.Formatters 2402 0 0.0 0.0 0.0 0.0
defaultFailedFormatter Test.Hspec.Core.Formatters 4576 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4577 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal 4578 1 0.0 0.0 0.0 0.0
CAF:failed_examples1 Test.Hspec.Core.Formatters 2400 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4593 1 0.0 0.0 0.0 0.0
CAF:failed_examples2 Test.Hspec.Core.Formatters 2399 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4623 0 0.0 0.0 0.0 0.0
CAF:lvl4_rDsZ Test.Hspec.Core.Formatters 2397 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4697 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4698 1 0.0 0.0 0.0 0.0
CAF:lvl3_rDsY Test.Hspec.Core.Formatters 2396 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4699 0 0.0 0.0 0.0 0.0
writeLine Test.Hspec.Core.Formatters.Internal 4700 0 0.0 0.0 0.0 0.0
write Test.Hspec.Core.Formatters.Internal 4701 1 0.0 0.0 0.0 0.0
CAF:lvl2_rDsX Test.Hspec.Core.Formatters 2395 0 0.0 0.0 0.0 0.1
defaultFooter Test.Hspec.Core.Formatters 4696 0 0.0 0.1 0.0 0.1
CAF:lvl1_rDsW Test.Hspec.Core.Formatters 2394 0 0.0 0.0 0.0 0.1
defaultFooter Test.Hspec.Core.Formatters 4694 0 0.0 0.1 0.0 0.1
CAF:failed_examples4 Test.Hspec.Core.Formatters 2393 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4595 0 0.0 0.0 0.0 0.0
CAF:failed_examples5 Test.Hspec.Core.Formatters 2392 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4596 0 0.0 0.0 0.0 0.0
CAF:failed_examples6 Test.Hspec.Core.Formatters 2391 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4607 0 0.0 0.0 0.0 0.0
CAF:failed_examples10 Test.Hspec.Core.Formatters 2389 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4598 0 0.0 0.0 0.0 0.0
CAF:failed_examples11 Test.Hspec.Core.Formatters 2388 0 0.0 0.0 0.0 0.0
defaultFooter Test.Hspec.Core.Formatters 4599 0 0.0 0.0 0.0 0.0
CAF:failed_examples13 Test.Hspec.Core.Formatters 2387 0 0.0 0.0 0.0 0.4
defaultFooter Test.Hspec.Core.Formatters 4620 0 0.0 0.4 0.0 0.4
CAF:$sunless1 Test.Hspec.Core.Formatters 2385 0 0.0 0.0 0.0 0.0
CAF:hspec1 Test.Hspec.Core.Runner 2381 0 0.0 0.0 0.0 0.0
hspec Test.Hspec.Core.Runner 4059 1 0.0 0.0 0.0 0.0
CAF:lvl20_rOc1 Test.Hspec.Core.Runner 2380 0 0.0 0.0 0.0 0.0
hspecWithResult Test.Hspec.Core.Runner 4817 0 0.0 0.0 0.0 0.0
hspecWithResult.\ Test.Hspec.Core.Runner 4818 0 0.0 0.0 0.0 0.0
CAF:lvl19_rOc0 Test.Hspec.Core.Runner 2379 0 0.0 0.0 0.0 0.0
hspecWithResult Test.Hspec.Core.Runner 4819 0 0.0 0.0 0.0 0.0
hspecWithResult.\ Test.Hspec.Core.Runner 4820 0 0.0 0.0 0.0 0.0
CAF:lvl18_rObZ Test.Hspec.Core.Runner 2378 0 0.0 0.0 0.0 0.0
hspecWithResult Test.Hspec.Core.Runner 4702 0 0.0 0.0 0.0 0.0
hspecWithResult.\ Test.Hspec.Core.Runner 4703 0 0.0 0.0 0.0 0.0
CAF:isDumb_rObJ Test.Hspec.Core.Runner 2374 0 0.0 0.0 0.0 0.0
isDumb Test.Hspec.Core.Runner 4096 1 0.0 0.0 0.0 0.0
CAF:lvl3_rObI Test.Hspec.Core.Runner 2373 0 0.0 0.0 0.0 0.1
isDumb Test.Hspec.Core.Runner 4098 0 0.0 0.1 0.0 0.1
CAF:lvl2_rObH Test.Hspec.Core.Runner 2372 0 0.0 0.0 0.0 0.1
isDumb Test.Hspec.Core.Runner 4099 0 0.0 0.1 0.0 0.1
CAF:postProcessSpec Test.Hspec.Discover 2352 0 0.0 0.0 0.0 0.0
postProcessSpec Test.Hspec.Discover 4102 1 0.0 0.0 0.0 0.0
CAF:lvl23_rbLq Test.Hspec.Discover 2351 0 0.0 0.0 0.0 0.0
enumerate Test.Hspec.Discover 4252 0 0.0 0.0 0.0 0.0
CAF:poly_f2_rbLo Test.Hspec.Discover 2350 0 0.0 0.0 0.0 0.0
enumerate Test.Hspec.Discover 4255 0 0.0 0.0 0.0 0.0
sequenceA Test.Hspec.Core.Tree 4256 1 0.0 0.0 0.0 0.0
CAF:$fPrettyTerm1 FRP.AST 2180 0 0.0 0.0 0.0 0.0
ppputStrLn FRP.Pretty 4369 1 0.0 0.0 0.0 0.0
CAF:$fPrettyTerm_$cppshow FRP.AST 2178 0 0.0 0.0 0.0 0.0
ppshow FRP.Pretty 4371 1 0.0 0.0 0.0 0.0
CAF:lvl64_r61R FRP.AST 2165 0 0.0 0.0 0.0 0.0
ppr FRP.AST 4495 0 0.0 0.0 0.0 0.0
CAF:lvl63_r61Q FRP.AST 2164 0 0.0 0.0 0.0 0.0
ppr FRP.AST 4496 0 0.0 0.0 0.0 0.0
CAF:$fPrettyBinOp12 FRP.AST 2127 0 0.0 0.0 0.0 0.0
ppr FRP.AST 4500 0 0.0 0.0 0.0 0.0
CAF:main2 FRP.SemanticsSpec 2083 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4141 1 0.0 0.0 0.0 0.1
describe Test.Hspec.Core.Spec 4142 1 0.0 0.0 0.0 0.1
specGroup Test.Hspec.Core.Tree 4263 1 0.0 0.0 0.0 0.0
specGroup.msg Test.Hspec.Core.Tree 4328 1 0.0 0.0 0.0 0.0
runSpecM Test.Hspec.Core.Spec.Monad 4148 1 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Spec.Monad 4143 0 0.0 0.0 0.0 0.0
CAF:main3 FRP.SemanticsSpec 2082 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4149 0 0.0 0.0 0.0 0.1
describe Test.Hspec.Core.Spec 4150 1 0.0 0.0 0.0 0.1
specGroup Test.Hspec.Core.Tree 4265 1 0.0 0.0 0.0 0.0
specGroup.msg Test.Hspec.Core.Tree 4330 1 0.0 0.0 0.0 0.0
runSpecM Test.Hspec.Core.Spec.Monad 4152 1 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Spec.Monad 4151 0 0.0 0.0 0.0 0.0
CAF:main4 FRP.SemanticsSpec 2081 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4153 0 0.0 0.0 0.0 0.0
CAF:main5 FRP.SemanticsSpec 2080 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4163 0 0.0 0.0 0.0 0.1
>> Test.Hspec.Core.Spec.Monad 4164 0 0.0 0.1 0.0 0.1
CAF:main6 FRP.SemanticsSpec 2079 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4168 0 0.0 0.0 0.0 0.1
it Test.Hspec.Core.Spec 4169 1 0.0 0.0 0.0 0.1
specItem Test.Hspec.Core.Tree 4302 1 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree 4558 1 0.0 0.0 0.0 0.0
evaluateExample Test.Hspec.Core.Example 4519 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad 4170 0 0.0 0.0 0.0 0.0
CAF:main8 FRP.SemanticsSpec 2078 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4538 0 0.0 0.1 0.0 0.1
CAF:main9 FRP.SemanticsSpec 2077 0 0.0 0.0 0.0 0.2
spec FRP.SemanticsSpec 4539 0 0.0 0.0 0.0 0.2
ppshow FRP.Pretty 4540 0 0.0 0.2 0.0 0.2
ppr FRP.AST 4541 1 0.0 0.0 0.0 0.0
ppr FRP.AST 4557 1 0.0 0.0 0.0 0.0
CAF:main10 FRP.SemanticsSpec 2076 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4542 0 0.0 0.0 0.0 0.0
spec.r FRP.SemanticsSpec 4543 1 0.0 0.0 0.0 0.0
CAF:main11 FRP.SemanticsSpec 2075 0 0.0 0.0 0.0 0.4
spec FRP.SemanticsSpec 4544 0 0.0 0.0 0.0 0.4
spec.(...) FRP.SemanticsSpec 4545 1 0.0 0.0 0.0 0.4
evalStep FRP.Semantics 4551 7 0.0 0.1 0.0 0.4
evalStep' FRP.Semantics 4553 7 0.0 0.2 0.0 0.4
evalStep'.intOp FRP.Semantics 4556 1 0.0 0.0 0.0 0.0
subst FRP.Semantics 4554 3 0.0 0.0 0.0 0.1
subst.go FRP.Semantics 4555 13 0.0 0.1 0.0 0.1
runEvalInit FRP.Semantics 4546 1 0.0 0.0 0.0 0.0
runEval FRP.Semantics 4547 1 0.0 0.0 0.0 0.0
CAF:main12 FRP.SemanticsSpec 2074 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4548 0 0.0 0.0 0.0 0.1
spec.(...) FRP.SemanticsSpec 4549 0 0.0 0.0 0.0 0.1
evalStep FRP.Semantics 4550 5 0.0 0.0 0.0 0.1
evalStep' FRP.Semantics 4552 5 0.0 0.1 0.0 0.1
CAF:main29 FRP.SemanticsSpec 2073 0 0.0 0.0 0.0 2.3
spec FRP.SemanticsSpec 4520 0 0.0 0.0 0.0 2.3
ppshow FRP.Pretty 4521 0 0.0 1.9 0.0 2.3
ppr FRP.AST 4522 12 0.0 0.3 0.0 0.4
ppr FRP.AST 4531 1 0.0 0.0 0.0 0.0
ppr.prns FRP.AST 4528 3 0.0 0.0 0.0 0.0
ppr FRP.AST 4525 2 0.0 0.1 0.0 0.1
CAF:main_term FRP.SemanticsSpec 2072 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4523 0 0.0 0.0 0.0 0.0
spec.term FRP.SemanticsSpec 4524 1 0.0 0.0 0.0 0.0
CAF:main_app FRP.SemanticsSpec 2071 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4526 0 0.0 0.0 0.0 0.0
spec.app FRP.SemanticsSpec 4527 1 0.0 0.0 0.0 0.0
CAF:main19 FRP.SemanticsSpec 2070 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4529 0 0.0 0.0 0.0 0.0
spec.app FRP.SemanticsSpec 4530 0 0.0 0.0 0.0 0.0
CAF:main_lam FRP.SemanticsSpec 2069 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4532 0 0.0 0.0 0.0 0.0
spec.lam FRP.SemanticsSpec 4533 1 0.0 0.0 0.0 0.0
CAF:main26 FRP.SemanticsSpec 2068 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4536 0 0.0 0.0 0.0 0.0
spec.lam FRP.SemanticsSpec 4537 0 0.0 0.0 0.0 0.0
CAF:main28 FRP.SemanticsSpec 2067 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4534 0 0.0 0.0 0.0 0.0
spec.lam FRP.SemanticsSpec 4535 0 0.0 0.0 0.0 0.0
CAF:main30 FRP.SemanticsSpec 2066 0 0.0 0.0 0.0 0.4
spec FRP.SemanticsSpec 4559 0 0.0 0.4 0.0 0.4
CAF:main40 FRP.SemanticsSpec 2065 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4165 0 0.0 0.0 0.0 0.1
it Test.Hspec.Core.Spec 4166 1 0.0 0.0 0.0 0.1
specItem Test.Hspec.Core.Tree 4301 1 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree 4517 1 0.0 0.0 0.0 0.0
evaluateExample Test.Hspec.Core.Example 4488 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad 4167 0 0.0 0.0 0.0 0.0
CAF:main42 FRP.SemanticsSpec 2064 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4501 0 0.0 0.0 0.0 0.0
CAF:main43 FRP.SemanticsSpec 2063 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4502 0 0.0 0.0 0.0 0.0
spec.r FRP.SemanticsSpec 4503 1 0.0 0.0 0.0 0.0
CAF:main44 FRP.SemanticsSpec 2062 0 0.0 0.0 0.0 0.3
spec FRP.SemanticsSpec 4504 0 0.0 0.0 0.0 0.3
spec.(...) FRP.SemanticsSpec 4505 1 0.0 0.0 0.0 0.3
evalStep FRP.Semantics 4511 4 0.0 0.0 0.0 0.3
evalStep' FRP.Semantics 4513 4 0.0 0.1 0.0 0.2
evalStep'.intOp FRP.Semantics 4516 1 0.0 0.0 0.0 0.0
subst FRP.Semantics 4514 2 0.0 0.0 0.0 0.1
subst.go FRP.Semantics 4515 7 0.0 0.1 0.0 0.1
runEvalInit FRP.Semantics 4506 1 0.0 0.0 0.0 0.0
runEval FRP.Semantics 4507 1 0.0 0.0 0.0 0.0
CAF:main45 FRP.SemanticsSpec 2061 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4508 0 0.0 0.0 0.0 0.1
spec.(...) FRP.SemanticsSpec 4509 0 0.0 0.0 0.0 0.1
evalStep FRP.Semantics 4510 5 0.0 0.0 0.0 0.1
evalStep' FRP.Semantics 4512 5 0.0 0.1 0.0 0.1
CAF:main54 FRP.SemanticsSpec 2060 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4489 0 0.0 0.0 0.0 0.0
CAF:main_term1 FRP.SemanticsSpec 2059 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4490 0 0.0 0.0 0.0 0.0
spec.term FRP.SemanticsSpec 4491 1 0.0 0.0 0.0 0.0
CAF:main51 FRP.SemanticsSpec 2058 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4497 0 0.0 0.0 0.0 0.0
spec.term FRP.SemanticsSpec 4498 0 0.0 0.0 0.0 0.0
CAF:main53 FRP.SemanticsSpec 2057 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4493 0 0.0 0.0 0.0 0.0
spec.term FRP.SemanticsSpec 4494 0 0.0 0.0 0.0 0.0
CAF:main55 FRP.SemanticsSpec 2056 0 0.0 0.0 0.0 0.4
spec FRP.SemanticsSpec 4518 0 0.0 0.4 0.0 0.4
CAF:main59 FRP.SemanticsSpec 2055 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4156 0 0.0 0.0 0.0 0.1
it Test.Hspec.Core.Spec 4157 1 0.0 0.0 0.0 0.1
specItem Test.Hspec.Core.Tree 4266 1 0.0 0.0 0.0 0.0
specItem.requirement Test.Hspec.Core.Tree 4481 1 0.0 0.0 0.0 0.0
evaluateExample Test.Hspec.Core.Example 4356 1 0.0 0.0 0.0 0.0
fromSpecList Test.Hspec.Core.Spec.Monad 4159 0 0.0 0.0 0.0 0.0
CAF:main60 FRP.SemanticsSpec 2054 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4368 0 0.0 0.0 0.0 0.0
CAF:main61 FRP.SemanticsSpec 2053 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4374 0 0.0 0.0 0.0 0.0
spec.r FRP.SemanticsSpec 4375 1 0.0 0.0 0.0 0.0
CAF:main62 FRP.SemanticsSpec 2052 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4376 0 0.0 0.0 0.0 0.1
spec.(...) FRP.SemanticsSpec 4377 1 0.0 0.0 0.0 0.1
evalStep FRP.Semantics 4383 1 0.0 0.0 0.0 0.1
evalStep' FRP.Semantics 4387 1 0.0 0.1 0.0 0.1
subst FRP.Semantics 4388 1 0.0 0.0 0.0 0.0
subst.go FRP.Semantics 4389 1 0.0 0.0 0.0 0.0
runEvalInit FRP.Semantics 4378 1 0.0 0.0 0.0 0.0
runEval FRP.Semantics 4379 1 0.0 0.0 0.0 0.0
CAF:main63 FRP.SemanticsSpec 2051 0 0.0 0.0 0.0 0.1
spec FRP.SemanticsSpec 4380 0 0.0 0.0 0.0 0.1
spec.(...) FRP.SemanticsSpec 4381 0 0.0 0.0 0.0 0.1
evalStep FRP.Semantics 4382 3 0.0 0.0 0.0 0.0
evalStep' FRP.Semantics 4384 3 0.0 0.0 0.0 0.0
CAF:main_term2 FRP.SemanticsSpec 2050 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4385 0 0.0 0.0 0.0 0.0
spec.term FRP.SemanticsSpec 4386 1 0.0 0.0 0.0 0.0
CAF:main66 FRP.SemanticsSpec 2049 0 0.0 0.0 0.0 0.0
spec FRP.SemanticsSpec 4390 0 0.0 0.0 0.0 0.0
spec.term FRP.SemanticsSpec 4391 0 0.0 0.0 0.0 0.0
CAF:main67 FRP.SemanticsSpec 2048 0 0.0 0.0 0.0 0.4
spec FRP.SemanticsSpec 4482 0 0.0 0.4 0.0 0.4
CAF:main72 FRP.SemanticsSpec 2047 0 0.0 0.0 0.0 0.3
spec FRP.SemanticsSpec 4331 0 0.0 0.3 0.0 0.3
CAF:main73 FRP.SemanticsSpec 2046 0 0.0 0.0 0.0 0.4
spec FRP.SemanticsSpec 4329 0 0.0 0.4 0.0 0.4
CAF:main1 Main 2040 0 0.0 0.0 0.0 0.0
main Main 4058 1 0.0 0.0 0.0 0.0
hspec Test.Hspec.Core.Runner 4060 0 0.0 0.0 0.0 0.0
hspecWith Test.Hspec.Core.Runner 4061 1 0.0 0.0 0.0 0.0
CAF:spec Main 2039 0 0.0 0.0 0.0 0.1
spec Main 4101 1 0.0 0.0 0.0 0.1
locationHeuristicFromFile Test.Hspec.Discover 4103 1 0.0 0.1 0.0 0.1
runSpecM Test.Hspec.Core.Spec.Monad 4133 1 0.0 0.0 0.0 0.0
safeTry Test.Hspec.Core.Util 4112 1 0.0 0.0 0.0 0.0
withAsync Control.Concurrent.Async 4115 0 0.0 0.0 0.0 0.0
withAsyncUsing Control.Concurrent.Async 4116 0 0.0 0.0 0.0 0.0
withAsyncUsing.\ Control.Concurrent.Async 4117 1 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Spec.Monad 4105 0 0.0 0.0 0.0 0.0
CAF:spec1 Main 2038 0 0.0 0.0 0.0 0.1
spec Main 4134 0 0.0 0.0 0.0 0.1
describe Test.Hspec.Core.Spec 4135 1 0.0 0.0 0.0 0.1
specGroup Test.Hspec.Core.Tree 4260 1 0.0 0.0 0.0 0.0
specGroup.msg Test.Hspec.Core.Tree 4320 1 0.0 0.0 0.0 0.0
runSpecM Test.Hspec.Core.Spec.Monad 4140 1 0.0 0.0 0.0 0.0
>>= Test.Hspec.Core.Spec.Monad 4136 0 0.0 0.0 0.0 0.0
CAF:spec2 Main 2037 0 0.0 0.0 0.0 0.2
spec Main 4321 0 0.0 0.2 0.0 0.2
CAF:spec3 Main 2036 0 0.0 0.0 0.0 0.4
spec Main 4131 0 0.0 0.4 0.0 0.4