-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprocessed.txt
More file actions
1309 lines (1292 loc) · 150 KB
/
Copy pathprocessed.txt
File metadata and controls
1309 lines (1292 loc) · 150 KB
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
Statistical profiling result from ./app/utils/isolate-0x2d06310-v8.log, (3360 ticks, 11 unaccounted, 0 excluded).
[Shared libraries]:
ticks total nonlib name
52 1.5% /lib/x86_64-linux-gnu/libc-2.19.so
3 0.1% [vdso]
3 0.1% /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
1 0.0% /lib/x86_64-linux-gnu/libpthread-2.19.so
[JavaScript]:
ticks total nonlib name
29 0.9% 0.9% Builtin: InterpreterEntryTrampoline
12 0.4% 0.4% Builtin: CallFunction_ReceiverIsAny
9 0.3% 0.3% Builtin: StringAdd_CheckNone_NotTenured
8 0.2% 0.2% Builtin: Call_ReceiverIsAny
7 0.2% 0.2% Builtin: StoreIC
7 0.2% 0.2% Builtin: LoadIC_Uninitialized
6 0.2% 0.2% LazyCompile: ~Module._resolveLookupPaths internal/modules/cjs/loader.js:399:38
6 0.2% 0.2% LazyCompile: *normalizeString path.js:57:25
5 0.1% 0.2% Builtin: StoreIC_Uninitialized
5 0.1% 0.2% Builtin: KeyedLoadIC
4 0.1% 0.1% LazyCompile: ~normalizeString path.js:57:25
4 0.1% 0.1% LazyCompile: ~QuickSort native array.js:530:19
4 0.1% 0.1% LazyCompile: ~Module.load internal/modules/cjs/loader.js:589:33
4 0.1% 0.1% LazyCompile: ~Module._nodeModulePaths internal/modules/cjs/loader.js:358:37
4 0.1% 0.1% Builtin: KeyedStoreIC
4 0.1% 0.1% Builtin: KeyedLoadIC_Megamorphic
3 0.1% 0.1% LazyCompile: ~resolve path.js:1073:28
3 0.1% 0.1% LazyCompile: ~readSync fs.js:472:18
3 0.1% 0.1% LazyCompile: ~readFileSync fs.js:338:22
3 0.1% 0.1% LazyCompile: ~Module._findPath internal/modules/cjs/loader.js:219:28
3 0.1% 0.1% LazyCompile: *resolve path.js:1073:28
3 0.1% 0.1% Builtin: StringSubstring
3 0.1% 0.1% Builtin: StringPrototypeSlice
3 0.1% 0.1% Builtin: CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit
2 0.1% 0.1% LazyCompile: ~updateChildren internal/modules/cjs/loader.js:95:24
2 0.1% 0.1% LazyCompile: ~tryReadSync fs.js:326:21
2 0.1% 0.1% LazyCompile: ~toString buffer.js:644:46
2 0.1% 0.1% LazyCompile: ~stat internal/modules/cjs/loader.js:82:14
2 0.1% 0.1% LazyCompile: ~require internal/modules/cjs/helpers.js:17:19
2 0.1% 0.1% LazyCompile: ~pushAsyncIds internal/async_hooks.js:389:22
2 0.1% 0.1% LazyCompile: ~parse querystring.js:261:15
2 0.1% 0.1% LazyCompile: ~openSync fs.js:426:18
2 0.1% 0.1% LazyCompile: ~nullCheck internal/fs/utils.js:188:19
2 0.1% 0.1% LazyCompile: ~makeRequireFunction internal/modules/cjs/helpers.js:14:29
2 0.1% 0.1% LazyCompile: ~isUint32 internal/validators.js:13:18
2 0.1% 0.1% LazyCompile: ~getRunInContextArgs vm.js:151:29
2 0.1% 0.1% LazyCompile: ~extname path.js:1372:28
2 0.1% 0.1% LazyCompile: ~dirname path.js:1267:28
2 0.1% 0.1% LazyCompile: ~args internal/util/types.js:11:10
2 0.1% 0.1% LazyCompile: ~Script vm.js:43:14
2 0.1% 0.1% LazyCompile: ~Module._resolveFilename internal/modules/cjs/loader.js:546:35
2 0.1% 0.1% LazyCompile: ~Module._load internal/modules/cjs/loader.js:501:24
2 0.1% 0.1% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
2 0.1% 0.1% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/psl/index.js:14:61
2 0.1% 0.1% LazyCompile: *realpathSync fs.js:1373:22
2 0.1% 0.1% LazyCompile: *Module._nodeModulePaths internal/modules/cjs/loader.js:358:37
2 0.1% 0.1% Builtin: RegExpPrototypeTest
2 0.1% 0.1% Builtin: MapPrototypeSet
2 0.1% 0.1% Builtin: LoadIC_FunctionPrototype
2 0.1% 0.1% Builtin: KeyedStoreIC_Megamorphic
2 0.1% 0.1% Builtin: CreateTypedArray
2 0.1% 0.1% Builtin: CallFunction_ReceiverIsNullOrUndefined
1 0.0% 0.0% Stub: StoreFastElementStub
1 0.0% 0.0% Script: ~<anonymous> internal/util/inspect.js:1:11
1 0.0% 0.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/socket.io-parser/is-buffer.js:1:11
1 0.0% 0.0% RegExp: (?:^|
1 0.0% 0.0% LazyCompile: ~validateUint32 internal/validators.js:100:24
1 0.0% 0.0% LazyCompile: ~validateHeaderValue _http_outgoing.js:454:29
1 0.0% 0.0% LazyCompile: ~u /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:51:35198
1 0.0% 0.0% LazyCompile: ~tryPackage internal/modules/cjs/loader.js:172:20
1 0.0% 0.0% LazyCompile: ~swsCoreStats.calculateSystemStats /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-stats/lib/swsCoreStats.js:147:55
1 0.0% 0.0% LazyCompile: ~stripShebang internal/modules/cjs/helpers.js:69:22
1 0.0% 0.0% LazyCompile: ~stripBOM internal/modules/cjs/helpers.js:59:18
1 0.0% 0.0% LazyCompile: ~stringSlice buffer.js:590:21
1 0.0% 0.0% LazyCompile: ~splitRoot fs.js:1335:33
1 0.0% 0.0% LazyCompile: ~setUnrefTimeout internal/timers.js:111:25
1 0.0% 0.0% LazyCompile: ~s /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:6:7487
1 0.0% 0.0% LazyCompile: ~runInThisContext vm.js:91:19
1 0.0% 0.0% LazyCompile: ~realpathSync fs.js:1373:22
1 0.0% 0.0% LazyCompile: ~process_params /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/express/lib/router/index.js:327:47
1 0.0% 0.0% LazyCompile: ~popAsyncIds internal/async_hooks.js:402:21
1 0.0% 0.0% LazyCompile: ~pathtoRegexp /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/path-to-regexp/index.js:28:22
1 0.0% 0.0% LazyCompile: ~onResponseHeaders /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/compression/index.js:140:47
1 0.0% 0.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 0.0% 0.0% LazyCompile: ~merge /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/declare.js/declare.js:521:23
1 0.0% 0.0% LazyCompile: ~memoryUsage internal/process/per_thread.js:135:45
1 0.0% 0.0% LazyCompile: ~isObject /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/bluebird/js/release/util.js:53:18
1 0.0% 0.0% LazyCompile: ~isFileType fs.js:161:20
1 0.0% 0.0% LazyCompile: ~hasBinary /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/has-binary2/index.js:30:20
1 0.0% 0.0% LazyCompile: ~handleErrorFromBinding fs.js:111:32
1 0.0% 0.0% LazyCompile: ~getOptions internal/fs/utils.js:167:20
1 0.0% 0.0% LazyCompile: ~get _stream_duplex.js:119:6
1 0.0% 0.0% LazyCompile: ~encodeRealpathResult fs.js:1344:30
1 0.0% 0.0% LazyCompile: ~e.exports /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:9087
1 0.0% 0.0% LazyCompile: ~defineProps /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/declare.js/declare.js:718:29
1 0.0% 0.0% LazyCompile: ~decorateProto /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/extender/extender.js:427:35
1 0.0% 0.0% LazyCompile: ~debug util.js:192:35
1 0.0% 0.0% LazyCompile: ~cpuUsage internal/process/per_thread.js:39:39
1 0.0% 0.0% LazyCompile: ~closeSync fs.js:396:19
1 0.0% 0.0% LazyCompile: ~clearBuffer _stream_writable.js:495:21
1 0.0% 0.0% LazyCompile: ~charCodeToInt /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/moment-timezone/moment-timezone.js:51:24
1 0.0% 0.0% LazyCompile: ~basename path.js:1294:30
1 0.0% 0.0% LazyCompile: ~baseSlice /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:4051:23
1 0.0% 0.0% LazyCompile: ~baseGetTag /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:3069:24
1 0.0% 0.0% LazyCompile: ~assertSize buffer.js:259:20
1 0.0% 0.0% LazyCompile: ~assertPath path.js:37:20
1 0.0% 0.0% LazyCompile: ~afterConnect net.js:1075:22
1 0.0% 0.0% LazyCompile: ~_tickCallback internal/process/next_tick.js:41:25
1 0.0% 0.0% LazyCompile: ~_extend util.js:291:17
1 0.0% 0.0% LazyCompile: ~_apply_rules /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/inflection/lib/inflection.js:590:29
1 0.0% 0.0% LazyCompile: ~_.each /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/sequelize/lib/model.js:950:32
1 0.0% 0.0% LazyCompile: ~UseSparseVariant native array.js:54:26
1 0.0% 0.0% LazyCompile: ~Readable.read _stream_readable.js:372:35
1 0.0% 0.0% LazyCompile: ~Module.require internal/modules/cjs/loader.js:628:36
1 0.0% 0.0% LazyCompile: ~DoJoin native array.js:87:16
1 0.0% 0.0% LazyCompile: ~Connection.password /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/pg/lib/connection.js:189:42
1 0.0% 0.0% LazyCompile: ~Connection.parseCString /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/pg/lib/connection.js:649:46
1 0.0% 0.0% LazyCompile: ~<anonymous> fs.js:153:18
1 0.0% 0.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/prom-client/lib/counter.js:136:9
1 0.0% 0.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:4903:22
1 0.0% 0.0% LazyCompile: *dirname path.js:1267:28
1 0.0% 0.0% LazyCompile: *aw native array.js:488:12
1 0.0% 0.0% Builtin: TypedArrayConstructor
1 0.0% 0.0% Builtin: StringPrototypeReplace
1 0.0% 0.0% Builtin: StringPrototypeCharCodeAt
1 0.0% 0.0% Builtin: StringIndexOf
1 0.0% 0.0% Builtin: MapConstructor
1 0.0% 0.0% Builtin: KeyedStoreICTrampoline
1 0.0% 0.0% Builtin: KeyedLoadIC_PolymorphicName
1 0.0% 0.0% Builtin: HandleApiCall
1 0.0% 0.0% Builtin: GetProperty
1 0.0% 0.0% Builtin: FindOrderedHashMapEntry
1 0.0% 0.0% Builtin: CompileLazy
1 0.0% 0.0% Builtin: Call_ReceiverIsNullOrUndefined
1 0.0% 0.0% Builtin: ArrayIncludes
1 0.0% 0.0% Builtin: ArrayForEach
1 0.0% 0.0% Builtin: ArgumentsAdaptorTrampoline
[C++]:
ticks total nonlib name
714 21.3% 21.6% node::fs::InternalModuleStat(v8::FunctionCallbackInfo<v8::Value> const&)
597 17.8% 18.1% node::contextify::ContextifyScript::New(v8::FunctionCallbackInfo<v8::Value> const&)
353 10.5% 10.7% write
148 4.4% 4.5% node::fs::Open(v8::FunctionCallbackInfo<v8::Value> const&)
118 3.5% 3.6% epoll_pwait
98 2.9% 3.0% __lxstat
86 2.6% 2.6% __xstat
59 1.8% 1.8% node::fs::InternalModuleReadJSON(v8::FunctionCallbackInfo<v8::Value> const&)
57 1.7% 1.7% node::fs::LStat(v8::FunctionCallbackInfo<v8::Value> const&)
27 0.8% 0.8% node::fs::FStat(v8::FunctionCallbackInfo<v8::Value> const&)
24 0.7% 0.7% node::fs::Close(v8::FunctionCallbackInfo<v8::Value> const&)
16 0.5% 0.5% mprotect
16 0.5% 0.5% __lll_lock_wait
13 0.4% 0.4% void node::Buffer::(anonymous namespace)::StringSlice<(node::encoding)1>(v8::FunctionCallbackInfo<v8::Value> const&)
12 0.4% 0.4% v8::internal::Scanner::Scan()
12 0.4% 0.4% fwrite
11 0.3% 0.3% std::basic_ostream<char, std::char_traits<char> >& std::__ostream_insert<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*, long)
11 0.3% 0.3% node::contextify::ContextifyScript::RunInThisContext(v8::FunctionCallbackInfo<v8::Value> const&)
9 0.3% 0.3% v8::internal::LookupIterator::State v8::internal::LookupIterator::LookupInRegularHolder<false>(v8::internal::Map*, v8::internal::JSReceiver*)
8 0.2% 0.2% void v8::internal::Scanner::Advance<false, true>()
8 0.2% 0.2% v8::internal::FixedArray::set(int, v8::internal::Object*)
7 0.2% 0.2% v8::internal::Zone::New(unsigned long)
7 0.2% 0.2% v8::internal::TransitionsAccessor::Insert(v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Map>, v8::internal::SimpleTransitionFlag)
7 0.2% 0.2% v8::internal::StringTable::LookupStringIfExists_NoAllocate(v8::internal::String*)
7 0.2% 0.2% v8::internal::Accessors::FunctionPrototypeGetter(v8::Local<v8::Name>, v8::PropertyCallbackInfo<v8::Value> const&)
7 0.2% 0.2% std::ostream::sentry::sentry(std::ostream&)
7 0.2% 0.2% node::GetBinding(v8::FunctionCallbackInfo<v8::Value> const&)
6 0.2% 0.2% void v8::internal::String::WriteToFlat<unsigned char>(v8::internal::String*, unsigned char*, int, int)
6 0.2% 0.2% v8::internal::Scanner::ScanIdentifierOrKeywordInner(v8::internal::Scanner::LiteralScope*)
6 0.2% 0.2% v8::internal::ParserBase<v8::internal::Parser>::ParseAssignmentExpression(bool, bool*)
6 0.2% 0.2% v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
6 0.2% 0.2% node::MemoryUsage(v8::FunctionCallbackInfo<v8::Value> const&)
6 0.2% 0.2% int v8::internal::BinarySearch<(v8::internal::SearchMode)1, v8::internal::DescriptorArray>(v8::internal::DescriptorArray*, v8::internal::Name*, int, int*)
5 0.1% 0.2% v8::internal::interpreter::BytecodeGenerator::VisitAssignment(v8::internal::Assignment*)
5 0.1% 0.2% v8::internal::ScopeInfo::Create(v8::internal::Isolate*, v8::internal::Zone*, v8::internal::Scope*, v8::internal::MaybeHandle<v8::internal::ScopeInfo>)
5 0.1% 0.2% v8::internal::Scanner::Next()
5 0.1% 0.2% v8::internal::LookupIterator::ApplyTransitionToDataProperty(v8::internal::Handle<v8::internal::JSReceiver>)
5 0.1% 0.2% v8::internal::JsonParser<true>::ScanJsonString()
5 0.1% 0.2% v8::internal::InnerPointerToCodeCache::GetCacheEntry(unsigned long)
5 0.1% 0.2% v8::internal::Heap::AllocateRaw(int, v8::internal::AllocationSpace, v8::internal::AllocationAlignment)
5 0.1% 0.2% mmap
4 0.1% 0.1% v8::internal::String::IsOneByteEqualTo(v8::internal::Vector<unsigned char const>)
4 0.1% 0.1% v8::internal::StackFrameIterator::StackFrameIterator(v8::internal::Isolate*)
4 0.1% 0.1% v8::internal::IncrementalMarking::Step(unsigned long, v8::internal::IncrementalMarking::CompletionAction, v8::internal::StepOrigin, v8::internal::WorklistToProcess)
4 0.1% 0.1% v8::internal::HashTable<v8::internal::StringTable, v8::internal::StringTableShape>::FindEntry(v8::internal::Isolate*, v8::internal::StringTableKey*)
4 0.1% 0.1% v8::internal::FeedbackNexus::ConfigureMonomorphic(v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Map>, v8::internal::MaybeObjectHandle const&)
4 0.1% 0.1% v8::internal::Factory::NewFeedbackVector(v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::PretenureFlag)
4 0.1% 0.1% v8::internal::DescriptorArray::CopyFrom(int, v8::internal::DescriptorArray*)
4 0.1% 0.1% v8::internal::AstValueFactory::GetString(unsigned int, bool, v8::internal::Vector<unsigned char const>)
4 0.1% 0.1% v8::internal::AstValueFactory::GetOneByteStringInternal(v8::internal::Vector<unsigned char const>)
4 0.1% 0.1% v8::internal::Accessors::FunctionLengthGetter(v8::Local<v8::Name>, v8::PropertyCallbackInfo<v8::Value> const&)
4 0.1% 0.1% node::fs::Read(v8::FunctionCallbackInfo<v8::Value> const&)
4 0.1% 0.1% munmap
4 0.1% 0.1% __lll_unlock_wake
3 0.1% 0.1% void v8::internal::StringHasher::AddCharacters<unsigned char>(unsigned char const*, int)
3 0.1% 0.1% void v8::internal::String::WriteToFlat<unsigned short>(v8::internal::String*, unsigned short*, int, int)
3 0.1% 0.1% void node::StreamBase::JSMethod<node::LibuvStreamWrap, &node::StreamBase::WriteBuffer>(v8::FunctionCallbackInfo<v8::Value> const&)
3 0.1% 0.1% void node::StreamBase::JSMethod<node::LibuvStreamWrap, &(int node::StreamBase::WriteString<(node::encoding)1>(v8::FunctionCallbackInfo<v8::Value> const&))>(v8::FunctionCallbackInfo<v8::Value> const&)
3 0.1% 0.1% v8::internal::interpreter::BytecodeRegisterOptimizer::RegisterTransfer(v8::internal::interpreter::BytecodeRegisterOptimizer::RegisterInfo*, v8::internal::interpreter::BytecodeRegisterOptimizer::RegisterInfo*)
3 0.1% 0.1% v8::internal::interpreter::BytecodeRegisterOptimizer::PrepareOutputRegister(v8::internal::interpreter::Register)
3 0.1% 0.1% v8::internal::interpreter::BytecodeRegisterOptimizer::Flush()
3 0.1% 0.1% v8::internal::interpreter::BytecodeRegisterOptimizer::BytecodeRegisterOptimizer(v8::internal::Zone*, v8::internal::interpreter::BytecodeRegisterAllocator*, int, int, v8::internal::interpreter::BytecodeRegisterOptimizer::BytecodeWriter*)
3 0.1% 0.1% v8::internal::interpreter::BytecodeGenerator::VisitForAccumulatorValue(v8::internal::Expression*)
3 0.1% 0.1% v8::internal::interpreter::BytecodeArrayWriter::EmitBytecode(v8::internal::interpreter::BytecodeNode const*)
3 0.1% 0.1% v8::internal::TransitionsAccessor::Initialize()
3 0.1% 0.1% v8::internal::StubCache::Set(v8::internal::Name*, v8::internal::Map*, v8::internal::Object*)
3 0.1% 0.1% v8::internal::Runtime_StringCharCodeAt(int, v8::internal::Object**, v8::internal::Isolate*)
3 0.1% 0.1% v8::internal::ParserBase<v8::internal::Parser>::ArrowFormalParametersUnexpectedToken()
3 0.1% 0.1% v8::internal::Map::SetPrototype(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Object>, bool)
3 0.1% 0.1% v8::internal::JsonParser<false>::ScanJsonString()
3 0.1% 0.1% v8::internal::Factory::NewFixedArrayWithFiller(v8::internal::Heap::RootListIndex, int, v8::internal::Object*, v8::internal::PretenureFlag)
3 0.1% 0.1% v8::internal::Factory::InternalizeOneByteString(v8::internal::Handle<v8::internal::SeqOneByteString>, int, int)
3 0.1% 0.1% v8::internal::DescriptorArray::Sort()
3 0.1% 0.1% std::ostreambuf_iterator<char, std::char_traits<char> > std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_int<long>(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, long) const
3 0.1% 0.1% int v8::internal::BinarySearch<(v8::internal::SearchMode)0, v8::internal::TransitionArray>(v8::internal::TransitionArray*, v8::internal::Name*, int, int*)
3 0.1% 0.1% fflush
3 0.1% 0.1% __pthread_cond_wait
3 0.1% 0.1% __libc_malloc
3 0.1% 0.1% __GI___pthread_mutex_unlock
3 0.1% 0.1% __GI___pthread_mutex_lock
2 0.1% 0.1% void v8::internal::CopyWords<v8::internal::Object*>(v8::internal::Object**, v8::internal::Object* const*, unsigned long)
2 0.1% 0.1% v8::internal::parsing::ParseFunction(v8::internal::ParseInfo*, v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::interpreter::ConstantArrayBuilder::ToFixedArray(v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::interpreter::BytecodeGenerator::VisitObjectLiteral(v8::internal::ObjectLiteral*) [clone .part.628]
2 0.1% 0.1% v8::internal::interpreter::BytecodeGenerator::VisitForEffect(v8::internal::Expression*)
2 0.1% 0.1% v8::internal::interpreter::BytecodeGenerator::AllocateTopLevelRegisters()
2 0.1% 0.1% v8::internal::interpreter::BytecodeArrayWriter::MaybeElideLastBytecode(v8::internal::interpreter::Bytecode, bool) [clone .part.56]
2 0.1% 0.1% v8::internal::interpreter::BytecodeArrayBuilder::LoadContextSlot(v8::internal::interpreter::Register, int, int, v8::internal::interpreter::BytecodeArrayBuilder::ContextSlotMutability)
2 0.1% 0.1% v8::internal::ZoneList<int>::Add(int const&, v8::internal::Zone*)
2 0.1% 0.1% v8::internal::VariableProxy::BindTo(v8::internal::Variable*)
2 0.1% 0.1% v8::internal::TransitionArray::SearchDetails(int, v8::internal::PropertyKind, v8::internal::PropertyAttributes, int*)
2 0.1% 0.1% v8::internal::StringTable::LookupKey(v8::internal::Isolate*, v8::internal::StringTableKey*)
2 0.1% 0.1% v8::internal::Statement::IsJump() const
2 0.1% 0.1% v8::internal::StackFrame::GetCallerState(v8::internal::StackFrame::State*) const
2 0.1% 0.1% v8::internal::StackFrame::ComputeType(v8::internal::StackFrameIteratorBase const*, v8::internal::StackFrame::State*)
2 0.1% 0.1% v8::internal::SourcePositionTableBuilder::AddEntry(v8::internal::PositionTableEntry const&)
2 0.1% 0.1% v8::internal::Script::GetPositionInfo(int, v8::internal::Script::PositionInfo*, v8::internal::Script::OffsetFlag) const
2 0.1% 0.1% v8::internal::Scope::LookupRecursive(v8::internal::ParseInfo*, v8::internal::VariableProxy*, v8::internal::Scope*)
2 0.1% 0.1% v8::internal::Scavenger::ScavengeObject(v8::internal::HeapObjectReference**, v8::internal::HeapObject*) [clone .constprop.284]
2 0.1% 0.1% v8::internal::Runtime_NewClosure_Tenured(int, v8::internal::Object**, v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::PointersUpdatingVisitor::VisitRootPointer(v8::internal::Root, char const*, v8::internal::Object**)
2 0.1% 0.1% v8::internal::ParserBase<v8::internal::Parser>::ParseStatementList(v8::internal::ZoneList<v8::internal::Statement*>*, v8::internal::Token::Value, bool, bool*)
2 0.1% 0.1% v8::internal::ParserBase<v8::internal::Parser>::ParseStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
2 0.1% 0.1% v8::internal::ParserBase<v8::internal::Parser>::ParseFormalParameter(v8::internal::ParserFormalParameters*, bool*)
2 0.1% 0.1% v8::internal::ParserBase<v8::internal::Parser>::ParseExpressionOrLabelledStatement(v8::internal::ZoneList<v8::internal::AstRawString const*>*, v8::internal::AllowLabelledFunctionStatement, bool*)
2 0.1% 0.1% v8::internal::Parser::SetFunctionNameFromIdentifierRef(v8::internal::Expression*, v8::internal::Expression*)
2 0.1% 0.1% v8::internal::ParseInfo::ParseInfo(v8::internal::Handle<v8::internal::SharedFunctionInfo>)
2 0.1% 0.1% v8::internal::Map::GetVisitorId(v8::internal::Map*)
2 0.1% 0.1% v8::internal::Map::EnsureDescriptorSlack(v8::internal::Handle<v8::internal::Map>, int)
2 0.1% 0.1% v8::internal::LookupIterator::WriteDataValue(v8::internal::Handle<v8::internal::Object>, bool)
2 0.1% 0.1% v8::internal::LookupIterator::PropertyOrElement(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, bool*, v8::internal::LookupIterator::Configuration)
2 0.1% 0.1% v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSReceiver>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed)
2 0.1% 0.1% v8::internal::LookupIterator::GetDataValue() const
2 0.1% 0.1% v8::internal::LoadIC::Load(v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Name>)
2 0.1% 0.1% v8::internal::JSObject::MigrateToMap(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Map>, int)
2 0.1% 0.1% v8::internal::JSObject::MakePrototypesFast(v8::internal::Handle<v8::internal::Object>, v8::internal::WhereToStart, v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::JSFunction::EnsureFeedbackVector(v8::internal::Handle<v8::internal::JSFunction>)
2 0.1% 0.1% v8::internal::IncrementalMarking::WhiteToGreyAndPush(v8::internal::HeapObject*)
2 0.1% 0.1% v8::internal::HeapObject::SizeFromMap(v8::internal::Map*) const
2 0.1% 0.1% v8::internal::HashTable<v8::internal::StringTable, v8::internal::StringTableShape>::FindInsertionEntry(unsigned int)
2 0.1% 0.1% v8::internal::FeedbackVector::New(v8::internal::Isolate*, v8::internal::Handle<v8::internal::SharedFunctionInfo>)
2 0.1% 0.1% v8::internal::FeedbackVector::GetKind(v8::internal::FeedbackSlot) const
2 0.1% 0.1% v8::internal::FeedbackNexus::StateFromFeedback() const
2 0.1% 0.1% v8::internal::FeedbackNexus::ConfigurePolymorphic(v8::internal::Handle<v8::internal::Name>, std::vector<v8::internal::Handle<v8::internal::Map>, std::allocator<v8::internal::Handle<v8::internal::Map> > > const&, std::vector<v8::internal::MaybeObjectHandle, std::allocator<v8::internal::MaybeObjectHandle> >*)
2 0.1% 0.1% v8::internal::Dictionary<v8::internal::NameDictionary, v8::internal::NameDictionaryShape>::NumberOfEnumerableProperties()
2 0.1% 0.1% v8::internal::DescriptorArray::Append(v8::internal::Descriptor*)
2 0.1% 0.1% v8::internal::Compiler::PostInstantiation(v8::internal::Handle<v8::internal::JSFunction>, v8::internal::PretenureFlag)
2 0.1% 0.1% v8::internal::CompilationCacheTable::Age()
2 0.1% 0.1% v8::internal::BoyerMooreLookahead::BoyerMooreLookahead(int, v8::internal::RegExpCompiler*, v8::internal::Zone*)
2 0.1% 0.1% v8::internal::AstRawString::Compare(void*, void*)
2 0.1% 0.1% v8::internal::AllocWithRetry(unsigned long)
2 0.1% 0.1% v8::internal::(anonymous namespace)::LogFunctionCompilation(v8::internal::CodeEventListener::LogEventsAndTags, v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::Handle<v8::internal::Script>, v8::internal::Handle<v8::internal::AbstractCode>, bool, double, v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::(anonymous namespace)::JSObjectWalkVisitor<v8::internal::AllocationSiteUsageContext>::StructureWalk(v8::internal::Handle<v8::internal::JSObject>)
2 0.1% 0.1% v8::base::TimeTicks::HighResolutionNow()
2 0.1% 0.1% std::ostream& std::ostream::_M_insert<long>(long)
2 0.1% 0.1% node::contextify::ContextifyContext::MakeContext(v8::FunctionCallbackInfo<v8::Value> const&)
2 0.1% 0.1% __fxstat
2 0.1% 0.1% _IO_file_xsputn
1 0.0% 0.0% void v8::internal::StringHasher::AddCharacters<unsigned short>(unsigned short const*, int)
1 0.0% 0.0% void v8::internal::LookupIterator::NextInternal<false>(v8::internal::Map*, v8::internal::JSReceiver*)
1 0.0% 0.0% void v8::internal::BodyDescriptorBase::IteratePointers<v8::internal::MarkingVisitor<(v8::internal::FixedArrayVisitationMode)1, (v8::internal::TraceRetainingPathMode)1, v8::internal::IncrementalMarkingState> >(v8::internal::HeapObject*, int, int, v8::internal::MarkingVisitor<(v8::internal::FixedArrayVisitationMode)1, (v8::internal::TraceRetainingPathMode)1, v8::internal::IncrementalMarkingState>*)
1 0.0% 0.0% void v8::internal::BodyDescriptorBase::IteratePointers<v8::internal::IterateAndScavengePromotedObjectsVisitor>(v8::internal::HeapObject*, int, int, v8::internal::IterateAndScavengePromotedObjectsVisitor*)
1 0.0% 0.0% void v8::internal::BodyDescriptorApply<v8::internal::CallIterateBody, void, v8::internal::Map*, v8::internal::HeapObject*, int, v8::internal::RecordMigratedSlotVisitor*>(v8::internal::InstanceType, v8::internal::Map*, v8::internal::HeapObject*, int, v8::internal::RecordMigratedSlotVisitor*)
1 0.0% 0.0% void v8::Utf8WriterVisitor::Visit<unsigned char>(unsigned char const*, int)
1 0.0% 0.0% void std::vector<v8::internal::interpreter::ConstantArrayBuilder::Entry, v8::internal::ZoneAllocator<v8::internal::interpreter::ConstantArrayBuilder::Entry> >::_M_emplace_back_aux<v8::internal::interpreter::ConstantArrayBuilder::Entry const&>(v8::internal::interpreter::ConstantArrayBuilder::Entry const&)
1 0.0% 0.0% void std::vector<v8::internal::Handle<v8::internal::Map>, std::allocator<v8::internal::Handle<v8::internal::Map> > >::_M_emplace_back_aux<v8::internal::Handle<v8::internal::Map> >(v8::internal::Handle<v8::internal::Map>&&)
1 0.0% 0.0% void std::__introsort_loop<v8::base::AtomicElement<v8::internal::Smi*>*, long, __gnu_cxx::__ops::_Iter_comp_iter<v8::internal::EnumIndexComparator<v8::internal::NameDictionary> > >(v8::base::AtomicElement<v8::internal::Smi*>*, v8::base::AtomicElement<v8::internal::Smi*>*, long, __gnu_cxx::__ops::_Iter_comp_iter<v8::internal::EnumIndexComparator<v8::internal::NameDictionary> >)
1 0.0% 0.0% void node::StreamBase::JSMethod<node::LibuvStreamWrap, &node::StreamBase::Shutdown>(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% void node::Buffer::(anonymous namespace)::StringWrite<(node::encoding)5>(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% v8::internal::interpreter::Register::FromParameterIndex(int, int)
1 0.0% 0.0% v8::internal::interpreter::InterpreterCompilationJob::ExecuteJobImpl()
1 0.0% 0.0% v8::internal::interpreter::ConstantArrayBuilder::Insert(v8::internal::AstRawString const*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeRegisterAllocator::NewRegisterList(int)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::VisitThrow(v8::internal::Throw*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::VisitStatements(v8::internal::ZoneList<v8::internal::Statement*>*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::VisitPropertyLoadForRegister(v8::internal::interpreter::Register, v8::internal::Property*, v8::internal::interpreter::Register)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::VisitNoStackOverflowCheck(v8::internal::AstNode*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::VisitForRegisterValue(v8::internal::Expression*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::VisitCall(v8::internal::Call*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::FinalizeBytecode(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Script>)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::ControlScopeForTopLevel::Execute(v8::internal::interpreter::BytecodeGenerator::ControlScope::Command, v8::internal::Statement*, int)
1 0.0% 0.0% v8::internal::interpreter::BytecodeGenerator::AllocateDeferredConstants(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Script>)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayWriter::WriteJump(v8::internal::interpreter::BytecodeNode*, v8::internal::interpreter::BytecodeLabel*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayWriter::Write(v8::internal::interpreter::BytecodeNode*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayWriter::ToBytecodeArray(v8::internal::Isolate*, int, int, v8::internal::Handle<v8::internal::ByteArray>)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayWriter::PatchJumpWith8BitOperand(unsigned long, int)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::StoreNamedProperty(v8::internal::interpreter::Register, v8::internal::AstRawString const*, int, v8::internal::LanguageMode)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::StoreNamedProperty(v8::internal::interpreter::Register, unsigned long, int, v8::internal::LanguageMode)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::LoadNull()
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::JumpIfTrue(v8::internal::interpreter::BytecodeArrayBuilder::ToBooleanMode, v8::internal::interpreter::BytecodeLabel*)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::JumpIfNotNil(v8::internal::interpreter::BytecodeLabel*, v8::internal::Token::Value, v8::internal::interpreter::BytecodeArrayBuilder::NilValue)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::CompareOperation(v8::internal::Token::Value, v8::internal::interpreter::Register, int)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::CallUndefinedReceiver(v8::internal::interpreter::Register, v8::internal::interpreter::RegisterList, int)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::Bind(v8::internal::interpreter::BytecodeLabel*)
1 0.0% 0.0% v8::internal::compiler::SourcePositionTable::GetSourcePosition(v8::internal::compiler::Node*) const
1 0.0% 0.0% v8::internal::compiler::OperatorProperties::HasContextInput(v8::internal::compiler::Operator const*)
1 0.0% 0.0% v8::internal::compiler::OperationTyper::StrictEqual(v8::internal::compiler::Type, v8::internal::compiler::Type)
1 0.0% 0.0% v8::internal::compiler::NodeProperties::IsControlEdge(v8::internal::compiler::Edge)
1 0.0% 0.0% v8::internal::compiler::Node::New(v8::internal::Zone*, unsigned int, v8::internal::compiler::Operator const*, int, v8::internal::compiler::Node* const*, bool)
1 0.0% 0.0% v8::internal::compiler::JSTypedLowering::ReduceJSAdd(v8::internal::compiler::Node*)
1 0.0% 0.0% v8::internal::compiler::JSNativeContextSpecialization::ReduceNamedAccess(v8::internal::compiler::Node*, v8::internal::compiler::Node*, std::vector<v8::internal::Handle<v8::internal::Map>, std::allocator<v8::internal::Handle<v8::internal::Map> > > const&, v8::internal::Handle<v8::internal::Name>, v8::internal::compiler::AccessMode, v8::internal::compiler::Node*)
1 0.0% 0.0% v8::internal::compiler::JSInliningHeuristic::Reduce(v8::internal::compiler::Node*)
1 0.0% 0.0% v8::internal::compiler::InstructionOperandConverter::ToConstant(v8::internal::compiler::InstructionOperand*) [clone .isra.102]
1 0.0% 0.0% v8::internal::compiler::DeadCodeElimination::ReduceNode(v8::internal::compiler::Node*)
1 0.0% 0.0% v8::internal::compiler::DeadCodeElimination::Reduce(v8::internal::compiler::Node*)
1 0.0% 0.0% v8::internal::compiler::BytecodeAnalysis::Analyze(v8::internal::BailoutId)
1 0.0% 0.0% v8::internal::VariableMap::Declare(v8::internal::Zone*, v8::internal::Scope*, v8::internal::AstRawString const*, v8::internal::VariableMode, v8::internal::VariableKind, v8::internal::InitializationFlag, v8::internal::MaybeAssignedFlag, bool*)
1 0.0% 0.0% v8::internal::Variable::IsGlobalObjectProperty() const
1 0.0% 0.0% v8::internal::TransitionsAccessor::SearchTransition(v8::internal::Name*, v8::internal::PropertyKind, v8::internal::PropertyAttributes)
1 0.0% 0.0% v8::internal::TransitionsAccessor::ExpectedTransitionKey()
1 0.0% 0.0% v8::internal::ThinString::ThinStringGet(int)
1 0.0% 0.0% v8::internal::TextNode::GetQuickCheckDetails(v8::internal::QuickCheckDetails*, v8::internal::RegExpCompiler*, int, bool)
1 0.0% 0.0% v8::internal::StringTable::LookupString(v8::internal::Isolate*, v8::internal::Handle<v8::internal::String>)
1 0.0% 0.0% v8::internal::StringHasher::GetHashField()
1 0.0% 0.0% v8::internal::String::ToNumber(v8::internal::Handle<v8::internal::String>)
1 0.0% 0.0% v8::internal::String::SlowEquals(v8::internal::String*)
1 0.0% 0.0% v8::internal::String::GetFlatContent()
1 0.0% 0.0% v8::internal::String::CalculateLineEnds(v8::internal::Handle<v8::internal::String>, bool)
1 0.0% 0.0% v8::internal::StoreIC::LookupForWrite(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::Object::StoreFromKeyed)
1 0.0% 0.0% v8::internal::StoreBuffer::InsertDuringRuntime(v8::internal::StoreBuffer*, unsigned long)
1 0.0% 0.0% v8::internal::StandardFrame::ComputeCallerState(v8::internal::StackFrame::State*) const
1 0.0% 0.0% v8::internal::StackGuard::PushInterruptsScope(v8::internal::InterruptsScope*)
1 0.0% 0.0% v8::internal::StackGuard::HandleInterrupts()
1 0.0% 0.0% v8::internal::Space::AllocationStep(int, unsigned long, int)
1 0.0% 0.0% v8::internal::SharedFunctionInfo::SetScript(v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::Handle<v8::internal::Object>, bool)
1 0.0% 0.0% v8::internal::SharedFunctionInfo::InitFromFunctionLiteral(v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::FunctionLiteral*, bool)
1 0.0% 0.0% v8::internal::ScriptContextTable::Lookup(v8::internal::Handle<v8::internal::ScriptContextTable>, v8::internal::Handle<v8::internal::String>, v8::internal::ScriptContextTable::LookupResult*)
1 0.0% 0.0% v8::internal::ScopeInfo::SetPositionInfo(int, int)
1 0.0% 0.0% v8::internal::Scope::Snapshot::Snapshot(v8::internal::Scope*)
1 0.0% 0.0% v8::internal::Scope::Scope(v8::internal::Zone*, v8::internal::ScopeType, v8::internal::Handle<v8::internal::ScopeInfo>)
1 0.0% 0.0% v8::internal::Scope::GetDeclarationScope()
1 0.0% 0.0% v8::internal::Scope::FinalizeBlockScope()
1 0.0% 0.0% v8::internal::Scope::CheckConflictingVarDeclarations()
1 0.0% 0.0% v8::internal::Scope::AsDeclarationScope()
1 0.0% 0.0% v8::internal::Scavenger::ScavengePage(v8::internal::MemoryChunk*)
1 0.0% 0.0% v8::internal::Scanner::Scanner(v8::internal::UnicodeCache*)
1 0.0% 0.0% v8::internal::Scanner::ScanString()
1 0.0% 0.0% v8::internal::Scanner::ScanNumber(bool)
1 0.0% 0.0% v8::internal::Scanner::PushBack(int)
1 0.0% 0.0% v8::internal::Scanner::Initialize(v8::internal::Utf16CharacterStream*, bool)
1 0.0% 0.0% v8::internal::Scanner::CurrentSymbol(v8::internal::AstValueFactory*) const
1 0.0% 0.0% v8::internal::Scanner::BookmarkScope::Set()
1 0.0% 0.0% v8::internal::Runtime_StringBuilderJoin(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_DefineDataPropertyInLiteral(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_CreateObjectLiteral(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime::SetObjectProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, v8::internal::LanguageMode)
1 0.0% 0.0% v8::internal::RegExpParser::ParseCharacterClass(v8::internal::RegExpBuilder const*)
1 0.0% 0.0% v8::internal::RegExpDisjunction::RegExpDisjunction(v8::internal::ZoneList<v8::internal::RegExpTree*>*)
1 0.0% 0.0% v8::internal::RegExpCompiler::RegExpCompiler(v8::internal::Isolate*, v8::internal::Zone*, int, bool)
1 0.0% 0.0% v8::internal::RegExpCharacterClass::is_standard(v8::internal::Zone*) [clone .part.314]
1 0.0% 0.0% v8::internal::RegExpBuilder::FlushCharacters()
1 0.0% 0.0% v8::internal::Processor::Process(v8::internal::ZoneList<v8::internal::Statement*>*)
1 0.0% 0.0% v8::internal::PerIsolateAssertScope<(v8::internal::PerIsolateAssertType)0, false>::PerIsolateAssertScope(v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::PatternRewriter::VisitVariableProxy(v8::internal::VariableProxy*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::PreParser>::ParseAssignmentExpression(bool, bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParseUnaryExpression(bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParsePostfixExpression(bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParseObjectPropertyDefinition(v8::internal::ParserBase<v8::internal::Parser>::ObjectLiteralChecker*, bool*, bool*, bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParseObjectLiteral(bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParseLeftHandSideExpression(bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParseIdentifierName(bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParseFunctionBody(v8::internal::ZoneList<v8::internal::Statement*>*, v8::internal::AstRawString const*, int, v8::internal::ParserFormalParameters const&, v8::internal::FunctionKind, v8::internal::FunctionLiteral::FunctionType, bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParseFormalParameterList(v8::internal::ParserFormalParameters*, bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::ParseBinaryExpression(int, bool, bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::Expect(v8::internal::Token::Value, bool*)
1 0.0% 0.0% v8::internal::ParserBase<v8::internal::Parser>::BindingPatternUnexpectedToken()
1 0.0% 0.0% v8::internal::Parser::ShortcutNumericLiteralBinaryExpression(v8::internal::Expression**, v8::internal::Expression*, v8::internal::Token::Value, int)
1 0.0% 0.0% v8::internal::Parser::Parser(v8::internal::ParseInfo*)
1 0.0% 0.0% v8::internal::Parser::ParseFunctionLiteral(v8::internal::AstRawString const*, v8::internal::Scanner::Location, v8::internal::FunctionNameValidity, v8::internal::FunctionKind, int, v8::internal::FunctionLiteral::FunctionType, v8::internal::LanguageMode, v8::internal::ZoneList<v8::internal::AstRawString const*>*, bool*)
1 0.0% 0.0% v8::internal::Parser::ParseFunction(v8::internal::Isolate*, v8::internal::ParseInfo*, v8::internal::Handle<v8::internal::SharedFunctionInfo>)
1 0.0% 0.0% v8::internal::Parser::DoParseFunction(v8::internal::ParseInfo*, v8::internal::AstRawString const*)
1 0.0% 0.0% v8::internal::Parser::Declare(v8::internal::Declaration*, v8::internal::ParserBase<v8::internal::Parser>::DeclarationDescriptor::Kind, v8::internal::VariableMode, v8::internal::InitializationFlag, bool*, v8::internal::Scope*, int)
1 0.0% 0.0% v8::internal::ParseInfo::~ParseInfo()
1 0.0% 0.0% v8::internal::PagedSpace::is_local()
1 0.0% 0.0% v8::internal::PagedSpace::AllocateRaw(int, v8::internal::AllocationAlignment)
1 0.0% 0.0% v8::internal::OutSet::Set(unsigned int, v8::internal::Zone*)
1 0.0% 0.0% v8::internal::OrderedHashTable<v8::internal::OrderedHashSet, 1>::EnsureGrowable(v8::internal::Handle<v8::internal::OrderedHashSet>)
1 0.0% 0.0% v8::internal::OrderedHashSet::Add(v8::internal::Handle<v8::internal::OrderedHashSet>, v8::internal::Handle<v8::internal::Object>)
1 0.0% 0.0% v8::internal::Operand::Operand(v8::internal::Register, int)
1 0.0% 0.0% v8::internal::ObjectLiteralProperty::emit_store() const
1 0.0% 0.0% v8::internal::ObjectLiteral::BuildConstantProperties(v8::internal::Isolate*) [clone .part.100]
1 0.0% 0.0% v8::internal::Object::OptimalRepresentation() [clone .part.258]
1 0.0% 0.0% v8::internal::Object::GetProperty(v8::internal::LookupIterator*)
1 0.0% 0.0% v8::internal::Object::ConvertToInteger(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>)
1 0.0% 0.0% v8::internal::Object::AddDataProperty(v8::internal::LookupIterator*, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::ShouldThrow, v8::internal::Object::StoreFromKeyed)
1 0.0% 0.0% v8::internal::Object* v8::internal::(anonymous namespace)::SearchRegExpMultiple<true>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::String>, v8::internal::Handle<v8::internal::JSRegExp>, v8::internal::Handle<v8::internal::RegExpMatchInfo>, v8::internal::Handle<v8::internal::JSArray>)
1 0.0% 0.0% v8::internal::OFStreamBase::sync()
1 0.0% 0.0% v8::internal::MemoryChunk::UpdateHighWaterMark(unsigned long) [clone .part.107]
1 0.0% 0.0% v8::internal::MemoryChunk::Initialize(v8::internal::Heap*, unsigned long, unsigned long, unsigned long, unsigned long, v8::internal::Executability, v8::internal::Space*, v8::internal::VirtualMemory*)
1 0.0% 0.0% v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<true>(v8::internal::Isolate*, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::Handle<v8::internal::FunctionTemplateInfo>, v8::internal::Handle<v8::internal::Object>, v8::internal::BuiltinArguments)
1 0.0% 0.0% v8::internal::MarkCompactCollector::CompactTransitionArray(v8::internal::Map*, v8::internal::TransitionArray*, v8::internal::DescriptorArray*)
1 0.0% 0.0% v8::internal::MapUpdater::ReconfigureElementsKind(v8::internal::ElementsKind)
1 0.0% 0.0% v8::internal::MapUpdater::BuildDescriptorArray()
1 0.0% 0.0% v8::internal::Map::WeakCellForMap(v8::internal::Handle<v8::internal::Map>)
1 0.0% 0.0% v8::internal::Map::TransitionToDataProperty(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::PropertyConstness, v8::internal::Object::StoreFromKeyed)
1 0.0% 0.0% v8::internal::Map::SetInObjectUnusedPropertyFields(int)
1 0.0% 0.0% v8::internal::Map::RawCopy(v8::internal::Handle<v8::internal::Map>, int, int)
1 0.0% 0.0% v8::internal::Map::PrepareForDataProperty(v8::internal::Handle<v8::internal::Map>, int, v8::internal::PropertyConstness, v8::internal::Handle<v8::internal::Object>)
1 0.0% 0.0% v8::internal::Map::NumberOfEnumerableProperties() const
1 0.0% 0.0% v8::internal::Map::IsUnboxedDoubleField(v8::internal::FieldIndex) const
1 0.0% 0.0% v8::internal::Map::InstancesNeedRewriting(v8::internal::Map*, int, int, int, int*) const [clone .part.342]
1 0.0% 0.0% v8::internal::Map::GetPrototypeChainRootMap(v8::internal::Isolate*) const
1 0.0% 0.0% v8::internal::Map::GetOrCreatePrototypeWeakCell(v8::internal::Handle<v8::internal::JSReceiver>, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Map::GetOrCreatePrototypeChainValidityCell(v8::internal::Handle<v8::internal::Map>, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Map::GetConstructor() const
1 0.0% 0.0% v8::internal::Map::FindFieldOwner(int) const
1 0.0% 0.0% v8::internal::Map::CopyDropDescriptors(v8::internal::Handle<v8::internal::Map>)
1 0.0% 0.0% v8::internal::LookupIterator::State v8::internal::LookupIterator::LookupInSpecialHolder<false>(v8::internal::Map*, v8::internal::JSReceiver*)
1 0.0% 0.0% v8::internal::LookupIterator::PropertyOrElement(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::JSReceiver>, v8::internal::LookupIterator::Configuration)
1 0.0% 0.0% v8::internal::LookupIterator::GetFieldIndex() const
1 0.0% 0.0% v8::internal::LookupIterator::FetchValue() const [clone .part.57]
1 0.0% 0.0% v8::internal::Logger::ApiEntryCall(char const*)
1 0.0% 0.0% v8::internal::Log::MessageBuilder& v8::internal::Log::MessageBuilder::operator<< <char const*>(char const*)
1 0.0% 0.0% v8::internal::LoadIC::UpdateCaches(v8::internal::LookupIterator*)
1 0.0% 0.0% v8::internal::LoadIC::ComputeHandler(v8::internal::LookupIterator*)
1 0.0% 0.0% v8::internal::LoadGlobalIC::Load(v8::internal::Handle<v8::internal::Name>)
1 0.0% 0.0% v8::internal::LargeObjectSpace::FindPage(unsigned long)
1 0.0% 0.0% v8::internal::KeywordOrIdentifierToken(unsigned char const*, int) [clone .part.0]
1 0.0% 0.0% v8::internal::KeyedStoreIC::StoreElementHandler(v8::internal::Handle<v8::internal::Map>, v8::internal::KeyedAccessStoreMode)
1 0.0% 0.0% v8::internal::KeyAccumulator::CollectOwnKeys(v8::internal::Handle<v8::internal::JSReceiver>, v8::internal::Handle<v8::internal::JSObject>)
1 0.0% 0.0% v8::internal::JSReceiver::SetProperties(v8::internal::HeapObject*)
1 0.0% 0.0% v8::internal::JSReceiver::OrdinaryDefineOwnProperty(v8::internal::Isolate*, v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyDescriptor*, v8::internal::ShouldThrow)
1 0.0% 0.0% v8::internal::JSObject::GetHeaderSize(v8::internal::InstanceType, bool)
1 0.0% 0.0% v8::internal::JSObject::FastPropertyAt(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Representation, v8::internal::FieldIndex)
1 0.0% 0.0% v8::internal::JSObject::AddDataElement(v8::internal::Handle<v8::internal::JSObject>, unsigned int, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::ShouldThrow)
1 0.0% 0.0% v8::internal::IteratingStringHasher::VisitConsString(v8::internal::ConsString*)
1 0.0% 0.0% v8::internal::InternalizedStringTableCleaner::VisitPointers(v8::internal::HeapObject*, v8::internal::Object**, v8::internal::Object**)
1 0.0% 0.0% v8::internal::InternalizedStringKey::IsMatch(v8::internal::Object*)
1 0.0% 0.0% v8::internal::Heap::ZapCodeObject(unsigned long, int)
1 0.0% 0.0% v8::internal::Heap::UpdateAllocationSite(v8::internal::Map*, v8::internal::HeapObject*, std::unordered_map<v8::internal::AllocationSite*, unsigned long, std::hash<v8::internal::AllocationSite*>, std::equal_to<v8::internal::AllocationSite*>, std::allocator<std::pair<v8::internal::AllocationSite* const, unsigned long> > >*)
1 0.0% 0.0% v8::internal::Heap::RecordWrite(v8::internal::Object*, v8::internal::Object**, v8::internal::Object*)
1 0.0% 0.0% v8::internal::Heap::ProcessPretenuringFeedback() [clone .part.884]
1 0.0% 0.0% v8::internal::Heap::CreateFillerObjectAt(unsigned long, int, v8::internal::ClearRecordedSlots, v8::internal::ClearFreedMemoryMode)
1 0.0% 0.0% v8::internal::Heap::AllocateRawWithRetryOrFail(int, v8::internal::AllocationSpace, v8::internal::AllocationAlignment)
1 0.0% 0.0% v8::internal::Handle<v8::internal::FixedArray> v8::internal::Factory::NewFixedArrayWithMap<v8::internal::FixedArray>(v8::internal::Heap::RootListIndex, int, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::GlobalHandles::IdentifyWeakUnmodifiedObjects(bool (*)(v8::internal::Object**))
1 0.0% 0.0% v8::internal::FixedArray::CopyTo(int, v8::internal::FixedArray*, int, int) const
1 0.0% 0.0% v8::internal::FixStaleLeftTrimmedHandlesVisitor::VisitRootPointers(v8::internal::Root, char const*, v8::internal::Object**, v8::internal::Object**)
1 0.0% 0.0% v8::internal::FieldType::Any()
1 0.0% 0.0% v8::internal::FeedbackVectorSpec::AddSlot(v8::internal::FeedbackSlotKind)
1 0.0% 0.0% v8::internal::FeedbackNexus::FindHandlers(std::vector<v8::internal::MaybeObjectHandle, std::allocator<v8::internal::MaybeObjectHandle> >*, int) const
1 0.0% 0.0% v8::internal::FeedbackMetadata::New(v8::internal::Isolate*, v8::internal::FeedbackVectorSpec const*)
1 0.0% 0.0% v8::internal::Factory::NewNumber(double, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::Factory::NewJSTypedArray(v8::internal::ExternalArrayType, v8::internal::Handle<v8::internal::JSArrayBuffer>, unsigned long, unsigned long, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::Factory::NewJSObjectFromMap(v8::internal::Handle<v8::internal::Map>, v8::internal::PretenureFlag, v8::internal::Handle<v8::internal::AllocationSite>)
1 0.0% 0.0% v8::internal::Factory::NewJSObject(v8::internal::Handle<v8::internal::JSFunction>, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::Factory::NewFunctionFromSharedFunctionInfo(v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::Handle<v8::internal::Context>, v8::internal::Handle<v8::internal::FeedbackCell>, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::Factory::NewFunctionFromSharedFunctionInfo(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::Handle<v8::internal::Context>, v8::internal::Handle<v8::internal::FeedbackCell>, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::Factory::NewFunction(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::Handle<v8::internal::Context>, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::Factory::NewFixedArrayWithHoles(int, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::Factory::NewFixedArray(int, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::Factory::NewCode(v8::internal::CodeDesc const&, v8::internal::Code::Kind, v8::internal::Handle<v8::internal::Object>, int, v8::internal::MaybeHandle<v8::internal::ByteArray>, v8::internal::MaybeHandle<v8::internal::DeoptimizationData>, v8::internal::Movability, unsigned int, bool, int, int, int)
1 0.0% 0.0% v8::internal::Factory::InternalizedStringMapForString(v8::internal::Handle<v8::internal::String>)
1 0.0% 0.0% v8::internal::Factory::InitializeMap(v8::internal::Map*, v8::internal::InstanceType, int, v8::internal::ElementsKind, int)
1 0.0% 0.0% v8::internal::Factory::AllocateRawWithImmortalMap(int, v8::internal::PretenureFlag, v8::internal::Map*, v8::internal::AllocationAlignment) [clone .constprop.141]
1 0.0% 0.0% v8::internal::Factory::AllocateRawArray(int, v8::internal::PretenureFlag)
1 0.0% 0.0% v8::internal::ExpressionClassifier<v8::internal::ParserTypes<v8::internal::Parser> >::Accumulate(v8::internal::ExpressionClassifier<v8::internal::ParserTypes<v8::internal::Parser> >*, unsigned int)
1 0.0% 0.0% v8::internal::Expression::IsPropertyName() const
1 0.0% 0.0% v8::internal::ExitFrame::ComputeCallerState(v8::internal::StackFrame::State*) const
1 0.0% 0.0% v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*)
1 0.0% 0.0% v8::internal::Dictionary<v8::internal::NameDictionary, v8::internal::NameDictionaryShape>::SetEntry(int, v8::internal::Object*, v8::internal::Object*, v8::internal::PropertyDetails)
1 0.0% 0.0% v8::internal::DeclarationScope::DeclareParameter(v8::internal::AstRawString const*, v8::internal::VariableMode, bool, bool, bool*, v8::internal::AstValueFactory*, int)
1 0.0% 0.0% v8::internal::DeclarationScope::DeclareDefaultFunctionVariables(v8::internal::AstValueFactory*)
1 0.0% 0.0% v8::internal::DeclarationScope::AttachOuterScopeInfo(v8::internal::ParseInfo*, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::ConsString::ConsStringGet(int)
1 0.0% 0.0% v8::internal::ConsString* v8::internal::String::VisitFlat<v8::internal::IteratingStringHasher>(v8::internal::IteratingStringHasher*, v8::internal::String*, int)
1 0.0% 0.0% v8::internal::CompileTimeValue::IsCompileTimeValue(v8::internal::Expression*)
1 0.0% 0.0% v8::internal::CompilationCacheRegExp::Lookup(v8::internal::Handle<v8::internal::String>, v8::base::Flags<v8::internal::JSRegExp::Flag, int>)
1 0.0% 0.0% v8::internal::ChoiceNode::Emit(v8::internal::RegExpCompiler*, v8::internal::Trace*)
1 0.0% 0.0% v8::internal::Builtin_StringPrototypeLastIndexOf(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Builtin_ArrayConcat(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::BoilerplateDescription::name(int) const
1 0.0% 0.0% v8::internal::BaseNameDictionary<v8::internal::NameDictionary, v8::internal::NameDictionaryShape>::AddNoUpdateNextEnumerationIndex(v8::internal::Handle<v8::internal::NameDictionary>, v8::internal::Handle<v8::internal::Name>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyDetails, int*)
1 0.0% 0.0% v8::internal::AstValueFactory::NewConsString()
1 0.0% 0.0% v8::internal::AstValueFactory::GetString(v8::internal::Handle<v8::internal::String>)
1 0.0% 0.0% v8::internal::Assembler::arithmetic_op(unsigned char, v8::internal::Register, v8::internal::Operand, int)
1 0.0% 0.0% v8::internal::Analysis::VisitAssertion(v8::internal::AssertionNode*)
1 0.0% 0.0% v8::internal::AccountingAllocator::GetSegment(unsigned long)
1 0.0% 0.0% v8::internal::Accessors::FunctionPrototypeSetter(v8::Local<v8::Name>, v8::Local<v8::Value>, v8::PropertyCallbackInfo<v8::Boolean> const&)
1 0.0% 0.0% v8::internal::(anonymous namespace)::MakeStringThin(v8::internal::String*, v8::internal::String*, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::(anonymous namespace)::JSObjectWalkVisitor<v8::internal::(anonymous namespace)::AllocationSiteCreationContext>::StructureWalk(v8::internal::Handle<v8::internal::JSObject>)
1 0.0% 0.0% v8::internal::(anonymous namespace)::GetIdentityHashHelper(v8::internal::Isolate*, v8::internal::JSReceiver*) [clone .isra.363]
1 0.0% 0.0% v8::internal::(anonymous namespace)::GetFastEnumPropertyKeys(v8::internal::Isolate*, v8::internal::Handle<v8::internal::JSObject>)
1 0.0% 0.0% v8::internal::(anonymous namespace)::CopyObjectToObjectElements(v8::internal::FixedArrayBase*, v8::internal::ElementsKind, unsigned int, v8::internal::FixedArrayBase*, v8::internal::ElementsKind, unsigned int, int)
1 0.0% 0.0% v8::base::hash_value(unsigned long)
1 0.0% 0.0% v8::base::TemplateHashMapImpl<void*, void*, v8::base::HashEqualityThenKeyMatcher<void*, bool (*)(void*, void*)>, v8::base::DefaultAllocationPolicy>::FillEmptyEntry(v8::base::TemplateHashMapEntry<void*, void*>*, void* const&, void* const&, unsigned int, v8::base::DefaultAllocationPolicy) [clone .isra.34] [clone .part.35]
1 0.0% 0.0% uv__work_done
1 0.0% 0.0% uv__run_idle
1 0.0% 0.0% uv__io_poll
1 0.0% 0.0% std::vector<v8::internal::SourcePosition, v8::internal::ZoneAllocator<v8::internal::SourcePosition> >::_M_fill_insert(__gnu_cxx::__normal_iterator<v8::internal::SourcePosition*, std::vector<v8::internal::SourcePosition, v8::internal::ZoneAllocator<v8::internal::SourcePosition> > >, unsigned long, v8::internal::SourcePosition const&)
1 0.0% 0.0% std::_Rb_tree_insert_and_rebalance(bool, std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node_base&)
1 0.0% 0.0% read
1 0.0% 0.0% operator new[](unsigned long)
1 0.0% 0.0% operator delete(void*)
1 0.0% 0.0% non-virtual thunk to node::LibuvStreamWrap::GetAsyncWrap()
1 0.0% 0.0% node::tracing::TraceEventHelper::GetTracingController()
1 0.0% 0.0% node::fs::ReadDir(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% node::fs::NewFSReqWrap(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% node::crypto::RandomBytes(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% node::TTYWrap::IsTTY(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% node::TTYWrap::GetWindowSize(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% node::EnvQuery(v8::Local<v8::Name>, v8::PropertyCallbackInfo<v8::Integer> const&)
1 0.0% 0.0% node::EnvGetter(v8::Local<v8::Name>, v8::PropertyCallbackInfo<v8::Value> const&)
1 0.0% 0.0% node::CPUUsage(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% node::Buffer::(anonymous namespace)::CreateFromString(v8::FunctionCallbackInfo<v8::Value> const&)
1 0.0% 0.0% node::BaseObject::MakeWeak()::{lambda(v8::WeakCallbackInfo<node::BaseObject> const&)#1}::_FUN(v8::WeakCallbackInfo<node::BaseObject> const&)
1 0.0% 0.0% memset
1 0.0% 0.0% memchr
1 0.0% 0.0% llseek
1 0.0% 0.0% double v8::internal::(anonymous namespace)::InternalStringToDouble<unsigned char const*, unsigned char const*>(v8::internal::UnicodeCache*, unsigned char const*, unsigned char const*, int, double)
1 0.0% 0.0% close
1 0.0% 0.0% cfree
1 0.0% 0.0% bool v8::base::AsAtomic32::SetBits<unsigned int>(unsigned int*, unsigned int, unsigned int)
[Summary]:
ticks total nonlib name
273 8.1% 8.3% JavaScript
3017 89.8% 91.4% C++
45 1.3% 1.4% GC
59 1.8% Shared libraries
11 0.3% Unaccounted
[C++ entry points]:
ticks cpp total name
1691 60.1% 50.3% v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
505 17.9% 15.0% v8::internal::Runtime_CompileLazy(int, v8::internal::Object**, v8::internal::Isolate*)
98 3.5% 2.9% __lxstat
86 3.1% 2.6% __xstat
42 1.5% 1.3% v8::internal::Runtime_LoadIC_Miss(int, v8::internal::Object**, v8::internal::Isolate*)
41 1.5% 1.2% v8::internal::Runtime_StoreIC_Miss(int, v8::internal::Object**, v8::internal::Isolate*)
30 1.1% 0.9% v8::internal::Runtime_InterpreterDeserializeLazy(int, v8::internal::Object**, v8::internal::Isolate*)
30 1.1% 0.9% v8::internal::Builtin_JsonParse(int, v8::internal::Object**, v8::internal::Isolate*)
26 0.9% 0.8% v8::internal::Runtime_RegExpExec(int, v8::internal::Object**, v8::internal::Isolate*)
25 0.9% 0.7% v8::internal::Builtin_FunctionConstructor(int, v8::internal::Object**, v8::internal::Isolate*)
20 0.7% 0.6% v8::internal::Runtime_NewObject(int, v8::internal::Object**, v8::internal::Isolate*)
20 0.7% 0.6% v8::internal::Runtime_CreateObjectLiteral(int, v8::internal::Object**, v8::internal::Isolate*)
19 0.7% 0.6% v8::internal::Runtime_SetProperty(int, v8::internal::Object**, v8::internal::Isolate*)
17 0.6% 0.5% v8::internal::Runtime_DeserializeLazy(int, v8::internal::Object**, v8::internal::Isolate*)
15 0.5% 0.4% v8::internal::Runtime_CompileOptimized_Concurrent(int, v8::internal::Object**, v8::internal::Isolate*)
13 0.5% 0.4% v8::internal::Builtin_DatePrototypeToString(int, v8::internal::Object**, v8::internal::Isolate*)
10 0.4% 0.3% v8::internal::Runtime_KeyedGetProperty(int, v8::internal::Object**, v8::internal::Isolate*)
8 0.3% 0.2% v8::internal::Runtime_StringCharCodeAt(int, v8::internal::Object**, v8::internal::Isolate*)
7 0.2% 0.2% v8::internal::StringTable::LookupStringIfExists_NoAllocate(v8::internal::String*)
7 0.2% 0.2% v8::internal::Runtime_DefineDataPropertyInLiteral(int, v8::internal::Object**, v8::internal::Isolate*)
6 0.2% 0.2% v8::internal::Runtime_KeyedLoadIC_Miss(int, v8::internal::Object**, v8::internal::Isolate*)
6 0.2% 0.2% v8::internal::Builtin_ObjectDefineProperty(int, v8::internal::Object**, v8::internal::Isolate*)
5 0.2% 0.1% write
5 0.2% 0.1% v8::internal::Runtime_ObjectKeys(int, v8::internal::Object**, v8::internal::Isolate*)
5 0.2% 0.1% v8::internal::Runtime_NewClosure_Tenured(int, v8::internal::Object**, v8::internal::Isolate*)
5 0.2% 0.1% v8::internal::Runtime_KeyedStoreIC_Miss(int, v8::internal::Object**, v8::internal::Isolate*)
4 0.1% 0.1% v8::internal::Runtime_StringSplit(int, v8::internal::Object**, v8::internal::Isolate*)
4 0.1% 0.1% v8::internal::Runtime_NewClosure(int, v8::internal::Object**, v8::internal::Isolate*)
4 0.1% 0.1% v8::internal::Runtime_LoadGlobalIC_Miss(int, v8::internal::Object**, v8::internal::Isolate*)
4 0.1% 0.1% v8::internal::Runtime_ForInEnumerate(int, v8::internal::Object**, v8::internal::Isolate*)
4 0.1% 0.1% v8::internal::Builtin_ArrayBufferConstructor(int, v8::internal::Object**, v8::internal::Isolate*)
3 0.1% 0.1% v8::internal::Runtime_StringToNumber(int, v8::internal::Object**, v8::internal::Isolate*)
3 0.1% 0.1% v8::internal::Runtime_StackGuard(int, v8::internal::Object**, v8::internal::Isolate*)
3 0.1% 0.1% v8::internal::Runtime_RegExpReplace(int, v8::internal::Object**, v8::internal::Isolate*)
3 0.1% 0.1% v8::internal::Runtime_LoadFromSuper(int, v8::internal::Object**, v8::internal::Isolate*)
3 0.1% 0.1% v8::internal::Runtime_Interrupt(int, v8::internal::Object**, v8::internal::Isolate*)
2 0.1% 0.1% void v8::internal::StringHasher::AddCharacters<unsigned char>(unsigned char const*, int)
2 0.1% 0.1% v8::internal::Runtime_StringBuilderJoin(int, v8::internal::Object**, v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::Runtime_CreateRegExpLiteral(int, v8::internal::Object**, v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::OrderedHashMap::GetHash(v8::internal::Isolate*, v8::internal::Object*)
2 0.1% 0.1% v8::internal::Builtin_ObjectDefineProperties(int, v8::internal::Object**, v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::Builtin_ArrayConcat(int, v8::internal::Object**, v8::internal::Isolate*)
2 0.1% 0.1% v8::internal::(anonymous namespace)::MakeStringThin(v8::internal::String*, v8::internal::String*, v8::internal::Isolate*)
1 0.0% 0.0% void v8::internal::StringHasher::AddCharacters<unsigned short>(unsigned short const*, int)
1 0.0% 0.0% void v8::internal::String::WriteToFlat<unsigned short>(v8::internal::String*, unsigned short*, int, int)
1 0.0% 0.0% void v8::internal::String::WriteToFlat<unsigned char>(v8::internal::String*, unsigned char*, int, int)
1 0.0% 0.0% void v8::Utf8WriterVisitor::Visit<unsigned char>(unsigned char const*, int)
1 0.0% 0.0% v8::internal::interpreter::BytecodeArrayBuilder::LoadContextSlot(v8::internal::interpreter::Register, int, int, v8::internal::interpreter::BytecodeArrayBuilder::ContextSlotMutability)
1 0.0% 0.0% v8::internal::Zone::New(unsigned long)
1 0.0% 0.0% v8::internal::String::IsOneByteEqualTo(v8::internal::Vector<unsigned char const>)
1 0.0% 0.0% v8::internal::Runtime_StringIndexOfUnchecked(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_StoreGlobalIC_Miss(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_ResolvePossiblyDirectEval(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_RegExpInitializeAndCompile(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_RegExpExecMultiple(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_MapGrow(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_LoadPropertyWithInterceptor(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_HasProperty(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_GetProperty(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Runtime_CreateArrayLiteral(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::LookupIterator::ApplyTransitionToDataProperty(v8::internal::Handle<v8::internal::JSReceiver>)
1 0.0% 0.0% v8::internal::Builtin_StringPrototypeLastIndexOf(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::Builtin_ObjectGetOwnPropertySymbols(int, v8::internal::Object**, v8::internal::Isolate*)
1 0.0% 0.0% v8::internal::(anonymous namespace)::LogFunctionCompilation(v8::internal::CodeEventListener::LogEventsAndTags, v8::internal::Handle<v8::internal::SharedFunctionInfo>, v8::internal::Handle<v8::internal::Script>, v8::internal::Handle<v8::internal::AbstractCode>, bool, double, v8::internal::Isolate*)
1 0.0% 0.0% operator new[](unsigned long)
1 0.0% 0.0% node::tracing::TraceEventHelper::GetTracingController()
1 0.0% 0.0% memchr
[Bottom up (heavy) profile]:
Note: percentage shows a share of a particular caller in the total
amount of its parent calls.
Callers occupying less than 1.0% are not shown.
ticks parent name
714 21.3% node::fs::InternalModuleStat(v8::FunctionCallbackInfo<v8::Value> const&)
714 100.0% v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
714 100.0% LazyCompile: ~stat internal/modules/cjs/loader.js:82:14
374 52.4% LazyCompile: ~tryFile internal/modules/cjs/loader.js:192:17
351 93.9% LazyCompile: ~tryExtensions internal/modules/cjs/loader.js:207:23
338 96.3% LazyCompile: ~Module._findPath internal/modules/cjs/loader.js:219:28
13 3.7% LazyCompile: ~tryPackage internal/modules/cjs/loader.js:172:20
23 6.1% LazyCompile: ~tryPackage internal/modules/cjs/loader.js:172:20
23 100.0% LazyCompile: ~Module._findPath internal/modules/cjs/loader.js:219:28
340 47.6% LazyCompile: ~Module._findPath internal/modules/cjs/loader.js:219:28
340 100.0% LazyCompile: ~Module._resolveFilename internal/modules/cjs/loader.js:546:35
340 100.0% LazyCompile: ~Module._load internal/modules/cjs/loader.js:501:24
597 17.8% node::contextify::ContextifyScript::New(v8::FunctionCallbackInfo<v8::Value> const&)
597 100.0% v8::internal::Builtin_HandleApiCall(int, v8::internal::Object**, v8::internal::Isolate*)
533 89.3% LazyCompile: ~Script vm.js:43:14
533 100.0% LazyCompile: ~createScript vm.js:250:22
533 100.0% LazyCompile: ~runInThisContext vm.js:299:26
533 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
64 10.7% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
64 100.0% LazyCompile: ~NativeModule.require internal/bootstrap/loaders.js:140:34
11 17.2% LazyCompile: ~Module._load internal/modules/cjs/loader.js:501:24
11 100.0% LazyCompile: ~Module.require internal/modules/cjs/loader.js:628:36
5 7.8% Script: ~<anonymous> util.js:1:11
5 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
4 6.3% Script: ~<anonymous> stream.js:1:11
4 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
4 6.3% Script: ~<anonymous> crypto.js:1:11
4 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
3 4.7% Script: ~<anonymous> tty.js:1:11
3 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
3 4.7% Script: ~<anonymous> tls.js:1:11
3 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
3 4.7% Script: ~<anonymous> internal/fs/streams.js:1:11
3 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
3 4.7% Script: ~<anonymous> http.js:1:11
3 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
2 3.1% Script: ~<anonymous> net.js:1:11
2 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
2 3.1% Script: ~<anonymous> internal/process/main_thread_only.js:1:11
2 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
2 3.1% Script: ~<anonymous> internal/async_hooks.js:1:11
2 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
2 3.1% Script: ~<anonymous> buffer.js:1:11
2 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
2 3.1% Script: ~<anonymous> assert.js:1:11
2 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
2 3.1% Script: ~<anonymous> _http_client.js:1:11
2 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
2 3.1% LazyCompile: ~startup internal/bootstrap/node.js:30:19
2 100.0% Script: ~bootstrapNodeJSCore internal/bootstrap/node.js:15:30
2 3.1% LazyCompile: ~setupGlobalConsole internal/bootstrap/node.js:401:30
2 100.0% LazyCompile: ~startup internal/bootstrap/node.js:30:19
1 1.6% Script: ~<anonymous> internal/util/inspect.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> internal/modules/cjs/loader.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> internal/cluster/master.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> internal/child_process.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> fs.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> dns.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> cluster.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> child_process.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> _stream_wrap.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% Script: ~<anonymous> _stream_readable.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 1.6% LazyCompile: ~setupNextTick internal/process/next_tick.js:5:23
1 100.0% LazyCompile: ~startup internal/bootstrap/node.js:30:19
1 1.6% LazyCompile: ~setupGlobalTimeouts internal/bootstrap/node.js:391:31
1 100.0% LazyCompile: ~startup internal/bootstrap/node.js:30:19
353 10.5% write
225 63.7% v8::internal::Runtime_CompileLazy(int, v8::internal::Object**, v8::internal::Isolate*)
44 19.6% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
3 6.8% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:333131
3 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
3 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:332922
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:92:27651
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:82:56103
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:82:56103
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:170261
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:99850
1 100.0% LazyCompile: ~t /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:87171
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:122582
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:8898
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:228817
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:85250
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:464372
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:70375
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:421748
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:56835
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:24:17947
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:48911
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:47882
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:467695
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:83433
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:46297
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:44174
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:456925
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:455067
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:42340
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:314844
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:386456
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:386409
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:349424
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:348642
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:317783
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:312465
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:314844
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:312465
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:311597
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:310745
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:310745
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:51:5141
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:306069
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:303380
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:299609
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:22659
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:296425
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:21189
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:295075
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:21139
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:265812
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:263589
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:255653
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:246191
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:23860
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:23830
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:234329
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:230460
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:230460
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:228622
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:229267
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:8898
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:228817
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:13:36305
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:228581
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:305
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:22259
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:13:24046
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:21333
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:296425
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:21139
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:59216
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:18462
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:16964
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:16964
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:16598
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:139212
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:494705
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:104475
1 100.0% LazyCompile: ~t /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:87171
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:91022
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:6:10812
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:246191
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:51:12519
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:306069
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:59216
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:59186
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 2.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:13:34998
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:65:566
8 3.6% Builtin: ArrayForEach
1 12.5% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/sshpk/lib/formats/dnssec.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 100.0% LazyCompile: ~Module._extensions..js internal/modules/cjs/loader.js:697:37
1 12.5% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/engine.io/node_modules/ws/lib/websocket.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 100.0% LazyCompile: ~Module._extensions..js internal/modules/cjs/loader.js:697:37
1 12.5% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/domhandler/lib/node.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 100.0% LazyCompile: ~Module._extensions..js internal/modules/cjs/loader.js:697:37
1 12.5% LazyCompile: ~populateConstructorExports /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/http-errors/index.js:225:37
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/http-errors/index.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 12.5% LazyCompile: ~Server /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/engine.io/lib/server.js:29:17
1 100.0% LazyCompile: ~attach /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/engine.io/lib/engine.io.js:122:17
1 100.0% LazyCompile: ~Server.initEngine /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/socket.io/lib/index.js:307:39
1 12.5% LazyCompile: ~Pn /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:48131
1 100.0% LazyCompile: ~r /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:2209
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:2185
1 12.5% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:6:130
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:75768
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 12.5% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/busboy/deps/encoding/encoding.js:758:27
1 100.0% Builtin: ArrayForEach
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/busboy/deps/encoding/encoding.js:1:11
4 1.8% LazyCompile: ~t /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:87171
1 25.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:132678
1 100.0% LazyCompile: ~t /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:87171
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:122582
1 25.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:112986
1 100.0% LazyCompile: ~t /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:87171
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:104603
1 25.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:104603
1 100.0% LazyCompile: ~t /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:87171
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:99946
1 25.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:102696
1 100.0% LazyCompile: ~t /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:87171
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:102663
4 1.8% LazyCompile: ~emit events.js:140:44
2 50.0% LazyCompile: ~endReadableNT _stream_readable.js:1087:23
2 100.0% LazyCompile: ~_tickCallback internal/process/next_tick.js:41:25
1 25.0% LazyCompile: ~prefinish _stream_writable.js:622:19
1 100.0% LazyCompile: ~finishMaybe _stream_writable.js:635:21
1 100.0% LazyCompile: ~afterWrite _stream_writable.js:476:20
1 25.0% LazyCompile: ~_handle.close net.js:604:24
3 1.3% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/async/dist/async.js:5:19
3 100.0% Script: ~apply /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/async/dist/async.js:1:73
3 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/async/dist/async.js:1:11
3 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
3 1.3% LazyCompile: ~_tickCallback internal/process/next_tick.js:41:25
1 33.3% LazyCompile: ~Module.runMain internal/modules/cjs/loader.js:728:26
1 100.0% LazyCompile: ~startup internal/bootstrap/node.js:30:19
1 100.0% Script: ~bootstrapNodeJSCore internal/bootstrap/node.js:15:30
3 1.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:4903:22
3 100.0% LazyCompile: ~baseForOwn /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:2995:24
2 66.7% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:4875:22
1 50.0% LazyCompile: ~forEach /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:9342:21
1 50.0% LazyCompile: ~baseReduce /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:910:22
1 33.3% LazyCompile: ~forOwn /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:13014:20
1 100.0% LazyCompile: ~merge /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/sequelize/lib/utils.js:69:15
19 5.4% v8::internal::Runtime_InterpreterDeserializeLazy(int, v8::internal::Object**, v8::internal::Isolate*)
2 10.5% Script: ~<anonymous> :5:10
2 100.0% Script: ~<anonymous> :1:1
2 10.5% LazyCompile: ~selectColor /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/debug/src/debug.js:44:21
2 100.0% LazyCompile: ~createDebug /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/debug/src/debug.js:63:21
2 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/finalhandler/index.js:1:11
2 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 5.3% Script: ~runInContext /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:1406:44
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:9:11
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 5.3% Script: ~<anonymous> internal/errors.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 100.0% LazyCompile: ~NativeModule.require internal/bootstrap/loaders.js:140:34
1 100.0% Script: ~<anonymous> internal/async_hooks.js:1:11
1 5.3% Script: ~<anonymous> _stream_readable.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 100.0% LazyCompile: ~NativeModule.require internal/bootstrap/loaders.js:140:34
1 100.0% Script: ~<anonymous> stream.js:1:11
1 5.3% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/ms/index.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 100.0% LazyCompile: ~Module._extensions..js internal/modules/cjs/loader.js:697:37
1 100.0% LazyCompile: ~Module.load internal/modules/cjs/loader.js:589:33
1 5.3% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/depd/index.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 100.0% LazyCompile: ~Module._extensions..js internal/modules/cjs/loader.js:697:37
1 100.0% LazyCompile: ~Module.load internal/modules/cjs/loader.js:589:33
1 5.3% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/bluebird/js/release/util.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 100.0% LazyCompile: ~Module._extensions..js internal/modules/cjs/loader.js:697:37
1 100.0% LazyCompile: ~Module.load internal/modules/cjs/loader.js:589:33
1 5.3% LazyCompile: ~unpackBase60 /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/moment-timezone/moment-timezone.js:60:23
1 100.0% LazyCompile: ~arrayToInt /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/moment-timezone/moment-timezone.js:92:22
1 100.0% LazyCompile: ~addToGuesses /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/moment-timezone/moment-timezone.js:298:24
1 100.0% LazyCompile: ~addZone /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/moment-timezone/moment-timezone.js:382:19
1 5.3% LazyCompile: ~swsTimeline.initialize /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-stats/lib/swsTimeline.js:42:45
1 100.0% LazyCompile: ~swsProcessor.init /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-stats/lib/swsProcessor.js:78:40
1 100.0% LazyCompile: ~getMiddleware /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-stats/lib/swsInterface.js:326:29
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/app/utils/app.js:1:11
1 5.3% LazyCompile: ~swsAPIStats.initialize /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-stats/lib/swsAPIStats.js:138:44
1 100.0% LazyCompile: ~swsProcessor.init /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-stats/lib/swsProcessor.js:78:40
1 100.0% LazyCompile: ~getMiddleware /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-stats/lib/swsInterface.js:326:29
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/app/utils/app.js:1:11
1 5.3% LazyCompile: ~readSync fs.js:472:18
1 100.0% LazyCompile: ~tryReadSync fs.js:326:21
1 100.0% LazyCompile: ~readFileSync fs.js:338:22
1 100.0% LazyCompile: ~Module._extensions..js internal/modules/cjs/loader.js:697:37
1 5.3% LazyCompile: ~createUnsafeArrayBuffer buffer.js:116:33
1 100.0% LazyCompile: ~createPool buffer.js:125:20
1 100.0% Script: ~<anonymous> buffer.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 5.3% LazyCompile: ~baseIsNative /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:3415:26
1 100.0% LazyCompile: ~getNative /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:5978:23
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:1475:35
1 100.0% Script: ~runInContext /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:1406:44
1 5.3% LazyCompile: ~WriteStream tty.js:75:21
1 100.0% LazyCompile: ~createWritableStdioStream internal/process/stdio.js:158:35
1 100.0% LazyCompile: ~getStdout internal/process/stdio.js:18:21
1 100.0% Script: ~<anonymous> console.js:1:11
1 5.3% LazyCompile: ~QuickSort native array.js:530:19
1 100.0% LazyCompile: ~InnerArraySort native array.js:486:24
1 100.0% LazyCompile: ~sort native array.js:610:46
1 100.0% Script: ~<anonymous> internal/modules/cjs/helpers.js:1:11
1 5.3% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/moment-timezone/moment-timezone.js:18:18
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/moment-timezone/moment-timezone.js:7:11
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/moment-timezone/moment-timezone.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
11 3.1% v8::internal::Runtime_NewObject(int, v8::internal::Object**, v8::internal::Isolate*)
1 9.1% Script: ~<anonymous> https.js:1:11
1 100.0% LazyCompile: ~NativeModule.compile internal/bootstrap/loaders.js:236:44
1 100.0% LazyCompile: ~NativeModule.require internal/bootstrap/loaders.js:140:34
1 100.0% LazyCompile: ~Module._load internal/modules/cjs/loader.js:501:24
1 9.1% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swig/lib/swig.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 100.0% LazyCompile: ~Module._extensions..js internal/modules/cjs/loader.js:697:37
1 100.0% LazyCompile: ~Module.load internal/modules/cjs/loader.js:589:33
1 9.1% LazyCompile: ~value zlib.js:706:20
1 100.0% LazyCompile: ~_decompress /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/engine.io/node_modules/ws/lib/permessage-deflate.js:328:14
1 100.0% LazyCompile: ~zlibLimiter.push /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/engine.io/node_modules/ws/lib/permessage-deflate.js:295:22
1 100.0% LazyCompile: ~Queue._run /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/async-limiter/index.js:36:32
1 9.1% LazyCompile: ~lodash /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:1648:20
1 100.0% LazyCompile: ~chain /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/lodash/lodash.js:8739:19
1 100.0% LazyCompile: ~findOne /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/sequelize/lib/model.js:1733:17
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/app/config/passport.js:126:15
1 9.1% LazyCompile: ~e.exports /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:292274
1 100.0% LazyCompile: ~s /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:51:3079
1 100.0% LazyCompile: ~i /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:20472
1 100.0% LazyCompile: ~e.exports /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:301451
1 9.1% LazyCompile: ~ae /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:6011
1 100.0% LazyCompile: ~Y /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:4274
1 100.0% LazyCompile: ~pe /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:7067
1 100.0% LazyCompile: ~fe /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:6837
1 9.1% LazyCompile: ~ReadableState _stream_readable.js:69:23
1 100.0% LazyCompile: ~Readable _stream_readable.js:144:18
1 100.0% LazyCompile: ~Duplex _stream_duplex.js:47:16
1 100.0% LazyCompile: ~Socket net.js:222:16
1 9.1% LazyCompile: ~NativeModule.require internal/bootstrap/loaders.js:140:34
1 100.0% LazyCompile: ~startup internal/bootstrap/node.js:30:19
1 100.0% Script: ~bootstrapNodeJSCore internal/bootstrap/node.js:15:30
1 9.1% LazyCompile: ~Authenticator.init /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/passport/lib/authenticator.js:30:40
1 100.0% LazyCompile: ~Authenticator /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/passport/lib/authenticator.js:13:23
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/passport/lib/index.js:1:11
1 100.0% LazyCompile: ~Module._compile internal/modules/cjs/loader.js:649:37
1 9.1% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/terraformer-wkt-parser/terraformer-wkt-parser.js:18:23
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/terraformer-wkt-parser/terraformer-wkt-parser.js:14:17
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/terraformer-wkt-parser/terraformer-wkt-parser.js:1:73
1 100.0% Script: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/terraformer-wkt-parser/terraformer-wkt-parser.js:1:11
1 9.1% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:70:366169
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
1 100.0% LazyCompile: ~<anonymous> /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:51:31584
1 100.0% LazyCompile: ~n /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/swagger-ui-dist/swagger-ui-bundle.js:1:328
10 2.8% v8::internal::Builtin_FunctionConstructor(int, v8::internal::Object**, v8::internal::Isolate*)
3 30.0% LazyCompile: ~promiseSetter /media/rizwan/New Volume/projects/nodejs_postgres_jquery/node_modules/bluebird/js/release/join.js:21:33