Lines Matching refs:cur

202 		phpdbg_oplog_list *cur = PHPDBG_G(oplog_list);  in PHP_MSHUTDOWN_FUNCTION()  local
204 phpdbg_oplog_list *prev = cur->prev; in PHP_MSHUTDOWN_FUNCTION()
205 efree(cur); in PHP_MSHUTDOWN_FUNCTION()
206 cur = prev; in PHP_MSHUTDOWN_FUNCTION()
207 } while (cur != NULL); in PHP_MSHUTDOWN_FUNCTION()
443 zend_op *cur = op_array->opcodes + op_array->num_args + !!(op_array->fn_flags & ZEND_ACC_VARIADIC); in phpdbg_oplog_fill_executable() local
457 for (; cur < end; cur++) { in phpdbg_oplog_fill_executable()
458 zend_uchar opcode = cur->opcode; in phpdbg_oplog_fill_executable()
464 insert_idx = cur - op_array->opcodes; in phpdbg_oplog_fill_executable()
466 insert_idx = cur->lineno; in phpdbg_oplog_fill_executable()
469 if (opcode == ZEND_NEW && cur[1].opcode == ZEND_DO_FCALL) { in phpdbg_oplog_fill_executable()
470 cur++; in phpdbg_oplog_fill_executable()
588 phpdbg_oplog_entry *cur; in PHP_FUNCTION() local
605 cur = PHPDBG_G(oplog_list)->start.next; in PHP_FUNCTION()
636 if (cur->filename != last_file) { in PHP_FUNCTION()
637 last_file = cur->filename; in PHP_FUNCTION()
642 if (cur->function_name == NULL) { in PHP_FUNCTION()
647 } else if (cur->function_name != last_function || cur->scope != last_scope) { in PHP_FUNCTION()
649 last_function = cur->function_name; in PHP_FUNCTION()
650 last_scope = cur->scope; in PHP_FUNCTION()
662 insert_idx = cur->op - cur->opcodes; in PHP_FUNCTION()
664 if (phpdbg_is_ignored_opcode(cur->op->opcode)) { in PHP_FUNCTION()
668 insert_idx = cur->op->lineno; in PHP_FUNCTION()
680 } while ((cur = cur->next)); in PHP_FUNCTION()