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
|
/*
* Copyright 2016 WebAssembly Community Group participants
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef wasm_ir_cost_h
#define wasm_ir_cost_h
#include <wasm-traversal.h>
#include <wasm.h>
namespace wasm {
// Measure the execution cost of an AST. Very handwave-ey
using CostType = uint32_t;
struct CostAnalyzer : public OverriddenVisitor<CostAnalyzer, CostType> {
CostAnalyzer(Expression* ast) { cost = visit(ast); }
CostType cost;
// The cost of a "slow" atomic operation like RMW.
static const CostType AtomicCost = 10;
// The cost of throwing a wasm exception. This does not include the cost of
// catching it (which might be in another function than the one we are
// considering).
static const CostType ThrowCost = 10;
// The cost of a cast. This can vary depending on the engine and on the type,
// but usually requires some loads and comparisons.
static const CostType CastCost = 5;
CostType maybeVisit(Expression* curr) { return curr ? visit(curr) : 0; }
CostType visitBlock(Block* curr) {
CostType ret = 0;
for (auto* child : curr->list) {
ret += visit(child);
}
return ret;
}
CostType visitIf(If* curr) {
return 1 + visit(curr->condition) +
std::max(visit(curr->ifTrue), maybeVisit(curr->ifFalse));
}
CostType visitLoop(Loop* curr) { return 5 * visit(curr->body); }
CostType visitBreak(Break* curr) {
return 1 + maybeVisit(curr->value) + maybeVisit(curr->condition);
}
CostType visitSwitch(Switch* curr) {
return 2 + visit(curr->condition) + maybeVisit(curr->value);
}
CostType visitCall(Call* curr) {
// XXX this does not take into account if the call is to an import, which
// may be costlier in general
CostType ret = 4;
for (auto* child : curr->operands) {
ret += visit(child);
}
return ret;
}
CostType visitCallIndirect(CallIndirect* curr) {
CostType ret = 6 + visit(curr->target);
for (auto* child : curr->operands) {
ret += visit(child);
}
return ret;
}
CostType visitCallRef(CallRef* curr) {
CostType ret = 5 + visit(curr->target);
for (auto* child : curr->operands) {
ret += visit(child);
}
return ret;
}
CostType visitLocalGet(LocalGet* curr) { return 0; }
CostType visitLocalSet(LocalSet* curr) { return 1 + visit(curr->value); }
CostType visitGlobalGet(GlobalGet* curr) { return 1; }
CostType visitGlobalSet(GlobalSet* curr) { return 2 + visit(curr->value); }
CostType visitLoad(Load* curr) {
return 1 + visit(curr->ptr) + AtomicCost * curr->isAtomic;
}
CostType visitStore(Store* curr) {
return 2 + visit(curr->ptr) + visit(curr->value) +
AtomicCost * curr->isAtomic;
}
CostType visitAtomicRMW(AtomicRMW* curr) {
return AtomicCost + visit(curr->ptr) + visit(curr->value);
}
CostType visitAtomicCmpxchg(AtomicCmpxchg* curr) {
return AtomicCost + visit(curr->ptr) + visit(curr->expected) +
visit(curr->replacement);
}
CostType visitAtomicWait(AtomicWait* curr) {
return AtomicCost + visit(curr->ptr) + visit(curr->expected) +
visit(curr->timeout);
}
CostType visitAtomicNotify(AtomicNotify* curr) {
return AtomicCost + visit(curr->ptr) + visit(curr->notifyCount);
}
CostType visitAtomicFence(AtomicFence* curr) { return AtomicCost; }
CostType visitConst(Const* curr) { return 1; }
CostType visitUnary(Unary* curr) {
CostType ret = 0;
switch (curr->op) {
case ClzInt32:
case CtzInt32:
case PopcntInt32:
case NegFloat32:
case AbsFloat32:
case CeilFloat32:
case FloorFloat32:
case TruncFloat32:
case NearestFloat32:
case ClzInt64:
case CtzInt64:
case PopcntInt64:
case NegFloat64:
case AbsFloat64:
case CeilFloat64:
case FloorFloat64:
case TruncFloat64:
case NearestFloat64:
case EqZInt32:
case EqZInt64:
case ExtendSInt32:
case ExtendUInt32:
case WrapInt64:
case PromoteFloat32:
case DemoteFloat64:
case TruncSFloat32ToInt32:
case TruncUFloat32ToInt32:
case TruncSFloat64ToInt32:
case TruncUFloat64ToInt32:
case ReinterpretFloat32:
case TruncSFloat32ToInt64:
case TruncUFloat32ToInt64:
case TruncSFloat64ToInt64:
case TruncUFloat64ToInt64:
case ReinterpretFloat64:
case ReinterpretInt32:
case ConvertSInt32ToFloat32:
case ConvertUInt32ToFloat32:
case ConvertSInt64ToFloat32:
case ConvertUInt64ToFloat32:
case ReinterpretInt64:
case ConvertSInt32ToFloat64:
case ConvertUInt32ToFloat64:
case ConvertSInt64ToFloat64:
case ConvertUInt64ToFloat64:
case ExtendS8Int32:
case ExtendS16Int32:
case ExtendS8Int64:
case ExtendS16Int64:
case ExtendS32Int64:
case TruncSatSFloat32ToInt32:
case TruncSatUFloat32ToInt32:
case TruncSatSFloat64ToInt32:
case TruncSatUFloat64ToInt32:
case TruncSatSFloat32ToInt64:
case TruncSatUFloat32ToInt64:
case TruncSatSFloat64ToInt64:
case TruncSatUFloat64ToInt64:
ret = 1;
break;
case SqrtFloat32:
case SqrtFloat64:
ret = 2;
break;
case SplatVecI8x16:
case SplatVecI16x8:
case SplatVecI32x4:
case SplatVecI64x2:
case SplatVecF16x8:
case SplatVecF32x4:
case SplatVecF64x2:
case NotVec128:
case AnyTrueVec128:
case AbsVecI8x16:
case NegVecI8x16:
case AllTrueVecI8x16:
case BitmaskVecI8x16:
case PopcntVecI8x16:
case AbsVecI16x8:
case NegVecI16x8:
case AllTrueVecI16x8:
case BitmaskVecI16x8:
case AbsVecI32x4:
case NegVecI32x4:
case AllTrueVecI32x4:
case BitmaskVecI32x4:
case AbsVecI64x2:
case NegVecI64x2:
case AllTrueVecI64x2:
case BitmaskVecI64x2:
case AbsVecF16x8:
case NegVecF16x8:
case SqrtVecF16x8:
case CeilVecF16x8:
case FloorVecF16x8:
case TruncVecF16x8:
case NearestVecF16x8:
case AbsVecF32x4:
case NegVecF32x4:
case SqrtVecF32x4:
case CeilVecF32x4:
case FloorVecF32x4:
case TruncVecF32x4:
case NearestVecF32x4:
case AbsVecF64x2:
case NegVecF64x2:
case SqrtVecF64x2:
case CeilVecF64x2:
case FloorVecF64x2:
case TruncVecF64x2:
case NearestVecF64x2:
case ExtAddPairwiseSVecI8x16ToI16x8:
case ExtAddPairwiseUVecI8x16ToI16x8:
case ExtAddPairwiseSVecI16x8ToI32x4:
case ExtAddPairwiseUVecI16x8ToI32x4:
case TruncSatSVecF32x4ToVecI32x4:
case TruncSatUVecF32x4ToVecI32x4:
case ConvertSVecI32x4ToVecF32x4:
case ConvertUVecI32x4ToVecF32x4:
case ExtendLowSVecI8x16ToVecI16x8:
case ExtendHighSVecI8x16ToVecI16x8:
case ExtendLowUVecI8x16ToVecI16x8:
case ExtendHighUVecI8x16ToVecI16x8:
case ExtendLowSVecI16x8ToVecI32x4:
case ExtendHighSVecI16x8ToVecI32x4:
case ExtendLowUVecI16x8ToVecI32x4:
case ExtendHighUVecI16x8ToVecI32x4:
case ExtendLowSVecI32x4ToVecI64x2:
case ExtendHighSVecI32x4ToVecI64x2:
case ExtendLowUVecI32x4ToVecI64x2:
case ExtendHighUVecI32x4ToVecI64x2:
case ConvertLowSVecI32x4ToVecF64x2:
case ConvertLowUVecI32x4ToVecF64x2:
case TruncSatZeroSVecF64x2ToVecI32x4:
case TruncSatZeroUVecF64x2ToVecI32x4:
case DemoteZeroVecF64x2ToVecF32x4:
case PromoteLowVecF32x4ToVecF64x2:
case RelaxedTruncSVecF32x4ToVecI32x4:
case RelaxedTruncUVecF32x4ToVecI32x4:
case RelaxedTruncZeroSVecF64x2ToVecI32x4:
case RelaxedTruncZeroUVecF64x2ToVecI32x4:
case TruncSatSVecF16x8ToVecI16x8:
case TruncSatUVecF16x8ToVecI16x8:
case ConvertSVecI16x8ToVecF16x8:
case ConvertUVecI16x8ToVecF16x8:
ret = 1;
break;
case InvalidUnary:
WASM_UNREACHABLE("invalid unary op");
}
return ret + visit(curr->value);
}
CostType visitBinary(Binary* curr) {
CostType ret = 0;
switch (curr->op) {
case AddInt32:
case SubInt32:
ret = 1;
break;
case MulInt32:
ret = 2;
break;
case DivSInt32:
case DivUInt32:
case RemSInt32:
case RemUInt32:
ret = curr->right->is<Const>() ? 5 : 6;
break;
case AndInt32:
case OrInt32:
case XorInt32:
case ShlInt32:
case ShrUInt32:
case ShrSInt32:
case RotLInt32:
case RotRInt32:
case AddInt64:
case SubInt64:
ret = 1;
break;
case MulInt64:
ret = 2;
break;
case DivSInt64:
case DivUInt64:
case RemSInt64:
case RemUInt64:
ret = curr->right->is<Const>() ? 7 : 8;
break;
case AndInt64:
case OrInt64:
case XorInt64:
ret = 1;
break;
case ShlInt64:
case ShrUInt64:
case ShrSInt64:
case RotLInt64:
case RotRInt64:
case AddFloat32:
case SubFloat32:
ret = 1;
break;
case MulFloat32:
ret = 2;
break;
case DivFloat32:
ret = 3;
break;
case CopySignFloat32:
case MinFloat32:
case MaxFloat32:
case AddFloat64:
case SubFloat64:
ret = 1;
break;
case MulFloat64:
ret = 2;
break;
case DivFloat64:
ret = 3;
break;
case CopySignFloat64:
case MinFloat64:
case MaxFloat64:
case EqInt32:
case NeInt32:
case LtUInt32:
case LtSInt32:
case LeUInt32:
case LeSInt32:
case GtUInt32:
case GtSInt32:
case GeUInt32:
case GeSInt32:
case EqInt64:
case NeInt64:
case LtUInt64:
case LtSInt64:
case LeUInt64:
case LeSInt64:
case GtUInt64:
case GtSInt64:
case GeUInt64:
case GeSInt64:
case EqFloat32:
case NeFloat32:
case LtFloat32:
case GtFloat32:
case LeFloat32:
case GeFloat32:
case EqFloat64:
case NeFloat64:
case LtFloat64:
case GtFloat64:
case LeFloat64:
case GeFloat64:
case EqVecI8x16:
case NeVecI8x16:
case LtSVecI8x16:
case LtUVecI8x16:
case LeSVecI8x16:
case LeUVecI8x16:
case GtSVecI8x16:
case GtUVecI8x16:
case GeSVecI8x16:
case GeUVecI8x16:
case EqVecI16x8:
case NeVecI16x8:
case LtSVecI16x8:
case LtUVecI16x8:
case LeSVecI16x8:
case LeUVecI16x8:
case GtSVecI16x8:
case GtUVecI16x8:
case GeSVecI16x8:
case GeUVecI16x8:
case EqVecI32x4:
case NeVecI32x4:
case LtSVecI32x4:
case LtUVecI32x4:
case LeSVecI32x4:
case LeUVecI32x4:
case GtSVecI32x4:
case GtUVecI32x4:
case GeSVecI32x4:
case GeUVecI32x4:
case EqVecI64x2:
case NeVecI64x2:
case LtSVecI64x2:
case LeSVecI64x2:
case GtSVecI64x2:
case GeSVecI64x2:
case EqVecF16x8:
case NeVecF16x8:
case LtVecF16x8:
case LeVecF16x8:
case GtVecF16x8:
case GeVecF16x8:
case EqVecF32x4:
case NeVecF32x4:
case LtVecF32x4:
case LeVecF32x4:
case GtVecF32x4:
case GeVecF32x4:
case EqVecF64x2:
case NeVecF64x2:
case LtVecF64x2:
case LeVecF64x2:
case GtVecF64x2:
case GeVecF64x2:
case AndVec128:
case OrVec128:
case XorVec128:
case AndNotVec128:
case AddVecI8x16:
case AddSatSVecI8x16:
case AddSatUVecI8x16:
case SubVecI8x16:
case SubSatSVecI8x16:
case SubSatUVecI8x16:
case MinSVecI8x16:
case MinUVecI8x16:
case MaxSVecI8x16:
case MaxUVecI8x16:
case AvgrUVecI8x16:
case AddVecI16x8:
case AddSatSVecI16x8:
case AddSatUVecI16x8:
case SubVecI16x8:
case SubSatSVecI16x8:
case SubSatUVecI16x8:
ret = 1;
break;
case MulVecI16x8:
ret = 2;
break;
case MinSVecI16x8:
case MinUVecI16x8:
case MaxSVecI16x8:
case MaxUVecI16x8:
case AvgrUVecI16x8:
case Q15MulrSatSVecI16x8:
case ExtMulLowSVecI16x8:
case ExtMulHighSVecI16x8:
case ExtMulLowUVecI16x8:
case ExtMulHighUVecI16x8:
case AddVecI32x4:
case SubVecI32x4:
ret = 1;
break;
case MulVecI32x4:
ret = 2;
break;
case MinSVecI32x4:
case MinUVecI32x4:
case MaxSVecI32x4:
case MaxUVecI32x4:
case DotSVecI16x8ToVecI32x4:
case ExtMulLowSVecI32x4:
case ExtMulHighSVecI32x4:
case ExtMulLowUVecI32x4:
case ExtMulHighUVecI32x4:
case AddVecI64x2:
case SubVecI64x2:
case MulVecI64x2:
case ExtMulLowSVecI64x2:
case ExtMulHighSVecI64x2:
case ExtMulLowUVecI64x2:
case ExtMulHighUVecI64x2:
case AddVecF16x8:
case SubVecF16x8:
ret = 1;
break;
case MulVecF16x8:
ret = 2;
break;
case DivVecF16x8:
ret = 3;
break;
case MinVecF16x8:
case MaxVecF16x8:
case PMinVecF16x8:
case PMaxVecF16x8:
ret = 1;
break;
case AddVecF32x4:
case SubVecF32x4:
ret = 1;
break;
case MulVecF32x4:
ret = 2;
break;
case DivVecF32x4:
ret = 3;
break;
case MinVecF32x4:
case MaxVecF32x4:
case PMinVecF32x4:
case PMaxVecF32x4:
case RelaxedMinVecF32x4:
case RelaxedMaxVecF32x4:
case AddVecF64x2:
case SubVecF64x2:
ret = 1;
break;
case MulVecF64x2:
ret = 2;
break;
case DivVecF64x2:
ret = 3;
break;
case MinVecF64x2:
case MaxVecF64x2:
case PMinVecF64x2:
case PMaxVecF64x2:
case RelaxedMinVecF64x2:
case RelaxedMaxVecF64x2:
case NarrowSVecI16x8ToVecI8x16:
case NarrowUVecI16x8ToVecI8x16:
case NarrowSVecI32x4ToVecI16x8:
case NarrowUVecI32x4ToVecI16x8:
case SwizzleVecI8x16:
case RelaxedSwizzleVecI8x16:
case RelaxedQ15MulrSVecI16x8:
case DotI8x16I7x16SToVecI16x8:
ret = 1;
break;
case InvalidBinary:
WASM_UNREACHABLE("invalid binary op");
}
return ret + visit(curr->left) + visit(curr->right);
}
CostType visitSelect(Select* curr) {
return 1 + visit(curr->condition) + visit(curr->ifTrue) +
visit(curr->ifFalse);
}
CostType visitDrop(Drop* curr) { return visit(curr->value); }
CostType visitReturn(Return* curr) { return maybeVisit(curr->value); }
CostType visitMemorySize(MemorySize* curr) { return 1; }
CostType visitMemoryGrow(MemoryGrow* curr) {
// TODO: This should perhaps be higher for shared memories.
return 20 + visit(curr->delta);
}
CostType visitMemoryInit(MemoryInit* curr) {
return 6 + visit(curr->dest) + visit(curr->offset) + visit(curr->size);
}
CostType visitMemoryCopy(MemoryCopy* curr) {
// TODO when the size is a constant, estimate the time based on that
return 6 + visit(curr->dest) + visit(curr->source) + visit(curr->size);
}
CostType visitMemoryFill(MemoryFill* curr) {
return 6 + visit(curr->dest) + visit(curr->value) + visit(curr->size);
}
CostType visitSIMDLoad(SIMDLoad* curr) { return 1 + visit(curr->ptr); }
CostType visitSIMDLoadStoreLane(SIMDLoadStoreLane* curr) {
return 1 + CostType(curr->isStore()) + visit(curr->ptr) + visit(curr->vec);
}
CostType visitSIMDReplace(SIMDReplace* curr) {
return 2 + visit(curr->vec) + visit(curr->value);
}
CostType visitSIMDExtract(SIMDExtract* curr) { return 1 + visit(curr->vec); }
CostType visitSIMDTernary(SIMDTernary* curr) {
CostType ret = 0;
switch (curr->op) {
case Bitselect:
case LaneselectI8x16:
case LaneselectI16x8:
case LaneselectI32x4:
case LaneselectI64x2:
case RelaxedMaddVecF16x8:
case RelaxedNmaddVecF16x8:
case RelaxedMaddVecF32x4:
case RelaxedNmaddVecF32x4:
case RelaxedMaddVecF64x2:
case RelaxedNmaddVecF64x2:
case DotI8x16I7x16AddSToVecI32x4:
ret = 1;
break;
}
return ret + visit(curr->a) + visit(curr->b) + visit(curr->c);
}
CostType visitSIMDShift(SIMDShift* curr) {
return 1 + visit(curr->vec) + visit(curr->shift);
}
CostType visitSIMDShuffle(SIMDShuffle* curr) {
return 1 + visit(curr->left) + visit(curr->right);
}
CostType visitRefNull(RefNull* curr) { return 1; }
CostType visitRefIsNull(RefIsNull* curr) { return 1 + visit(curr->value); }
CostType visitRefFunc(RefFunc* curr) { return 1; }
CostType visitRefEq(RefEq* curr) {
return 1 + visit(curr->left) + visit(curr->right);
}
CostType visitTableGet(TableGet* curr) { return 1 + visit(curr->index); }
CostType visitTableSet(TableSet* curr) {
return 2 + visit(curr->index) + visit(curr->value);
}
CostType visitTableSize(TableSize* curr) { return 1; }
CostType visitTableGrow(TableGrow* curr) {
return 20 + visit(curr->value) + visit(curr->delta);
}
CostType visitTableFill(TableFill* curr) {
return 6 + visit(curr->dest) + visit(curr->value) + visit(curr->size);
}
CostType visitTableCopy(TableCopy* curr) {
return 6 + visit(curr->dest) + visit(curr->source) + visit(curr->size);
}
CostType visitTableInit(TableInit* curr) {
return 6 + visit(curr->dest) + visit(curr->offset) + visit(curr->size);
}
CostType visitTry(Try* curr) {
// We assume no exception will be thrown in most cases
return visit(curr->body);
}
CostType visitTryTable(TryTable* curr) {
// We assume no exception will be thrown in most cases
return visit(curr->body);
}
CostType visitThrow(Throw* curr) {
CostType ret = ThrowCost;
for (auto* child : curr->operands) {
ret += visit(child);
}
return ret;
}
CostType visitRethrow(Rethrow* curr) { return ThrowCost; }
CostType visitThrowRef(ThrowRef* curr) { return ThrowCost; }
CostType visitTupleMake(TupleMake* curr) {
CostType ret = 0;
for (auto* child : curr->operands) {
ret += visit(child);
}
return ret;
}
CostType visitTupleExtract(TupleExtract* curr) { return visit(curr->tuple); }
CostType visitPop(Pop* curr) { return 0; }
CostType visitNop(Nop* curr) { return 0; }
CostType visitUnreachable(Unreachable* curr) { return 0; }
CostType visitDataDrop(DataDrop* curr) { return 5; }
CostType visitRefI31(RefI31* curr) { return 3 + visit(curr->value); }
CostType visitI31Get(I31Get* curr) { return 2 + visit(curr->i31); }
CostType visitRefTest(RefTest* curr) {
return CastCost + nullCheckCost(curr->ref) + visit(curr->ref);
}
CostType visitRefCast(RefCast* curr) {
return CastCost + nullCheckCost(curr->ref) + visit(curr->ref);
}
CostType visitBrOn(BrOn* curr) {
// BrOn of a null can be fairly fast, but anything else is a cast check.
CostType base =
curr->op == BrOnNull || curr->op == BrOnNonNull ? 2 : CastCost;
return base + nullCheckCost(curr->ref) + maybeVisit(curr->ref);
}
CostType visitStructNew(StructNew* curr) {
// While allocation itself is almost free with generational GC, there is
// at least some baseline cost, plus writing the fields. (If we use default
// values for the fields, then it is possible they are all 0 and if so, we
// can get that almost for free as well, so don't add anything there.)
CostType ret = 4 + curr->operands.size();
for (auto* child : curr->operands) {
ret += visit(child);
}
return ret;
}
CostType visitStructGet(StructGet* curr) {
return 1 + nullCheckCost(curr->ref) + visit(curr->ref);
}
CostType visitStructSet(StructSet* curr) {
return 2 + nullCheckCost(curr->ref) + visit(curr->ref) + visit(curr->value);
}
CostType visitArrayNew(ArrayNew* curr) {
return 4 + visit(curr->size) + maybeVisit(curr->init);
}
CostType visitArrayNewData(ArrayNewData* curr) {
return 4 + visit(curr->offset) + visit(curr->size);
}
CostType visitArrayNewElem(ArrayNewElem* curr) {
return 4 + visit(curr->offset) + visit(curr->size);
}
CostType visitArrayNewFixed(ArrayNewFixed* curr) {
CostType ret = 4;
for (auto* child : curr->values) {
ret += visit(child);
}
return ret;
}
CostType visitArrayGet(ArrayGet* curr) {
return 1 + nullCheckCost(curr->ref) + visit(curr->ref) + visit(curr->index);
}
CostType visitArraySet(ArraySet* curr) {
return 2 + nullCheckCost(curr->ref) + visit(curr->ref) +
visit(curr->index) + visit(curr->value);
}
CostType visitArrayLen(ArrayLen* curr) {
return 1 + nullCheckCost(curr->ref) + visit(curr->ref);
}
CostType visitArrayCopy(ArrayCopy* curr) {
// Similar to MemoryCopy.
return 6 + visit(curr->destRef) + visit(curr->destIndex) +
visit(curr->srcRef) + visit(curr->srcIndex) + visit(curr->length);
}
CostType visitArrayFill(ArrayFill* curr) {
return 6 + visit(curr->ref) + visit(curr->index) + visit(curr->value) +
visit(curr->size);
}
CostType visitArrayInitData(ArrayInitData* curr) {
return 6 + visit(curr->ref) + visit(curr->index) + visit(curr->offset) +
visit(curr->size);
}
CostType visitArrayInitElem(ArrayInitElem* curr) {
return 6 + visit(curr->ref) + visit(curr->index) + visit(curr->offset) +
visit(curr->size);
}
CostType visitRefAs(RefAs* curr) { return 1 + visit(curr->value); }
CostType visitStringNew(StringNew* curr) {
return 8 + visit(curr->ref) + maybeVisit(curr->start) +
maybeVisit(curr->end);
}
CostType visitStringConst(StringConst* curr) { return 4; }
CostType visitStringMeasure(StringMeasure* curr) {
return 6 + visit(curr->ref);
}
CostType visitStringEncode(StringEncode* curr) {
return 6 + visit(curr->str) + visit(curr->array) + visit(curr->start);
}
CostType visitStringConcat(StringConcat* curr) {
return 10 + visit(curr->left) + visit(curr->right);
}
CostType visitStringEq(StringEq* curr) {
// "3" is chosen since strings might or might not be interned in the engine.
return 3 + visit(curr->left) + visit(curr->right);
}
CostType visitStringWTF16Get(StringWTF16Get* curr) {
return 1 + visit(curr->ref) + visit(curr->pos);
}
CostType visitStringSliceWTF(StringSliceWTF* curr) {
return 8 + visit(curr->ref) + visit(curr->start) + visit(curr->end);
}
CostType visitContBind(ContBind* curr) {
// Inspired by struct.new: The only cost of cont.bind is that it may need to
// allocate a buffer to hold the arguments.
CostType ret = 4;
ret += visit(curr->cont);
for (auto* arg : curr->operands) {
ret += visit(arg);
}
return ret;
}
CostType visitContNew(ContNew* curr) {
// Some arbitrary "high" value, reflecting that this may allocate a stack
return 14 + visit(curr->func);
}
CostType visitResume(Resume* curr) {
// Inspired by indirect calls, but twice the cost.
CostType ret = 12 + visit(curr->cont);
for (auto* arg : curr->operands) {
ret += visit(arg);
}
return ret;
}
CostType visitSuspend(Suspend* curr) {
CostType ret = 12;
for (auto* arg : curr->operands) {
ret += visit(arg);
}
return ret;
}
private:
CostType nullCheckCost(Expression* ref) {
// A nullable type requires a bounds check in most VMs.
return ref->type.isNullable();
}
};
} // namespace wasm
#endif // wasm_ir_cost_h
|