xref: /PHP-8.0/sapi/phpdbg/phpdbg_break.c (revision 5d6e923d)
1 /*
2    +----------------------------------------------------------------------+
3    | Copyright (c) The PHP Group                                          |
4    +----------------------------------------------------------------------+
5    | This source file is subject to version 3.01 of the PHP license,      |
6    | that is bundled with this package in the file LICENSE, and is        |
7    | available through the world-wide-web at the following url:           |
8    | http://www.php.net/license/3_01.txt                                  |
9    | If you did not receive a copy of the PHP license and are unable to   |
10    | obtain it through the world-wide-web, please send a note to          |
11    | license@php.net so we can mail you a copy immediately.               |
12    +----------------------------------------------------------------------+
13    | Authors: Felipe Pena <felipe@php.net>                                |
14    | Authors: Joe Watkins <joe.watkins@live.co.uk>                        |
15    | Authors: Bob Weinand <bwoebi@php.net>                                |
16    +----------------------------------------------------------------------+
17 */
18 
19 #include "phpdbg.h"
20 #include "phpdbg_print.h"
21 #include "phpdbg_utils.h"
22 #include "phpdbg_opcode.h"
23 #include "phpdbg_break.h"
24 #include "phpdbg_bp.h"
25 #include "phpdbg_prompt.h"
26 
27 ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
28 
29 #define PHPDBG_BREAK_COMMAND_D(f, h, a, m, l, s, flags) \
30 	PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[9], flags)
31 
32 /**
33  * Commands
34  */
35 const phpdbg_command_t phpdbg_break_commands[] = {
36 	PHPDBG_BREAK_COMMAND_D(at,         "specify breakpoint by location and condition",           '@', break_at,      NULL, "*c", 0),
37 	PHPDBG_BREAK_COMMAND_D(del,        "delete breakpoint by identifier number",                 '~', break_del,     NULL, "n",  0),
38 	PHPDBG_END_COMMAND
39 };
40 
PHPDBG_BREAK(at)41 PHPDBG_BREAK(at) /* {{{ */
42 {
43 	phpdbg_set_breakpoint_at(param);
44 
45 	return SUCCESS;
46 } /* }}} */
47 
PHPDBG_BREAK(del)48 PHPDBG_BREAK(del) /* {{{ */
49 {
50 	phpdbg_delete_breakpoint(param->num);
51 
52 	return SUCCESS;
53 } /* }}} */
54