Lines Matching refs:cur

263 		phpdbg_oplog_list *cur = PHPDBG_G(oplog_list);  in PHP_RSHUTDOWN_FUNCTION()  local
265 phpdbg_oplog_list *prev = cur->prev; in PHP_RSHUTDOWN_FUNCTION()
266 efree(cur); in PHP_RSHUTDOWN_FUNCTION()
267 cur = prev; in PHP_RSHUTDOWN_FUNCTION()
268 } while (cur != NULL); in PHP_RSHUTDOWN_FUNCTION()
467 zend_op *cur = op_array->opcodes + op_array->num_args + !!(op_array->fn_flags & ZEND_ACC_VARIADIC); in phpdbg_oplog_fill_executable() local
481 for (; cur < end; cur++) { in phpdbg_oplog_fill_executable()
482 zend_uchar opcode = cur->opcode; in phpdbg_oplog_fill_executable()
488 insert_idx = cur - op_array->opcodes; in phpdbg_oplog_fill_executable()
490 insert_idx = cur->lineno; in phpdbg_oplog_fill_executable()
493 if (opcode == ZEND_NEW && cur[1].opcode == ZEND_DO_FCALL) { in phpdbg_oplog_fill_executable()
494 cur++; in phpdbg_oplog_fill_executable()
612 phpdbg_oplog_entry *cur; in PHP_FUNCTION() local
629 cur = PHPDBG_G(oplog_list)->start; in PHP_FUNCTION()
660 if (cur->filename != last_file) { in PHP_FUNCTION()
661 last_file = cur->filename; in PHP_FUNCTION()
666 if (cur->function_name == NULL) { in PHP_FUNCTION()
671 } else if (cur->function_name != last_function || cur->scope != last_scope) { in PHP_FUNCTION()
673 last_function = cur->function_name; in PHP_FUNCTION()
674 last_scope = cur->scope; in PHP_FUNCTION()
686 insert_idx = cur->op - cur->opcodes; in PHP_FUNCTION()
688 if (phpdbg_is_ignored_opcode(cur->op->opcode)) { in PHP_FUNCTION()
692 insert_idx = cur->op->lineno; in PHP_FUNCTION()
703 } while ((cur = cur->next)); in PHP_FUNCTION()