Home
last modified time | relevance | path

Searched refs:IS_OBJECT (Results 1 – 25 of 91) sorted by path

1234

/PHP-7.4/Zend/
H A Dzend.c402 case IS_OBJECT: in zend_print_flat_zval_r()
450 case IS_OBJECT: in zend_print_zval_r_to_buf()
H A Dzend_API.c112 case IS_OBJECT: in zend_get_type_by_const()
157 case IS_OBJECT: in zend_zval_get_type()
555 } else if (UNEXPECTED(Z_TYPE_P(arg) == IS_OBJECT)) { in zend_parse_arg_str_weak()
568 if (Z_TYPE_P(z) != IS_OBJECT) { in zend_parse_arg_str_weak()
3301 } else if (Z_TYPE_P(obj) == IS_OBJECT) { in zend_get_callable_name_ex()
3307 case IS_OBJECT: in zend_get_callable_name_ex()
3406 } else if (Z_TYPE_P(obj) == IS_OBJECT) { in zend_is_callable_impl()
3437 case IS_OBJECT: in zend_is_callable_impl()
3773 case IS_OBJECT: in zend_declare_typed_property()
4464 case IS_OBJECT: in zend_is_iterable()
[all …]
H A Dzend_API.h367 #define getThis() ((Z_TYPE_P(ZEND_THIS) == IS_OBJECT) ? ZEND_THIS : NULL)
658 #define HASH_OF(p) (Z_TYPE_P(p)==IS_ARRAY ? Z_ARRVAL_P(p) : ((Z_TYPE_P(p)==IS_OBJECT ? Z_OBJ_HT_P(p…
1667 (or_object && EXPECTED(Z_TYPE_P(arg) == IS_OBJECT))) { in zend_parse_arg_array()
1681 } else if (or_object && EXPECTED(Z_TYPE_P(arg) == IS_OBJECT)) { in zend_parse_arg_array_ht()
1701 if (EXPECTED(Z_TYPE_P(arg) == IS_OBJECT) && in zend_parse_arg_object()
H A Dzend_ast.c1589 case IS_OBJECT: PREFIX_OP("(object)", 240, 241); in zend_ast_export_ex()
H A Dzend_builtin_functions.c895 case IS_OBJECT: in ZEND_FUNCTION()
1021 if (Z_TYPE_P(arg) == IS_OBJECT) { in ZEND_FUNCTION()
1062 } else if (Z_TYPE_P(obj) == IS_OBJECT) { in is_a_impl()
1308 if (Z_TYPE_P(klass) == IS_OBJECT) { in ZEND_FUNCTION()
1359 if (Z_TYPE_P(klass) == IS_OBJECT) { in ZEND_FUNCTION()
1377 RETURN_BOOL(Z_TYPE_P(klass) == IS_OBJECT in ZEND_FUNCTION()
1381 if (Z_TYPE_P(klass) == IS_OBJECT) { in ZEND_FUNCTION()
1424 } else if (Z_TYPE_P(object) == IS_OBJECT) { in ZEND_FUNCTION()
1440 if (Z_TYPE_P(object) == IS_OBJECT && in ZEND_FUNCTION()
2267 object = (Z_TYPE(call->This) == IS_OBJECT) ? Z_OBJ(call->This) : NULL; in ZEND_FUNCTION()
[all …]
H A Dzend_closures.c215 if (Z_TYPE_P(scope_arg) == IS_OBJECT) { in ZEND_METHOD()
349 if (Z_TYPE_P(callable) == IS_OBJECT && instanceof_function(Z_OBJCE_P(callable), zend_ce_closure)) { in ZEND_METHOD()
773 …if (this_ptr && Z_TYPE_P(this_ptr) == IS_OBJECT && (closure->func.common.fn_flags & ZEND_ACC_STATI… in zend_create_closure()
H A Dzend_compile.c215 {ZEND_STRL("object"), IS_OBJECT},
1297 …|| (Z_TYPE(c->value) < IS_OBJECT && !(CG(compiler_options) & ZEND_COMPILE_NO_CONSTANT_SUBSTITUTION… in zend_try_ct_eval_const()
1497 if (Z_TYPE_P(c) < IS_OBJECT) { in zend_try_ct_eval_class_const()
3787 return zend_compile_func_typecheck(result, args, IS_OBJECT); in zend_try_compile_special_func()
5482 case IS_OBJECT: in zend_compile_params()
H A Dzend_exceptions.c97 while (Z_TYPE_P(ancestor) == IS_OBJECT) { in zend_exception_set_previous()
289 if (Z_TYPE(EX(This)) == IS_OBJECT) { in ZEND_METHOD()
335 if (pvalue && Z_TYPE_P(pvalue) != IS_NULL && (Z_TYPE_P(pvalue) != IS_OBJECT || in ZEND_METHOD()
355 if (Z_TYPE(EX(This)) == IS_OBJECT) { in ZEND_METHOD()
551 case IS_OBJECT: { in _build_trace_args()
689 …while (exception && Z_TYPE_P(exception) == IS_OBJECT && instanceof_function(Z_OBJCE_P(exception), … in ZEND_METHOD()
737 if (exception && Z_TYPE_P(exception) == IS_OBJECT && Z_IS_RECURSIVE_P(exception)) { in ZEND_METHOD()
745 …while (exception && Z_TYPE_P(exception) == IS_OBJECT && (base_ce = i_get_exception_base(exception)… in ZEND_METHOD()
1057 if (exception == NULL || Z_TYPE_P(exception) != IS_OBJECT) { in zend_throw_exception_object()
H A Dzend_execute.c743 case IS_OBJECT: in zend_verify_type_error_common()
955 if (UNEXPECTED(Z_TYPE_P(property) != IS_OBJECT)) { in i_zend_check_property_type()
1037 if (EXPECTED(Z_TYPE_P(arg) == IS_OBJECT)) { in zend_check_type()
2326 if (Z_TYPE_P(retval) != IS_OBJECT) { in zend_fetch_dimension_address()
2665 if (EXPECTED(Z_TYPE_P(subject) == IS_OBJECT)) { in zend_array_key_exists_slow()
2716 return ZEND_TYPE_CODE(type) == IS_OBJECT; in check_type_stdClass_assignable()
3381 if (EXPECTED(Z_TYPE(EX(This)) == IS_OBJECT)) { in zend_fetch_this_var()
3390 if (EXPECTED(Z_TYPE(EX(This)) == IS_OBJECT)) { in zend_fetch_this_var()
3436 } else if (Z_TYPE_P(pz) == IS_OBJECT) { in zend_check_symbol()
3972 ZEND_ASSERT(Z_TYPE_P(var) == IS_OBJECT); in cleanup_live_vars()
[all …]
H A Dzend_execute.h123 if (Z_TYPE_P(variable_ptr) == IS_OBJECT && in zend_assign_to_variable()
H A Dzend_execute_API.c200 if (Z_TYPE_P(zv) == IS_OBJECT && Z_REFCOUNT_P(zv) == 1) { in zval_call_destructor()
1031 if (Z_TYPE(ex->This) == IS_OBJECT) { in zend_get_called_scope()
1049 if (Z_TYPE(ex->This) == IS_OBJECT) { in zend_get_this_object()
H A Dzend_gc.c392 if (GC_TYPE(ref) == IS_OBJECT) { in gc_trace_ref()
587 ZEND_ASSERT(GC_TYPE(ref) == IS_ARRAY || GC_TYPE(ref) == IS_OBJECT); in gc_possible_root_when_full()
646 ZEND_ASSERT(GC_TYPE(ref) == IS_ARRAY || GC_TYPE(ref) == IS_OBJECT); in gc_possible_root()
699 if (GC_TYPE(ref) == IS_OBJECT) { in gc_scan_black()
819 if (GC_TYPE(ref) == IS_OBJECT) { in gc_mark_grey()
1005 if (GC_TYPE(ref) == IS_OBJECT) { in gc_scan()
1168 if (GC_TYPE(ref) == IS_OBJECT) { in gc_collect_white()
1354 if (GC_TYPE(ref) == IS_OBJECT) { in gc_remove_nested_data_from_buffer()
1489 if (GC_TYPE(p) == IS_OBJECT && !(OBJ_FLAGS(p) & IS_OBJ_DESTRUCTOR_CALLED)) { in zend_gc_collect_cycles()
1558 if (GC_TYPE(p) == IS_OBJECT) { in zend_gc_collect_cycles()
H A Dzend_generators.c458 if (!ptr->func && Z_TYPE(ptr->This) == IS_OBJECT) { in zend_generator_check_placeholder_frame()
H A Dzend_inheritance.c374 } else if (ZEND_TYPE_CODE(proto_type) == IS_OBJECT) { in zend_perform_covariant_type_check()
389 return ZEND_TYPE_CODE(fe_type) == IS_OBJECT ? INHERITANCE_SUCCESS : INHERITANCE_ERROR; in zend_perform_covariant_type_check()
H A Dzend_interfaces.c269 ce_it = (Z_TYPE(iterator) == IS_OBJECT) ? Z_OBJCE(iterator) : NULL; in zend_user_it_get_new_iterator()
H A Dzend_iterators.c99 ZEND_ASSERT(Z_TYPE_P(array_ptr) == IS_OBJECT); in zend_iterator_unwrap()
H A Dzend_language_parser.y983 | T_OBJECT_CAST expr { $$ = zend_ast_create_cast(IS_OBJECT, $2); }
H A Dzend_object_handlers.c770 if (UNEXPECTED(Z_TYPE_P(rv) != IS_OBJECT)) { in zend_std_read_property()
H A Dzend_objects.c32 GC_TYPE_INFO(object) = IS_OBJECT | (GC_COLLECTABLE << GC_FLAGS_SHIFT); in _zend_object_std_init()
H A Dzend_operators.c192 case IS_OBJECT: in _convert_scalar_to_number()
241 case IS_OBJECT: in _zendi_convert_scalar_to_number_ex()
367 case IS_OBJECT: in convert_to_long_base()
426 case IS_OBJECT: in convert_to_double()
498 case IS_OBJECT: in convert_to_boolean()
637 case IS_OBJECT: in convert_to_array()
693 case IS_OBJECT: in convert_to_object()
799 case IS_OBJECT: in _zval_get_long_func_ex()
849 case IS_OBJECT: in zval_get_double_func()
2253 case IS_OBJECT: in zend_is_identical()
[all …]
H A Dzend_operators.h369 case IS_OBJECT: in i_zend_is_true()
452 case IS_OBJECT: \
480 #define convert_to_object_ex(pzv) convert_to_ex_master(pzv, object, IS_OBJECT)
908 …if (UNEXPECTED(Z_TYPE_P(op1) == IS_OBJECT) …
920 …} else if (UNEXPECTED(Z_TYPE_P(op1) == IS_OBJECT) …
928 …if (UNEXPECTED(Z_TYPE_P(op2) == IS_OBJECT) …
940 …if (UNEXPECTED(Z_TYPE_P(op1) == IS_OBJECT) …
H A Dzend_type_info.h32 #define MAY_BE_OBJECT (1 << IS_OBJECT)
H A Dzend_types.h420 #define IS_OBJECT 8 macro
553 #define GC_OBJECT (IS_OBJECT | (GC_COLLECTABLE << GC_FLAGS_SHIFT))
572 #define IS_OBJECT_EX (IS_OBJECT | (IS_TYPE_REFCOUNTED << Z_TYPE_FLAGS_SHIFT) | (IS_TYPE_…
1009 if (zend_rc_debug && zval_gc_type((p)->u.type_info) != IS_OBJECT) { \
H A Dzend_vm_def.h3447 if (Z_TYPE_P(class_name) == IS_OBJECT) {
3739 if (Z_TYPE(EX(This)) == IS_OBJECT) {
4470 if ((call_info & Z_TYPE_MASK) == IS_OBJECT
6271 if (Z_TYPE_P(container) != IS_OBJECT) {
7405 if (Z_TYPE_P(expr) == IS_OBJECT) {
7653 if (Z_TYPE(EX(This)) == IS_OBJECT) {
8252 if (Z_TYPE(EX(This)) == IS_OBJECT) {
8497 (Z_TYPE(EX(This)) == IS_OBJECT));
8663 } else if (Z_TYPE_P(op1) == IS_OBJECT) {
8728 if (Z_TYPE_P(op1) == IS_OBJECT) {
[all …]
H A Dzend_vm_execute.h9539 if (Z_TYPE(EX(This)) == IS_OBJECT) { in ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER()
9775 if (Z_TYPE_P(op1) == IS_OBJECT) { in ZEND_GET_CLASS_SPEC_CONST_UNUSED_HANDLER()
15144 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_TMPVAR_CONST_HANDLER()
16569 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_TMPVAR_VAR_HANDLER()
16830 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_TMPVAR_UNUSED_HANDLER()
16946 if (Z_TYPE_P(op1) == IS_OBJECT) { in ZEND_GET_CLASS_SPEC_TMPVAR_UNUSED_HANDLER()
34592 (Z_TYPE(EX(This)) == IS_OBJECT)); in ZEND_ISSET_ISEMPTY_THIS_SPEC_UNUSED_UNUSED_HANDLER()
34617 if (Z_TYPE_P(op1) == IS_OBJECT) { in ZEND_GET_CLASS_SPEC_UNUSED_UNUSED_HANDLER()
41378 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_CV_CONST_HANDLER()
45147 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_CV_VAR_HANDLER()
[all …]

Completed in 353 milliseconds

1234