Lines Matching refs:op_array

59 …nd_extension_statement_handler(const zend_extension *extension, zend_op_array *op_array TSRMLS_DC);
60 …_extension_fcall_begin_handler(const zend_extension *extension, zend_op_array *op_array TSRMLS_DC);
61 …nd_extension_fcall_end_handler(const zend_extension *extension, zend_op_array *op_array TSRMLS_DC);
601 if (ptr && ptr->op_array) { in zend_verify_arg_error()
602 …, fclass, fsep, fname, need_msg, need_kind, given_msg, given_kind, ptr->op_array->filename, ptr->o… in zend_verify_arg_error()
980 …end_extension_statement_handler(const zend_extension *extension, zend_op_array *op_array TSRMLS_DC) in zend_extension_statement_handler()
983 extension->statement_handler(op_array); in zend_extension_statement_handler()
988 …d_extension_fcall_begin_handler(const zend_extension *extension, zend_op_array *op_array TSRMLS_DC) in zend_extension_fcall_begin_handler()
991 extension->fcall_begin_handler(op_array); in zend_extension_fcall_begin_handler()
996 …end_extension_fcall_end_handler(const zend_extension *extension, zend_op_array *op_array TSRMLS_DC) in zend_extension_fcall_end_handler()
999 extension->fcall_end_handler(op_array); in zend_extension_fcall_end_handler()
1451 …* zend_brk_cont(int nest_levels, int array_offset, const zend_op_array *op_array, const zend_execu… in zend_brk_cont() argument
1460 jmp_to = &op_array->brk_cont_array[array_offset]; in zend_brk_cont()
1462 zend_op *brk_opline = &op_array->opcodes[jmp_to->brk]; in zend_brk_cont()
1550 zval ***end = cv + EX(op_array)->last_var; in i_free_compiled_variables()
1608 …e zend_execute_data *i_create_execute_data_from_op_array(zend_op_array *op_array, zend_bool nested… in i_create_execute_data_from_op_array() argument
1624 …size_t CVs_size = ZEND_MM_ALIGNED_SIZE(sizeof(zval **) * op_array->last_var * (EG(active_symbol_ta… in i_create_execute_data_from_op_array()
1625 size_t Ts_size = ZEND_MM_ALIGNED_SIZE(sizeof(temp_variable)) * op_array->T; in i_create_execute_data_from_op_array()
1626 size_t call_slots_size = ZEND_MM_ALIGNED_SIZE(sizeof(call_slot)) * op_array->nested_calls; in i_create_execute_data_from_op_array()
1627 size_t stack_size = ZEND_MM_ALIGNED_SIZE(sizeof(zval*)) * op_array->used_stack; in i_create_execute_data_from_op_array()
1640 if (UNEXPECTED((op_array->fn_flags & ZEND_ACC_GENERATOR) != 0)) { in i_create_execute_data_from_op_array()
1656 EX(prev_execute_data)->function_state.function = (zend_function*)op_array; in i_create_execute_data_from_op_array()
1677 memset(EX_CV_NUM(execute_data, 0), 0, sizeof(zval **) * op_array->last_var); in i_create_execute_data_from_op_array()
1682 EX(op_array) = op_array; in i_create_execute_data_from_op_array()
1695 if (!op_array->run_time_cache && op_array->last_cache_slot) { in i_create_execute_data_from_op_array()
1696 op_array->run_time_cache = ecalloc(op_array->last_cache_slot, sizeof(void*)); in i_create_execute_data_from_op_array()
1699 if (op_array->this_var != -1 && EG(This)) { in i_create_execute_data_from_op_array()
1702 …EX_CV(op_array->this_var) = (zval **) EX_CV_NUM(execute_data, op_array->last_var + op_array->this_… in i_create_execute_data_from_op_array()
1703 *EX_CV(op_array->this_var) = EG(This); in i_create_execute_data_from_op_array()
1705 …f("this"), &EG(This), sizeof(zval *), (void **) EX_CV_NUM(execute_data, op_array->this_var))==FAIL… in i_create_execute_data_from_op_array()
1711 …EX(opline) = UNEXPECTED((op_array->fn_flags & ZEND_ACC_INTERACTIVE) != 0) && EG(start_op) ? EG(sta… in i_create_execute_data_from_op_array()
1714 EX(function_state).function = (zend_function *) op_array; in i_create_execute_data_from_op_array()
1721 ZEND_API zend_execute_data *zend_create_execute_data_from_op_array(zend_op_array *op_array, zend_bo… in zend_create_execute_data_from_op_array() argument
1723 return i_create_execute_data_from_op_array(op_array, nested TSRMLS_CC); in zend_create_execute_data_from_op_array()