@@ -112,7 +112,6 @@ dummy_func(
112
112
113
113
// stack effect: ( -- __0)
114
114
inst (LOAD_CONST ) {
115
- PREDICTED (LOAD_CONST );
116
115
PyObject * value = GETITEM (consts , oparg );
117
116
Py_INCREF (value );
118
117
PUSH (value );
@@ -431,7 +430,6 @@ dummy_func(
431
430
432
431
// stack effect: (__0 -- )
433
432
inst (BINARY_SUBSCR ) {
434
- PREDICTED (BINARY_SUBSCR );
435
433
PyObject * sub = POP ();
436
434
PyObject * container = TOP ();
437
435
PyObject * res = PyObject_GetItem (container , sub );
@@ -631,7 +629,6 @@ dummy_func(
631
629
632
630
// stack effect: (__0, __1, __2 -- )
633
631
inst (STORE_SUBSCR ) {
634
- PREDICTED (STORE_SUBSCR );
635
632
PyObject * sub = TOP ();
636
633
PyObject * container = SECOND ();
637
634
PyObject * v = THIRD ();
@@ -884,7 +881,6 @@ dummy_func(
884
881
885
882
// stack effect: ( -- )
886
883
inst (GET_AWAITABLE ) {
887
- PREDICTED (GET_AWAITABLE );
888
884
PyObject * iterable = TOP ();
889
885
PyObject * iter = _PyCoro_GetAwaitableIter (iterable );
890
886
@@ -1204,7 +1200,6 @@ dummy_func(
1204
1200
1205
1201
// stack effect: (__0 -- __array[oparg])
1206
1202
inst (UNPACK_SEQUENCE ) {
1207
- PREDICTED (UNPACK_SEQUENCE );
1208
1203
PyObject * seq = POP ();
1209
1204
PyObject * * top = stack_pointer + oparg ;
1210
1205
if (!unpack_iterable (tstate , seq , oparg , -1 , top )) {
@@ -1290,7 +1285,6 @@ dummy_func(
1290
1285
1291
1286
// stack effect: (__0, __1 -- )
1292
1287
inst (STORE_ATTR ) {
1293
- PREDICTED (STORE_ATTR );
1294
1288
PyObject * name = GETITEM (names , oparg );
1295
1289
PyObject * owner = TOP ();
1296
1290
PyObject * v = SECOND ();
@@ -1407,7 +1401,6 @@ dummy_func(
1407
1401
1408
1402
// error: LOAD_GLOBAL has irregular stack effect
1409
1403
inst (LOAD_GLOBAL ) {
1410
- PREDICTED (LOAD_GLOBAL );
1411
1404
int push_null = oparg & 1 ;
1412
1405
PEEK (0 ) = NULL ;
1413
1406
PyObject * name = GETITEM (names , oparg >>1 );
@@ -1871,7 +1864,6 @@ dummy_func(
1871
1864
1872
1865
// error: LOAD_ATTR has irregular stack effect
1873
1866
inst (LOAD_ATTR ) {
1874
- PREDICTED (LOAD_ATTR );
1875
1867
PyObject * name = GETITEM (names , oparg >> 1 );
1876
1868
PyObject * owner = TOP ();
1877
1869
if (oparg & 1 ) {
@@ -2276,7 +2268,6 @@ dummy_func(
2276
2268
2277
2269
// stack effect: (__0 -- )
2278
2270
inst (COMPARE_OP ) {
2279
- PREDICTED (COMPARE_OP );
2280
2271
assert (oparg <= Py_GE );
2281
2272
PyObject * right = POP ();
2282
2273
PyObject * left = TOP ();
@@ -2539,15 +2530,13 @@ dummy_func(
2539
2530
2540
2531
// stack effect: ( -- )
2541
2532
inst (JUMP_BACKWARD ) {
2542
- PREDICTED (JUMP_BACKWARD );
2543
2533
assert (oparg < INSTR_OFFSET ());
2544
2534
JUMPBY (- oparg );
2545
2535
CHECK_EVAL_BREAKER ();
2546
2536
}
2547
2537
2548
2538
// stack effect: (__0 -- )
2549
2539
inst (POP_JUMP_IF_FALSE ) {
2550
- PREDICTED (POP_JUMP_IF_FALSE );
2551
2540
PyObject * cond = POP ();
2552
2541
if (Py_IsTrue (cond )) {
2553
2542
_Py_DECREF_NO_DEALLOC (cond );
@@ -2788,7 +2777,6 @@ dummy_func(
2788
2777
2789
2778
// stack effect: ( -- __0)
2790
2779
inst (FOR_ITER ) {
2791
- PREDICTED (FOR_ITER );
2792
2780
/* before: [iter]; after: [iter, iter()] *or* [] */
2793
2781
PyObject * iter = TOP ();
2794
2782
PyObject * next = (* Py_TYPE (iter )-> tp_iternext )(iter );
@@ -3118,7 +3106,6 @@ dummy_func(
3118
3106
3119
3107
// stack effect: (__0, __array[oparg] -- )
3120
3108
inst (CALL ) {
3121
- PREDICTED (CALL );
3122
3109
int total_args , is_meth ;
3123
3110
is_meth = is_method (stack_pointer , oparg );
3124
3111
PyObject * function = PEEK (oparg + 1 );
@@ -3216,7 +3203,6 @@ dummy_func(
3216
3203
3217
3204
// stack effect: (__0, __array[oparg] -- )
3218
3205
inst (CALL_PY_EXACT_ARGS ) {
3219
- PREDICTED (CALL_PY_EXACT_ARGS );
3220
3206
assert (call_shape .kwnames == NULL );
3221
3207
DEOPT_IF (tstate -> interp -> eval_frame , CALL );
3222
3208
_PyCallCache * cache = (_PyCallCache * )next_instr ;
@@ -3721,7 +3707,6 @@ dummy_func(
3721
3707
3722
3708
// error: CALL_FUNCTION_EX has irregular stack effect
3723
3709
inst (CALL_FUNCTION_EX ) {
3724
- PREDICTED (CALL_FUNCTION_EX );
3725
3710
PyObject * func , * callargs , * kwargs = NULL , * result ;
3726
3711
if (oparg & 0x01 ) {
3727
3712
kwargs = POP ();
@@ -3913,7 +3898,6 @@ dummy_func(
3913
3898
3914
3899
// stack effect: (__0 -- )
3915
3900
inst (BINARY_OP ) {
3916
- PREDICTED (BINARY_OP );
3917
3901
PyObject * rhs = POP ();
3918
3902
PyObject * lhs = TOP ();
3919
3903
assert (0 <= oparg );
0 commit comments