Lines Matching refs:cur

251 		phpdbg_oplog_list *cur = PHPDBG_G(oplog_list);  in PHP_MSHUTDOWN_FUNCTION()  local
253 phpdbg_oplog_list *prev = cur->prev; in PHP_MSHUTDOWN_FUNCTION()
254 efree(cur); in PHP_MSHUTDOWN_FUNCTION()
255 cur = prev; in PHP_MSHUTDOWN_FUNCTION()
256 } while (cur != NULL); in PHP_MSHUTDOWN_FUNCTION()
473 zend_op *cur = op_array->opcodes + op_array->num_args + !!(op_array->fn_flags & ZEND_ACC_VARIADIC); in phpdbg_oplog_fill_executable() local
487 for (; cur < end; cur++) { in phpdbg_oplog_fill_executable()
488 zend_uchar opcode = cur->opcode; in phpdbg_oplog_fill_executable()
494 insert_idx = cur - op_array->opcodes; in phpdbg_oplog_fill_executable()
496 insert_idx = cur->lineno; in phpdbg_oplog_fill_executable()
499 if (opcode == ZEND_NEW && cur[1].opcode == ZEND_DO_FCALL) { in phpdbg_oplog_fill_executable()
500 cur++; in phpdbg_oplog_fill_executable()
618 phpdbg_oplog_entry *cur; in PHP_FUNCTION() local
635 cur = PHPDBG_G(oplog_list)->start.next; in PHP_FUNCTION()
666 if (cur->filename != last_file) { in PHP_FUNCTION()
667 last_file = cur->filename; in PHP_FUNCTION()
672 if (cur->function_name == NULL) { in PHP_FUNCTION()
677 } else if (cur->function_name != last_function || cur->scope != last_scope) { in PHP_FUNCTION()
679 last_function = cur->function_name; in PHP_FUNCTION()
680 last_scope = cur->scope; in PHP_FUNCTION()
692 insert_idx = cur->op - cur->opcodes; in PHP_FUNCTION()
694 if (phpdbg_is_ignored_opcode(cur->op->opcode)) { in PHP_FUNCTION()
698 insert_idx = cur->op->lineno; in PHP_FUNCTION()
710 } while ((cur = cur->next)); in PHP_FUNCTION()