Home
last modified time | relevance | path

Searched refs:ZEND_COLD (Results 1 – 25 of 37) sorted by relevance

12

/PHP-8.1/Zend/
H A Dzend_exceptions.h44 ZEND_API ZEND_COLD void zend_throw_exception_internal(zend_object *exception);
60 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me…
61 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c…
62 ZEND_API ZEND_COLD void zend_throw_exception_object(zval *exception);
70 ZEND_API ZEND_COLD zend_result zend_exception_error(zend_object *exception, int severity);
74 ZEND_API ZEND_COLD zend_object *zend_create_unwind_exit(void);
75 ZEND_API ZEND_COLD zend_object *zend_create_graceful_exit(void);
76 ZEND_API ZEND_COLD void zend_throw_unwind_exit(void);
77 ZEND_API ZEND_COLD void zend_throw_graceful_exit(void);
H A Dzend.h278 ZEND_API ZEND_COLD ZEND_NORETURN void _zend_bailout(const char *filename, uint32_t lineno);
340 ZEND_API ZEND_COLD void zend_error(int type, const char *format, ...) ZEND_ATTRIBUTE_FORMAT(printf,…
341 ZEND_API ZEND_COLD ZEND_NORETURN void zend_error_noreturn(int type, const char *format, ...) ZEND_A…
343 ZEND_API ZEND_COLD void zend_error_unchecked(int type, const char *format, ...);
347 ZEND_API ZEND_COLD void zend_error_zstr(int type, zend_string *message);
348 ZEND_API ZEND_COLD void zend_error_zstr_at(int type, zend_string *filename, uint32_t lineno, zend_s…
351 ZEND_API ZEND_COLD void zend_type_error(const char *format, ...) ZEND_ATTRIBUTE_FORMAT(printf, 1, 2…
352 ZEND_API ZEND_COLD void zend_argument_count_error(const char *format, ...) ZEND_ATTRIBUTE_FORMAT(pr…
353 ZEND_API ZEND_COLD void zend_value_error(const char *format, ...) ZEND_ATTRIBUTE_FORMAT(printf, 1, …
355 ZEND_COLD void zenderror(const char *error);
[all …]
H A Dzend_ini_scanner.h29 ZEND_COLD int zend_ini_scanner_get_lineno(void);
30 ZEND_COLD char *zend_ini_scanner_get_filename(void);
H A Dzend_execute.h62 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_deprecated_function(const zend_function *fbc);
63 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_false_to_array_deprecated(void);
65 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_use_resource_as_offset(const zval *dim);
74 ZEND_API ZEND_COLD void zend_wrong_string_offset_error(void);
79 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_cannot_add_element(void);
82 ZEND_API ZEND_COLD void zend_verify_arg_error(
84 ZEND_API ZEND_COLD void zend_verify_return_error(
86 ZEND_API ZEND_COLD void zend_verify_never_error(
94 ZEND_API ZEND_COLD void zend_internal_call_arginfo_violation(zend_function *fbc);
349 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_cannot_pass_by_reference(uint32_t arg_num);
[all …]
H A Dzend_exceptions.c165 ZEND_API ZEND_COLD void zend_throw_exception_internal(zend_object *exception) /* {{{ */ in zend_throw_exception_internal()
294 ZEND_COLD ZEND_METHOD(Exception, __clone) in ZEND_METHOD()
844 ZEND_API ZEND_COLD zend_object *zend_throw_exception(zend_class_entry *exception_ce, const char *me… in zend_throw_exception()
855 ZEND_API ZEND_COLD zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long c… in zend_throw_exception_ex()
870 ZEND_API ZEND_COLD zend_object *zend_throw_error_exception(zend_class_entry *exception_ce, zend_str… in zend_throw_error_exception()
895 ZEND_API ZEND_COLD zend_result zend_exception_error(zend_object *ex, int severity) /* {{{ */ in zend_exception_error()
987 ZEND_API ZEND_COLD void zend_throw_exception_object(zval *exception) /* {{{ */ in zend_throw_exception_object()
1005 ZEND_API ZEND_COLD zend_object *zend_create_unwind_exit(void) in zend_create_unwind_exit()
1010 ZEND_API ZEND_COLD zend_object *zend_create_graceful_exit(void) in zend_create_graceful_exit()
1015 ZEND_API ZEND_COLD void zend_throw_unwind_exit(void) in zend_throw_unwind_exit()
[all …]
H A Dzend.c1176 ZEND_COLD void zenderror(const char *error) /* {{{ */ in zenderror()
1373 ZEND_API ZEND_COLD void zend_error_zstr_at( in zend_error_zstr_at()
1537 static ZEND_COLD void zend_error_va_list( in zend_error_va_list()
1588 ZEND_API ZEND_COLD void zend_error_at( in zend_error_at()
1602 ZEND_API ZEND_COLD void zend_error(int type, const char *format, ...) { in zend_error()
1613 ZEND_API ZEND_COLD void zend_error_unchecked(int type, const char *format, ...) { in zend_error_unchecked()
1624 ZEND_API ZEND_COLD ZEND_NORETURN void zend_error_at_noreturn( in zend_error_at_noreturn()
1673 ZEND_API ZEND_COLD void zend_error_zstr(int type, zend_string *message) { in zend_error_zstr()
1743 ZEND_API ZEND_COLD void zend_type_error(const char *format, ...) /* {{{ */ in zend_type_error()
1768 ZEND_API ZEND_COLD void zend_value_error(const char *format, ...) /* {{{ */ in zend_value_error()
[all …]
H A Dzend_execute.c654 static ZEND_COLD void zend_verify_type_error_common( in zend_verify_type_error_common()
677 ZEND_API ZEND_COLD void zend_verify_arg_error( in zend_verify_arg_error()
827 ZEND_COLD void zend_match_unhandled_error(zval *value) in zend_match_unhandled_error()
846 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_readonly_property_modification_error( in zend_readonly_property_modification_error()
1319 ZEND_API ZEND_COLD void zend_verify_never_error(const zend_function *zf) in zend_verify_never_error()
1383 static ZEND_COLD void zend_verify_missing_return_type(const zend_function *zf) in zend_verify_missing_return_type()
1394 static zend_never_inline ZEND_COLD void ZEND_FASTCALL zend_illegal_offset(void) in zend_illegal_offset()
1552 ZEND_API ZEND_COLD void zend_wrong_string_offset_error(void) in zend_wrong_string_offset_error()
1675 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_false_to_array_deprecated(void) in zend_false_to_array_deprecated()
1830 static ZEND_COLD zend_long zend_throw_incdec_ref_error( in zend_throw_incdec_ref_error()
[all …]
H A Dzend_ast.c1073 static ZEND_COLD void zend_ast_export_str(smart_str *str, zend_string *s) in zend_ast_export_str()
1088 static ZEND_COLD void zend_ast_export_qstr(smart_str *str, char quote, zend_string *s) in zend_ast_export_qstr()
1133 static ZEND_COLD void zend_ast_export_indent(smart_str *str, int indent) in zend_ast_export_indent()
1172 static ZEND_COLD bool zend_ast_valid_var_char(char ch) in zend_ast_valid_var_char()
1185 static ZEND_COLD bool zend_ast_valid_var_name(const char *s, size_t len) in zend_ast_valid_var_name()
1211 static ZEND_COLD bool zend_ast_var_needs_braces(char ch) in zend_ast_var_needs_braces()
1309 static ZEND_COLD void zend_ast_export_stmt(smart_str *str, zend_ast *ast, int indent) in zend_ast_export_stmt()
1351 static ZEND_COLD void zend_ast_export_if_stmt(smart_str *str, zend_ast_list *list, int indent) in zend_ast_export_if_stmt()
1388 static ZEND_COLD void zend_ast_export_zval(smart_str *str, zval *zv, int priority, int indent) in zend_ast_export_zval()
1496 static ZEND_COLD void zend_ast_export_visibility(smart_str *str, uint32_t flags) { in zend_ast_export_visibility()
[all …]
H A Dzend_API.h221 #define ZEND_MODULE_INFO_D(module) ZEND_COLD void ZEND_MODULE_INFO_N(module)(ZEND_MODULE_INFO_FUN…
384 ZEND_API ZEND_COLD void zend_wrong_param_count(void);
711 ZEND_API ZEND_COLD const char *zend_get_object_type(const zend_class_entry *ce);
1329 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameters_none_error(void);
1333 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameter_class_error(uint32_t num, const char *na…
1339 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_error(uint32_t num, char *error);
1340 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_or_null_error(uint32_t num, char *error);
1341 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_unexpected_extra_named_error(void);
1343 ZEND_API ZEND_COLD void zend_argument_error(zend_class_entry *error_ce, uint32_t arg_num, const cha…
1344 ZEND_API ZEND_COLD void zend_argument_type_error(uint32_t arg_num, const char *format, ...);
[all …]
H A Dzend_object_handlers.c266 static ZEND_COLD zend_never_inline void zend_bad_property_access(zend_property_info *property_info,… in zend_bad_property_access()
272 static ZEND_COLD zend_never_inline void zend_bad_property_name(void) /* {{{ */ in zend_bad_property_name()
278 static ZEND_COLD zend_never_inline void zend_forbidden_dynamic_property( in zend_forbidden_dynamic_property()
284 static ZEND_COLD zend_never_inline void zend_readonly_property_modification_scope_error( in zend_readonly_property_modification_scope_error()
291 static ZEND_COLD zend_never_inline void zend_readonly_property_unset_error( in zend_readonly_property_unset_error()
394 static ZEND_COLD void zend_wrong_offset(zend_class_entry *ce, zend_string *member) /* {{{ */ in zend_wrong_offset()
905 static ZEND_COLD zend_never_inline void zend_bad_array_access(zend_class_entry *ce) /* {{{ */ in zend_bad_array_access()
1292 static ZEND_COLD zend_never_inline void zend_bad_method_call(zend_function *fbc, zend_string *metho… in zend_bad_method_call()
1302 static ZEND_COLD zend_never_inline void zend_abstract_method_call(zend_function *fbc) /* {{{ */ in zend_abstract_method_call()
1556 ZEND_API ZEND_COLD bool zend_std_unset_static_property(zend_class_entry *ce, zend_string *property_… in zend_std_unset_static_property()
[all …]
H A Dzend_API.c89 ZEND_API ZEND_COLD void zend_wrong_param_count(void) /* {{{ */ in zend_wrong_param_count()
183 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_parameters_none_error(void) /* {{{ */ in zend_wrong_parameters_none_error()
334 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_error(uint32_t num, char *error) /* {{{ */ in zend_wrong_callback_error()
343 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_wrong_callback_or_null_error(uint32_t num, char *error) … in zend_wrong_callback_or_null_error()
352 ZEND_API ZEND_COLD void ZEND_FASTCALL zend_unexpected_extra_named_error(void) in zend_unexpected_extra_named_error()
392 ZEND_API ZEND_COLD void zend_argument_type_error(uint32_t arg_num, const char *format, ...) /* {{{ … in zend_argument_type_error()
402 ZEND_API ZEND_COLD void zend_argument_value_error(uint32_t arg_num, const char *format, ...) /* {{{… in zend_argument_value_error()
441 static ZEND_COLD bool zend_null_arg_deprecated(const char *fallback_type, uint32_t arg_num) { in zend_null_arg_deprecated()
1022 static ZEND_COLD void zend_parse_parameters_debug_error(const char *msg) { in zend_parse_parameters_debug_error()
3289 static ZEND_COLD zend_object *display_disabled_class(zend_class_entry *class_type) /* {{{ */ in display_disabled_class()
[all …]
H A Dzend_ini_scanner.l257 ZEND_COLD int zend_ini_scanner_get_lineno(void) in zend_ini_scanner_get_lineno()
264 ZEND_COLD char *zend_ini_scanner_get_filename(void) in zend_ini_scanner_get_filename()
H A Dzend_objects_API.c131 static ZEND_COLD zend_never_inline void ZEND_FASTCALL zend_objects_store_put_cold(zend_object *obje… in zend_objects_store_put_cold()
H A Dzend_portability.h238 # define ZEND_COLD __attribute__((cold)) macro
248 # define ZEND_COLD macro
H A Dzend_object_handlers.h206 ZEND_API ZEND_COLD bool zend_std_unset_static_property(zend_class_entry *ce, zend_string *property_…
H A Dzend_ini.h29 #define ZEND_INI_DISP(name) ZEND_COLD void name(zend_ini_entry *ini_entry, int type)
H A Dzend_ini_parser.y186 static ZEND_COLD void ini_error(const char *msg) in ini_error()
/PHP-8.1/main/
H A Dphp.h309 PHPAPI ZEND_COLD void php_log_err_with_severity(const char *log_message, int syslog_type_int);
324 PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int type, const char *form…
327 PHPAPI ZEND_COLD void php_error_docref(const char *docref, int type, const char *format, ...)
329 PHPAPI ZEND_COLD void php_error_docref1(const char *docref, const char *param1, int type, const cha…
331 PHPAPI ZEND_COLD void php_error_docref2(const char *docref, const char *param1, const char *param2,…
334 PHPAPI ZEND_COLD void php_win32_docref1_from_error(DWORD error, const char *param1);
335 PHPAPI ZEND_COLD void php_win32_docref2_from_error(DWORD error, const char *param1, const char *par…
H A Dmain.c798 PHPAPI ZEND_COLD void php_log_err_with_severity(const char *log_message, int syslog_type_int) in php_log_err_with_severity()
923 PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int type, const char *form… in php_verror()
1103 PHPAPI ZEND_COLD void php_error_docref(const char *docref, int type, const char *format, ...) in php_error_docref()
1115 PHPAPI ZEND_COLD void php_error_docref1(const char *docref, const char *param1, int type, const cha… in php_error_docref1()
1127 PHPAPI ZEND_COLD void php_error_docref2(const char *docref, const char *param1, const char *param2,… in php_error_docref2()
1143 PHPAPI ZEND_COLD void php_win32_docref1_from_error(DWORD error, const char *param1) { in php_win32_docref1_from_error()
1156 PHPAPI ZEND_COLD void php_win32_docref2_from_error(DWORD error, const char *param1, const char *par… in php_win32_docref2_from_error()
1208 static ZEND_COLD void php_error_cb(int orig_type, zend_string *error_filename, const uint32_t error… in php_error_cb()
1585 static ZEND_COLD void php_message_handler_for_zend(zend_long message, const void *data) in php_message_handler_for_zend()
H A Dphp_ini.c69 static ZEND_COLD void php_ini_displayer_cb(zend_ini_entry *ini_entry, int type) in php_ini_displayer_cb()
116 PHPAPI ZEND_COLD void display_ini_entries(zend_module_entry *module) in display_ini_entries()
/PHP-8.1/ext/standard/
H A Dinfo.c66 static ZEND_COLD int php_info_printf(const char *fmt, ...) /* {{{ */ in php_info_printf()
240 PHPAPI ZEND_COLD void ZEND_COLD php_info_print_style(void) in php_info_print_style()
249 PHPAPI ZEND_COLD zend_string *php_info_html_esc(const char *string) in php_info_html_esc()
751 PHPAPI ZEND_COLD void php_print_info_htmlhead(void) in php_print_info_htmlhead()
773 PHPAPI ZEND_COLD void php_print_info(int flag) in php_print_info()
1072 PHPAPI ZEND_COLD void php_info_print_table_start(void) /* {{{ */ in php_info_print_table_start()
1082 PHPAPI ZEND_COLD void php_info_print_table_end(void) /* {{{ */ in php_info_print_table_end()
1091 PHPAPI ZEND_COLD void php_info_print_box_start(int flag) /* {{{ */ in php_info_print_box_start()
1108 PHPAPI ZEND_COLD void php_info_print_box_end(void) /* {{{ */ in php_info_print_box_end()
1117 PHPAPI ZEND_COLD void php_info_print_hr(void) /* {{{ */ in php_info_print_hr()
[all …]
H A Dcss.c20 PHPAPI ZEND_COLD void php_info_print_css(void) /* {{{ */ in php_info_print_css()
H A Dcredits.c24 PHPAPI ZEND_COLD void php_print_credits(int flag) /* {{{ */ in php_print_credits()
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_helpers.c21 static ZEND_COLD void undef_result_after_exception(void) { in undef_result_after_exception()
30 static ZEND_COLD void zend_jit_illegal_offset(void) in zend_jit_illegal_offset()
35 static ZEND_COLD void zend_jit_illegal_string_offset(zval *offset) in zend_jit_illegal_string_offset()
99 static ZEND_COLD void ZEND_FASTCALL zend_jit_invalid_method_call(zval *object) in zend_jit_invalid_method_call()
118 static ZEND_COLD void ZEND_FASTCALL zend_jit_invalid_method_call_tmp(zval *object) in zend_jit_invalid_method_call_tmp()
1977 static zend_never_inline ZEND_COLD void zend_throw_auto_init_in_prop_error(zend_property_info *prop… in zend_throw_auto_init_in_prop_error()
1988 static zend_never_inline ZEND_COLD void zend_throw_access_uninit_prop_by_ref_error( in zend_throw_access_uninit_prop_by_ref_error()
2195 static ZEND_COLD void zend_jit_throw_inc_ref_error(zend_reference *ref, zend_property_info *error_p… in zend_jit_throw_inc_ref_error()
2207 static ZEND_COLD void zend_jit_throw_dec_ref_error(zend_reference *ref, zend_property_info *error_p… in zend_jit_throw_dec_ref_error()
2635 static ZEND_COLD zend_long _zend_jit_throw_inc_prop_error(zend_property_info *prop) in _zend_jit_throw_inc_prop_error()
[all …]
/PHP-8.1/ext/ffi/
H A Dffi.c214 static ZEND_COLD void zend_ffi_return_unsupported(zend_ffi_type *type);
215 static ZEND_COLD void zend_ffi_pass_unsupported(zend_ffi_type *type);
216 static ZEND_COLD void zend_ffi_assign_incompatible(zval *arg, zend_ffi_type *type);
1588 static ZEND_COLD void zend_ffi_return_unsupported(zend_ffi_type *type) /* {{{ */ in zend_ffi_return_unsupported()
1601 static ZEND_COLD void zend_ffi_pass_unsupported(zend_ffi_type *type) /* {{{ */ in zend_ffi_pass_unsupported()
1641 static ZEND_COLD void zend_ffi_assign_incompatible(zval *arg, zend_ffi_type *type) /* {{{ */ in zend_ffi_assign_incompatible()
4941 static ZEND_COLD zend_function *zend_fake_get_constructor(zend_object *object) /* {{{ */ in zend_fake_get_constructor()
4948 static ZEND_COLD zend_never_inline void zend_bad_array_access(zend_class_entry *ce) /* {{{ */ in zend_bad_array_access()
4974 static ZEND_COLD void zend_fake_unset_dimension(zend_object *obj, zval *offset) /* {{{ */ in zend_fake_unset_dimension()
5052 static ZEND_COLD zend_never_inline void zend_ffi_use_after_free(void) /* {{{ */ in zend_ffi_use_after_free()
[all …]

Completed in 157 milliseconds

12