-
Notifications
You must be signed in to change notification settings - Fork 4
/
benchmarks.html
2091 lines (1785 loc) · 93.3 KB
/
benchmarks.html
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
<style>
#main {
width: 100%;
height: 100%;
position: relative;
}
#main img {
max-width: 100%;
object-fit: cover;
}
#main details {
position: relative;
margin-bottom: 1rem;
}
#main details > article {
margin-left: 1rem;
border-left-color: lightgray;
border-left-style: solid;
border-left-width: 1px;
box-sizing: boder-box;
padding-left: 1rem;
padding-top: 1rem;
}
</style>
<div id='main'>
<h1 class='title'>Benchmarks</h1>
<p class='subtitle'>These benchmarks were generated at <b>2021-02-21 19:04:34.238737</b></p>
<details>
<summary>Ternary operator</summary>
<article>
<h2 class='title'>What's being executed</h2>
<p class='subtitle'>Code executed:</p>
<pre><code>function getNumber(x)
{
switch (x) {
case "hello": return 1; break;
case "world": return 2; break;
default: return 0; break;
}
}
const y = 4;
const x = y > 3 ? y : z;
const g = x > 0 ? { name: "john" } : { name: "sarah" };
</code></pre>
<img src="graphs/VGVybmFyeSBvcGVyYXRvcg==.png"/>
<details>
<summary>FJB - time: 0:00:00.002965, output size: 280 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>280 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/fjb.out /home/ianertson/workspace/fjb/tests/fjb-samples/ternary/index.js -o ./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.002965</code></pre>
</article>
</details>
<details>
<summary>esbuild - time: 0:00:00.043514, output size: 65 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>65 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/esbuild /home/ianertson/workspace/fjb/tests/fjb-samples/ternary/index.js --bundle --define:'process.env.NODE_ENV="dev"' --minify --outfile=./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.043514</code></pre>
</article>
</details>
<details>
<summary>parcel - time: 0:00:01.012427, output size: 1265 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>1265 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/parcel build /home/ianertson/workspace/fjb/tests/fjb-samples/ternary/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.012427</code></pre>
</article>
</details>
<details>
<summary>poi - time: 0:00:01.812785, output size: 4616 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>4616 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/poi /home/ianertson/workspace/fjb/tests/fjb-samples/ternary/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.812785</code></pre>
</article>
</details>
<h3 class='title'>Executed on</h3>
<pre><code>Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 16
On-line CPU(s) list: 0-15
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
Stepping: 13
CPU MHz: 4122.669
CPU max MHz: 5000.0000
CPU min MHz: 800.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 256 KiB
L1i cache: 256 KiB
L2 cache: 2 MiB
L3 cache: 16 MiB
NUMA node0 CPU(s): 0-15
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
Vulnerability Srbds: Mitigation; TSX disabled
Vulnerability Tsx async abort: Mitigation; TSX disabled
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
</code></pre>
</article>
</details>
<details>
<summary>Destruct</summary>
<article>
<h2 class='title'>What's being executed</h2>
<p class='subtitle'>Code executed:</p>
<pre><code>function xyz({
firstname = "john",
lastname
}) {
console.log(firstname, lastname);
}
xyz("john", "doe");
</code></pre>
<img src="graphs/RGVzdHJ1Y3Q=.png"/>
<details>
<summary>FJB - time: 0:00:00.002431, output size: 194 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>194 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/fjb.out /home/ianertson/workspace/fjb/tests/fjb-samples/destruct/index.js -o ./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.002431</code></pre>
</article>
</details>
<details>
<summary>esbuild - time: 0:00:00.004184, output size: 89 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>89 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/esbuild /home/ianertson/workspace/fjb/tests/fjb-samples/destruct/index.js --bundle --define:'process.env.NODE_ENV="dev"' --minify --outfile=./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.004184</code></pre>
</article>
</details>
<details>
<summary>parcel - time: 0:00:00.482319, output size: 1228 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>1228 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/parcel build /home/ianertson/workspace/fjb/tests/fjb-samples/destruct/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.482319</code></pre>
</article>
</details>
<details>
<summary>poi - time: 0:00:01.487290, output size: 4571 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>4571 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/poi /home/ianertson/workspace/fjb/tests/fjb-samples/destruct/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.487290</code></pre>
</article>
</details>
<h3 class='title'>Executed on</h3>
<pre><code>Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 16
On-line CPU(s) list: 0-15
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
Stepping: 13
CPU MHz: 3997.801
CPU max MHz: 5000.0000
CPU min MHz: 800.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 256 KiB
L1i cache: 256 KiB
L2 cache: 2 MiB
L3 cache: 16 MiB
NUMA node0 CPU(s): 0-15
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
Vulnerability Srbds: Mitigation; TSX disabled
Vulnerability Tsx async abort: Mitigation; TSX disabled
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
</code></pre>
</article>
</details>
<details>
<summary>Importing ES6 modules</summary>
<article>
<h2 class='title'>What's being executed</h2>
<p class='subtitle'>Code executed:</p>
<pre><code>import { subtract } from './helpers/math';
const x = 10;
const y = 5;
const r = subtract(x, y);
console.log(r);
</code></pre>
<img src="graphs/SW1wb3J0aW5nIEVTNiBtb2R1bGVz.png"/>
<details>
<summary>FJB - time: 0:00:00.002849, output size: 434 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>434 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/fjb.out /home/ianertson/workspace/fjb/tests/fjb-samples/es6/index.js -o ./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.002849</code></pre>
</article>
</details>
<details>
<summary>esbuild - time: 0:00:00.004243, output size: 76 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>76 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/esbuild /home/ianertson/workspace/fjb/tests/fjb-samples/es6/index.js --bundle --define:'process.env.NODE_ENV="dev"' --minify --outfile=./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.004243</code></pre>
</article>
</details>
<details>
<summary>parcel - time: 0:00:00.492422, output size: 1488 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>1488 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/parcel build /home/ianertson/workspace/fjb/tests/fjb-samples/es6/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.492422</code></pre>
</article>
</details>
<details>
<summary>poi - time: 0:00:01.494112, output size: 5517 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>5517 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/poi /home/ianertson/workspace/fjb/tests/fjb-samples/es6/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.494112</code></pre>
</article>
</details>
<h3 class='title'>Executed on</h3>
<pre><code>Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 16
On-line CPU(s) list: 0-15
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
Stepping: 13
CPU MHz: 3895.990
CPU max MHz: 5000.0000
CPU min MHz: 800.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 256 KiB
L1i cache: 256 KiB
L2 cache: 2 MiB
L3 cache: 16 MiB
NUMA node0 CPU(s): 0-15
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
Vulnerability Srbds: Mitigation; TSX disabled
Vulnerability Tsx async abort: Mitigation; TSX disabled
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
</code></pre>
</article>
</details>
<details>
<summary>Importing aliased ES6 modules</summary>
<article>
<h2 class='title'>What's being executed</h2>
<p class='subtitle'>Code executed:</p>
<pre><code>import { multiply as mul } from './utils';
const r = mul(5, 5);
console.log(r);
</code></pre>
<img src="graphs/SW1wb3J0aW5nIGFsaWFzZWQgRVM2IG1vZHVsZXM=.png"/>
<details>
<summary>FJB - time: 0:00:00.002727, output size: 397 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>397 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/fjb.out /home/ianertson/workspace/fjb/tests/fjb-samples/alias_imports/index.js -o ./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.002727</code></pre>
</article>
</details>
<details>
<summary>esbuild - time: 0:00:00.004377, output size: 67 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>67 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/esbuild /home/ianertson/workspace/fjb/tests/fjb-samples/alias_imports/index.js --bundle --define:'process.env.NODE_ENV="dev"' --minify --outfile=./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.004377</code></pre>
</article>
</details>
<details>
<summary>parcel - time: 0:00:00.479268, output size: 1383 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>1383 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/parcel build /home/ianertson/workspace/fjb/tests/fjb-samples/alias_imports/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.479268</code></pre>
</article>
</details>
<details>
<summary>poi - time: 0:00:01.488908, output size: 5270 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>5270 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/poi /home/ianertson/workspace/fjb/tests/fjb-samples/alias_imports/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.488908</code></pre>
</article>
</details>
<h3 class='title'>Executed on</h3>
<pre><code>Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 16
On-line CPU(s) list: 0-15
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
Stepping: 13
CPU MHz: 3802.904
CPU max MHz: 5000.0000
CPU min MHz: 800.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 256 KiB
L1i cache: 256 KiB
L2 cache: 2 MiB
L3 cache: 16 MiB
NUMA node0 CPU(s): 0-15
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
Vulnerability Srbds: Mitigation; TSX disabled
Vulnerability Tsx async abort: Mitigation; TSX disabled
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
</code></pre>
</article>
</details>
<details>
<summary>Importing CSS</summary>
<article>
<h2 class='title'>What's being executed</h2>
<p class='subtitle'>Code executed:</p>
<pre><code>import style from './style.css';
const cssEl = document.createElement('style')
cssEl.innerText = style;
document.head.appendChild(cssEl);
</code></pre>
<img src="graphs/SW1wb3J0aW5nIENTUw==.png"/>
<details>
<summary>FJB - time: 0:00:00.002828, output size: 690 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>690 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/fjb.out /home/ianertson/workspace/fjb/tests/fjb-samples/css_import/index.js -o ./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.002828</code></pre>
</article>
</details>
<details>
<summary>esbuild - time: 0:00:00.004347, output size: 102 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>102 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/esbuild /home/ianertson/workspace/fjb/tests/fjb-samples/css_import/index.js --bundle --define:'process.env.NODE_ENV="dev"' --minify --outfile=./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.004347</code></pre>
</article>
</details>
<details>
<summary>parcel - time: 0:00:00.614262, output size: 1383 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>1383 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/parcel build /home/ianertson/workspace/fjb/tests/fjb-samples/css_import/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.614262</code></pre>
</article>
</details>
<details>
<summary>poi - time: 0:00:01.495591, output size: 18537 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>18537 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/poi /home/ianertson/workspace/fjb/tests/fjb-samples/css_import/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.495591</code></pre>
</article>
</details>
<h3 class='title'>Executed on</h3>
<pre><code>Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 16
On-line CPU(s) list: 0-15
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
Stepping: 13
CPU MHz: 3082.289
CPU max MHz: 5000.0000
CPU min MHz: 800.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 256 KiB
L1i cache: 256 KiB
L2 cache: 2 MiB
L3 cache: 16 MiB
NUMA node0 CPU(s): 0-15
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
Vulnerability Srbds: Mitigation; TSX disabled
Vulnerability Tsx async abort: Mitigation; TSX disabled
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
</code></pre>
</article>
</details>
<details>
<summary>Importing JSON</summary>
<article>
<h2 class='title'>What's being executed</h2>
<p class='subtitle'>Code executed:</p>
<pre><code>import people from './people.json';
console.log(people[0].first_name);
</code></pre>
<img src="graphs/SW1wb3J0aW5nIEpTT04=.png"/>
<details>
<summary>FJB - time: 0:00:00.003465, output size: 1406 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>1406 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/fjb.out /home/ianertson/workspace/fjb/tests/fjb-samples/json_import/index.js -o ./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.003465</code></pre>
</article>
</details>
<details>
<summary>esbuild - time: 0:00:00.005864, output size: 519 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>519 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/esbuild /home/ianertson/workspace/fjb/tests/fjb-samples/json_import/index.js --bundle --define:'process.env.NODE_ENV="dev"' --minify --outfile=./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.005864</code></pre>
</article>
</details>
<details>
<summary>parcel - time: 0:00:00.483293, output size: 1822 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>1822 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/parcel build /home/ianertson/workspace/fjb/tests/fjb-samples/json_import/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.483293</code></pre>
</article>
</details>
<details>
<summary>poi - time: 0:00:01.488206, output size: 5846 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>5846 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/poi /home/ianertson/workspace/fjb/tests/fjb-samples/json_import/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.488206</code></pre>
</article>
</details>
<h3 class='title'>Executed on</h3>
<pre><code>Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 16
On-line CPU(s) list: 0-15
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
Stepping: 13
CPU MHz: 1074.655
CPU max MHz: 5000.0000
CPU min MHz: 800.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 256 KiB
L1i cache: 256 KiB
L2 cache: 2 MiB
L3 cache: 16 MiB
NUMA node0 CPU(s): 0-15
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
Vulnerability Srbds: Mitigation; TSX disabled
Vulnerability Tsx async abort: Mitigation; TSX disabled
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
</code></pre>
</article>
</details>
<details>
<summary>Importing `ceil` from lodash, with tree shaking.</summary>
<article>
<h2 class='title'>What's being executed</h2>
<p class='subtitle'>Code executed:</p>
<pre><code>import { ceil } from 'lodash';
console.log(ceil(25.443));
</code></pre>
<img src="graphs/SW1wb3J0aW5nIGBjZWlsYCBmcm9tIGxvZGFzaCwgd2l0aCB0cmVlIHNoYWtpbmcu.png"/>
<details>
<summary>esbuild - time: 0:00:00.021228, output size: 73253 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>73253 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/esbuild /home/ianertson/workspace/fjb/tests/fjb-samples/with_lodash/index.js --bundle --define:'process.env.NODE_ENV="dev"' --minify --outfile=./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.021228</code></pre>
</article>
</details>
<details>
<summary>FJB - time: 0:00:00.199075, output size: 1585 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>1585 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/fjb.out /home/ianertson/workspace/fjb/tests/fjb-samples/with_lodash/index.js -o ./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.199075</code></pre>
</article>
</details>
<details>
<summary>parcel - time: 0:00:00.532982, output size: 94714 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>94714 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/parcel build /home/ianertson/workspace/fjb/tests/fjb-samples/with_lodash/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.532982</code></pre>
</article>
</details>
<details>
<summary>poi - time: 0:00:01.487597, output size: 549615 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>549615 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/poi /home/ianertson/workspace/fjb/tests/fjb-samples/with_lodash/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.487597</code></pre>
</article>
</details>
<h3 class='title'>Executed on</h3>
<pre><code>Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 16
On-line CPU(s) list: 0-15
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
Stepping: 13
CPU MHz: 902.918
CPU max MHz: 5000.0000
CPU min MHz: 800.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 256 KiB
L1i cache: 256 KiB
L2 cache: 2 MiB
L3 cache: 16 MiB
NUMA node0 CPU(s): 0-15
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
Vulnerability Srbds: Mitigation; TSX disabled
Vulnerability Tsx async abort: Mitigation; TSX disabled
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
</code></pre>
</article>
</details>
<details>
<summary>Importing `Vue` from vue, with tree shaking.</summary>
<article>
<h2 class='title'>What's being executed</h2>
<p class='subtitle'>Code executed:</p>
<pre><code>const Vue = require('vue/dist/vue.js');
var app = new Vue({
el: '#root',
data: {
message: "hello"
}
});
console.log(app);
</code></pre>
<img src="graphs/SW1wb3J0aW5nIGBWdWVgIGZyb20gdnVlLCB3aXRoIHRyZWUgc2hha2luZy4=.png"/>
<details>
<summary>esbuild - time: 0:00:00.021771, output size: 118580 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>118580 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/esbuild /home/ianertson/workspace/fjb/tests/fjb-samples/with_vue/index.js --bundle --define:'process.env.NODE_ENV="dev"' --minify --outfile=./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.021771</code></pre>
</article>
</details>
<details>
<summary>FJB - time: 0:00:00.135858, output size: 204154 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>204154 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/fjb.out /home/ianertson/workspace/fjb/tests/fjb-samples/with_vue/index.js -o ./dist.js</code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.135858</code></pre>
</article>
</details>
<details>
<summary>parcel - time: 0:00:00.519474, output size: 117866 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>117866 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/parcel build /home/ianertson/workspace/fjb/tests/fjb-samples/with_vue/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:00.519474</code></pre>
</article>
</details>
<details>
<summary>poi - time: 0:00:01.497450, output size: 363610 bytes</summary>
<article>
<h3 class='title'>Output size</h3>
<p class='subtitle'>The size of the output is:</p>
<pre><code>363610 bytes</code></pre>
<h3 class='title'>Time</h3>
<p class='subtitle'>The command:</p>
<pre><code>/home/ianertson/workspace/fjb/benchmark/node_modules/.bin/poi /home/ianertson/workspace/fjb/tests/fjb-samples/with_vue/index.js </code></pre>
<p class='subtitle'>finished in:</p>
<pre><code>0:00:01.497450</code></pre>
</article>
</details>
<h3 class='title'>Executed on</h3>
<pre><code>Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 16
On-line CPU(s) list: 0-15
Thread(s) per core: 2
Core(s) per socket: 8
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
Stepping: 13
CPU MHz: 3811.634
CPU max MHz: 5000.0000
CPU min MHz: 800.0000
BogoMIPS: 4800.00
Virtualization: VT-x
L1d cache: 256 KiB
L1i cache: 256 KiB
L2 cache: 2 MiB
L3 cache: 16 MiB
NUMA node0 CPU(s): 0-15
Vulnerability Itlb multihit: KVM: Mitigation: VMX disabled
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
Vulnerability Srbds: Mitigation; TSX disabled
Vulnerability Tsx async abort: Mitigation; TSX disabled
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d arch_capabilities
</code></pre>