@@ -384,7 +384,7 @@ dummy_func(
384
384
(void )receiver ;
385
385
val = value ;
386
386
DEAD (value );
387
- PyStackRef_CLOSE ( receiver );
387
+ DECREF_INPUTS ( );
388
388
}
389
389
390
390
tier1 inst (INSTRUMENTED_END_SEND , (receiver , value -- val )) {
@@ -681,8 +681,8 @@ dummy_func(
681
681
682
682
STAT_INC (BINARY_OP , hit );
683
683
PyObject * res_o = PyUnicode_Concat (left_o , right_o );
684
- PyStackRef_CLOSE_SPECIALIZED (left , _PyUnicode_ExactDealloc );
685
684
PyStackRef_CLOSE_SPECIALIZED (right , _PyUnicode_ExactDealloc );
685
+ PyStackRef_CLOSE_SPECIALIZED (left , _PyUnicode_ExactDealloc );
686
686
INPUTS_DEAD ();
687
687
ERROR_IF (res_o == NULL , error );
688
688
res = PyStackRef_FromPyObjectSteal (res_o );
@@ -725,7 +725,7 @@ dummy_func(
725
725
* that the string is safe to mutate.
726
726
*/
727
727
assert (Py_REFCNT (left_o ) >= 2 );
728
- PyStackRef_CLOSE (left );
728
+ PyStackRef_CLOSE_SPECIALIZED (left , _PyUnicode_ExactDealloc );
729
729
DEAD (left );
730
730
PyObject * temp = PyStackRef_AsPyObjectSteal (* target_local );
731
731
PyUnicode_Append (& temp , right_o );
@@ -822,8 +822,7 @@ dummy_func(
822
822
err = PyObject_SetItem (PyStackRef_AsPyObjectBorrow (container ), slice , PyStackRef_AsPyObjectBorrow (v ));
823
823
Py_DECREF (slice );
824
824
}
825
- PyStackRef_CLOSE (v );
826
- PyStackRef_CLOSE (container );
825
+ DECREF_INPUTS ();
827
826
ERROR_IF (err , error );
828
827
}
829
828
@@ -2082,11 +2081,8 @@ dummy_func(
2082
2081
int method_found = 0 ;
2083
2082
PyObject * attr_o = _PySuper_Lookup (cls , self , name ,
2084
2083
Py_TYPE (self )-> tp_getattro == PyObject_GenericGetAttr ? & method_found : NULL );
2085
- PyStackRef_CLOSE (global_super_st );
2086
- PyStackRef_CLOSE (class_st );
2087
2084
if (attr_o == NULL ) {
2088
- PyStackRef_CLOSE (self_st );
2089
- ERROR_IF (true, error );
2085
+ ERROR_NO_POP ();
2090
2086
}
2091
2087
if (method_found ) {
2092
2088
self_or_null = self_st ; // transfer ownership
@@ -2095,6 +2091,8 @@ dummy_func(
2095
2091
PyStackRef_CLOSE (self_st );
2096
2092
self_or_null = PyStackRef_NULL ;
2097
2093
}
2094
+ PyStackRef_CLOSE (class_st );
2095
+ PyStackRef_CLOSE (global_super_st );
2098
2096
2099
2097
attr = PyStackRef_FromPyObjectSteal (attr_o );
2100
2098
}
@@ -2920,7 +2918,6 @@ dummy_func(
2920
2918
else {
2921
2919
/* `iterable` is not a generator. */
2922
2920
PyObject * iter_o = PyObject_GetIter (iterable_o );
2923
- DEAD (iterable );
2924
2921
if (iter_o == NULL ) {
2925
2922
ERROR_NO_POP ();
2926
2923
}
@@ -3466,11 +3463,11 @@ dummy_func(
3466
3463
/* Callable is not a normal Python function */
3467
3464
STACKREFS_TO_PYOBJECTS (args , total_args , args_o );
3468
3465
if (CONVERSION_FAILED (args_o )) {
3469
- PyStackRef_CLOSE (callable [0 ]);
3470
3466
for (int i = 0 ; i < total_args ; i ++ ) {
3471
3467
PyStackRef_CLOSE (args [i ]);
3472
3468
}
3473
3469
DEAD (self_or_null );
3470
+ PyStackRef_CLOSE (callable [0 ]);
3474
3471
ERROR_IF (true, error );
3475
3472
}
3476
3473
PyObject * res_o = PyObject_Vectorcall (
@@ -3496,11 +3493,11 @@ dummy_func(
3496
3493
}
3497
3494
}
3498
3495
assert ((res_o != NULL ) ^ (_PyErr_Occurred (tstate ) != NULL ));
3499
- PyStackRef_CLOSE (callable [0 ]);
3500
3496
for (int i = 0 ; i < total_args ; i ++ ) {
3501
3497
PyStackRef_CLOSE (args [i ]);
3502
3498
}
3503
3499
DEAD (self_or_null );
3500
+ PyStackRef_CLOSE (callable [0 ]);
3504
3501
ERROR_IF (res_o == NULL , error );
3505
3502
res = PyStackRef_FromPyObjectSteal (res_o );
3506
3503
}
@@ -3636,11 +3633,11 @@ dummy_func(
3636
3633
NULL );
3637
3634
STACKREFS_TO_PYOBJECTS_CLEANUP (args_o );
3638
3635
assert ((res_o != NULL ) ^ (_PyErr_Occurred (tstate ) != NULL ));
3639
- PyStackRef_CLOSE (callable [0 ]);
3640
3636
for (int i = 0 ; i < total_args ; i ++ ) {
3641
3637
PyStackRef_CLOSE (args [i ]);
3642
3638
}
3643
3639
DEAD (self_or_null );
3640
+ PyStackRef_CLOSE (callable [0 ]);
3644
3641
ERROR_IF (res_o == NULL , error );
3645
3642
res = PyStackRef_FromPyObjectSteal (res_o );
3646
3643
}
@@ -3865,28 +3862,29 @@ dummy_func(
3865
3862
3866
3863
op (_CALL_BUILTIN_CLASS , (callable [1 ], self_or_null [1 ], args [oparg ] -- res )) {
3867
3864
PyObject * callable_o = PyStackRef_AsPyObjectBorrow (callable [0 ]);
3868
-
3865
+ DEOPT_IF (!PyType_Check (callable_o ));
3866
+ PyTypeObject * tp = (PyTypeObject * )callable_o ;
3869
3867
int total_args = oparg ;
3868
+ _PyStackRef * arguments = args ;
3870
3869
if (!PyStackRef_IsNull (self_or_null [0 ])) {
3871
- args -- ;
3870
+ arguments -- ;
3872
3871
total_args ++ ;
3873
3872
}
3874
- DEAD (self_or_null );
3875
- DEOPT_IF (!PyType_Check (callable_o ));
3876
- PyTypeObject * tp = (PyTypeObject * )callable_o ;
3877
3873
DEOPT_IF (tp -> tp_vectorcall == NULL );
3878
3874
STAT_INC (CALL , hit );
3879
- STACKREFS_TO_PYOBJECTS (args , total_args , args_o );
3875
+ STACKREFS_TO_PYOBJECTS (arguments , total_args , args_o );
3880
3876
if (CONVERSION_FAILED (args_o )) {
3881
3877
DECREF_INPUTS ();
3882
3878
ERROR_IF (true, error );
3883
3879
}
3880
+ DEAD (self_or_null );
3884
3881
PyObject * res_o = tp -> tp_vectorcall ((PyObject * )tp , args_o , total_args , NULL );
3885
3882
STACKREFS_TO_PYOBJECTS_CLEANUP (args_o );
3886
3883
/* Free the arguments. */
3887
3884
for (int i = 0 ; i < total_args ; i ++ ) {
3888
- PyStackRef_CLOSE (args [i ]);
3885
+ PyStackRef_CLOSE (arguments [i ]);
3889
3886
}
3887
+ DEAD (args );
3890
3888
PyStackRef_CLOSE (callable [0 ]);
3891
3889
ERROR_IF (res_o == NULL , error );
3892
3890
res = PyStackRef_FromPyObjectSteal (res_o );
@@ -3939,21 +3937,22 @@ dummy_func(
3939
3937
PyObject * callable_o = PyStackRef_AsPyObjectBorrow (callable [0 ]);
3940
3938
3941
3939
int total_args = oparg ;
3940
+ _PyStackRef * arguments = args ;
3942
3941
if (!PyStackRef_IsNull (self_or_null [0 ])) {
3943
- args -- ;
3942
+ arguments -- ;
3944
3943
total_args ++ ;
3945
3944
}
3946
- DEAD (self_or_null );
3947
3945
DEOPT_IF (!PyCFunction_CheckExact (callable_o ));
3948
3946
DEOPT_IF (PyCFunction_GET_FLAGS (callable_o ) != METH_FASTCALL );
3949
3947
STAT_INC (CALL , hit );
3950
3948
PyCFunction cfunc = PyCFunction_GET_FUNCTION (callable_o );
3951
3949
/* res = func(self, args, nargs) */
3952
- STACKREFS_TO_PYOBJECTS (args , total_args , args_o );
3950
+ STACKREFS_TO_PYOBJECTS (arguments , total_args , args_o );
3953
3951
if (CONVERSION_FAILED (args_o )) {
3954
3952
DECREF_INPUTS ();
3955
3953
ERROR_IF (true, error );
3956
3954
}
3955
+ DEAD (self_or_null );
3957
3956
PyObject * res_o = ((PyCFunctionFast )(void (* )(void ))cfunc )(
3958
3957
PyCFunction_GET_SELF (callable_o ),
3959
3958
args_o ,
@@ -3963,8 +3962,9 @@ dummy_func(
3963
3962
3964
3963
/* Free the arguments. */
3965
3964
for (int i = 0 ; i < total_args ; i ++ ) {
3966
- PyStackRef_CLOSE (args [i ]);
3965
+ PyStackRef_CLOSE (arguments [i ]);
3967
3966
}
3967
+ DEAD (args );
3968
3968
PyStackRef_CLOSE (callable [0 ]);
3969
3969
ERROR_IF (res_o == NULL , error );
3970
3970
res = PyStackRef_FromPyObjectSteal (res_o );
@@ -4043,8 +4043,10 @@ dummy_func(
4043
4043
if (res_o == NULL ) {
4044
4044
GOTO_ERROR (error );
4045
4045
}
4046
- PyStackRef_CLOSE (callable [0 ]);
4047
4046
PyStackRef_CLOSE (arg_stackref );
4047
+ DEAD (args );
4048
+ DEAD (self_or_null );
4049
+ PyStackRef_CLOSE (callable [0 ]);
4048
4050
res = PyStackRef_FromPyObjectSteal (res_o );
4049
4051
}
4050
4052
@@ -4053,25 +4055,24 @@ dummy_func(
4053
4055
PyObject * callable_o = PyStackRef_AsPyObjectBorrow (callable [0 ]);
4054
4056
4055
4057
int total_args = oparg ;
4058
+ _PyStackRef * arguments = args ;
4056
4059
if (!PyStackRef_IsNull (self_or_null [0 ])) {
4057
- args -- ;
4060
+ arguments -- ;
4058
4061
total_args ++ ;
4059
4062
}
4060
4063
DEOPT_IF (total_args != 2 );
4061
4064
PyInterpreterState * interp = tstate -> interp ;
4062
4065
DEOPT_IF (callable_o != interp -> callable_cache .isinstance );
4063
4066
STAT_INC (CALL , hit );
4064
- _PyStackRef cls_stackref = args [1 ];
4065
- _PyStackRef inst_stackref = args [0 ];
4067
+ _PyStackRef cls_stackref = arguments [1 ];
4068
+ _PyStackRef inst_stackref = arguments [0 ];
4066
4069
int retval = PyObject_IsInstance (PyStackRef_AsPyObjectBorrow (inst_stackref ), PyStackRef_AsPyObjectBorrow (cls_stackref ));
4067
4070
if (retval < 0 ) {
4068
4071
ERROR_NO_POP ();
4069
4072
}
4070
4073
res = retval ? PyStackRef_True : PyStackRef_False ;
4071
4074
assert ((!PyStackRef_IsNull (res )) ^ (_PyErr_Occurred (tstate ) != NULL ));
4072
- PyStackRef_CLOSE (inst_stackref );
4073
- PyStackRef_CLOSE (cls_stackref );
4074
- PyStackRef_CLOSE (callable [0 ]);
4075
+ DECREF_INPUTS ();
4075
4076
}
4076
4077
4077
4078
// This is secretly a super-instruction
@@ -4370,11 +4371,11 @@ dummy_func(
4370
4371
}
4371
4372
PyStackRef_CLOSE (kwnames );
4372
4373
assert ((res_o != NULL ) ^ (_PyErr_Occurred (tstate ) != NULL ));
4373
- PyStackRef_CLOSE (callable [0 ]);
4374
4374
for (int i = 0 ; i < total_args ; i ++ ) {
4375
4375
PyStackRef_CLOSE (args [i ]);
4376
4376
}
4377
4377
DEAD (self_or_null );
4378
+ PyStackRef_CLOSE (callable [0 ]);
4378
4379
ERROR_IF (res_o == NULL , error );
4379
4380
res = PyStackRef_FromPyObjectSteal (res_o );
4380
4381
}
@@ -4529,6 +4530,8 @@ dummy_func(
4529
4530
PyObject * callargs_o = PyStackRef_AsPyObjectBorrow (callargs );
4530
4531
if (PyTuple_CheckExact (callargs_o )) {
4531
4532
tuple = callargs ;
4533
+ kwargs_out = kwargs_in ;
4534
+ DEAD (kwargs_in );
4532
4535
DEAD (callargs );
4533
4536
}
4534
4537
else {
@@ -4540,11 +4543,11 @@ dummy_func(
4540
4543
if (tuple_o == NULL ) {
4541
4544
ERROR_NO_POP ();
4542
4545
}
4546
+ kwargs_out = kwargs_in ;
4547
+ DEAD (kwargs_in );
4543
4548
PyStackRef_CLOSE (callargs );
4544
4549
tuple = PyStackRef_FromPyObjectSteal (tuple_o );
4545
4550
}
4546
- kwargs_out = kwargs_in ;
4547
- DEAD (kwargs_in );
4548
4551
}
4549
4552
4550
4553
op (_DO_CALL_FUNCTION_EX , (func_st , unused , callargs_st , kwargs_st if (oparg & 1 ) -- result )) {
@@ -4720,8 +4723,7 @@ dummy_func(
4720
4723
4721
4724
inst (FORMAT_WITH_SPEC , (value , fmt_spec -- res )) {
4722
4725
PyObject * res_o = PyObject_Format (PyStackRef_AsPyObjectBorrow (value ), PyStackRef_AsPyObjectBorrow (fmt_spec ));
4723
- PyStackRef_CLOSE (value );
4724
- PyStackRef_CLOSE (fmt_spec );
4726
+ DECREF_INPUTS ();
4725
4727
ERROR_IF (res_o == NULL , error );
4726
4728
res = PyStackRef_FromPyObjectSteal (res_o );
4727
4729
}
0 commit comments