Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed incomplete initialization. | Dmitry Stogov | 2015-11-08 | 1 | -2/+2 |
| | |||||
* | Prevent memcmp() result truncation | Bob Weinand | 2015-10-23 | 1 | -3/+3 |
| | | | | This fixes reported issues with sapi/phpdbg/tests/watch_001.phpt | ||||
* | Fix parse errors in -rr mode | Bob Weinand | 2015-10-02 | 1 | -1/+3 |
| | |||||
* | Ensure proper set_exception_handler() handling with exit() inside it | Bob Weinand | 2015-10-02 | 1 | -3/+11 |
| | |||||
* | Fixed bug #70614 (incorrect exit code in -rr mode with Exceptions) | Bob Weinand | 2015-10-02 | 3 | -4/+7 |
| | |||||
* | Do not display memory leaks on fatal | Bob Weinand | 2015-10-02 | 1 | -3/+7 |
| | |||||
* | Do not include zend_verify_return_type in executable ops (phpdbg) | Bob Weinand | 2015-10-02 | 1 | -4/+4 |
| | |||||
* | Fix/improve zpp usage | Nikita Popov | 2015-10-02 | 1 | -6/+6 |
| | | | | | | The ext/interbase changes are done blindly, fingers crossed. Some of these are bug fixes, some make zpp usage more idiomatic. | ||||
* | fix phpdbg's -h switch | Anatol Belski | 2015-09-27 | 1 | -0/+4 |
| | | | | | The help functionality needs a correct stdout fd, so pre setup it for the only case. | ||||
* | Fixed bug #70531 (-rr should not fallback to interactive mode in phpdbg) | Bob Weinand | 2015-09-23 | 4 | -8/+19 |
| | |||||
* | Fixed bug #70532 (respect set_exception_handler in phpdbg) | Bob Weinand | 2015-09-23 | 2 | -2/+4 |
| | |||||
* | Always properly show exit status in phpdbg | Bob Weinand | 2015-09-19 | 1 | -1/+6 |
| | | | | Especially when it is only set after main run (e.g. register_shutdown_function) | ||||
* | Fix oplog... | Bob Weinand | 2015-09-19 | 3 | -4/+5 |
| | |||||
* | Apply same fixes for until | Bob Weinand | 2015-09-19 | 1 | -18/+14 |
| | |||||
* | Fix leave and finish | Bob Weinand | 2015-09-19 | 2 | -8/+58 |
| | |||||
* | Add eventual escaping for phpdbg arguments | Bob Weinand | 2015-09-18 | 3 | -630/+979 |
| | |||||
* | Add # delimiter to phpdbg commands | Bob Weinand | 2015-09-17 | 9 | -832/+986 |
| | |||||
* | Change array sorting implementation to avoid two level callbacks system. | Dmitry Stogov | 2015-09-10 | 1 | -6/+4 |
| | | | | Simplify zval comparion API. | ||||
* | Fixed bug #70449 (PHP won't compile on 10.4 and 10.5 because of missing ↵ | Bob Weinand | 2015-09-07 | 1 | -0/+5 |
| | | | | constants) | ||||
* | fix zend signal and tsrm compatzend-signal-zts | Joe Watkins | 2015-09-01 | 1 | -0/+4 |
| | |||||
* | Fix valgrind warning upon displaying lines from eval()ed code in phpdbg | Bob Weinand | 2015-08-31 | 1 | -0/+1 |
| | |||||
* | Respect exit status for -rr option with phpdbg | Bob Weinand | 2015-08-30 | 1 | -1/+4 |
| | |||||
* | Fixed printing | Xinchen Hui | 2015-08-27 | 4 | -8/+8 |
| | |||||
* | Fix zend_vm_call_opcode_handler (e.g. Generators throwing exceptions) with ↵ | Bob Weinand | 2015-08-26 | 1 | -0/+24 |
| | | | | IP/FP registers | ||||
* | fix build, use exported symbol | Anatol Belski | 2015-08-25 | 1 | -1/+1 |
| | |||||
* | Fix oplog with eval()ed code | Bob Weinand | 2015-08-24 | 2 | -0/+50 |
| | |||||
* | Fix phpdbg_break_next() and add test | Bob Weinand | 2015-08-23 | 3 | -3/+39 |
| | |||||
* | Fix issues with phpdbg SIGINT handler | Bob Weinand | 2015-08-21 | 5 | -26/+38 |
| | | | | Also fix valgrind warnings in allocator when not using mmap()ed memory | ||||
* | Remove assumption that extensions are in ext/ext-name | Bob Weinand | 2015-08-21 | 1 | -8/+5 |
| | | | | Fixes also a weird ln (symlink) hack for phpdbg | ||||
* | Get rid of implicit type casting in GC_*() macros in Zend/zend_types.h. | Dmitry Stogov | 2015-08-13 | 1 | -4/+4 |
| | | | | | | This prevented compilation warnings and disclosed few incorrect usages in Zend/zend_vm_def.h and ext/dom/xpath.c. Now explicit type casting may be required on call site. This may break some C extension code, but it shoulfn't be a problem to add explicit casting. | ||||
* | Fix valgrind false positives with watchpoints | Bob Weinand | 2015-08-12 | 1 | -16/+38 |
| | |||||
* | Fix [valid] valgrind warnings, add first watchpoints test | Bob Weinand | 2015-07-15 | 2 | -10/+61 |
| | |||||
* | Reimplemented ability to get debug info (C source file and line number) in ↵ | Dmitry Stogov | 2015-08-11 | 2 | -49/+16 |
| | | | | phpdbg without hacks and ABI breaks. | ||||
* | Fixed bug #70214 (FASYNC possibly not defined) | Bob Weinand | 2015-08-08 | 1 | -6/+11 |
| | |||||
* | Fix further leaks | Bob Weinand | 2015-08-04 | 4 | -7/+33 |
| | |||||
* | Fix valgrind errors in phpdbg | Bob Weinand | 2015-08-04 | 8 | -484/+541 |
| | | | | | | | Revert "We cannot safely assume that all op array will be refcount 0 after execution" This reverts commit b6936adb58288a0606ed847802d9226cddb41e2b. This change turns out to not have been a clever idea and was causing more weirdness than it helped... | ||||
* | Fix last invalid read | Bob Weinand | 2015-08-03 | 1 | -2/+2 |
| | | | | Also revert debugging run-tests.php changes... | ||||
* | Fix a few valgrind errors in phpdbg | Bob Weinand | 2015-08-03 | 3 | -767/+671 |
| | |||||
* | Fix breaking on HANDLE_EXCEPTION (opline_before_exception) | Bob Weinand | 2015-08-03 | 2 | -1/+58 |
| | |||||
* | Fixed tests (system dependent numbers are replaced with %d) | Dmitry Stogov | 2015-08-03 | 2 | -6/+6 |
| | |||||
* | fix inconsistent dll linkage | Anatol Belski | 2015-08-02 | 1 | -0/+5 |
| | |||||
* | Skip shebang line if present | Bob Weinand | 2015-08-01 | 1 | -1/+23 |
| | |||||
* | Optimize btree/find_closest a bit | Bob Weinand | 2015-08-01 | 1 | -26/+29 |
| | |||||
* | Fix tests | Bob Weinand | 2015-07-31 | 5 | -9/+11 |
| | |||||
* | Remove debug instructions (...) | Bob Weinand | 2015-07-31 | 2 | -3/+0 |
| | |||||
* | Do not mark automatic return 1; as executable | Bob Weinand | 2015-07-31 | 1 | -1/+3 |
| | |||||
* | Fix oplog trace with already freed closures | Bob Weinand | 2015-07-31 | 4 | -10/+19 |
| | |||||
* | Fix test execution result with opcache | Bob Weinand | 2015-07-28 | 1 | -2/+2 |
| | |||||
* | Fix phpdbg stepping on CATCH with exception | Bob Weinand | 2015-07-28 | 2 | -2/+77 |
| | |||||
* | Fix: A buf == NULL on filehandle will segfault | Bob Weinand | 2015-07-27 | 1 | -3/+2 |
| |