68
68
#define JUMPBY (offset ) ((void)0)
69
69
#define GO_TO_INSTRUCTION (instname ) ((void)0)
70
70
#define DISPATCH_SAME_OPARG () ((void)0)
71
- #define DISPATCH () ((void)0)
72
71
73
72
#define inst (name , ...) case name:
74
73
#define super (name ) static int SUPER_##name
@@ -104,10 +103,6 @@ dummy_func(
104
103
{
105
104
switch (opcode ) {
106
105
107
- /* BEWARE!
108
- It is essential that any operation that fails must goto error
109
- and that all operation that succeed call DISPATCH() ! */
110
-
111
106
// BEGIN BYTECODES //
112
107
inst (NOP , (-- )) {
113
108
}
@@ -152,16 +147,14 @@ dummy_func(
152
147
super (LOAD_FAST__LOAD_CONST ) = LOAD_FAST + LOAD_CONST ;
153
148
super (STORE_FAST__LOAD_FAST ) = STORE_FAST + LOAD_FAST ;
154
149
super (STORE_FAST__STORE_FAST ) = STORE_FAST + STORE_FAST ;
155
- super (LOAD_CONST__LOAD_FAST ) = LOAD_CONST + LOAD_FAST ;
150
+ super (LOAD_CONST__LOAD_FAST ) = LOAD_CONST + LOAD_FAST ;
156
151
157
152
inst (POP_TOP , (value -- )) {
158
153
Py_DECREF (value );
159
154
}
160
155
161
- // stack effect: ( -- __0)
162
- inst (PUSH_NULL ) {
163
- /* Use BASIC_PUSH as NULL is not a valid object pointer */
164
- BASIC_PUSH (NULL );
156
+ inst (PUSH_NULL , (-- res )) {
157
+ res = NULL ;
165
158
}
166
159
167
160
inst (END_FOR , (value1 , value2 -- )) {
@@ -816,11 +809,12 @@ dummy_func(
816
809
Py_DECREF (receiver );
817
810
SET_TOP (retval );
818
811
JUMPBY (oparg );
819
- DISPATCH ();
820
812
}
821
- assert (gen_status == PYGEN_NEXT );
822
- assert (retval != NULL );
823
- PUSH (retval );
813
+ else {
814
+ assert (gen_status == PYGEN_NEXT );
815
+ assert (retval != NULL );
816
+ PUSH (retval );
817
+ }
824
818
}
825
819
826
820
// stack effect: ( -- )
@@ -913,7 +907,6 @@ dummy_func(
913
907
if (PyErr_GivenExceptionMatches (val , PyExc_StopAsyncIteration )) {
914
908
Py_DECREF (val );
915
909
Py_DECREF (POP ());
916
- DISPATCH ();
917
910
}
918
911
else {
919
912
PyObject * exc = Py_NewRef (PyExceptionInstance_Class (val ));
@@ -935,12 +928,13 @@ dummy_func(
935
928
Py_DECREF (POP ()); // The last sent value.
936
929
Py_DECREF (POP ()); // The delegated sub-iterator.
937
930
PUSH (value );
938
- DISPATCH ();
939
931
}
940
- PyObject * exc_type = Py_NewRef (Py_TYPE (exc_value ));
941
- PyObject * exc_traceback = PyException_GetTraceback (exc_value );
942
- _PyErr_Restore (tstate , exc_type , Py_NewRef (exc_value ), exc_traceback );
943
- goto exception_unwind ;
932
+ else {
933
+ PyObject * exc_type = Py_NewRef (Py_TYPE (exc_value ));
934
+ PyObject * exc_traceback = PyException_GetTraceback (exc_value );
935
+ _PyErr_Restore (tstate , exc_type , Py_NewRef (exc_value ), exc_traceback );
936
+ goto exception_unwind ;
937
+ }
944
938
}
945
939
946
940
inst (STOPITERATION_ERROR ) {
@@ -982,7 +976,6 @@ dummy_func(
982
976
PyException_SetContext (error , exc );
983
977
Py_DECREF (message );
984
978
}
985
- DISPATCH ();
986
979
}
987
980
988
981
@@ -1040,8 +1033,7 @@ dummy_func(
1040
1033
goto error ;
1041
1034
}
1042
1035
1043
- // stack effect: ( -- )
1044
- inst (DELETE_NAME ) {
1036
+ inst (DELETE_NAME , (-- )) {
1045
1037
PyObject * name = GETITEM (names , oparg );
1046
1038
PyObject * ns = LOCALS ();
1047
1039
int err ;
@@ -1051,6 +1043,7 @@ dummy_func(
1051
1043
goto error ;
1052
1044
}
1053
1045
err = PyObject_DelItem (ns , name );
1046
+ // Can't use ERROR_IF here.
1054
1047
if (err != 0 ) {
1055
1048
format_exc_check_arg (tstate , PyExc_NameError ,
1056
1049
NAME_ERROR_MSG ,
@@ -1190,11 +1183,11 @@ dummy_func(
1190
1183
goto error ;
1191
1184
}
1192
1185
1193
- // stack effect: ( -- )
1194
- inst (DELETE_GLOBAL ) {
1186
+ inst (DELETE_GLOBAL , (-- )) {
1195
1187
PyObject * name = GETITEM (names , oparg );
1196
1188
int err ;
1197
1189
err = PyDict_DelItem (GLOBALS (), name );
1190
+ // Can't use ERROR_IF here.
1198
1191
if (err != 0 ) {
1199
1192
if (_PyErr_ExceptionMatches (tstate , PyExc_KeyError )) {
1200
1193
format_exc_check_arg (tstate , PyExc_NameError ,
@@ -1374,18 +1367,13 @@ dummy_func(
1374
1367
SET_TOP (Py_NewRef (res ));
1375
1368
}
1376
1369
1377
- // stack effect: ( -- )
1378
- inst (DELETE_FAST ) {
1370
+ inst (DELETE_FAST , (-- )) {
1379
1371
PyObject * v = GETLOCAL (oparg );
1380
- if (v != NULL ) {
1381
- SETLOCAL (oparg , NULL );
1382
- DISPATCH ();
1383
- }
1384
- goto unbound_local_error ;
1372
+ ERROR_IF (v == NULL , unbound_local_error );
1373
+ SETLOCAL (oparg , NULL );
1385
1374
}
1386
1375
1387
- // stack effect: ( -- )
1388
- inst (MAKE_CELL ) {
1376
+ inst (MAKE_CELL , (-- )) {
1389
1377
// "initial" is probably NULL but not if it's an arg (or set
1390
1378
// via PyFrame_LocalsToFast() before MAKE_CELL has run).
1391
1379
PyObject * initial = GETLOCAL (oparg );
@@ -1396,17 +1384,17 @@ dummy_func(
1396
1384
SETLOCAL (oparg , cell );
1397
1385
}
1398
1386
1399
- // stack effect: ( -- )
1400
- inst (DELETE_DEREF ) {
1387
+ inst (DELETE_DEREF , (-- )) {
1401
1388
PyObject * cell = GETLOCAL (oparg );
1402
1389
PyObject * oldobj = PyCell_GET (cell );
1403
- if (oldobj != NULL ) {
1404
- PyCell_SET (cell , NULL );
1405
- Py_DECREF (oldobj );
1406
- DISPATCH ();
1390
+ // Can't use ERROR_IF here.
1391
+ // Fortunately we don't need its superpower.
1392
+ if (oldobj == NULL ) {
1393
+ format_exc_unbound (tstate , frame -> f_code , oparg );
1394
+ goto error ;
1407
1395
}
1408
- format_exc_unbound ( tstate , frame -> f_code , oparg );
1409
- goto error ;
1396
+ PyCell_SET ( cell , NULL );
1397
+ Py_DECREF ( oldobj ) ;
1410
1398
}
1411
1399
1412
1400
// stack effect: ( -- __0)
@@ -1769,15 +1757,15 @@ dummy_func(
1769
1757
Py_DECREF (owner );
1770
1758
PUSH (meth );
1771
1759
}
1772
- JUMPBY (INLINE_CACHE_ENTRIES_LOAD_ATTR );
1773
- DISPATCH ();
1774
1760
}
1775
- PyObject * res = PyObject_GetAttr (owner , name );
1776
- if (res == NULL ) {
1777
- goto error ;
1761
+ else {
1762
+ PyObject * res = PyObject_GetAttr (owner , name );
1763
+ if (res == NULL ) {
1764
+ goto error ;
1765
+ }
1766
+ Py_DECREF (owner );
1767
+ SET_TOP (res );
1778
1768
}
1779
- Py_DECREF (owner );
1780
- SET_TOP (res );
1781
1769
JUMPBY (INLINE_CACHE_ENTRIES_LOAD_ATTR );
1782
1770
}
1783
1771
@@ -2435,21 +2423,23 @@ dummy_func(
2435
2423
if (Py_IsTrue (cond )) {
2436
2424
STACK_SHRINK (1 );
2437
2425
_Py_DECREF_NO_DEALLOC (cond );
2438
- DISPATCH ();
2439
2426
}
2440
- if (Py_IsFalse (cond )) {
2427
+ else if (Py_IsFalse (cond )) {
2441
2428
JUMPBY (oparg );
2442
- DISPATCH ();
2443
2429
}
2444
- err = PyObject_IsTrue (cond );
2445
- if (err > 0 ) {
2446
- STACK_SHRINK (1 );
2447
- Py_DECREF (cond );
2430
+ else {
2431
+ err = PyObject_IsTrue (cond );
2432
+ if (err > 0 ) {
2433
+ STACK_SHRINK (1 );
2434
+ Py_DECREF (cond );
2435
+ }
2436
+ else if (err == 0 ) {
2437
+ JUMPBY (oparg );
2438
+ }
2439
+ else {
2440
+ goto error ;
2441
+ }
2448
2442
}
2449
- else if (err == 0 )
2450
- JUMPBY (oparg );
2451
- else
2452
- goto error ;
2453
2443
}
2454
2444
2455
2445
// error: JUMP_IF_TRUE_OR_POP stack effect depends on jump flag
@@ -2459,22 +2449,23 @@ dummy_func(
2459
2449
if (Py_IsFalse (cond )) {
2460
2450
STACK_SHRINK (1 );
2461
2451
_Py_DECREF_NO_DEALLOC (cond );
2462
- DISPATCH ();
2463
- }
2464
- if (Py_IsTrue (cond )) {
2465
- JUMPBY (oparg );
2466
- DISPATCH ();
2467
2452
}
2468
- err = PyObject_IsTrue (cond );
2469
- if (err > 0 ) {
2453
+ else if (Py_IsTrue (cond )) {
2470
2454
JUMPBY (oparg );
2471
2455
}
2472
- else if (err == 0 ) {
2473
- STACK_SHRINK (1 );
2474
- Py_DECREF (cond );
2456
+ else {
2457
+ err = PyObject_IsTrue (cond );
2458
+ if (err > 0 ) {
2459
+ JUMPBY (oparg );
2460
+ }
2461
+ else if (err == 0 ) {
2462
+ STACK_SHRINK (1 );
2463
+ Py_DECREF (cond );
2464
+ }
2465
+ else {
2466
+ goto error ;
2467
+ }
2475
2468
}
2476
- else
2477
- goto error ;
2478
2469
}
2479
2470
2480
2471
// stack effect: ( -- )
@@ -2615,23 +2606,24 @@ dummy_func(
2615
2606
if (next != NULL ) {
2616
2607
PUSH (next );
2617
2608
JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER );
2618
- DISPATCH ();
2619
2609
}
2620
- if (_PyErr_Occurred (tstate )) {
2621
- if (!_PyErr_ExceptionMatches (tstate , PyExc_StopIteration )) {
2622
- goto error ;
2623
- }
2624
- else if (tstate -> c_tracefunc != NULL ) {
2625
- call_exc_trace (tstate -> c_tracefunc , tstate -> c_traceobj , tstate , frame );
2610
+ else {
2611
+ if (_PyErr_Occurred (tstate )) {
2612
+ if (!_PyErr_ExceptionMatches (tstate , PyExc_StopIteration )) {
2613
+ goto error ;
2614
+ }
2615
+ else if (tstate -> c_tracefunc != NULL ) {
2616
+ call_exc_trace (tstate -> c_tracefunc , tstate -> c_traceobj , tstate , frame );
2617
+ }
2618
+ _PyErr_Clear (tstate );
2626
2619
}
2627
- _PyErr_Clear (tstate );
2620
+ /* iterator ended normally */
2621
+ assert (_Py_OPCODE (next_instr [INLINE_CACHE_ENTRIES_FOR_ITER + oparg ]) == END_FOR );
2622
+ STACK_SHRINK (1 );
2623
+ Py_DECREF (iter );
2624
+ /* Skip END_FOR */
2625
+ JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 );
2628
2626
}
2629
- /* iterator ended normally */
2630
- assert (_Py_OPCODE (next_instr [INLINE_CACHE_ENTRIES_FOR_ITER + oparg ]) == END_FOR );
2631
- STACK_SHRINK (1 );
2632
- Py_DECREF (iter );
2633
- /* Skip END_FOR */
2634
- JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 );
2635
2627
}
2636
2628
2637
2629
// stack effect: ( -- __0)
@@ -2646,14 +2638,15 @@ dummy_func(
2646
2638
PyObject * next = PyList_GET_ITEM (seq , it -> it_index ++ );
2647
2639
PUSH (Py_NewRef (next ));
2648
2640
JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER );
2649
- DISPATCH ();
2641
+ goto end_for_iter_list ; // End of this instruction
2650
2642
}
2651
2643
it -> it_seq = NULL ;
2652
2644
Py_DECREF (seq );
2653
2645
}
2654
2646
STACK_SHRINK (1 );
2655
2647
Py_DECREF (it );
2656
2648
JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 );
2649
+ end_for_iter_list :
2657
2650
}
2658
2651
2659
2652
// stack effect: ( -- __0)
@@ -2668,15 +2661,16 @@ dummy_func(
2668
2661
STACK_SHRINK (1 );
2669
2662
Py_DECREF (r );
2670
2663
JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + oparg + 1 );
2671
- DISPATCH ();
2672
2664
}
2673
- long value = (long )(r -> start +
2674
- (unsigned long )(r -> index ++ ) * r -> step );
2675
- if (_PyLong_AssignValue (& GETLOCAL (_Py_OPARG (next )), value ) < 0 ) {
2676
- goto error ;
2665
+ else {
2666
+ long value = (long )(r -> start +
2667
+ (unsigned long )(r -> index ++ ) * r -> step );
2668
+ if (_PyLong_AssignValue (& GETLOCAL (_Py_OPARG (next )), value ) < 0 ) {
2669
+ goto error ;
2670
+ }
2671
+ // The STORE_FAST is already done.
2672
+ JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + 1 );
2677
2673
}
2678
- // The STORE_FAST is already done.
2679
- JUMPBY (INLINE_CACHE_ENTRIES_FOR_ITER + 1 );
2680
2674
}
2681
2675
2682
2676
inst (FOR_ITER_GEN ) {
0 commit comments