@@ -293,66 +293,66 @@ ZEND_FUNCTION(gc_status);
293
293
294
294
295
295
static const zend_function_entry ext_functions [] = {
296
- ZEND_FE ( zend_version , arginfo_zend_version )
297
- ZEND_FE ( func_num_args , arginfo_func_num_args )
298
- ZEND_FE ( func_get_arg , arginfo_func_get_arg )
299
- ZEND_FE ( func_get_args , arginfo_func_get_args )
300
- ZEND_FE ( strlen , arginfo_strlen )
301
- ZEND_SUPPORTS_COMPILE_TIME_EVAL_FE ( strcmp , arginfo_strcmp )
302
- ZEND_SUPPORTS_COMPILE_TIME_EVAL_FE ( strncmp , arginfo_strncmp )
303
- ZEND_SUPPORTS_COMPILE_TIME_EVAL_FE ( strcasecmp , arginfo_strcasecmp )
304
- ZEND_SUPPORTS_COMPILE_TIME_EVAL_FE ( strncasecmp , arginfo_strncasecmp )
305
- ZEND_FE ( error_reporting , arginfo_error_reporting )
306
- ZEND_FE ( define , arginfo_define )
307
- ZEND_FE ( defined , arginfo_defined )
308
- ZEND_FE ( get_class , arginfo_get_class )
309
- ZEND_FE ( get_called_class , arginfo_get_called_class )
310
- ZEND_FE ( get_parent_class , arginfo_get_parent_class )
311
- ZEND_FE ( is_subclass_of , arginfo_is_subclass_of )
312
- ZEND_FE ( is_a , arginfo_is_a )
313
- ZEND_FE ( get_class_vars , arginfo_get_class_vars )
314
- ZEND_FE ( get_object_vars , arginfo_get_object_vars )
315
- ZEND_FE ( get_mangled_object_vars , arginfo_get_mangled_object_vars )
316
- ZEND_FE ( get_class_methods , arginfo_get_class_methods )
317
- ZEND_FE ( method_exists , arginfo_method_exists )
296
+ ZEND_RAW_FENTRY ( " zend_version" , zif_zend_version , arginfo_zend_version , 0 , NULL )
297
+ ZEND_RAW_FENTRY ( " func_num_args" , zif_func_num_args , arginfo_func_num_args , 0 , NULL )
298
+ ZEND_RAW_FENTRY ( " func_get_arg" , zif_func_get_arg , arginfo_func_get_arg , 0 , NULL )
299
+ ZEND_RAW_FENTRY ( " func_get_args" , zif_func_get_args , arginfo_func_get_args , 0 , NULL )
300
+ ZEND_RAW_FENTRY ( " strlen" , zif_strlen , arginfo_strlen , 0 , NULL )
301
+ ZEND_RAW_FENTRY ( " strcmp" , zif_strcmp , arginfo_strcmp , ZEND_ACC_COMPILE_TIME_EVAL , NULL )
302
+ ZEND_RAW_FENTRY ( " strncmp" , zif_strncmp , arginfo_strncmp , ZEND_ACC_COMPILE_TIME_EVAL , NULL )
303
+ ZEND_RAW_FENTRY ( " strcasecmp" , zif_strcasecmp , arginfo_strcasecmp , ZEND_ACC_COMPILE_TIME_EVAL , NULL )
304
+ ZEND_RAW_FENTRY ( " strncasecmp" , zif_strncasecmp , arginfo_strncasecmp , ZEND_ACC_COMPILE_TIME_EVAL , NULL )
305
+ ZEND_RAW_FENTRY ( " error_reporting" , zif_error_reporting , arginfo_error_reporting , 0 , NULL )
306
+ ZEND_RAW_FENTRY ( " define" , zif_define , arginfo_define , 0 , NULL )
307
+ ZEND_RAW_FENTRY ( " defined" , zif_defined , arginfo_defined , 0 , NULL )
308
+ ZEND_RAW_FENTRY ( " get_class" , zif_get_class , arginfo_get_class , 0 , NULL )
309
+ ZEND_RAW_FENTRY ( " get_called_class" , zif_get_called_class , arginfo_get_called_class , 0 , NULL )
310
+ ZEND_RAW_FENTRY ( " get_parent_class" , zif_get_parent_class , arginfo_get_parent_class , 0 , NULL )
311
+ ZEND_RAW_FENTRY ( " is_subclass_of" , zif_is_subclass_of , arginfo_is_subclass_of , 0 , NULL )
312
+ ZEND_RAW_FENTRY ( " is_a" , zif_is_a , arginfo_is_a , 0 , NULL )
313
+ ZEND_RAW_FENTRY ( " get_class_vars" , zif_get_class_vars , arginfo_get_class_vars , 0 , NULL )
314
+ ZEND_RAW_FENTRY ( " get_object_vars" , zif_get_object_vars , arginfo_get_object_vars , 0 , NULL )
315
+ ZEND_RAW_FENTRY ( " get_mangled_object_vars" , zif_get_mangled_object_vars , arginfo_get_mangled_object_vars , 0 , NULL )
316
+ ZEND_RAW_FENTRY ( " get_class_methods" , zif_get_class_methods , arginfo_get_class_methods , 0 , NULL )
317
+ ZEND_RAW_FENTRY ( " method_exists" , zif_method_exists , arginfo_method_exists , 0 , NULL )
318
318
ZEND_FRAMELESS_FE (property_exists , arginfo_property_exists , 0 , frameless_function_infos_property_exists )
319
319
ZEND_FRAMELESS_FE (class_exists , arginfo_class_exists , 0 , frameless_function_infos_class_exists )
320
- ZEND_FE ( interface_exists , arginfo_interface_exists )
321
- ZEND_FE ( trait_exists , arginfo_trait_exists )
322
- ZEND_FE ( enum_exists , arginfo_enum_exists )
323
- ZEND_FE ( function_exists , arginfo_function_exists )
324
- ZEND_FE ( class_alias , arginfo_class_alias )
325
- ZEND_FE ( get_included_files , arginfo_get_included_files )
326
- ZEND_FALIAS ( get_required_files , get_included_files , arginfo_get_required_files )
327
- ZEND_FE ( trigger_error , arginfo_trigger_error )
328
- ZEND_FALIAS ( user_error , trigger_error , arginfo_user_error )
329
- ZEND_FE ( set_error_handler , arginfo_set_error_handler )
330
- ZEND_FE ( restore_error_handler , arginfo_restore_error_handler )
331
- ZEND_FE ( set_exception_handler , arginfo_set_exception_handler )
332
- ZEND_FE ( restore_exception_handler , arginfo_restore_exception_handler )
333
- ZEND_FE ( get_declared_classes , arginfo_get_declared_classes )
334
- ZEND_FE ( get_declared_traits , arginfo_get_declared_traits )
335
- ZEND_FE ( get_declared_interfaces , arginfo_get_declared_interfaces )
336
- ZEND_FE ( get_defined_functions , arginfo_get_defined_functions )
337
- ZEND_FE ( get_defined_vars , arginfo_get_defined_vars )
338
- ZEND_FE ( get_resource_type , arginfo_get_resource_type )
339
- ZEND_FE ( get_resource_id , arginfo_get_resource_id )
340
- ZEND_FE ( get_resources , arginfo_get_resources )
341
- ZEND_FE ( get_loaded_extensions , arginfo_get_loaded_extensions )
342
- ZEND_FE ( get_defined_constants , arginfo_get_defined_constants )
343
- ZEND_FE ( debug_backtrace , arginfo_debug_backtrace )
344
- ZEND_FE ( debug_print_backtrace , arginfo_debug_print_backtrace )
345
- ZEND_FE ( extension_loaded , arginfo_extension_loaded )
346
- ZEND_FE ( get_extension_funcs , arginfo_get_extension_funcs )
320
+ ZEND_RAW_FENTRY ( " interface_exists" , zif_interface_exists , arginfo_interface_exists , 0 , NULL )
321
+ ZEND_RAW_FENTRY ( " trait_exists" , zif_trait_exists , arginfo_trait_exists , 0 , NULL )
322
+ ZEND_RAW_FENTRY ( " enum_exists" , zif_enum_exists , arginfo_enum_exists , 0 , NULL )
323
+ ZEND_RAW_FENTRY ( " function_exists" , zif_function_exists , arginfo_function_exists , 0 , NULL )
324
+ ZEND_RAW_FENTRY ( " class_alias" , zif_class_alias , arginfo_class_alias , 0 , NULL )
325
+ ZEND_RAW_FENTRY ( " get_included_files" , zif_get_included_files , arginfo_get_included_files , 0 , NULL )
326
+ ZEND_RAW_FENTRY ( " get_required_files" , zif_get_included_files , arginfo_get_required_files , 0 , NULL )
327
+ ZEND_RAW_FENTRY ( " trigger_error" , zif_trigger_error , arginfo_trigger_error , 0 , NULL )
328
+ ZEND_RAW_FENTRY ( " user_error" , zif_trigger_error , arginfo_user_error , 0 , NULL )
329
+ ZEND_RAW_FENTRY ( " set_error_handler" , zif_set_error_handler , arginfo_set_error_handler , 0 , NULL )
330
+ ZEND_RAW_FENTRY ( " restore_error_handler" , zif_restore_error_handler , arginfo_restore_error_handler , 0 , NULL )
331
+ ZEND_RAW_FENTRY ( " set_exception_handler" , zif_set_exception_handler , arginfo_set_exception_handler , 0 , NULL )
332
+ ZEND_RAW_FENTRY ( " restore_exception_handler" , zif_restore_exception_handler , arginfo_restore_exception_handler , 0 , NULL )
333
+ ZEND_RAW_FENTRY ( " get_declared_classes" , zif_get_declared_classes , arginfo_get_declared_classes , 0 , NULL )
334
+ ZEND_RAW_FENTRY ( " get_declared_traits" , zif_get_declared_traits , arginfo_get_declared_traits , 0 , NULL )
335
+ ZEND_RAW_FENTRY ( " get_declared_interfaces" , zif_get_declared_interfaces , arginfo_get_declared_interfaces , 0 , NULL )
336
+ ZEND_RAW_FENTRY ( " get_defined_functions" , zif_get_defined_functions , arginfo_get_defined_functions , 0 , NULL )
337
+ ZEND_RAW_FENTRY ( " get_defined_vars" , zif_get_defined_vars , arginfo_get_defined_vars , 0 , NULL )
338
+ ZEND_RAW_FENTRY ( " get_resource_type" , zif_get_resource_type , arginfo_get_resource_type , 0 , NULL )
339
+ ZEND_RAW_FENTRY ( " get_resource_id" , zif_get_resource_id , arginfo_get_resource_id , 0 , NULL )
340
+ ZEND_RAW_FENTRY ( " get_resources" , zif_get_resources , arginfo_get_resources , 0 , NULL )
341
+ ZEND_RAW_FENTRY ( " get_loaded_extensions" , zif_get_loaded_extensions , arginfo_get_loaded_extensions , 0 , NULL )
342
+ ZEND_RAW_FENTRY ( " get_defined_constants" , zif_get_defined_constants , arginfo_get_defined_constants , 0 , NULL )
343
+ ZEND_RAW_FENTRY ( " debug_backtrace" , zif_debug_backtrace , arginfo_debug_backtrace , 0 , NULL )
344
+ ZEND_RAW_FENTRY ( " debug_print_backtrace" , zif_debug_print_backtrace , arginfo_debug_print_backtrace , 0 , NULL )
345
+ ZEND_RAW_FENTRY ( " extension_loaded" , zif_extension_loaded , arginfo_extension_loaded , 0 , NULL )
346
+ ZEND_RAW_FENTRY ( " get_extension_funcs" , zif_get_extension_funcs , arginfo_get_extension_funcs , 0 , NULL )
347
347
#if ZEND_DEBUG && defined (ZTS )
348
- ZEND_FE ( zend_thread_id , arginfo_zend_thread_id )
348
+ ZEND_RAW_FENTRY ( " zend_thread_id" , zif_zend_thread_id , arginfo_zend_thread_id , 0 , NULL )
349
349
#endif
350
- ZEND_FE ( gc_mem_caches , arginfo_gc_mem_caches )
351
- ZEND_FE ( gc_collect_cycles , arginfo_gc_collect_cycles )
352
- ZEND_FE ( gc_enabled , arginfo_gc_enabled )
353
- ZEND_FE ( gc_enable , arginfo_gc_enable )
354
- ZEND_FE ( gc_disable , arginfo_gc_disable )
355
- ZEND_FE ( gc_status , arginfo_gc_status )
350
+ ZEND_RAW_FENTRY ( " gc_mem_caches" , zif_gc_mem_caches , arginfo_gc_mem_caches , 0 , NULL )
351
+ ZEND_RAW_FENTRY ( " gc_collect_cycles" , zif_gc_collect_cycles , arginfo_gc_collect_cycles , 0 , NULL )
352
+ ZEND_RAW_FENTRY ( " gc_enabled" , zif_gc_enabled , arginfo_gc_enabled , 0 , NULL )
353
+ ZEND_RAW_FENTRY ( " gc_enable" , zif_gc_enable , arginfo_gc_enable , 0 , NULL )
354
+ ZEND_RAW_FENTRY ( " gc_disable" , zif_gc_disable , arginfo_gc_disable , 0 , NULL )
355
+ ZEND_RAW_FENTRY ( " gc_status" , zif_gc_status , arginfo_gc_status , 0 , NULL )
356
356
ZEND_FE_END
357
357
};
358
358
0 commit comments