forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdebug_private.c
94 lines (80 loc) · 2.52 KB
/
xdebug_private.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2011 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.0 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://xdebug.derickrethans.nl/license.php |
| If you did not receive a copy of the Xdebug license and are unable |
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Derick Rethans <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "php_xdebug.h"
#include "xdebug_private.h"
ZEND_EXTERN_MODULE_GLOBALS(xdebug)
function_stack_entry *xdebug_get_stack_head(TSRMLS_D)
{
xdebug_llist_element *le;
if (XG(stack)) {
if ((le = XDEBUG_LLIST_HEAD(XG(stack)))) {
return XDEBUG_LLIST_VALP(le);
} else {
return NULL;
}
} else {
return NULL;
}
}
function_stack_entry *xdebug_get_stack_frame(int nr TSRMLS_DC)
{
xdebug_llist_element *le;
if (!XG(stack)) {
return NULL;
}
if (!(le = XDEBUG_LLIST_TAIL(XG(stack)))) {
return NULL;
}
while (nr) {
nr--;
le = XDEBUG_LLIST_PREV(le);
if (!le) {
return NULL;
}
}
return XDEBUG_LLIST_VALP(le);
}
function_stack_entry *xdebug_get_stack_tail(TSRMLS_D)
{
xdebug_llist_element *le;
if (XG(stack)) {
if ((le = XDEBUG_LLIST_TAIL(XG(stack)))) {
return XDEBUG_LLIST_VALP(le);
} else {
return NULL;
}
} else {
return NULL;
}
}
static void xdebug_used_var_hash_from_llist_dtor(void *data)
{
/* We are not freeing anything as the list creating didn't copy the data */
}
xdebug_hash* xdebug_used_var_hash_from_llist(xdebug_llist *list)
{
xdebug_hash *tmp;
xdebug_llist_element *le;
char *var_name;
tmp = xdebug_hash_alloc(32, xdebug_used_var_hash_from_llist_dtor);
for (le = XDEBUG_LLIST_HEAD(list); le != NULL; le = XDEBUG_LLIST_NEXT(le)) {
var_name = (char*) XDEBUG_LLIST_VALP(le);
xdebug_hash_add(tmp, var_name, strlen(var_name), var_name);
}
return tmp;
}