@@ -2972,36 +2972,39 @@ dummy_func(
2972
2972
CHECK_EVAL_BREAKER ();
2973
2973
}
2974
2974
2975
- // error: MAKE_FUNCTION has irregular stack effect
2976
- inst (MAKE_FUNCTION ) {
2977
- PyObject * codeobj = POP ();
2978
- PyFunctionObject * func = (PyFunctionObject * )
2975
+ inst (MAKE_FUNCTION , (defaults if (oparg & 0x01 ),
2976
+ kwdefaults if (oparg & 0x02 ),
2977
+ annotations if (oparg & 0x04 ),
2978
+ closure if (oparg & 0x08 ),
2979
+ codeobj -- func )) {
2980
+
2981
+ PyFunctionObject * func_obj = (PyFunctionObject * )
2979
2982
PyFunction_New (codeobj , GLOBALS ());
2980
2983
2981
2984
Py_DECREF (codeobj );
2982
- if (func == NULL ) {
2985
+ if (func_obj == NULL ) {
2983
2986
goto error ;
2984
2987
}
2985
2988
2986
2989
if (oparg & 0x08 ) {
2987
- assert (PyTuple_CheckExact (TOP () ));
2988
- func -> func_closure = POP () ;
2990
+ assert (PyTuple_CheckExact (closure ));
2991
+ func_obj -> func_closure = closure ;
2989
2992
}
2990
2993
if (oparg & 0x04 ) {
2991
- assert (PyTuple_CheckExact (TOP () ));
2992
- func -> func_annotations = POP () ;
2994
+ assert (PyTuple_CheckExact (annotations ));
2995
+ func_obj -> func_annotations = annotations ;
2993
2996
}
2994
2997
if (oparg & 0x02 ) {
2995
- assert (PyDict_CheckExact (TOP () ));
2996
- func -> func_kwdefaults = POP () ;
2998
+ assert (PyDict_CheckExact (kwdefaults ));
2999
+ func_obj -> func_kwdefaults = kwdefaults ;
2997
3000
}
2998
3001
if (oparg & 0x01 ) {
2999
- assert (PyTuple_CheckExact (TOP () ));
3000
- func -> func_defaults = POP () ;
3002
+ assert (PyTuple_CheckExact (defaults ));
3003
+ func_obj -> func_defaults = defaults ;
3001
3004
}
3002
3005
3003
- func -> func_version = ((PyCodeObject * )codeobj )-> co_version ;
3004
- PUSH (( PyObject * )func ) ;
3006
+ func_obj -> func_version = ((PyCodeObject * )codeobj )-> co_version ;
3007
+ func = ( PyObject * )func_obj ;
3005
3008
}
3006
3009
3007
3010
inst (RETURN_GENERATOR , (-- )) {
@@ -3027,22 +3030,12 @@ dummy_func(
3027
3030
goto resume_frame ;
3028
3031
}
3029
3032
3030
- // error: BUILD_SLICE has irregular stack effect
3031
- inst (BUILD_SLICE ) {
3032
- PyObject * start , * stop , * step , * slice ;
3033
- if (oparg == 3 )
3034
- step = POP ();
3035
- else
3036
- step = NULL ;
3037
- stop = POP ();
3038
- start = TOP ();
3033
+ inst (BUILD_SLICE , (start , stop , step if (oparg == 3 ) -- slice )) {
3039
3034
slice = PySlice_New (start , stop , step );
3040
3035
Py_DECREF (start );
3041
3036
Py_DECREF (stop );
3042
3037
Py_XDECREF (step );
3043
- SET_TOP (slice );
3044
- if (slice == NULL )
3045
- goto error ;
3038
+ ERROR_IF (slice == NULL , error );
3046
3039
}
3047
3040
3048
3041
// error: FORMAT_VALUE has irregular stack effect
0 commit comments