Home
last modified time | relevance | path

Searched refs:BP_VAR_R (Results 1 – 13 of 13) sorted by relevance

/PHP-7.4/Zend/
H A Dzend_vm_def.h54 op1 = GET_OP1_ZVAL_PTR_UNDEF(BP_VAR_R);
216 op1 = GET_OP1_ZVAL_PTR(BP_VAR_R);
217 op2 = GET_OP2_ZVAL_PTR(BP_VAR_R);
374 op1 = GET_OP1_ZVAL_PTR(BP_VAR_R);
375 op2 = GET_OP2_ZVAL_PTR(BP_VAR_R);
850 op1 = GET_OP1_ZVAL_PTR(BP_VAR_R);
851 op2 = GET_OP2_ZVAL_PTR(BP_VAR_R);
985 op1 = GET_OP1_ZVAL_PTR(BP_VAR_R);
986 op2 = GET_OP2_ZVAL_PTR(BP_VAR_R);
1880 BP_VAR_W : BP_VAR_R;
[all …]
H A Dzend_execute.c296 case BP_VAR_R: in _get_zval_cv_lookup()
1321 if ((z = Z_OBJ_HT_P(object)->read_dimension(object, property, BP_VAR_R, &rv)) != NULL) { in zend_binary_assign_op_obj_dim()
1824 z = Z_OBJ_HT(obj)->read_property(&obj, property, BP_VAR_R, cache_slot, &rv); in zend_post_incdec_overloaded_property()
1861 z = Z_OBJ_HT(obj)->read_property(&obj, property, BP_VAR_R, cache_slot, &rv); in zend_pre_incdec_overloaded_property()
1901 z = Z_OBJ_HT(obj)->read_property(&obj, property, BP_VAR_R, cache_slot, &rv); in zend_assign_op_overloaded_property()
2140 case BP_VAR_R: in zend_fetch_dimension_address_inner()
2171 case BP_VAR_R: in zend_fetch_dimension_address_inner()
2191 case BP_VAR_R: in zend_fetch_dimension_address_inner()
3040 zval *varname = get_zval_ptr_undef(opline->op1_type, opline->op1, &free_op1, BP_VAR_R); in zend_fetch_static_property_address_ex()
3085 if ((fetch_type == BP_VAR_R || fetch_type == BP_VAR_RW) in zend_fetch_static_property_address()
[all …]
H A Dzend_object_handlers.c1064 if (UNEXPECTED(type == BP_VAR_RW || type == BP_VAR_R)) { in zend_std_get_property_ptr_ptr()
1102 if (UNEXPECTED(type == BP_VAR_RW || type == BP_VAR_R)) { in zend_std_get_property_ptr_ptr()
1553 if (UNEXPECTED((type == BP_VAR_R || type == BP_VAR_RW) in zend_std_get_static_property_with_info()
H A Dzend_compile.c1836 case BP_VAR_R: in zend_adjust_for_fetch_type()
2410 if ((type == BP_VAR_R) || (type == BP_VAR_IS)) { in zend_compile_simple_var()
2425 if (type != BP_VAR_R && type != BP_VAR_IS && zend_is_call(ast)) { in zend_separate_if_call_and_write()
2470 if (type == BP_VAR_R || type == BP_VAR_IS) { in zend_delayed_compile_dim()
2792 zend_compile_simple_var_no_cv(&expr_node, expr_ast, BP_VAR_R, 0); in zend_compile_assign()
2832 zend_compile_simple_var_no_cv(&expr_node, expr_ast, BP_VAR_R, 0); in zend_compile_assign()
3012 zend_compile_var(&arg_node, arg, BP_VAR_R, 0); in zend_compile_args()
3038 zend_compile_var(&arg_node, arg, BP_VAR_R, 0); in zend_compile_args()
3802 } else if (zend_string_equals_literal(lcname, "chr") && type == BP_VAR_R) { in zend_try_compile_special_func()
7892 zend_compile_simple_var_no_cv(result, expr_ast, BP_VAR_R, 0 ); in zend_compile_silence()
[all …]
H A Dzend_compile.h889 #define BP_VAR_R 0 macro
H A Dzend_vm_execute.h893 if (type == BP_VAR_R || type == BP_VAR_IS) { in zend_fetch_static_prop_helper_SPEC()
924 BP_VAR_W : BP_VAR_R; in ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_HANDLER()
1878 args = get_zval_ptr_undef(opline->op1_type, opline->op1, &free_op1, BP_VAR_R); in ZEND_SEND_UNPACK_SPEC_HANDLER()
2030 args = get_zval_ptr(opline->op1_type, opline->op1, &free_op1, BP_VAR_R); in ZEND_SEND_ARRAY_SPEC_HANDLER()
2183 op1 = get_zval_ptr(opline->op1_type, opline->op1, &free_op1, BP_VAR_R); in ZEND_ADD_ARRAY_UNPACK_SPEC_HANDLER()
8994 if (type == BP_VAR_R || type == BP_VAR_IS) { in zend_fetch_var_address_helper_SPEC_CONST_UNUSED()
9021 BP_VAR_W : BP_VAR_R; in ZEND_FETCH_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER()
16690 if (type == BP_VAR_R || type == BP_VAR_IS) { in zend_fetch_var_address_helper_SPEC_TMPVAR_UNUSED()
16717 BP_VAR_W : BP_VAR_R; in ZEND_FETCH_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER()
45493 if (type == BP_VAR_R || type == BP_VAR_IS) { in zend_fetch_var_address_helper_SPEC_CV_UNUSED()
[all …]
H A Dzend_ast.c717 … zend_fetch_dimension_const(result, &op1, &op2, (ast->attr & ZEND_DIM_IS) ? BP_VAR_IS : BP_VAR_R); in zend_ast_evaluate()
H A Dzend_API.c4331 value = Z_OBJ_HT_P(object)->read_property(object, &property, silent?BP_VAR_IS:BP_VAR_R, NULL, rv); in zend_read_property_ex()
4356 property = zend_std_get_static_property(scope, name, silent ? BP_VAR_IS : BP_VAR_R); in zend_read_static_property_ex()
/PHP-7.4/ext/intl/transliterator/
H A Dtransliterator_class.c240 if( ( type != BP_VAR_R && type != BP_VAR_IS ) && in Transliterator_read_property()
/PHP-7.4/ext/spl/
H A Dspl_array.c320 case BP_VAR_R: in spl_array_get_dimension_ptr()
336 case BP_VAR_R: in spl_array_get_dimension_ptr()
370 case BP_VAR_R: in spl_array_get_dimension_ptr()
626 value = spl_array_read_dimension_ex(1, object, offset, BP_VAR_R, &rv); in spl_array_has_dimension_ex()
681 value = spl_array_read_dimension_ex(1, object, offset, BP_VAR_R, &rv); in spl_array_has_dimension_ex()
722 value = spl_array_read_dimension_ex(0, ZEND_THIS, index, BP_VAR_R, return_value); in SPL_METHOD()
/PHP-7.4/ext/ffi/
H A Dffi.c464 if (read_type == BP_VAR_R) { in zend_ffi_cdata_to_zval()
870 …zend_ffi_cdata_to_zval(NULL, args[n], arg_type, BP_VAR_R, &fci.params[n], (zend_ffi_flags)(arg_typ… in zend_ffi_callback_trampoline()
1009 zend_ffi_cdata_to_zval(cdata, cdata->ptr, type, BP_VAR_R, rv, 0, 0, 0); in zend_ffi_cdata_get()
1873 …zend_ffi_cdata_to_zval(NULL, ptr, dim_type, iter->by_ref ? BP_VAR_RW : BP_VAR_R, &iter->value, (cd… in zend_ffi_cdata_it_get_current_data()
1968 zend_ffi_cdata_to_zval(cdata, ptr, type, BP_VAR_R, &tmp, ZEND_FFI_FLAG_CONST, 0, 0); in zend_ffi_cdata_get_debug_info()
1988 …zend_ffi_cdata_to_zval(NULL, *(void**)ptr, ZEND_FFI_TYPE(type->pointer.type), BP_VAR_R, &tmp, ZEND… in zend_ffi_cdata_get_debug_info()
2001 …zend_ffi_cdata_to_zval(NULL, f_ptr, ZEND_FFI_TYPE(f->type), BP_VAR_R, &tmp, ZEND_FFI_FLAG_CONST, 0… in zend_ffi_cdata_get_debug_info()
2014 …zend_ffi_cdata_to_zval(NULL, ptr, ZEND_FFI_TYPE(type->array.type), BP_VAR_R, &tmp, ZEND_FFI_FLAG_C… in zend_ffi_cdata_get_debug_info()
2756 …zend_ffi_cdata_to_zval(NULL, ret, ZEND_FFI_TYPE(type->func.ret_type), BP_VAR_R, return_value, 0, 1… in ZEND_FUNCTION()
/PHP-7.4/ext/date/
H A Dphp_date.c5434 if (type != BP_VAR_IS && type != BP_VAR_R) { in date_period_read_property()
/PHP-7.4/ext/standard/
H A Darray.c4189 prop = Z_OBJ_HANDLER_P(data, read_property)(data, name, BP_VAR_R, NULL, rv);

Completed in 314 milliseconds