@@ -82,32 +82,32 @@ struct _Py_UOpsAbstractInterpContext {
8282
8383typedef struct _Py_UOpsAbstractInterpContext _Py_UOpsAbstractInterpContext ;
8484
85- extern bool sym_is_null (_Py_UOpsSymType * sym );
86- extern bool sym_is_not_null (_Py_UOpsSymType * sym );
87- extern bool sym_is_const (_Py_UOpsSymType * sym );
88- extern PyObject * sym_get_const (_Py_UOpsSymType * sym );
89- extern _Py_UOpsSymType * sym_new_unknown (_Py_UOpsAbstractInterpContext * ctx );
90- extern _Py_UOpsSymType * sym_new_known_notnull (_Py_UOpsAbstractInterpContext * ctx );
91- extern _Py_UOpsSymType * sym_new_known_type (
85+ extern bool _Py_uop_sym_is_null (_Py_UOpsSymType * sym );
86+ extern bool _Py_uop_sym_is_not_null (_Py_UOpsSymType * sym );
87+ extern bool _Py_uop_sym_is_const (_Py_UOpsSymType * sym );
88+ extern PyObject * _Py_uop_sym_get_const (_Py_UOpsSymType * sym );
89+ extern _Py_UOpsSymType * _Py_uop_sym_newunknown (_Py_UOpsAbstractInterpContext * ctx );
90+ extern _Py_UOpsSymType * _Py_uop_sym_new_notnull (_Py_UOpsAbstractInterpContext * ctx );
91+ extern _Py_UOpsSymType * _Py_uop_sym_new_type (
9292 _Py_UOpsAbstractInterpContext * ctx , PyTypeObject * typ );
93- extern _Py_UOpsSymType * sym_new_const (_Py_UOpsAbstractInterpContext * ctx , PyObject * const_val );
94- extern _Py_UOpsSymType * sym_new_null (_Py_UOpsAbstractInterpContext * ctx );
95- extern bool sym_matches_type (_Py_UOpsSymType * sym , PyTypeObject * typ );
96- extern void sym_set_null (_Py_UOpsSymType * sym );
97- extern void sym_set_type (_Py_UOpsSymType * sym , PyTypeObject * tp );
93+ extern _Py_UOpsSymType * _Py_uop_sym_newconst (_Py_UOpsAbstractInterpContext * ctx , PyObject * const_val );
94+ extern _Py_UOpsSymType * _Py_uop_sym_newnull (_Py_UOpsAbstractInterpContext * ctx );
95+ extern bool _Py_uop_sym_matches_type (_Py_UOpsSymType * sym , PyTypeObject * typ );
96+ extern void _Py_uop_sym_set_null (_Py_UOpsSymType * sym );
97+ extern void _Py_uop_sym_set_type (_Py_UOpsSymType * sym , PyTypeObject * tp );
9898
99- extern int abstractcontext_init (
99+ extern int _Py_uop_abstractcontext_init (
100100 _Py_UOpsAbstractInterpContext * ctx , PyCodeObject * co ,
101101 int curr_stacklen , int ir_entries );
102- extern void abstractcontext_fini (_Py_UOpsAbstractInterpContext * ctx );
102+ extern void _Py_uop_abstractcontext_fini (_Py_UOpsAbstractInterpContext * ctx );
103103
104- extern _Py_UOpsAbstractFrame * ctx_frame_new (
104+ extern _Py_UOpsAbstractFrame * _Py_uop_ctx_frame_new (
105105 _Py_UOpsAbstractInterpContext * ctx ,
106106 PyCodeObject * co ,
107107 _Py_UOpsSymType * * localsplus_start ,
108108 int n_locals_already_filled ,
109109 int curr_stackentries );
110- extern int ctx_frame_pop (_Py_UOpsAbstractInterpContext * ctx );
110+ extern int _Py_uop_ctx_frame_pop (_Py_UOpsAbstractInterpContext * ctx );
111111
112112#ifdef __cplusplus
113113}
0 commit comments