Lines Matching refs:opline

660 	const zend_op *opline = op_array->opcodes;  in phpdbg_skip_line_helper()  local
665 if (opline->lineno != ex->opline->lineno in phpdbg_skip_line_helper()
666 || opline->opcode == ZEND_RETURN in phpdbg_skip_line_helper()
667 || opline->opcode == ZEND_FAST_RET in phpdbg_skip_line_helper()
668 || opline->opcode == ZEND_GENERATOR_RETURN in phpdbg_skip_line_helper()
669 || opline->opcode == ZEND_EXIT in phpdbg_skip_line_helper()
670 || opline->opcode == ZEND_YIELD in phpdbg_skip_line_helper()
671 || opline->opcode == ZEND_YIELD_FROM in phpdbg_skip_line_helper()
673 zend_hash_index_update_ptr(&PHPDBG_G(seek), (zend_ulong) opline, (void *) opline); in phpdbg_skip_line_helper()
675 } while (++opline < op_array->opcodes + op_array->last); in phpdbg_skip_line_helper()
705 const zend_op *opline = op_array->opcodes; in phpdbg_seek_to_end() local
709 switch (opline->opcode) { in phpdbg_seek_to_end()
716 zend_hash_index_update_ptr(&PHPDBG_G(seek), (zend_ulong) opline, (void *) opline); in phpdbg_seek_to_end()
718 } while (++opline < op_array->opcodes + op_array->last); in phpdbg_seek_to_end()
730 …exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execute_data))->opline)) { in PHPDBG_COMMAND()
747 …exists(&PHPDBG_G(seek), (zend_ulong) phpdbg_user_execute_data(EG(current_execute_data))->opline)) { in PHPDBG_COMMAND()
1696 backup_opline = EG(current_execute_data)->opline; \
1718 EG(current_execute_data)->opline = backup_opline; \
1811 zend_ulong address = (zend_ulong) execute_data->opline; in phpdbg_execute_ex()
1860 …BG_IS_STEPPING && (PHPDBG_G(flags) & PHPDBG_STEP_OPCODE || execute_data->opline->lineno != PHPDBG_… in phpdbg_execute_ex()
1879 … && (brake->type != PHPDBG_BREAK_FILE || execute_data->opline->lineno != PHPDBG_G(last_line))) { in phpdbg_execute_ex()
1895 PHPDBG_G(last_line) = execute_data->opline->lineno; in phpdbg_execute_ex()
1898 if ((execute_data->opline->opcode == ZEND_DO_FCALL || in phpdbg_execute_ex()
1899 execute_data->opline->opcode == ZEND_DO_UCALL || in phpdbg_execute_ex()
1900 execute_data->opline->opcode == ZEND_DO_FCALL_BY_NAME) && in phpdbg_execute_ex()
1929 …s:%u", data->opline, (data->opline - data->func->op_array.opcodes) / sizeof(data->opline), data->f… in phpdbg_force_interruption()
1936 …nterrupt", "opline=\"%p\"", "Current opline: %p (op_array information unavailable)", data->opline); in phpdbg_force_interruption()