Home
last modified time | relevance | path

Searched refs:ZEND_FASTCALL (Results 1 – 25 of 53) sorted by relevance

123

/PHP-8.3/Zend/
H A Dzend_operators.h293 ZEND_API void ZEND_FASTCALL convert_scalar_to_number(zval *op);
294 ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op);
295 ZEND_API void ZEND_FASTCALL convert_to_long(zval *op);
296 ZEND_API void ZEND_FASTCALL convert_to_double(zval *op);
297 ZEND_API void ZEND_FASTCALL convert_to_null(zval *op);
298 ZEND_API void ZEND_FASTCALL convert_to_boolean(zval *op);
299 ZEND_API void ZEND_FASTCALL convert_to_array(zval *op);
300 ZEND_API void ZEND_FASTCALL convert_to_object(zval *op);
360 ZEND_API bool ZEND_FASTCALL _try_convert_to_string(zval *op);
379 ZEND_API int ZEND_FASTCALL zend_is_true(const zval *op);
[all …]
H A Dzend_vm.h24 ZEND_API void ZEND_FASTCALL zend_vm_set_opcode_handler(zend_op* opcode);
25 ZEND_API void ZEND_FASTCALL zend_vm_set_opcode_handler_ex(zend_op* opcode, uint32_t op1_info, uint3…
26 ZEND_API void ZEND_FASTCALL zend_serialize_opcode_handler(zend_op *op);
27 ZEND_API void ZEND_FASTCALL zend_deserialize_opcode_handler(zend_op *op);
28 ZEND_API const void* ZEND_FASTCALL zend_get_opcode_handler_func(const zend_op *op);
30 ZEND_API int ZEND_FASTCALL zend_vm_call_opcode_handler(zend_execute_data *ex);
H A Dzend_variables.c30 static void ZEND_FASTCALL zend_string_destroy(zend_string *str);
34 static void ZEND_FASTCALL zend_reference_destroy(zend_reference *ref);
35 static void ZEND_FASTCALL zend_empty_destroy(zend_reference *ref);
37 typedef void (ZEND_FASTCALL *zend_rc_dtor_func_t)(zend_refcounted *p);
54 ZEND_API void ZEND_FASTCALL rc_dtor_func(zend_refcounted *p) in rc_dtor_func()
61 static void ZEND_FASTCALL zend_string_destroy(zend_string *str) in zend_string_destroy()
71 static void ZEND_FASTCALL zend_reference_destroy(zend_reference *ref) in zend_reference_destroy()
78 static void ZEND_FASTCALL zend_empty_destroy(zend_reference *ref) in zend_empty_destroy()
124 ZEND_API void ZEND_FASTCALL zval_copy_ctor_func(zval *zvalue) in zval_copy_ctor_func()
H A Dzend_objects_API.h54 ZEND_API void ZEND_FASTCALL zend_objects_store_init(zend_objects_store *objects, uint32_t init_size…
55 ZEND_API void ZEND_FASTCALL zend_objects_store_call_destructors(zend_objects_store *objects);
56 ZEND_API void ZEND_FASTCALL zend_objects_store_mark_destructed(zend_objects_store *objects);
57 ZEND_API void ZEND_FASTCALL zend_objects_store_free_object_storage(zend_objects_store *objects, boo…
58 ZEND_API void ZEND_FASTCALL zend_objects_store_destroy(zend_objects_store *objects);
61 ZEND_API void ZEND_FASTCALL zend_objects_store_put(zend_object *object);
62 ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object);
H A Dzend_ast.h220 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_ex(zval *zv, zend_ast_attr attr);
221 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval(zval *zv);
222 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_from_str(zend_string *str);
223 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_from_long(zend_long lval);
238 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_0(zend_ast_kind kind);
276 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_list_0(zend_ast_kind kind);
293 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_list_add(zend_ast *list, zend_ast *op);
308 ZEND_API zend_ast_ref * ZEND_FASTCALL zend_ast_copy(zend_ast *ast);
309 ZEND_API void ZEND_FASTCALL zend_ast_destroy(zend_ast *ast);
310 ZEND_API void ZEND_FASTCALL zend_ast_ref_destroy(zend_ast_ref *ast);
[all …]
H A Dzend_observer.h74 ZEND_API void ZEND_FASTCALL zend_observer_fcall_begin(
77 ZEND_API void ZEND_FASTCALL zend_observer_generator_resume(
80 ZEND_API void ZEND_FASTCALL zend_observer_fcall_end(
89 ZEND_API void ZEND_FASTCALL _zend_observer_function_declared_notify(zend_op_array *op_array, zend_s…
99 ZEND_API void ZEND_FASTCALL _zend_observer_class_linked_notify(zend_class_entry *ce, zend_string *n…
124 ZEND_API void ZEND_FASTCALL zend_observer_fiber_init_notify(zend_fiber_context *initializing);
125 ZEND_API void ZEND_FASTCALL zend_observer_fiber_switch_notify(zend_fiber_context *from, zend_fiber_…
126 ZEND_API void ZEND_FASTCALL zend_observer_fiber_destroy_notify(zend_fiber_context *destroying);
H A Dzend_objects.h26 ZEND_API void ZEND_FASTCALL zend_object_std_init(zend_object *object, zend_class_entry *ce);
27 ZEND_API zend_object* ZEND_FASTCALL zend_objects_new(zend_class_entry *ce);
28 ZEND_API void ZEND_FASTCALL zend_objects_clone_members(zend_object *new_object, zend_object *old_ob…
H A Dzend_hash.h103 ZEND_API void ZEND_FASTCALL zend_hash_destroy(HashTable *ht);
104 ZEND_API void ZEND_FASTCALL zend_hash_clean(HashTable *ht);
111 ZEND_API void ZEND_FASTCALL zend_hash_real_init_mixed(HashTable *ht);
112 ZEND_API void ZEND_FASTCALL zend_hash_packed_to_hash(HashTable *ht);
113 ZEND_API void ZEND_FASTCALL zend_hash_to_packed(HashTable *ht);
116 ZEND_API void ZEND_FASTCALL zend_hash_packed_grow(HashTable *ht);
313 ZEND_API void ZEND_FASTCALL zend_hash_rehash(HashTable *ht);
331 ZEND_API HashTable* ZEND_FASTCALL _zend_new_array_0(void);
332 ZEND_API HashTable* ZEND_FASTCALL _zend_new_array(uint32_t size);
336 ZEND_API void ZEND_FASTCALL zend_array_destroy(HashTable *ht);
[all …]
H A Dzend_alloc.h65 ZEND_API ZEND_ATTRIBUTE_MALLOC char* ZEND_FASTCALL zend_strndup(const char *s, size_t length);
69 ZEND_API ZEND_ATTRIBUTE_MALLOC void* ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t …
70 ZEND_API void ZEND_FASTCALL _efree(void *ptr ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC);
75 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset);
78 ZEND_API size_t ZEND_FASTCALL _zend_mem_block_size(void *ptr ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_…
86 ZEND_API ZEND_ATTRIBUTE_MALLOC void* ZEND_FASTCALL _emalloc_ ## _size(void);
90 ZEND_API ZEND_ATTRIBUTE_MALLOC void* ZEND_FASTCALL _emalloc_large(size_t size) ZEND_ATTRIBUTE_ALLOC…
91 ZEND_API ZEND_ATTRIBUTE_MALLOC void* ZEND_FASTCALL _emalloc_huge(size_t size) ZEND_ATTRIBUTE_ALLOC_…
111 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *);
115 ZEND_API void ZEND_FASTCALL _efree_large(void *, size_t size);
[all …]
H A Dzend_execute.h64 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_deprecated_function(const zend_function *fbc);
65 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_false_to_array_deprecated(void);
67 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_use_resource_as_offset(const zval *dim);
91 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_cannot_add_element(void);
204 ZEND_API zend_result ZEND_FASTCALL zval_update_constant(zval *pp);
382 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_cannot_pass_by_reference(uint32_t arg_num);
386 ZEND_API ZEND_NORETURN void ZEND_FASTCALL zend_timeout(void);
391 ZEND_API zend_function * ZEND_FASTCALL zend_fetch_function(zend_string *name);
393 ZEND_API void ZEND_FASTCALL zend_init_func_run_time_cache(zend_op_array *op_array);
421 zval * ZEND_FASTCALL zend_handle_named_arg(
[all …]
H A Dzend_string.c34 static zend_string* ZEND_FASTCALL zend_new_interned_string_permanent(zend_string *str);
35 static zend_string* ZEND_FASTCALL zend_new_interned_string_request(zend_string *str);
36 static zend_string* ZEND_FASTCALL zend_string_init_interned_permanent(const char *str, size_t size,…
38 static zend_string* ZEND_FASTCALL zend_string_init_interned_request(const char *str, size_t size, b…
55 ZEND_API zend_ulong ZEND_FASTCALL zend_string_hash_func(zend_string *str) in zend_string_hash_func()
60 ZEND_API zend_ulong ZEND_FASTCALL zend_hash_func(const char *str, size_t len) in zend_hash_func()
192 ZEND_API zend_string* ZEND_FASTCALL zend_interned_string_find_permanent(zend_string *str) in zend_interned_string_find_permanent()
198 static zend_string* ZEND_FASTCALL zend_init_string_for_interning(zend_string *str, bool persistent) in zend_init_string_for_interning()
209 static zend_string* ZEND_FASTCALL zend_new_interned_string_permanent(zend_string *str) in zend_new_interned_string_permanent()
232 static zend_string* ZEND_FASTCALL zend_new_interned_string_request(zend_string *str) in zend_new_interned_string_request()
[all …]
H A Dzend_objects_API.c28 ZEND_API void ZEND_FASTCALL zend_objects_store_init(zend_objects_store *objects, uint32_t init_size) in zend_objects_store_init()
37 ZEND_API void ZEND_FASTCALL zend_objects_store_destroy(zend_objects_store *objects) in zend_objects_store_destroy()
43 ZEND_API void ZEND_FASTCALL zend_objects_store_call_destructors(zend_objects_store *objects) in zend_objects_store_call_destructors()
70 ZEND_API void ZEND_FASTCALL zend_objects_store_mark_destructed(zend_objects_store *objects) in zend_objects_store_mark_destructed()
87 ZEND_API void ZEND_FASTCALL zend_objects_store_free_object_storage(zend_objects_store *objects, boo… in zend_objects_store_free_object_storage()
131 static ZEND_COLD zend_never_inline void ZEND_FASTCALL zend_objects_store_put_cold(zend_object *obje… in zend_objects_store_put_cold()
144 ZEND_API void ZEND_FASTCALL zend_objects_store_put(zend_object *object) in zend_objects_store_put()
164 ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object) /* {{{ */ in zend_objects_store_del()
H A Dzend_list.h55 ZEND_API zval* ZEND_FASTCALL zend_list_insert(void *ptr, int type);
56 ZEND_API void ZEND_FASTCALL zend_list_free(zend_resource *res);
57 ZEND_API zend_result ZEND_FASTCALL zend_list_delete(zend_resource *res);
58 ZEND_API void ZEND_FASTCALL zend_list_close(zend_resource *res);
H A Dzend_smart_str.c29 ZEND_API void ZEND_FASTCALL smart_str_erealloc(smart_str *str, size_t len) in smart_str_erealloc()
43 ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len) in smart_str_realloc()
76 ZEND_API void ZEND_FASTCALL smart_str_append_escaped(smart_str *str, const char *s, size_t l) { in smart_str_append_escaped()
115 ZEND_API void ZEND_FASTCALL smart_str_append_double( in smart_str_append_double()
138 ZEND_API void ZEND_FASTCALL _smart_string_alloc_persistent(smart_string *str, size_t len) in _smart_string_alloc_persistent()
158 ZEND_API void ZEND_FASTCALL _smart_string_alloc(smart_string *str, size_t len) in _smart_string_alloc()
184 ZEND_API void ZEND_FASTCALL smart_str_append_escaped_truncated(smart_str *str, const zend_string *v… in smart_str_append_escaped_truncated()
193 ZEND_API void ZEND_FASTCALL smart_str_append_scalar(smart_str *dest, const zval *value, size_t trun… in smart_str_append_scalar()
H A Dzend_operators.c540 ZEND_API void ZEND_FASTCALL convert_to_long(zval *op) /* {{{ */ in convert_to_long()
597 ZEND_API void ZEND_FASTCALL convert_to_double(zval *op) /* {{{ */ in convert_to_double()
656 ZEND_API void ZEND_FASTCALL convert_to_null(zval *op) /* {{{ */ in convert_to_null()
663 ZEND_API void ZEND_FASTCALL convert_to_boolean(zval *op) /* {{{ */ in convert_to_boolean()
728 ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op) /* {{{ */ in _convert_to_string()
805 ZEND_API void ZEND_FASTCALL convert_to_array(zval *op) /* {{{ */ in convert_to_array()
853 ZEND_API void ZEND_FASTCALL convert_to_object(zval *op) /* {{{ */ in convert_to_object()
2509 static bool ZEND_FASTCALL increment_string(zval *str) /* {{{ */ in increment_string()
2807 ZEND_API int ZEND_FASTCALL zend_is_true(const zval *op) /* {{{ */ in zend_is_true()
3464 ZEND_API zend_string* ZEND_FASTCALL zend_u64_to_str(uint64_t num)
[all …]
H A Dzend_vm_opcodes.c439 ZEND_API const char* ZEND_FASTCALL zend_get_opcode_name(uint8_t opcode) { in zend_get_opcode_name()
445 ZEND_API uint32_t ZEND_FASTCALL zend_get_opcode_flags(uint8_t opcode) { in zend_get_opcode_flags()
H A Dzend_hash.c112 static void ZEND_FASTCALL zend_hash_do_resize(HashTable *ht);
282 ZEND_API HashTable* ZEND_FASTCALL _zend_new_array_0(void) in _zend_new_array_0()
289 ZEND_API HashTable* ZEND_FASTCALL _zend_new_array(uint32_t nSize) in _zend_new_array()
311 ZEND_API void ZEND_FASTCALL zend_hash_packed_grow(HashTable *ht) in zend_hash_packed_grow()
374 ZEND_API void ZEND_FASTCALL zend_hash_to_packed(HashTable *ht) in zend_hash_to_packed()
1295 static void ZEND_FASTCALL zend_hash_do_resize(HashTable *ht) in zend_hash_do_resize()
1323 ZEND_API void ZEND_FASTCALL zend_hash_rehash(HashTable *ht) in zend_hash_rehash()
1728 ZEND_API void ZEND_FASTCALL zend_hash_destroy(HashTable *ht) in zend_hash_destroy()
1809 ZEND_API void ZEND_FASTCALL zend_array_destroy(HashTable *ht) in zend_array_destroy()
1870 ZEND_API void ZEND_FASTCALL zend_hash_clean(HashTable *ht) in zend_hash_clean()
[all …]
H A Dzend_observer.c214 static void ZEND_FASTCALL _zend_observe_fcall_begin(zend_execute_data *execute_data) in _zend_observe_fcall_begin()
248 ZEND_API void ZEND_FASTCALL zend_observer_generator_resume(zend_execute_data *execute_data) in zend_observer_generator_resume()
253 ZEND_API void ZEND_FASTCALL zend_observer_fcall_begin(zend_execute_data *execute_data) in zend_observer_fcall_begin()
278 ZEND_API void ZEND_FASTCALL zend_observer_fcall_end(zend_execute_data *execute_data, zval *return_v… in zend_observer_fcall_end()
305 ZEND_API void ZEND_FASTCALL _zend_observer_function_declared_notify(zend_op_array *op_array, zend_s… in _zend_observer_function_declared_notify()
323 ZEND_API void ZEND_FASTCALL _zend_observer_class_linked_notify(zend_class_entry *ce, zend_string *n… in _zend_observer_class_linked_notify()
364 ZEND_API void ZEND_FASTCALL zend_observer_fiber_init_notify(zend_fiber_context *initializing) in zend_observer_fiber_init_notify()
377 ZEND_API void ZEND_FASTCALL zend_observer_fiber_switch_notify(zend_fiber_context *from, zend_fiber_… in zend_observer_fiber_switch_notify()
395 ZEND_API void ZEND_FASTCALL zend_observer_fiber_destroy_notify(zend_fiber_context *destroying) in zend_observer_fiber_destroy_notify()
H A Dzend_smart_str.h26 ZEND_API void ZEND_FASTCALL smart_str_erealloc(smart_str *str, size_t len);
27 ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len);
28 ZEND_API void ZEND_FASTCALL smart_str_append_escaped(smart_str *str, const char *s, size_t l);
31 ZEND_API void ZEND_FASTCALL smart_str_append_double(
35 ZEND_API void ZEND_FASTCALL smart_str_append_escaped_truncated(smart_str *str, const zend_string *v…
36 ZEND_API void ZEND_FASTCALL smart_str_append_scalar(smart_str *str, const zval *value, size_t trunc…
H A Dzend_variables.h29 ZEND_API void ZEND_FASTCALL rc_dtor_func(zend_refcounted *p);
30 ZEND_API void ZEND_FASTCALL zval_copy_ctor_func(zval *zvalue);
H A Dzend_vm_execute.h393 typedef ZEND_OPCODE_HANDLER_RET (ZEND_FASTCALL *opcode_handler_t) (ZEND_OPCODE_HANDLER_ARGS);
432 static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_interrupt_helper_SPEC(ZEND_OPCODE_HANDLER_ARGS);
433 static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_NULL_HANDLER(ZEND_OPCODE_HANDLER_ARGS);
3101 static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_TICKS_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS) in ZEND_TICKS_SPEC_HANDLER()
3359 static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_FAST_RET_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS) in ZEND_FAST_RET_SPEC_HANDLER()
53435 static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_NULL_HANDLER(ZEND_OPCODE_HANDLER_ARGS) in ZEND_NULL_HANDLER()
65388 ZEND_API void ZEND_FASTCALL zend_serialize_opcode_handler(zend_op *op)
65400 ZEND_API void ZEND_FASTCALL zend_deserialize_opcode_handler(zend_op *op)
65405 ZEND_API const void* ZEND_FASTCALL zend_get_opcode_handler_func(const zend_op *op)
65498 ZEND_API void ZEND_FASTCALL zend_vm_set_opcode_handler(zend_op* op)
[all …]
H A Dzend_vm_execute.skl109 ZEND_API void ZEND_FASTCALL zend_serialize_opcode_handler(zend_op *op)
121 ZEND_API void ZEND_FASTCALL zend_deserialize_opcode_handler(zend_op *op)
126 ZEND_API const void* ZEND_FASTCALL zend_get_opcode_handler_func(const zend_op *op)
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_helpers.c89 static ZEND_COLD void ZEND_FASTCALL zend_jit_invalid_method_call(zval *object) in zend_jit_invalid_method_call()
122 static void ZEND_FASTCALL zend_jit_unref_helper(zval *zv) in zend_jit_unref_helper()
338 static int ZEND_FASTCALL zend_jit_undefined_op_helper(uint32_t var) in zend_jit_undefined_op_helper()
1839 static void ZEND_FASTCALL zend_jit_fetch_obj_r_slow(zend_object *zobj) in zend_jit_fetch_obj_r_slow()
1895 static void ZEND_FASTCALL zend_jit_fetch_obj_is_slow(zend_object *zobj) in zend_jit_fetch_obj_is_slow()
2043 static void ZEND_FASTCALL zend_jit_fetch_obj_w_slow(zend_object *zobj) in zend_jit_fetch_obj_w_slow()
2390 static void ZEND_FASTCALL zend_jit_only_vars_by_reference(zval *arg) in zend_jit_only_vars_by_reference()
2471 static void ZEND_FASTCALL zend_jit_pre_inc(zval *var_ptr, zval *ret) in zend_jit_pre_inc()
2477 static void ZEND_FASTCALL zend_jit_pre_dec(zval *var_ptr, zval *ret) in zend_jit_pre_dec()
2498 static void ZEND_FASTCALL zend_jit_array_free(HashTable *ht) in zend_jit_array_free()
[all …]
H A Dzend_jit_internal.h257 void ZEND_FASTCALL zend_jit_hot_func(zend_execute_data *execute_data, const zend_op *opline);
322 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_leave_func_helper(EXECUTE_DATA_D);
324 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_profile_helper(ZEND_OPCODE_HANDLER_ARGS);
329 void ZEND_FASTCALL zend_jit_copy_extra_args_helper(EXECUTE_DATA_D);
330 bool ZEND_FASTCALL zend_jit_deprecated_helper(OPLINE_D);
331 void ZEND_FASTCALL zend_jit_undefined_long_key(EXECUTE_DATA_D);
332 void ZEND_FASTCALL zend_jit_undefined_string_key(EXECUTE_DATA_D);
334 zend_constant* ZEND_FASTCALL zend_jit_get_constant(const zval *key, uint32_t flags);
335 zend_constant* ZEND_FASTCALL zend_jit_check_constant(const zval *key);
710 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_ret_trace_helper(ZEND_OPCODE_HANDLER_ARGS);
[all …]
H A Dzend_jit_vm_helpers.c117 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_leave_func_helper(EXECUTE_DATA_D) in zend_jit_leave_func_helper()
128 void ZEND_FASTCALL zend_jit_copy_extra_args_helper(EXECUTE_DATA_D) in zend_jit_copy_extra_args_helper()
174 bool ZEND_FASTCALL zend_jit_deprecated_helper(OPLINE_D) in zend_jit_deprecated_helper()
202 void ZEND_FASTCALL zend_jit_undefined_long_key(EXECUTE_DATA_D) in zend_jit_undefined_long_key()
218 void ZEND_FASTCALL zend_jit_undefined_string_key(EXECUTE_DATA_D) in zend_jit_undefined_string_key()
239 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_profile_helper(ZEND_OPCODE_HANDLER_ARGS) in zend_jit_profile_helper()
334 zend_constant* ZEND_FASTCALL zend_jit_get_constant(const zval *key, uint32_t flags) in zend_jit_get_constant()
339 zend_constant* ZEND_FASTCALL zend_jit_check_constant(const zval *key) in zend_jit_check_constant()
378 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_func_trace_helper(ZEND_OPCODE_HANDLER_ARGS) in zend_jit_func_trace_helper()
384 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_ret_trace_helper(ZEND_OPCODE_HANDLER_ARGS) in zend_jit_ret_trace_helper()
[all …]

Completed in 221 milliseconds

123