Home
last modified time | relevance | path

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

12

/PHP-8.0/Zend/
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_operators.h250 ZEND_API void ZEND_FASTCALL convert_scalar_to_number(zval *op);
251 ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op);
252 ZEND_API void ZEND_FASTCALL convert_to_long(zval *op);
253 ZEND_API void ZEND_FASTCALL convert_to_double(zval *op);
255 ZEND_API void ZEND_FASTCALL convert_to_null(zval *op);
256 ZEND_API void ZEND_FASTCALL convert_to_boolean(zval *op);
257 ZEND_API void ZEND_FASTCALL convert_to_array(zval *op);
258 ZEND_API void ZEND_FASTCALL convert_to_object(zval *op);
333 ZEND_API int ZEND_FASTCALL zend_is_true(zval *op);
334 ZEND_API bool ZEND_FASTCALL zend_object_is_true(zval *op);
[all …]
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_ast.h214 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_ex(zval *zv, zend_ast_attr attr);
215 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval(zval *zv);
216 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_from_str(zend_string *str);
217 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_zval_from_long(zend_long lval);
232 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_0(zend_ast_kind kind);
270 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_create_list_0(zend_ast_kind kind);
287 ZEND_API zend_ast * ZEND_FASTCALL zend_ast_list_add(zend_ast *list, zend_ast *op);
297 ZEND_API zend_ast_ref * ZEND_FASTCALL zend_ast_copy(zend_ast *ast);
298 ZEND_API void ZEND_FASTCALL zend_ast_destroy(zend_ast *ast);
299 ZEND_API void ZEND_FASTCALL zend_ast_ref_destroy(zend_ast_ref *ast);
[all …]
H A Dzend_hash.h101 ZEND_API void ZEND_FASTCALL zend_hash_destroy(HashTable *ht);
102 ZEND_API void ZEND_FASTCALL zend_hash_clean(HashTable *ht);
108 ZEND_API void ZEND_FASTCALL zend_hash_real_init_packed(HashTable *ht);
109 ZEND_API void ZEND_FASTCALL zend_hash_real_init_mixed(HashTable *ht);
110 ZEND_API void ZEND_FASTCALL zend_hash_packed_to_hash(HashTable *ht);
111 ZEND_API void ZEND_FASTCALL zend_hash_to_packed(HashTable *ht);
280 ZEND_API void ZEND_FASTCALL zend_hash_rehash(HashTable *ht);
298 ZEND_API HashTable* ZEND_FASTCALL _zend_new_array_0(void);
299 ZEND_API HashTable* ZEND_FASTCALL _zend_new_array(uint32_t size);
303 ZEND_API void ZEND_FASTCALL zend_array_destroy(HashTable *ht);
[all …]
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, zen…
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_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_alloc.h71 ZEND_API char* ZEND_FASTCALL zend_strndup(const char *s, size_t length) ZEND_ATTRIBUTE_MALLOC;
75 ZEND_API void* ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t offset) ZEND_ATTRIBUTE…
76 ZEND_API void ZEND_FASTCALL _efree(void *ptr ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC);
81 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset);
84 ZEND_API size_t ZEND_FASTCALL _zend_mem_block_size(void *ptr ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_…
92 ZEND_API void* ZEND_FASTCALL _emalloc_ ## _size(void) ZEND_ATTRIBUTE_MALLOC;
96 ZEND_API void* ZEND_FASTCALL _emalloc_large(size_t size) ZEND_ATTRIBUTE_MALLOC ZEND_ATTRIBUTE_ALLOC…
97 ZEND_API void* ZEND_FASTCALL _emalloc_huge(size_t size) ZEND_ATTRIBUTE_MALLOC ZEND_ATTRIBUTE_ALLOC_…
117 ZEND_API void ZEND_FASTCALL _efree_ ## _size(void *);
121 ZEND_API void ZEND_FASTCALL _efree_large(void *, size_t size);
[all …]
H A Dzend_objects_API.c27 ZEND_API void ZEND_FASTCALL zend_objects_store_init(zend_objects_store *objects, uint32_t init_size) in zend_objects_store_init()
36 ZEND_API void ZEND_FASTCALL zend_objects_store_destroy(zend_objects_store *objects) in zend_objects_store_destroy()
42 ZEND_API void ZEND_FASTCALL zend_objects_store_call_destructors(zend_objects_store *objects) in zend_objects_store_call_destructors()
65 ZEND_API void ZEND_FASTCALL zend_objects_store_mark_destructed(zend_objects_store *objects) in zend_objects_store_mark_destructed()
82 ZEND_API void ZEND_FASTCALL zend_objects_store_free_object_storage(zend_objects_store *objects, zen… in zend_objects_store_free_object_storage()
126 static ZEND_COLD zend_never_inline void ZEND_FASTCALL zend_objects_store_put_cold(zend_object *obje… in zend_objects_store_put_cold()
139 ZEND_API void ZEND_FASTCALL zend_objects_store_put(zend_object *object) in zend_objects_store_put()
159 ZEND_API void ZEND_FASTCALL zend_objects_store_del(zend_object *object) /* {{{ */ in zend_objects_store_del()
H A Dzend_string.c29 static zend_string* ZEND_FASTCALL zend_new_interned_string_permanent(zend_string *str);
30 static zend_string* ZEND_FASTCALL zend_new_interned_string_request(zend_string *str);
31 static zend_string* ZEND_FASTCALL zend_string_init_interned_permanent(const char *str, size_t size,…
32 static zend_string* ZEND_FASTCALL zend_string_init_interned_request(const char *str, size_t size, b…
47 ZEND_API zend_ulong ZEND_FASTCALL zend_string_hash_func(zend_string *str) in zend_string_hash_func()
52 ZEND_API zend_ulong ZEND_FASTCALL zend_hash_func(const char *str, size_t len) in zend_hash_func()
179 ZEND_API zend_string* ZEND_FASTCALL zend_interned_string_find_permanent(zend_string *str) in zend_interned_string_find_permanent()
185 static zend_string* ZEND_FASTCALL zend_new_interned_string_permanent(zend_string *str) in zend_new_interned_string_permanent()
211 static zend_string* ZEND_FASTCALL zend_new_interned_string_request(zend_string *str) in zend_new_interned_string_request()
328 ZEND_API zend_bool ZEND_FASTCALL zend_string_equal_val(zend_string *s1, zend_string *s2) in zend_string_equal_val()
[all …]
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 int ZEND_FASTCALL zend_list_delete(zend_resource *res);
58 ZEND_API void ZEND_FASTCALL zend_list_close(zend_resource *res);
H A Dzend_vm_opcodes.c431 ZEND_API const char* ZEND_FASTCALL zend_get_opcode_name(zend_uchar opcode) { in zend_get_opcode_name()
437 ZEND_API uint32_t ZEND_FASTCALL zend_get_opcode_flags(zend_uchar opcode) { in zend_get_opcode_flags()
H A Dzend_observer.h64 ZEND_API void ZEND_FASTCALL zend_observer_fcall_begin(
67 ZEND_API void ZEND_FASTCALL zend_observer_generator_resume(
70 ZEND_API void ZEND_FASTCALL zend_observer_fcall_end(
H A Dzend_operators.c425 ZEND_API void ZEND_FASTCALL convert_to_long(zval *op) /* {{{ */ in convert_to_long()
494 ZEND_API void ZEND_FASTCALL convert_to_double(zval *op) /* {{{ */ in convert_to_double()
553 ZEND_API void ZEND_FASTCALL convert_to_null(zval *op) /* {{{ */ in convert_to_null()
560 ZEND_API void ZEND_FASTCALL convert_to_boolean(zval *op) /* {{{ */ in convert_to_boolean()
625 ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op) /* {{{ */ in _convert_to_string()
709 ZEND_API void ZEND_FASTCALL convert_to_array(zval *op) /* {{{ */ in convert_to_array()
750 ZEND_API void ZEND_FASTCALL convert_to_object(zval *op) /* {{{ */ in convert_to_object()
2326 static void ZEND_FASTCALL increment_string(zval *str) /* {{{ */ in increment_string()
2539 ZEND_API int ZEND_FASTCALL zend_is_true(zval *op) /* {{{ */ in zend_is_true()
2545 ZEND_API bool ZEND_FASTCALL zend_object_is_true(zval *op) /* {{{ */ in zend_object_is_true()
[all …]
H A Dzend_execute.h59 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_missing_arg_error(zend_execute_data *execute_data);
60 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_deprecated_function(const zend_function *fbc);
61 ZEND_COLD void ZEND_FASTCALL zend_param_must_be_ref(const zend_function *func, uint32_t arg_num);
307 ZEND_API void ZEND_FASTCALL zend_free_extra_named_params(zend_array *extra_named_params);
321 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_cannot_pass_by_reference(uint32_t arg_num);
325 ZEND_API ZEND_NORETURN void ZEND_FASTCALL zend_timeout(void);
329 ZEND_API zend_function * ZEND_FASTCALL zend_fetch_function(zend_string *name);
330 ZEND_API zend_function * ZEND_FASTCALL zend_fetch_function_str(const char *name, size_t len);
331 ZEND_API void ZEND_FASTCALL zend_init_func_run_time_cache(zend_op_array *op_array);
355 zval * ZEND_FASTCALL zend_handle_named_arg(
[all …]
H A Dzend_hash.c109 static void ZEND_FASTCALL zend_hash_do_resize(HashTable *ht);
269 ZEND_API HashTable* ZEND_FASTCALL _zend_new_array_0(void) in _zend_new_array_0()
276 ZEND_API HashTable* ZEND_FASTCALL _zend_new_array(uint32_t nSize) in _zend_new_array()
303 static void ZEND_FASTCALL zend_hash_packed_grow(HashTable *ht) in zend_hash_packed_grow()
353 ZEND_API void ZEND_FASTCALL zend_hash_to_packed(HashTable *ht) in zend_hash_to_packed()
1172 static void ZEND_FASTCALL zend_hash_do_resize(HashTable *ht) in zend_hash_do_resize()
1197 ZEND_API void ZEND_FASTCALL zend_hash_rehash(HashTable *ht) in zend_hash_rehash()
1550 ZEND_API void ZEND_FASTCALL zend_hash_destroy(HashTable *ht) in zend_hash_destroy()
1612 ZEND_API void ZEND_FASTCALL zend_array_destroy(HashTable *ht) in zend_array_destroy()
1665 ZEND_API void ZEND_FASTCALL zend_hash_clean(HashTable *ht) in zend_hash_clean()
[all …]
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()
127 ZEND_API void ZEND_FASTCALL _smart_string_alloc_persistent(smart_string *str, size_t len) in _smart_string_alloc_persistent()
147 ZEND_API void ZEND_FASTCALL _smart_string_alloc(smart_string *str, size_t len) in _smart_string_alloc()
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_observer.c130 static void ZEND_FASTCALL _zend_observe_fcall_begin(zend_execute_data *execute_data) in _zend_observe_fcall_begin()
167 ZEND_API void ZEND_FASTCALL zend_observer_generator_resume(zend_execute_data *execute_data) in zend_observer_generator_resume()
172 ZEND_API void ZEND_FASTCALL zend_observer_fcall_begin(zend_execute_data *execute_data) in zend_observer_fcall_begin()
195 ZEND_API void ZEND_FASTCALL zend_observer_fcall_end(zend_execute_data *execute_data, zval *return_v… in zend_observer_fcall_end()
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);
2835 static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_TICKS_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS) in ZEND_TICKS_SPEC_HANDLER()
3078 static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_FAST_RET_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS) in ZEND_FAST_RET_SPEC_HANDLER()
51434 static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_NULL_HANDLER(ZEND_OPCODE_HANDLER_ARGS) in ZEND_NULL_HANDLER()
63226 ZEND_API void ZEND_FASTCALL zend_serialize_opcode_handler(zend_op *op)
63238 ZEND_API void ZEND_FASTCALL zend_deserialize_opcode_handler(zend_op *op)
63243 ZEND_API const void* ZEND_FASTCALL zend_get_opcode_handler_func(const zend_op *op)
63336 ZEND_API void ZEND_FASTCALL zend_vm_set_opcode_handler(zend_op* op)
[all …]
H A Dzend_gc.h34 ZEND_API void ZEND_FASTCALL gc_possible_root(zend_refcounted *ref);
35 ZEND_API void ZEND_FASTCALL gc_remove_from_buffer(zend_refcounted *ref);
H A Dzend_vm_execute.skl99 ZEND_API void ZEND_FASTCALL zend_serialize_opcode_handler(zend_op *op)
111 ZEND_API void ZEND_FASTCALL zend_deserialize_opcode_handler(zend_op *op)
116 ZEND_API const void* ZEND_FASTCALL zend_get_opcode_handler_func(const zend_op *op)
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_internal.h58 void ZEND_FASTCALL zend_jit_hot_func(zend_execute_data *execute_data, const zend_op *opline);
125 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_profile_helper(ZEND_OPCODE_HANDLER_ARGS);
127 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_func_counter_helper(ZEND_OPCODE_HANDLER_ARGS);
128 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_loop_counter_helper(ZEND_OPCODE_HANDLER_ARGS);
130 void ZEND_FASTCALL zend_jit_copy_extra_args_helper(EXECUTE_DATA_D);
131 zend_bool ZEND_FASTCALL zend_jit_deprecated_helper(OPLINE_D);
133 zend_constant* ZEND_FASTCALL zend_jit_get_constant(const zval *key, uint32_t flags);
134 zend_constant* ZEND_FASTCALL zend_jit_check_constant(const zval *key);
482 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_func_trace_helper(ZEND_OPCODE_HANDLER_ARGS);
483 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_ret_trace_helper(ZEND_OPCODE_HANDLER_ARGS);
[all …]
H A Dzend_jit_helpers.c126 static void ZEND_FASTCALL zend_jit_unref_helper(zval *zv) in zend_jit_unref_helper()
427 static int ZEND_FASTCALL zend_jit_undefined_op_helper(uint32_t var) in zend_jit_undefined_op_helper()
1798 static void ZEND_FASTCALL zend_jit_fetch_obj_r_slow(zend_object *zobj) in zend_jit_fetch_obj_r_slow()
1856 static void ZEND_FASTCALL zend_jit_fetch_obj_is_slow(zend_object *zobj) in zend_jit_fetch_obj_is_slow()
2006 static void ZEND_FASTCALL zend_jit_fetch_obj_w_slow(zend_object *zobj) in zend_jit_fetch_obj_w_slow()
2280 static void ZEND_FASTCALL zend_jit_only_vars_by_reference(zval *arg) in zend_jit_only_vars_by_reference()
2286 static void ZEND_FASTCALL zend_jit_invalid_array_access(zval *container) in zend_jit_invalid_array_access()
2353 static void ZEND_FASTCALL zend_jit_pre_inc(zval *var_ptr, zval *ret) in zend_jit_pre_inc()
2359 static void ZEND_FASTCALL zend_jit_pre_dec(zval *var_ptr, zval *ret) in zend_jit_pre_dec()
2380 static void ZEND_FASTCALL zend_jit_array_free(HashTable *ht) in zend_jit_array_free()
[all …]
H A Dzend_jit_vm_helpers.c109 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_leave_func_helper(uint32_t call_info EXECUTE_DATA_DC) in zend_jit_leave_func_helper()
118 void ZEND_FASTCALL zend_jit_copy_extra_args_helper(EXECUTE_DATA_D) in zend_jit_copy_extra_args_helper()
164 zend_bool ZEND_FASTCALL zend_jit_deprecated_helper(OPLINE_D) in zend_jit_deprecated_helper()
192 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_profile_helper(ZEND_OPCODE_HANDLER_ARGS) in zend_jit_profile_helper()
202 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_func_counter_helper(ZEND_OPCODE_HANDLER_ARGS) in zend_jit_func_counter_helper()
222 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_loop_counter_helper(ZEND_OPCODE_HANDLER_ARGS) in zend_jit_loop_counter_helper()
287 zend_constant* ZEND_FASTCALL zend_jit_get_constant(const zval *key, uint32_t flags) in zend_jit_get_constant()
292 zend_constant* ZEND_FASTCALL zend_jit_check_constant(const zval *key) in zend_jit_check_constant()
331 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_func_trace_helper(ZEND_OPCODE_HANDLER_ARGS) in zend_jit_func_trace_helper()
337 ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_ret_trace_helper(ZEND_OPCODE_HANDLER_ARGS) in zend_jit_ret_trace_helper()
[all …]

Completed in 223 milliseconds

12