summaryrefslogtreecommitdiff
path: root/deps/v8/test/cctest/interpreter/bytecode_expectations/ForAwaitOf.golden
blob: 16e36dd707066202a3b231e30b7c653dd8f28575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
#
# Autogenerated by generate-bytecode-expectations.
#

---
wrap: no
test function name: f
async iteration: yes

---
snippet: "
  async function f() {
    for await (let x of [1, 2, 3]) {}
  }
  f();
"
frame size: 23
parameter count: 1
bytecode array length: 589
bytecodes: [
                B(Ldar), R(2),
                B(JumpIfUndefined), U8(18),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetContext), R(2), U8(1),
                B(PushContext), R(12),
                B(RestoreGeneratorState), R(2),
                B(Star), R(11),
                B(SwitchOnSmiNoFeedback), U8(0), U8(3), I8(0),
                B(Abort), U8(42),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(Mov), R(closure), R(12),
                B(Mov), R(this), R(13),
                B(InvokeIntrinsic), U8(Runtime::k_CreateJSGeneratorObject), R(12), U8(2),
                B(Star), R(2),
  /*   16 E> */ B(StackCheck),
                B(CallJSRuntime), U8(%async_function_promise_create), R(0), U8(0),
                B(Star), R(10),
                B(Mov), R(context), R(14),
                B(Mov), R(context), R(15),
                B(LdaZero),
                B(Star), R(6),
                B(Mov), R(context), R(18),
                B(Mov), R(context), R(19),
  /*   43 S> */ B(CreateArrayLiteral), U8(3), U8(0), U8(37),
                B(Star), R(20),
                B(LdaNamedProperty), R(20), U8(4), U8(1),
                B(JumpIfUndefined), U8(17),
                B(JumpIfNull), U8(15),
                B(Star), R(21),
                B(CallProperty0), R(21), R(20), U8(3),
                B(JumpIfJSReceiver), U8(23),
                B(CallRuntime), U16(Runtime::kThrowSymbolAsyncIteratorInvalid), R(0), U8(0),
                B(LdaNamedProperty), R(20), U8(5), U8(5),
                B(Star), R(21),
                B(CallProperty0), R(21), R(20), U8(7),
                B(Star), R(21),
                B(InvokeIntrinsic), U8(Runtime::k_CreateAsyncFromSyncIterator), R(21), U8(1),
                B(Star), R(4),
                B(Ldar), R(11),
                B(SwitchOnSmiNoFeedback), U8(6), U8(1), I8(0),
                B(LdaSmi), I8(-2),
  /*   43 E> */ B(TestEqualStrictNoFeedback), R(11),
                B(JumpIfTrue), U8(4),
                B(Abort), U8(42),
  /*   40 S> */ B(LdaNamedProperty), R(4), U8(7), U8(9),
                B(Star), R(20),
                B(CallProperty0), R(20), R(4), U8(11),
                B(Star), R(21),
                B(Mov), R(2), R(20),
                B(Mov), R(10), R(22),
                B(CallJSRuntime), U8(%async_function_await_uncaught), R(20), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(20), U8(0),
  /*   57 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(20),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(21),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(21),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(20),
                B(ReThrow),
                B(Mov), R(20), R(5),
  /*   40 E> */ B(InvokeIntrinsic), U8(Runtime::k_IsJSReceiver), R(20), U8(1),
                B(ToBooleanLogicalNot),
                B(JumpIfFalse), U8(7),
                B(CallRuntime), U16(Runtime::kThrowIteratorResultNotAnObject), R(5), U8(1),
                B(LdaNamedProperty), R(5), U8(8), U8(13),
                B(JumpIfToBooleanTrue), U8(25),
                B(LdaNamedProperty), R(5), U8(9), U8(15),
                B(Star), R(7),
                B(LdaSmi), I8(2),
                B(Star), R(6),
                B(Mov), R(7), R(3),
  /*   23 E> */ B(StackCheck),
                B(Mov), R(3), R(0),
                B(LdaZero),
                B(Star), R(6),
                B(JumpLoop), U8(111), I8(0),
                B(Jump), U8(40),
                B(Star), R(20),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(20), U8(10), U8(11),
                B(Star), R(19),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(19),
                B(PushContext), R(20),
                B(LdaSmi), I8(2),
                B(TestEqualStrict), R(6), U8(17),
                B(JumpIfFalse), U8(6),
                B(LdaSmi), I8(1),
                B(Star), R(6),
                B(LdaImmutableCurrentContextSlot), U8(4),
                B(Star), R(21),
                B(CallRuntime), U16(Runtime::kReThrow), R(21), U8(1),
                B(PopContext), R(20),
                B(LdaSmi), I8(-1),
                B(Star), R(17),
                B(Star), R(16),
                B(Jump), U8(7),
                B(Star), R(17),
                B(LdaZero),
                B(Star), R(16),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Star), R(18),
                B(LdaZero),
                B(TestEqualStrict), R(6), U8(18),
                B(JumpIfTrue), U8(199),
                B(LdaNamedProperty), R(4), U8(12), U8(19),
                B(Star), R(8),
                B(TestUndetectable),
                B(JumpIfFalse), U8(4),
                B(Jump), U8(188),
                B(LdaSmi), I8(1),
                B(TestEqualStrict), R(6), U8(21),
                B(JumpIfFalse), U8(109),
                B(Ldar), R(8),
                B(TestTypeOf), U8(6),
                B(JumpIfFalse), U8(4),
                B(Jump), U8(18),
                B(Wide), B(LdaSmi), I16(143),
                B(Star), R(19),
                B(LdaConstant), U8(13),
                B(Star), R(20),
                B(CallRuntime), U16(Runtime::kNewTypeError), R(19), U8(2),
                B(Throw),
                B(Mov), R(context), R(19),
                B(Mov), R(8), R(20),
                B(Mov), R(4), R(21),
                B(InvokeIntrinsic), U8(Runtime::k_Call), R(20), U8(2),
                B(Star), R(21),
                B(Mov), R(2), R(20),
                B(Mov), R(10), R(22),
                B(CallJSRuntime), U8(%async_function_await_caught), R(20), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(20), U8(1),
  /*   57 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(20),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(21),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(21),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(20),
                B(ReThrow),
                B(Ldar), R(20),
                B(Jump), U8(20),
                B(Star), R(20),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(20), U8(10), U8(14),
                B(Star), R(19),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(19),
                B(PushContext), R(20),
                B(PopContext), R(20),
                B(Jump), U8(74),
                B(Mov), R(8), R(19),
                B(Mov), R(4), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_Call), R(19), U8(2),
                B(Star), R(20),
                B(Mov), R(2), R(19),
                B(Mov), R(10), R(21),
                B(CallJSRuntime), U8(%async_function_await_uncaught), R(19), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(19), U8(2),
  /*   57 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(19),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(19),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(20),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(20),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(19),
                B(ReThrow),
                B(Mov), R(19), R(9),
                B(InvokeIntrinsic), U8(Runtime::k_IsJSReceiver), R(19), U8(1),
                B(JumpIfToBooleanFalse), U8(4),
                B(Jump), U8(7),
                B(CallRuntime), U16(Runtime::kThrowIteratorResultNotAnObject), R(9), U8(1),
                B(Ldar), R(18),
                B(SetPendingMessage),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(16),
                B(JumpIfFalse), U8(5),
                B(Ldar), R(17),
                B(ReThrow),
                B(LdaUndefined),
                B(Star), R(17),
                B(Mov), R(10), R(16),
                B(CallJSRuntime), U8(%promise_resolve), R(16), U8(2),
                B(LdaZero),
                B(Star), R(12),
                B(Mov), R(10), R(13),
                B(Jump), U8(58),
                B(Jump), U8(42),
                B(Star), R(16),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(16), U8(10), U8(15),
                B(Star), R(15),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(15),
                B(PushContext), R(16),
                B(LdaImmutableCurrentContextSlot), U8(4),
                B(Star), R(18),
                B(LdaFalse),
                B(Star), R(19),
                B(Mov), R(10), R(17),
                B(CallJSRuntime), U8(%promise_internal_reject), R(17), U8(3),
                B(PopContext), R(16),
                B(LdaZero),
                B(Star), R(12),
                B(Mov), R(10), R(13),
                B(Jump), U8(16),
                B(LdaSmi), I8(-1),
                B(Star), R(13),
                B(Star), R(12),
                B(Jump), U8(8),
                B(Star), R(13),
                B(LdaSmi), I8(1),
                B(Star), R(12),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Star), R(14),
                B(CallJSRuntime), U8(%async_function_promise_release), R(10), U8(1),
                B(Ldar), R(14),
                B(SetPendingMessage),
                B(Ldar), R(12),
                B(SwitchOnSmiNoFeedback), U8(16), U8(2), I8(0),
                B(Jump), U8(8),
                B(Ldar), R(13),
  /*   57 S> */ B(Return),
                B(Ldar), R(13),
                B(ReThrow),
                B(LdaUndefined),
  /*   57 S> */ B(Return),
]
constant pool: [
  Smi [89],
  Smi [339],
  Smi [419],
  TUPLE2_TYPE,
  SYMBOL_TYPE,
  SYMBOL_TYPE,
  Smi [40],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["next"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["done"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["value"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE [".catch"],
  FIXED_ARRAY_TYPE,
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["return"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE [""],
  FIXED_ARRAY_TYPE,
  FIXED_ARRAY_TYPE,
  Smi [6],
  Smi [9],
]
handlers: [
  [46, 548, 556],
  [49, 506, 508],
  [55, 257, 265],
  [58, 217, 219],
  [325, 383, 385],
]

---
snippet: "
  async function f() {
    for await (let x of [1, 2, 3]) { return x; }
  }
  f();
"
frame size: 23
parameter count: 1
bytecode array length: 618
bytecodes: [
                B(Ldar), R(2),
                B(JumpIfUndefined), U8(18),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetContext), R(2), U8(1),
                B(PushContext), R(12),
                B(RestoreGeneratorState), R(2),
                B(Star), R(11),
                B(SwitchOnSmiNoFeedback), U8(0), U8(3), I8(0),
                B(Abort), U8(42),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(Mov), R(closure), R(12),
                B(Mov), R(this), R(13),
                B(InvokeIntrinsic), U8(Runtime::k_CreateJSGeneratorObject), R(12), U8(2),
                B(Star), R(2),
  /*   16 E> */ B(StackCheck),
                B(CallJSRuntime), U8(%async_function_promise_create), R(0), U8(0),
                B(Star), R(10),
                B(Mov), R(context), R(14),
                B(Mov), R(context), R(15),
                B(LdaZero),
                B(Star), R(6),
                B(Mov), R(context), R(18),
                B(Mov), R(context), R(19),
  /*   43 S> */ B(CreateArrayLiteral), U8(3), U8(0), U8(37),
                B(Star), R(20),
                B(LdaNamedProperty), R(20), U8(4), U8(1),
                B(JumpIfUndefined), U8(17),
                B(JumpIfNull), U8(15),
                B(Star), R(21),
                B(CallProperty0), R(21), R(20), U8(3),
                B(JumpIfJSReceiver), U8(23),
                B(CallRuntime), U16(Runtime::kThrowSymbolAsyncIteratorInvalid), R(0), U8(0),
                B(LdaNamedProperty), R(20), U8(5), U8(5),
                B(Star), R(21),
                B(CallProperty0), R(21), R(20), U8(7),
                B(Star), R(21),
                B(InvokeIntrinsic), U8(Runtime::k_CreateAsyncFromSyncIterator), R(21), U8(1),
                B(Star), R(4),
                B(Ldar), R(11),
                B(SwitchOnSmiNoFeedback), U8(6), U8(1), I8(0),
                B(LdaSmi), I8(-2),
  /*   43 E> */ B(TestEqualStrictNoFeedback), R(11),
                B(JumpIfTrue), U8(4),
                B(Abort), U8(42),
  /*   40 S> */ B(LdaNamedProperty), R(4), U8(7), U8(9),
                B(Star), R(20),
                B(CallProperty0), R(20), R(4), U8(11),
                B(Star), R(21),
                B(Mov), R(2), R(20),
                B(Mov), R(10), R(22),
                B(CallJSRuntime), U8(%async_function_await_uncaught), R(20), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(20), U8(0),
  /*   68 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(20),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(21),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(21),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(20),
                B(ReThrow),
                B(Mov), R(20), R(5),
  /*   40 E> */ B(InvokeIntrinsic), U8(Runtime::k_IsJSReceiver), R(20), U8(1),
                B(ToBooleanLogicalNot),
                B(JumpIfFalse), U8(7),
                B(CallRuntime), U16(Runtime::kThrowIteratorResultNotAnObject), R(5), U8(1),
                B(LdaNamedProperty), R(5), U8(8), U8(13),
                B(JumpIfToBooleanTrue), U8(27),
                B(LdaNamedProperty), R(5), U8(9), U8(15),
                B(Star), R(7),
                B(LdaSmi), I8(2),
                B(Star), R(6),
                B(Mov), R(7), R(3),
  /*   23 E> */ B(StackCheck),
                B(Mov), R(3), R(0),
  /*   56 S> */ B(LdaZero),
                B(Star), R(16),
                B(Mov), R(7), R(17),
                B(Jump), U8(56),
                B(Jump), U8(40),
                B(Star), R(20),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(20), U8(10), U8(11),
                B(Star), R(19),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(19),
                B(PushContext), R(20),
                B(LdaSmi), I8(2),
                B(TestEqualStrict), R(6), U8(17),
                B(JumpIfFalse), U8(6),
                B(LdaSmi), I8(1),
                B(Star), R(6),
                B(LdaImmutableCurrentContextSlot), U8(4),
                B(Star), R(21),
                B(CallRuntime), U16(Runtime::kReThrow), R(21), U8(1),
                B(PopContext), R(20),
                B(LdaSmi), I8(-1),
                B(Star), R(17),
                B(Star), R(16),
                B(Jump), U8(8),
                B(Star), R(17),
                B(LdaSmi), I8(1),
                B(Star), R(16),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Star), R(18),
                B(LdaZero),
                B(TestEqualStrict), R(6), U8(18),
                B(JumpIfTrue), U8(199),
                B(LdaNamedProperty), R(4), U8(12), U8(19),
                B(Star), R(8),
                B(TestUndetectable),
                B(JumpIfFalse), U8(4),
                B(Jump), U8(188),
                B(LdaSmi), I8(1),
                B(TestEqualStrict), R(6), U8(21),
                B(JumpIfFalse), U8(109),
                B(Ldar), R(8),
                B(TestTypeOf), U8(6),
                B(JumpIfFalse), U8(4),
                B(Jump), U8(18),
                B(Wide), B(LdaSmi), I16(143),
                B(Star), R(19),
                B(LdaConstant), U8(13),
                B(Star), R(20),
                B(CallRuntime), U16(Runtime::kNewTypeError), R(19), U8(2),
                B(Throw),
                B(Mov), R(context), R(19),
                B(Mov), R(8), R(20),
                B(Mov), R(4), R(21),
                B(InvokeIntrinsic), U8(Runtime::k_Call), R(20), U8(2),
                B(Star), R(21),
                B(Mov), R(2), R(20),
                B(Mov), R(10), R(22),
                B(CallJSRuntime), U8(%async_function_await_caught), R(20), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(20), U8(1),
  /*   68 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(20),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(21),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(21),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(20),
                B(ReThrow),
                B(Ldar), R(20),
                B(Jump), U8(20),
                B(Star), R(20),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(20), U8(10), U8(14),
                B(Star), R(19),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(19),
                B(PushContext), R(20),
                B(PopContext), R(20),
                B(Jump), U8(74),
                B(Mov), R(8), R(19),
                B(Mov), R(4), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_Call), R(19), U8(2),
                B(Star), R(20),
                B(Mov), R(2), R(19),
                B(Mov), R(10), R(21),
                B(CallJSRuntime), U8(%async_function_await_uncaught), R(19), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(19), U8(2),
  /*   68 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(19),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(19),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(20),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(20),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(19),
                B(ReThrow),
                B(Mov), R(19), R(9),
                B(InvokeIntrinsic), U8(Runtime::k_IsJSReceiver), R(19), U8(1),
                B(JumpIfToBooleanFalse), U8(4),
                B(Jump), U8(7),
                B(CallRuntime), U16(Runtime::kThrowIteratorResultNotAnObject), R(9), U8(1),
                B(Ldar), R(18),
                B(SetPendingMessage),
                B(Ldar), R(16),
                B(SwitchOnSmiNoFeedback), U8(15), U8(2), I8(0),
                B(Jump), U8(13),
                B(LdaZero),
                B(Star), R(12),
                B(Mov), R(17), R(13),
                B(Jump), U8(81),
                B(Ldar), R(17),
                B(ReThrow),
                B(LdaUndefined),
                B(Star), R(17),
                B(Mov), R(10), R(16),
                B(CallJSRuntime), U8(%promise_resolve), R(16), U8(2),
                B(LdaSmi), I8(1),
                B(Star), R(12),
                B(Mov), R(10), R(13),
                B(Jump), U8(59),
                B(Jump), U8(43),
                B(Star), R(16),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(16), U8(10), U8(17),
                B(Star), R(15),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(15),
                B(PushContext), R(16),
                B(LdaImmutableCurrentContextSlot), U8(4),
                B(Star), R(18),
                B(LdaFalse),
                B(Star), R(19),
                B(Mov), R(10), R(17),
                B(CallJSRuntime), U8(%promise_internal_reject), R(17), U8(3),
                B(PopContext), R(16),
                B(LdaSmi), I8(1),
                B(Star), R(12),
                B(Mov), R(10), R(13),
                B(Jump), U8(16),
                B(LdaSmi), I8(-1),
                B(Star), R(13),
                B(Star), R(12),
                B(Jump), U8(8),
                B(Star), R(13),
                B(LdaSmi), I8(2),
                B(Star), R(12),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Star), R(14),
                B(CallJSRuntime), U8(%async_function_promise_release), R(10), U8(1),
                B(Ldar), R(14),
                B(SetPendingMessage),
                B(Ldar), R(12),
                B(SwitchOnSmiNoFeedback), U8(18), U8(3), I8(0),
                B(Jump), U8(21),
                B(Mov), R(10), R(15),
                B(Mov), R(13), R(16),
                B(CallJSRuntime), U8(%promise_resolve), R(15), U8(2),
                B(Ldar), R(10),
  /*   68 S> */ B(Return),
                B(Ldar), R(13),
  /*   68 S> */ B(Return),
                B(Ldar), R(13),
                B(ReThrow),
                B(LdaUndefined),
  /*   68 S> */ B(Return),
]
constant pool: [
  Smi [89],
  Smi [342],
  Smi [422],
  TUPLE2_TYPE,
  SYMBOL_TYPE,
  SYMBOL_TYPE,
  Smi [40],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["next"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["done"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["value"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE [".catch"],
  FIXED_ARRAY_TYPE,
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["return"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE [""],
  FIXED_ARRAY_TYPE,
  Smi [6],
  Smi [14],
  FIXED_ARRAY_TYPE,
  Smi [6],
  Smi [19],
  Smi [22],
]
handlers: [
  [46, 564, 572],
  [49, 521, 523],
  [55, 259, 267],
  [58, 219, 221],
  [328, 386, 388],
]

---
snippet: "
  async function f() {
    for await (let x of [10, 20, 30]) {
      if (x == 10) continue;
      if (x == 20) break;
    }
  }
  f();
"
frame size: 23
parameter count: 1
bytecode array length: 607
bytecodes: [
                B(Ldar), R(2),
                B(JumpIfUndefined), U8(18),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetContext), R(2), U8(1),
                B(PushContext), R(12),
                B(RestoreGeneratorState), R(2),
                B(Star), R(11),
                B(SwitchOnSmiNoFeedback), U8(0), U8(3), I8(0),
                B(Abort), U8(42),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(Mov), R(closure), R(12),
                B(Mov), R(this), R(13),
                B(InvokeIntrinsic), U8(Runtime::k_CreateJSGeneratorObject), R(12), U8(2),
                B(Star), R(2),
  /*   16 E> */ B(StackCheck),
                B(CallJSRuntime), U8(%async_function_promise_create), R(0), U8(0),
                B(Star), R(10),
                B(Mov), R(context), R(14),
                B(Mov), R(context), R(15),
                B(LdaZero),
                B(Star), R(6),
                B(Mov), R(context), R(18),
                B(Mov), R(context), R(19),
  /*   43 S> */ B(CreateArrayLiteral), U8(3), U8(0), U8(37),
                B(Star), R(20),
                B(LdaNamedProperty), R(20), U8(4), U8(1),
                B(JumpIfUndefined), U8(17),
                B(JumpIfNull), U8(15),
                B(Star), R(21),
                B(CallProperty0), R(21), R(20), U8(3),
                B(JumpIfJSReceiver), U8(23),
                B(CallRuntime), U16(Runtime::kThrowSymbolAsyncIteratorInvalid), R(0), U8(0),
                B(LdaNamedProperty), R(20), U8(5), U8(5),
                B(Star), R(21),
                B(CallProperty0), R(21), R(20), U8(7),
                B(Star), R(21),
                B(InvokeIntrinsic), U8(Runtime::k_CreateAsyncFromSyncIterator), R(21), U8(1),
                B(Star), R(4),
                B(Ldar), R(11),
                B(SwitchOnSmiNoFeedback), U8(6), U8(1), I8(0),
                B(LdaSmi), I8(-2),
  /*   43 E> */ B(TestEqualStrictNoFeedback), R(11),
                B(JumpIfTrue), U8(4),
                B(Abort), U8(42),
  /*   40 S> */ B(LdaNamedProperty), R(4), U8(7), U8(9),
                B(Star), R(20),
                B(CallProperty0), R(20), R(4), U8(11),
                B(Star), R(21),
                B(Mov), R(2), R(20),
                B(Mov), R(10), R(22),
                B(CallJSRuntime), U8(%async_function_await_uncaught), R(20), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(20), U8(0),
  /*  114 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(20),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(21),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(21),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(20),
                B(ReThrow),
                B(Mov), R(20), R(5),
  /*   40 E> */ B(InvokeIntrinsic), U8(Runtime::k_IsJSReceiver), R(20), U8(1),
                B(ToBooleanLogicalNot),
                B(JumpIfFalse), U8(7),
                B(CallRuntime), U16(Runtime::kThrowIteratorResultNotAnObject), R(5), U8(1),
                B(LdaNamedProperty), R(5), U8(8), U8(13),
                B(JumpIfToBooleanTrue), U8(43),
                B(LdaNamedProperty), R(5), U8(9), U8(15),
                B(Star), R(7),
                B(LdaSmi), I8(2),
                B(Star), R(6),
                B(Mov), R(7), R(3),
  /*   23 E> */ B(StackCheck),
                B(Mov), R(3), R(0),
  /*   63 S> */ B(LdaSmi), I8(10),
  /*   69 E> */ B(TestEqual), R(0), U8(17),
                B(JumpIfFalse), U8(4),
  /*   76 S> */ B(Jump), U8(14),
  /*   90 S> */ B(LdaSmi), I8(20),
  /*   96 E> */ B(TestEqual), R(0), U8(18),
                B(JumpIfFalse), U8(4),
  /*  103 S> */ B(Jump), U8(8),
                B(LdaZero),
                B(Star), R(6),
                B(JumpLoop), U8(129), I8(0),
                B(Jump), U8(40),
                B(Star), R(20),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(20), U8(10), U8(11),
                B(Star), R(19),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(19),
                B(PushContext), R(20),
                B(LdaSmi), I8(2),
                B(TestEqualStrict), R(6), U8(19),
                B(JumpIfFalse), U8(6),
                B(LdaSmi), I8(1),
                B(Star), R(6),
                B(LdaImmutableCurrentContextSlot), U8(4),
                B(Star), R(21),
                B(CallRuntime), U16(Runtime::kReThrow), R(21), U8(1),
                B(PopContext), R(20),
                B(LdaSmi), I8(-1),
                B(Star), R(17),
                B(Star), R(16),
                B(Jump), U8(7),
                B(Star), R(17),
                B(LdaZero),
                B(Star), R(16),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Star), R(18),
                B(LdaZero),
                B(TestEqualStrict), R(6), U8(20),
                B(JumpIfTrue), U8(199),
                B(LdaNamedProperty), R(4), U8(12), U8(21),
                B(Star), R(8),
                B(TestUndetectable),
                B(JumpIfFalse), U8(4),
                B(Jump), U8(188),
                B(LdaSmi), I8(1),
                B(TestEqualStrict), R(6), U8(23),
                B(JumpIfFalse), U8(109),
                B(Ldar), R(8),
                B(TestTypeOf), U8(6),
                B(JumpIfFalse), U8(4),
                B(Jump), U8(18),
                B(Wide), B(LdaSmi), I16(143),
                B(Star), R(19),
                B(LdaConstant), U8(13),
                B(Star), R(20),
                B(CallRuntime), U16(Runtime::kNewTypeError), R(19), U8(2),
                B(Throw),
                B(Mov), R(context), R(19),
                B(Mov), R(8), R(20),
                B(Mov), R(4), R(21),
                B(InvokeIntrinsic), U8(Runtime::k_Call), R(20), U8(2),
                B(Star), R(21),
                B(Mov), R(2), R(20),
                B(Mov), R(10), R(22),
                B(CallJSRuntime), U8(%async_function_await_caught), R(20), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(20), U8(1),
  /*  114 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(20),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(21),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(21),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(20),
                B(ReThrow),
                B(Ldar), R(20),
                B(Jump), U8(20),
                B(Star), R(20),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(20), U8(10), U8(14),
                B(Star), R(19),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(19),
                B(PushContext), R(20),
                B(PopContext), R(20),
                B(Jump), U8(74),
                B(Mov), R(8), R(19),
                B(Mov), R(4), R(20),
                B(InvokeIntrinsic), U8(Runtime::k_Call), R(19), U8(2),
                B(Star), R(20),
                B(Mov), R(2), R(19),
                B(Mov), R(10), R(21),
                B(CallJSRuntime), U8(%async_function_await_uncaught), R(19), U8(3),
                B(SuspendGenerator), R(2), R(0), U8(19), U8(2),
  /*  114 S> */ B(Return),
                B(RestoreGeneratorRegisters), R(2), R(0), U8(19),
                B(LdaSmi), I8(-2),
                B(Star), R(11),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetInputOrDebugPos), R(2), U8(1),
                B(Star), R(19),
                B(InvokeIntrinsic), U8(Runtime::k_GeneratorGetResumeMode), R(2), U8(1),
                B(Star), R(20),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(20),
                B(JumpIfTrue), U8(5),
                B(Ldar), R(19),
                B(ReThrow),
                B(Mov), R(19), R(9),
                B(InvokeIntrinsic), U8(Runtime::k_IsJSReceiver), R(19), U8(1),
                B(JumpIfToBooleanFalse), U8(4),
                B(Jump), U8(7),
                B(CallRuntime), U16(Runtime::kThrowIteratorResultNotAnObject), R(9), U8(1),
                B(Ldar), R(18),
                B(SetPendingMessage),
                B(LdaZero),
                B(TestEqualStrictNoFeedback), R(16),
                B(JumpIfFalse), U8(5),
                B(Ldar), R(17),
                B(ReThrow),
                B(LdaUndefined),
                B(Star), R(17),
                B(Mov), R(10), R(16),
                B(CallJSRuntime), U8(%promise_resolve), R(16), U8(2),
                B(LdaZero),
                B(Star), R(12),
                B(Mov), R(10), R(13),
                B(Jump), U8(58),
                B(Jump), U8(42),
                B(Star), R(16),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(16), U8(10), U8(15),
                B(Star), R(15),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(15),
                B(PushContext), R(16),
                B(LdaImmutableCurrentContextSlot), U8(4),
                B(Star), R(18),
                B(LdaFalse),
                B(Star), R(19),
                B(Mov), R(10), R(17),
                B(CallJSRuntime), U8(%promise_internal_reject), R(17), U8(3),
                B(PopContext), R(16),
                B(LdaZero),
                B(Star), R(12),
                B(Mov), R(10), R(13),
                B(Jump), U8(16),
                B(LdaSmi), I8(-1),
                B(Star), R(13),
                B(Star), R(12),
                B(Jump), U8(8),
                B(Star), R(13),
                B(LdaSmi), I8(1),
                B(Star), R(12),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Star), R(14),
                B(CallJSRuntime), U8(%async_function_promise_release), R(10), U8(1),
                B(Ldar), R(14),
                B(SetPendingMessage),
                B(Ldar), R(12),
                B(SwitchOnSmiNoFeedback), U8(16), U8(2), I8(0),
                B(Jump), U8(8),
                B(Ldar), R(13),
  /*  114 S> */ B(Return),
                B(Ldar), R(13),
                B(ReThrow),
                B(LdaUndefined),
  /*  114 S> */ B(Return),
]
constant pool: [
  Smi [89],
  Smi [357],
  Smi [437],
  TUPLE2_TYPE,
  SYMBOL_TYPE,
  SYMBOL_TYPE,
  Smi [40],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["next"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["done"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["value"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE [".catch"],
  FIXED_ARRAY_TYPE,
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["return"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE [""],
  FIXED_ARRAY_TYPE,
  FIXED_ARRAY_TYPE,
  Smi [6],
  Smi [9],
]
handlers: [
  [46, 566, 574],
  [49, 524, 526],
  [55, 275, 283],
  [58, 235, 237],
  [343, 401, 403],
]

---
snippet: "
  async function f() {
    var x = { 'a': 1, 'b': 2 };
    for (x['a'] of [1,2,3]) { return x['a']; }
  }
  f();
"
frame size: 19
parameter count: 1
bytecode array length: 417
bytecodes: [
  /*   16 E> */ B(StackCheck),
                B(CallJSRuntime), U8(%async_function_promise_create), R(0), U8(0),
                B(Star), R(8),
                B(Mov), R(context), R(11),
                B(Mov), R(context), R(12),
  /*   31 S> */ B(CreateObjectLiteral), U8(0), U8(0), U8(41), R(13),
                B(Mov), R(13), R(1),
                B(LdaZero),
                B(Star), R(4),
                B(Mov), R(context), R(15),
                B(Mov), R(context), R(16),
  /*   68 S> */ B(CreateArrayLiteral), U8(1), U8(1), U8(37),
                B(Star), R(17),
                B(LdaNamedProperty), R(17), U8(2), U8(2),
                B(Star), R(18),
                B(CallProperty0), R(18), R(17), U8(4),
                B(JumpIfJSReceiver), U8(7),
                B(CallRuntime), U16(Runtime::kThrowSymbolIteratorInvalid), R(0), U8(0),
                B(Star), R(2),
  /*   59 S> */ B(LdaNamedProperty), R(2), U8(3), U8(6),
                B(Star), R(17),
                B(CallProperty0), R(17), R(2), U8(8),
                B(Star), R(3),
  /*   59 E> */ B(InvokeIntrinsic), U8(Runtime::k_IsJSReceiver), R(3), U8(1),
                B(ToBooleanLogicalNot),
                B(JumpIfFalse), U8(7),
                B(CallRuntime), U16(Runtime::kThrowIteratorResultNotAnObject), R(3), U8(1),
                B(LdaNamedProperty), R(3), U8(4), U8(10),
                B(JumpIfToBooleanTrue), U8(30),
  /*   58 E> */ B(LdaNamedProperty), R(3), U8(5), U8(12),
                B(Star), R(5),
                B(LdaSmi), I8(2),
                B(Star), R(4),
                B(Ldar), R(5),
                B(StaNamedProperty), R(1), U8(6), U8(14),
  /*   53 E> */ B(StackCheck),
  /*   87 S> */ B(LdaNamedProperty), R(1), U8(6), U8(16),
                B(Star), R(14),
                B(LdaZero),
                B(Star), R(13),
                B(Jump), U8(56),
                B(Jump), U8(40),
                B(Star), R(17),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(17), U8(7), U8(8),
                B(Star), R(16),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(16),
                B(PushContext), R(17),
                B(LdaSmi), I8(2),
                B(TestEqualStrict), R(4), U8(18),
                B(JumpIfFalse), U8(6),
                B(LdaSmi), I8(1),
                B(Star), R(4),
                B(LdaImmutableCurrentContextSlot), U8(4),
                B(Star), R(18),
                B(CallRuntime), U16(Runtime::kReThrow), R(18), U8(1),
                B(PopContext), R(17),
                B(LdaSmi), I8(-1),
                B(Star), R(14),
                B(Star), R(13),
                B(Jump), U8(8),
                B(Star), R(14),
                B(LdaSmi), I8(1),
                B(Star), R(13),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Star), R(15),
                B(LdaZero),
                B(TestEqualStrict), R(4), U8(19),
                B(JumpIfTrue), U8(104),
                B(LdaNamedProperty), R(2), U8(9), U8(20),
                B(Star), R(6),
                B(TestUndetectable),
                B(JumpIfFalse), U8(4),
                B(Jump), U8(93),
                B(LdaSmi), I8(1),
                B(TestEqualStrict), R(4), U8(22),
                B(JumpIfFalse), U8(61),
                B(Ldar), R(6),
                B(TestTypeOf), U8(6),
                B(JumpIfFalse), U8(4),
                B(Jump), U8(18),
                B(Wide), B(LdaSmi), I16(143),
                B(Star), R(16),
                B(LdaConstant), U8(10),
                B(Star), R(17),
                B(CallRuntime), U16(Runtime::kNewTypeError), R(16), U8(2),
                B(Throw),
                B(Mov), R(context), R(16),
                B(Mov), R(6), R(17),
                B(Mov), R(2), R(18),
                B(InvokeIntrinsic), U8(Runtime::k_Call), R(17), U8(2),
                B(Jump), U8(20),
                B(Star), R(17),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(17), U8(7), U8(11),
                B(Star), R(16),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(16),
                B(PushContext), R(17),
                B(PopContext), R(17),
                B(Jump), U8(27),
                B(Mov), R(6), R(16),
                B(Mov), R(2), R(17),
                B(InvokeIntrinsic), U8(Runtime::k_Call), R(16), U8(2),
                B(Star), R(7),
                B(InvokeIntrinsic), U8(Runtime::k_IsJSReceiver), R(7), U8(1),
                B(JumpIfToBooleanFalse), U8(4),
                B(Jump), U8(7),
                B(CallRuntime), U16(Runtime::kThrowIteratorResultNotAnObject), R(7), U8(1),
                B(Ldar), R(15),
                B(SetPendingMessage),
                B(Ldar), R(13),
                B(SwitchOnSmiNoFeedback), U8(12), U8(2), I8(0),
                B(Jump), U8(13),
                B(LdaZero),
                B(Star), R(9),
                B(Mov), R(14), R(10),
                B(Jump), U8(81),
                B(Ldar), R(14),
                B(ReThrow),
                B(LdaUndefined),
                B(Star), R(14),
                B(Mov), R(8), R(13),
                B(CallJSRuntime), U8(%promise_resolve), R(13), U8(2),
                B(LdaSmi), I8(1),
                B(Star), R(9),
                B(Mov), R(8), R(10),
                B(Jump), U8(59),
                B(Jump), U8(43),
                B(Star), R(13),
                B(Ldar), R(closure),
                B(CreateCatchContext), R(13), U8(7), U8(14),
                B(Star), R(12),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Ldar), R(12),
                B(PushContext), R(13),
                B(LdaImmutableCurrentContextSlot), U8(4),
                B(Star), R(15),
                B(LdaFalse),
                B(Star), R(16),
                B(Mov), R(8), R(14),
                B(CallJSRuntime), U8(%promise_internal_reject), R(14), U8(3),
                B(PopContext), R(13),
                B(LdaSmi), I8(1),
                B(Star), R(9),
                B(Mov), R(8), R(10),
                B(Jump), U8(16),
                B(LdaSmi), I8(-1),
                B(Star), R(10),
                B(Star), R(9),
                B(Jump), U8(8),
                B(Star), R(10),
                B(LdaSmi), I8(2),
                B(Star), R(9),
                B(LdaTheHole),
                B(SetPendingMessage),
                B(Star), R(11),
                B(CallJSRuntime), U8(%async_function_promise_release), R(8), U8(1),
                B(Ldar), R(11),
                B(SetPendingMessage),
                B(Ldar), R(9),
                B(SwitchOnSmiNoFeedback), U8(15), U8(3), I8(0),
                B(Jump), U8(21),
                B(Mov), R(8), R(12),
                B(Mov), R(10), R(13),
                B(CallJSRuntime), U8(%promise_resolve), R(12), U8(2),
                B(Ldar), R(8),
  /*   96 S> */ B(Return),
                B(Ldar), R(10),
  /*   96 S> */ B(Return),
                B(Ldar), R(10),
                B(ReThrow),
                B(LdaUndefined),
  /*   96 S> */ B(Return),
]
constant pool: [
  FIXED_ARRAY_TYPE,
  TUPLE2_TYPE,
  SYMBOL_TYPE,
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["next"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["done"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["value"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["a"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE [".catch"],
  FIXED_ARRAY_TYPE,
  ONE_BYTE_INTERNALIZED_STRING_TYPE ["return"],
  ONE_BYTE_INTERNALIZED_STRING_TYPE [""],
  FIXED_ARRAY_TYPE,
  Smi [6],
  Smi [14],
  FIXED_ARRAY_TYPE,
  Smi [6],
  Smi [19],
  Smi [22],
]
handlers: [
  [10, 363, 371],
  [13, 320, 322],
  [27, 153, 161],
  [30, 113, 115],
  [222, 232, 234],
]