Lines Matching refs:cur

274 		phpdbg_oplog_list *cur = PHPDBG_G(oplog_list);  in PHP_MSHUTDOWN_FUNCTION()  local
276 phpdbg_oplog_list *prev = cur->prev; in PHP_MSHUTDOWN_FUNCTION()
277 efree(cur); in PHP_MSHUTDOWN_FUNCTION()
278 cur = prev; in PHP_MSHUTDOWN_FUNCTION()
279 } while (cur != NULL); in PHP_MSHUTDOWN_FUNCTION()
498 zend_op *cur = op_array->opcodes + op_array->num_args + !!(op_array->fn_flags & ZEND_ACC_VARIADIC); in phpdbg_oplog_fill_executable() local
512 for (; cur < end; cur++) { in phpdbg_oplog_fill_executable()
513 zend_uchar opcode = cur->opcode; in phpdbg_oplog_fill_executable()
519 insert_idx = cur - op_array->opcodes; in phpdbg_oplog_fill_executable()
521 insert_idx = cur->lineno; in phpdbg_oplog_fill_executable()
524 if (opcode == ZEND_NEW && cur[1].opcode == ZEND_DO_FCALL) { in phpdbg_oplog_fill_executable()
525 cur++; in phpdbg_oplog_fill_executable()
643 phpdbg_oplog_entry *cur; in PHP_FUNCTION() local
660 cur = PHPDBG_G(oplog_list)->start; in PHP_FUNCTION()
691 if (cur->filename != last_file) { in PHP_FUNCTION()
692 last_file = cur->filename; in PHP_FUNCTION()
697 if (cur->function_name == NULL) { in PHP_FUNCTION()
702 } else if (cur->function_name != last_function || cur->scope != last_scope) { in PHP_FUNCTION()
704 last_function = cur->function_name; in PHP_FUNCTION()
705 last_scope = cur->scope; in PHP_FUNCTION()
717 insert_idx = cur->op - cur->opcodes; in PHP_FUNCTION()
719 if (phpdbg_is_ignored_opcode(cur->op->opcode)) { in PHP_FUNCTION()
723 insert_idx = cur->op->lineno; in PHP_FUNCTION()
734 } while ((cur = cur->next)); in PHP_FUNCTION()