@@ -93,14 +93,15 @@ PyUnstable_Replace_Executor(PyCodeObject *code, _Py_CODEUNIT *instr, _PyExecutor
93
93
return 0 ;
94
94
}
95
95
96
- static _PyExecutorObject *
96
+ static int
97
97
error_optimize (
98
98
_PyOptimizerObject * self ,
99
99
PyCodeObject * code ,
100
- _Py_CODEUNIT * instr )
100
+ _Py_CODEUNIT * instr ,
101
+ _PyExecutorObject * * exec )
101
102
{
102
103
PyErr_Format (PyExc_SystemError , "Should never call error_optimize" );
103
- return NULL ;
104
+ return -1 ;
104
105
}
105
106
106
107
static PyTypeObject DefaultOptimizer_Type = {
@@ -154,15 +155,19 @@ _PyOptimizer_BackEdge(_PyInterpreterFrame *frame, _Py_CODEUNIT *src, _Py_CODEUNI
154
155
return frame ;
155
156
}
156
157
_PyOptimizerObject * opt = interp -> optimizer ;
157
- _PyExecutorObject * executor = opt -> optimize (opt , frame -> f_code , dest );
158
- if (executor == NULL ) {
159
- return NULL ;
158
+ _PyExecutorObject * executor ;
159
+ int err = opt -> optimize (opt , frame -> f_code , dest , & executor );
160
+ if (err <= 0 ) {
161
+ if (err < 0 ) {
162
+ return NULL ;
163
+ }
164
+ _PyFrame_SetStackPointer (frame , stack_pointer );
165
+ return frame ;
160
166
}
161
167
insert_executor (frame -> f_code , src , index , executor );
162
168
return executor -> execute (executor , frame , stack_pointer );
163
169
}
164
170
165
-
166
171
/** Test support **/
167
172
168
173
@@ -202,21 +207,23 @@ counter_execute(_PyExecutorObject *self, _PyInterpreterFrame *frame, PyObject **
202
207
return frame ;
203
208
}
204
209
205
- static _PyExecutorObject *
210
+ static int
206
211
counter_optimize (
207
212
_PyOptimizerObject * self ,
208
213
PyCodeObject * code ,
209
- _Py_CODEUNIT * instr )
214
+ _Py_CODEUNIT * instr ,
215
+ _PyExecutorObject * * exec_ptr )
210
216
{
211
217
_PyCounterExecutorObject * executor = (_PyCounterExecutorObject * )_PyObject_New (& CounterExecutor_Type );
212
218
if (executor == NULL ) {
213
- return NULL ;
219
+ return -1 ;
214
220
}
215
221
executor -> executor .execute = counter_execute ;
216
222
Py_INCREF (self );
217
223
executor -> optimizer = (_PyCounterOptimizerObject * )self ;
218
224
executor -> next_instr = instr ;
219
- return (_PyExecutorObject * )executor ;
225
+ * exec_ptr = (_PyExecutorObject * )executor ;
226
+ return 1 ;
220
227
}
221
228
222
229
static PyObject *
0 commit comments