2003-04-07 04:19:52 +08:00
|
|
|
define ____executor_globals
|
2006-03-09 07:54:43 +08:00
|
|
|
if basic_functions_module.zts
|
|
|
|
set $tsrm_ls = ts_resource_ex(0, 0)
|
2012-03-11 23:12:28 +08:00
|
|
|
set $eg = ((zend_executor_globals*) (*((void ***) $tsrm_ls))[executor_globals_id-1])
|
|
|
|
set $cg = ((zend_compiler_globals*) (*((void ***) $tsrm_ls))[compiler_globals_id-1])
|
2003-04-07 04:19:52 +08:00
|
|
|
else
|
|
|
|
set $eg = executor_globals
|
2009-01-04 23:20:19 +08:00
|
|
|
set $cg = compiler_globals
|
2003-04-07 04:19:52 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
document ____executor_globals
|
2007-05-21 05:46:17 +08:00
|
|
|
portable way of accessing executor_globals, set $eg
|
2009-01-04 23:20:19 +08:00
|
|
|
this also sets compiler_globals to $cg
|
2006-03-09 07:54:43 +08:00
|
|
|
ZTS detection is automatically based on ext/standard module struct
|
2003-04-07 04:19:52 +08:00
|
|
|
end
|
|
|
|
|
2009-08-01 20:55:36 +08:00
|
|
|
define print_cvs
|
|
|
|
____executor_globals
|
|
|
|
set $p = $eg.current_execute_data.CVs
|
|
|
|
set $c = $eg.current_execute_data.op_array.last_var
|
|
|
|
set $v = $eg.current_execute_data.op_array.vars
|
|
|
|
set $i = 0
|
|
|
|
|
|
|
|
printf "Compiled variables count: %d\n", $c
|
|
|
|
while $i < $c
|
|
|
|
printf "%d = %s\n", $i, $v[$i].name
|
|
|
|
if $p[$i] != 0
|
|
|
|
printzv *$p[$i]
|
|
|
|
else
|
|
|
|
printf "*uninitialized*\n"
|
|
|
|
end
|
|
|
|
set $i = $i + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-02-14 20:04:03 +08:00
|
|
|
define dump_bt
|
2003-04-07 04:19:52 +08:00
|
|
|
set $t = $arg0
|
|
|
|
while $t
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] ", $t
|
2012-09-30 03:16:26 +08:00
|
|
|
set $fst = $t->function_state
|
|
|
|
if $fst.function->common.function_name
|
|
|
|
if $fst.arguments
|
|
|
|
set $count = (int)*($fst.arguments)
|
|
|
|
|
|
|
|
if $t->object
|
2012-09-30 23:05:03 +08:00
|
|
|
if $fst.function.common.scope
|
2012-09-30 03:16:26 +08:00
|
|
|
printf "%s->", $fst.function.common.scope->name
|
|
|
|
else
|
2012-10-01 03:10:15 +08:00
|
|
|
if !$eg && !basic_functions_module.zts
|
|
|
|
____executor_globals
|
2012-09-30 03:16:26 +08:00
|
|
|
end
|
|
|
|
|
2012-10-01 03:10:15 +08:00
|
|
|
set $known_class = 0
|
|
|
|
if $eg
|
|
|
|
set $handle = $t->object.value.obj.handle
|
|
|
|
set $handlers = $t->object.value.obj.handlers
|
|
|
|
set $zobj = (zend_object *)$eg.objects_store.object_buckets[$handle].bucket.obj.object
|
|
|
|
|
|
|
|
if $handlers->get_class_entry == &zend_std_object_get_class
|
|
|
|
set $known_class = 1
|
|
|
|
|
|
|
|
if $handlers.get_class_name
|
|
|
|
if $handlers.get_class_name != &zend_std_object_get_class_name
|
|
|
|
set $known_class = 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if $known_class
|
|
|
|
printf "%s->", $zobj->ce.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-09-30 03:16:26 +08:00
|
|
|
|
2012-10-01 03:10:15 +08:00
|
|
|
if !$known_class
|
|
|
|
printf "Unknow->"
|
2012-09-30 03:16:26 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if $fst.function.common.scope
|
|
|
|
printf "%s::", $fst.function.common.scope->name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
printf "%s(", $fst.function->common.function_name
|
2011-12-06 20:32:59 +08:00
|
|
|
while $count > 0
|
2012-09-30 03:16:26 +08:00
|
|
|
set $zvalue = *(zval **)($fst.arguments - $count)
|
2011-12-06 20:32:59 +08:00
|
|
|
set $type = $zvalue->type
|
|
|
|
if $type == 0
|
|
|
|
printf "NULL"
|
|
|
|
end
|
|
|
|
if $type == 1
|
|
|
|
printf "%ld", $zvalue->value.lval
|
|
|
|
end
|
|
|
|
if $type == 2
|
|
|
|
printf "%lf", $zvalue->value.dval
|
|
|
|
end
|
|
|
|
if $type == 3
|
|
|
|
if $zvalue->value.lval
|
|
|
|
printf "true"
|
|
|
|
else
|
|
|
|
printf "false"
|
2011-12-06 17:56:01 +08:00
|
|
|
end
|
|
|
|
end
|
2011-12-06 20:32:59 +08:00
|
|
|
if $type == 4
|
|
|
|
printf "array(%d)[%p]", $zvalue->value.ht->nNumOfElements, $zvalue
|
|
|
|
end
|
|
|
|
if $type == 5
|
|
|
|
printf "object[%p]", $zvalue
|
|
|
|
end
|
|
|
|
if $type == 6
|
|
|
|
____print_str $zvalue->value.str.val $zvalue->value.str.len
|
|
|
|
end
|
|
|
|
if $type == 7
|
|
|
|
printf "resource(#%d)", $zvalue->value.lval
|
|
|
|
end
|
2012-09-30 03:16:26 +08:00
|
|
|
if $type == 8
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "constant"
|
|
|
|
end
|
|
|
|
if $type == 9
|
|
|
|
printf "const_array"
|
|
|
|
end
|
|
|
|
if $type > 9
|
|
|
|
printf "unknown type %d", $type
|
|
|
|
end
|
|
|
|
set $count = $count -1
|
|
|
|
if $count > 0
|
|
|
|
printf ", "
|
|
|
|
end
|
2011-12-06 17:56:01 +08:00
|
|
|
end
|
2011-12-06 20:32:59 +08:00
|
|
|
printf ") "
|
2011-12-06 17:56:01 +08:00
|
|
|
else
|
2012-09-30 03:16:26 +08:00
|
|
|
printf "%s() ", $fst.function->common.function_name
|
2011-12-06 17:56:01 +08:00
|
|
|
end
|
2003-02-14 20:04:03 +08:00
|
|
|
else
|
|
|
|
printf "??? "
|
|
|
|
end
|
|
|
|
if $t->op_array != 0
|
|
|
|
printf "%s:%d ", $t->op_array->filename, $t->opline->lineno
|
|
|
|
end
|
|
|
|
set $t = $t->prev_execute_data
|
|
|
|
printf "\n"
|
2003-04-07 04:19:52 +08:00
|
|
|
end
|
2003-02-14 20:04:03 +08:00
|
|
|
end
|
2003-03-31 01:45:33 +08:00
|
|
|
|
2003-02-14 20:04:03 +08:00
|
|
|
document dump_bt
|
|
|
|
dumps the current execution stack. usage: dump_bt executor_globals.current_execute_data
|
|
|
|
end
|
2003-03-31 01:45:33 +08:00
|
|
|
|
|
|
|
define printzv
|
2003-05-02 11:12:05 +08:00
|
|
|
set $ind = 1
|
2003-03-31 01:45:33 +08:00
|
|
|
____printzv $arg0 0
|
|
|
|
end
|
|
|
|
|
|
|
|
document printzv
|
2007-05-21 05:46:17 +08:00
|
|
|
prints zval contents
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
|
|
|
|
2003-05-02 11:12:05 +08:00
|
|
|
define ____printzv_contents
|
2003-03-31 01:45:33 +08:00
|
|
|
set $zvalue = $arg0
|
2006-03-09 07:54:43 +08:00
|
|
|
set $type = $zvalue->type
|
2003-03-31 01:45:33 +08:00
|
|
|
|
2007-10-14 10:48:30 +08:00
|
|
|
printf "(refcount=%d", $zvalue->refcount__gc
|
|
|
|
if $zvalue->is_ref__gc
|
2007-05-21 05:46:17 +08:00
|
|
|
printf ",is_ref"
|
|
|
|
end
|
|
|
|
printf ") "
|
2006-03-09 07:54:43 +08:00
|
|
|
if $type == 0
|
|
|
|
printf "NULL"
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
if $type == 1
|
|
|
|
printf "long: %ld", $zvalue->value.lval
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
if $type == 2
|
|
|
|
printf "double: %lf", $zvalue->value.dval
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
if $type == 3
|
|
|
|
printf "bool: "
|
|
|
|
if $zvalue->value.lval
|
|
|
|
printf "true"
|
|
|
|
else
|
|
|
|
printf "false"
|
|
|
|
end
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
if $type == 4
|
|
|
|
printf "array(%d): ", $zvalue->value.ht->nNumOfElements
|
2003-03-31 01:45:33 +08:00
|
|
|
if ! $arg1
|
|
|
|
printf "{\n"
|
|
|
|
set $ind = $ind + 1
|
2007-05-21 05:46:17 +08:00
|
|
|
____print_ht $zvalue->value.ht 1
|
2003-03-31 01:45:33 +08:00
|
|
|
set $ind = $ind - 1
|
|
|
|
set $i = $ind
|
|
|
|
while $i > 0
|
|
|
|
printf " "
|
|
|
|
set $i = $i - 1
|
|
|
|
end
|
|
|
|
printf "}"
|
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
set $type = 0
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
if $type == 5
|
|
|
|
printf "object"
|
|
|
|
____executor_globals
|
|
|
|
set $handle = $zvalue->value.obj.handle
|
|
|
|
set $handlers = $zvalue->value.obj.handlers
|
|
|
|
if basic_functions_module.zts
|
|
|
|
set $zobj = zend_objects_get_address($zvalue, $tsrm_ls)
|
|
|
|
else
|
|
|
|
set $zobj = zend_objects_get_address($zvalue)
|
|
|
|
end
|
|
|
|
if $handlers->get_class_entry == &zend_std_object_get_class
|
|
|
|
set $cname = $zobj->ce.name
|
|
|
|
else
|
|
|
|
set $cname = "Unknown"
|
|
|
|
end
|
|
|
|
printf "(%s) #%d", $cname, $handle
|
2003-03-31 01:45:33 +08:00
|
|
|
if ! $arg1
|
2006-03-09 07:54:43 +08:00
|
|
|
if $handlers->get_properties == &zend_std_get_properties
|
|
|
|
set $ht = $zobj->properties
|
|
|
|
if $ht
|
|
|
|
printf "(%d): ", $ht->nNumOfElements
|
|
|
|
printf "{\n"
|
|
|
|
set $ind = $ind + 1
|
2007-05-21 05:46:17 +08:00
|
|
|
____print_ht $ht 1
|
2006-03-09 07:54:43 +08:00
|
|
|
set $ind = $ind - 1
|
|
|
|
set $i = $ind
|
|
|
|
while $i > 0
|
|
|
|
printf " "
|
|
|
|
set $i = $i - 1
|
|
|
|
end
|
|
|
|
printf "}"
|
|
|
|
else
|
|
|
|
echo "no properties found"
|
|
|
|
end
|
2003-04-07 04:19:52 +08:00
|
|
|
end
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
set $type = 0
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
if $type == 6
|
2006-05-05 23:14:37 +08:00
|
|
|
printf "string(%d): ", $zvalue->value.str.len
|
|
|
|
____print_str $zvalue->value.str.val $zvalue->value.str.len
|
2006-03-09 07:54:43 +08:00
|
|
|
end
|
|
|
|
if $type == 7
|
|
|
|
printf "resource: #%d", $zvalue->value.lval
|
|
|
|
end
|
|
|
|
if $type == 8
|
|
|
|
printf "constant"
|
|
|
|
end
|
|
|
|
if $type == 9
|
|
|
|
printf "const_array"
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
2006-03-09 07:54:43 +08:00
|
|
|
if $type > 9
|
|
|
|
printf "unknown type %d", $type
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
|
|
|
printf "\n"
|
|
|
|
end
|
|
|
|
|
2003-05-02 11:12:05 +08:00
|
|
|
define ____printzv
|
|
|
|
____executor_globals
|
|
|
|
set $zvalue = $arg0
|
|
|
|
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] ", $zvalue
|
2003-05-02 11:12:05 +08:00
|
|
|
|
|
|
|
if $zvalue == $eg.uninitialized_zval_ptr
|
|
|
|
printf "*uninitialized* "
|
|
|
|
end
|
|
|
|
|
2006-03-09 07:54:43 +08:00
|
|
|
set $zcontents = (zval*) $zvalue
|
2003-05-02 11:12:05 +08:00
|
|
|
if $arg1
|
|
|
|
____printzv_contents $zcontents $arg1
|
|
|
|
else
|
2003-05-05 19:39:40 +08:00
|
|
|
____printzv_contents $zcontents 0
|
2003-05-02 11:12:05 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
define ____print_const_table
|
|
|
|
set $ht = $arg0
|
|
|
|
set $p = $ht->pListHead
|
|
|
|
|
|
|
|
while $p != 0
|
2006-03-09 07:54:43 +08:00
|
|
|
set $const = (zend_constant *) $p->pData
|
2003-05-02 11:12:05 +08:00
|
|
|
|
|
|
|
set $i = $ind
|
|
|
|
while $i > 0
|
|
|
|
printf " "
|
|
|
|
set $i = $i - 1
|
|
|
|
end
|
|
|
|
|
2006-05-05 23:14:37 +08:00
|
|
|
if $p->nKeyLength > 0
|
|
|
|
____print_str $p->arKey $p->nKeyLength
|
|
|
|
printf " => "
|
2003-05-02 11:12:05 +08:00
|
|
|
else
|
|
|
|
printf "%d => ", $p->h
|
|
|
|
end
|
|
|
|
|
2006-03-09 07:54:43 +08:00
|
|
|
____printzv_contents &$const->value 0
|
2003-05-02 11:12:05 +08:00
|
|
|
set $p = $p->pListNext
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
define print_const_table
|
|
|
|
set $ind = 1
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] {\n", $arg0
|
2003-05-02 11:12:05 +08:00
|
|
|
____print_const_table $arg0
|
|
|
|
printf "}\n"
|
|
|
|
end
|
|
|
|
|
2003-03-31 01:45:33 +08:00
|
|
|
define ____print_ht
|
2007-05-21 05:46:17 +08:00
|
|
|
set $ht = (HashTable*)$arg0
|
2003-03-31 01:45:33 +08:00
|
|
|
set $p = $ht->pListHead
|
|
|
|
|
|
|
|
while $p != 0
|
|
|
|
set $i = $ind
|
|
|
|
while $i > 0
|
|
|
|
printf " "
|
|
|
|
set $i = $i - 1
|
|
|
|
end
|
|
|
|
|
2006-05-05 23:14:37 +08:00
|
|
|
if $p->nKeyLength > 0
|
|
|
|
____print_str $p->arKey $p->nKeyLength
|
|
|
|
printf " => "
|
2003-03-31 01:45:33 +08:00
|
|
|
else
|
|
|
|
printf "%d => ", $p->h
|
|
|
|
end
|
2007-05-21 05:46:17 +08:00
|
|
|
|
|
|
|
if $arg1 == 0
|
|
|
|
printf "%p\n", (void*)$p->pData
|
|
|
|
end
|
|
|
|
if $arg1 == 1
|
|
|
|
set $zval = *(zval **)$p->pData
|
|
|
|
____printzv $zval 1
|
|
|
|
end
|
|
|
|
if $arg1 == 2
|
|
|
|
printf "%s\n", (char*)$p->pData
|
|
|
|
end
|
2003-03-31 01:45:33 +08:00
|
|
|
|
|
|
|
set $p = $p->pListNext
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
define print_ht
|
|
|
|
set $ind = 1
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] {\n", $arg0
|
2007-05-21 05:46:17 +08:00
|
|
|
____print_ht $arg0 1
|
2003-03-31 01:45:33 +08:00
|
|
|
printf "}\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
document print_ht
|
|
|
|
dumps elements of HashTable made of zval
|
|
|
|
end
|
|
|
|
|
2007-05-21 05:46:17 +08:00
|
|
|
define print_htptr
|
|
|
|
set $ind = 1
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] {\n", $arg0
|
2007-05-21 05:46:17 +08:00
|
|
|
____print_ht $arg0 0
|
|
|
|
printf "}\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
document print_htptr
|
|
|
|
dumps elements of HashTable made of pointers
|
|
|
|
end
|
|
|
|
|
|
|
|
define print_htstr
|
|
|
|
set $ind = 1
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] {\n", $arg0
|
2007-05-21 05:46:17 +08:00
|
|
|
____print_ht $arg0 2
|
|
|
|
printf "}\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
document print_htstr
|
|
|
|
dumps elements of HashTable made of strings
|
|
|
|
end
|
|
|
|
|
2006-03-09 07:54:43 +08:00
|
|
|
define ____print_ft
|
|
|
|
set $ht = $arg0
|
|
|
|
set $p = $ht->pListHead
|
|
|
|
|
|
|
|
while $p != 0
|
|
|
|
set $func = (zend_function*)$p->pData
|
|
|
|
|
|
|
|
set $i = $ind
|
|
|
|
while $i > 0
|
|
|
|
printf " "
|
|
|
|
set $i = $i - 1
|
|
|
|
end
|
|
|
|
|
2006-05-05 23:14:37 +08:00
|
|
|
if $p->nKeyLength > 0
|
|
|
|
____print_str $p->arKey $p->nKeyLength
|
|
|
|
printf " => "
|
2006-03-09 07:54:43 +08:00
|
|
|
else
|
|
|
|
printf "%d => ", $p->h
|
|
|
|
end
|
|
|
|
|
|
|
|
printf "\"%s\"\n", $func->common.function_name
|
|
|
|
set $p = $p->pListNext
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
define print_ft
|
|
|
|
set $ind = 1
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] {\n", $arg0
|
2006-03-09 07:54:43 +08:00
|
|
|
____print_ft $arg0
|
|
|
|
printf "}\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
document print_ft
|
|
|
|
dumps a function table (HashTable)
|
|
|
|
end
|
|
|
|
|
2006-05-05 23:49:41 +08:00
|
|
|
define ____print_inh_class
|
|
|
|
set $ce = $arg0
|
|
|
|
if $ce->ce_flags & 0x10 || $ce->ce_flags & 0x20
|
|
|
|
printf "abstract "
|
|
|
|
else
|
|
|
|
if $ce->ce_flags & 0x40
|
|
|
|
printf "final "
|
|
|
|
end
|
|
|
|
end
|
|
|
|
printf "class %s", $ce->name
|
|
|
|
if $ce->parent != 0
|
|
|
|
printf " extends %s", $ce->parent->name
|
|
|
|
end
|
|
|
|
if $ce->num_interfaces != 0
|
|
|
|
printf " implements"
|
|
|
|
set $tmp = 0
|
|
|
|
while $tmp < $ce->num_interfaces
|
|
|
|
printf " %s", $ce->interfaces[$tmp]->name
|
|
|
|
set $tmp = $tmp + 1
|
|
|
|
if $tmp < $ce->num_interfaces
|
|
|
|
printf ","
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
set $ce = $ce->parent
|
|
|
|
end
|
|
|
|
|
|
|
|
define ____print_inh_iface
|
|
|
|
set $ce = $arg0
|
|
|
|
printf "interface %s", $ce->name
|
|
|
|
if $ce->num_interfaces != 0
|
|
|
|
set $ce = $ce->interfaces[0]
|
|
|
|
printf " extends %s", $ce->name
|
|
|
|
else
|
|
|
|
set $ce = 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-05-05 23:14:37 +08:00
|
|
|
define print_inh
|
|
|
|
set $ce = $arg0
|
|
|
|
set $depth = 0
|
|
|
|
while $ce != 0
|
|
|
|
set $tmp = $depth
|
|
|
|
while $tmp != 0
|
|
|
|
printf " "
|
|
|
|
set $tmp = $tmp - 1
|
|
|
|
end
|
2006-05-05 23:49:41 +08:00
|
|
|
set $depth = $depth + 1
|
|
|
|
if $ce->ce_flags & 0x80
|
|
|
|
____print_inh_iface $ce
|
|
|
|
else
|
|
|
|
____print_inh_class $ce
|
2006-05-05 23:14:37 +08:00
|
|
|
end
|
|
|
|
printf " {\n"
|
|
|
|
end
|
|
|
|
while $depth != 0
|
|
|
|
set $tmp = $depth
|
|
|
|
while $tmp != 1
|
|
|
|
printf " "
|
|
|
|
set $tmp = $tmp - 1
|
|
|
|
end
|
|
|
|
printf "}\n"
|
|
|
|
set $depth = $depth - 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
define print_pi
|
|
|
|
set $pi = $arg0
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] {\n", $pi
|
2006-05-05 23:14:37 +08:00
|
|
|
printf " h = %lu\n", $pi->h
|
|
|
|
printf " flags = %d (", $pi->flags
|
|
|
|
if $pi->flags & 0x100
|
|
|
|
printf "ZEND_ACC_PUBLIC"
|
|
|
|
else
|
|
|
|
if $pi->flags & 0x200
|
|
|
|
printf "ZEND_ACC_PROTECTED"
|
|
|
|
else
|
|
|
|
if $pi->flags & 0x400
|
|
|
|
printf "ZEND_ACC_PRIVATE"
|
|
|
|
else
|
|
|
|
if $pi->flags & 0x800
|
|
|
|
printf "ZEND_ACC_CHANGED"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
printf ")\n"
|
|
|
|
printf " name = "
|
|
|
|
____print_str $pi->name $pi->name_length
|
|
|
|
printf "\n}\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
define ____print_str
|
|
|
|
set $tmp = 0
|
|
|
|
set $str = $arg0
|
|
|
|
printf "\""
|
|
|
|
while $tmp < $arg1
|
|
|
|
if $str[$tmp] > 32 && $str[$tmp] < 127
|
|
|
|
printf "%c", $str[$tmp]
|
|
|
|
else
|
|
|
|
printf "\\%o", $str[$tmp]
|
|
|
|
end
|
|
|
|
set $tmp = $tmp + 1
|
|
|
|
end
|
|
|
|
printf "\""
|
|
|
|
end
|
|
|
|
|
2003-03-31 01:45:33 +08:00
|
|
|
define printzn
|
2003-04-07 04:19:52 +08:00
|
|
|
____executor_globals
|
2003-03-31 01:45:33 +08:00
|
|
|
set $ind = 0
|
|
|
|
set $znode = $arg0
|
|
|
|
if $znode->op_type == 1
|
|
|
|
set $optype = "IS_CONST"
|
|
|
|
end
|
|
|
|
if $znode->op_type == 2
|
|
|
|
set $optype = "IS_TMP_VAR"
|
|
|
|
end
|
|
|
|
if $znode->op_type == 4
|
|
|
|
set $optype = "IS_VAR"
|
|
|
|
end
|
|
|
|
if $znode->op_type == 8
|
|
|
|
set $optype = "IS_UNUSED"
|
|
|
|
end
|
|
|
|
|
2011-12-06 20:32:59 +08:00
|
|
|
printf "[%p] %s", $znode, $optype
|
2003-03-31 01:45:33 +08:00
|
|
|
|
|
|
|
if $znode->op_type == 1
|
|
|
|
printf ": "
|
2003-05-05 19:43:50 +08:00
|
|
|
____printzv &$znode->u.constant 0
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
|
|
|
if $znode->op_type == 2
|
|
|
|
printf ": "
|
2003-04-07 04:19:52 +08:00
|
|
|
set $tvar = (union _temp_variable *)((char *)$eg.current_execute_data->Ts + $znode->u.var)
|
2003-05-05 19:43:50 +08:00
|
|
|
____printzv ((union _temp_variable *)$tvar)->tmp_var 0
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
|
|
|
if $znode->op_type == 4
|
|
|
|
printf ": "
|
2003-04-07 04:19:52 +08:00
|
|
|
set $tvar = (union _temp_variable *)((char *)$eg.current_execute_data->Ts + $znode->u.var)
|
2003-05-05 19:43:50 +08:00
|
|
|
____printzv *$tvar->var.ptr_ptr 0
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|
|
|
|
if $znode->op_type == 8
|
|
|
|
printf "\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
document printzn
|
2003-04-07 02:12:16 +08:00
|
|
|
print type and content of znode.
|
|
|
|
usage: printzn &opline->op1
|
2003-04-07 01:53:17 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
define printzops
|
|
|
|
printf "op1 => "
|
|
|
|
printzn &execute_data->opline.op1
|
|
|
|
printf "op2 => "
|
|
|
|
printzn &execute_data->opline.op2
|
|
|
|
printf "result => "
|
|
|
|
printzn &execute_data->opline.result
|
|
|
|
end
|
|
|
|
|
|
|
|
document printzops
|
|
|
|
dump operands of the current opline
|
|
|
|
end
|
|
|
|
|
2004-02-17 04:20:55 +08:00
|
|
|
define zbacktrace
|
|
|
|
____executor_globals
|
|
|
|
dump_bt $eg.current_execute_data
|
|
|
|
end
|
|
|
|
|
|
|
|
document zbacktrace
|
|
|
|
prints backtrace.
|
|
|
|
This command is almost a short cut for
|
|
|
|
> (gdb) ____executor_globals
|
|
|
|
> (gdb) dump_bt $eg.current_execute_data
|
|
|
|
end
|
|
|
|
|
2003-04-07 01:53:17 +08:00
|
|
|
define zmemcheck
|
|
|
|
set $p = alloc_globals.head
|
|
|
|
set $stat = "?"
|
2003-04-07 02:40:19 +08:00
|
|
|
set $total_size = 0
|
2003-04-07 01:53:17 +08:00
|
|
|
if $arg0 != 0
|
|
|
|
set $not_found = 1
|
|
|
|
else
|
|
|
|
set $not_found = 0
|
|
|
|
end
|
2003-04-07 02:40:19 +08:00
|
|
|
printf " block size status file:line\n"
|
2003-04-07 01:53:17 +08:00
|
|
|
printf "-------------------------------------------------------------------------------\n"
|
|
|
|
while $p
|
|
|
|
set $aptr = $p + sizeof(struct _zend_mem_header) + sizeof(align_test)
|
|
|
|
if $arg0 == 0 || (void *)$aptr == (void *)$arg0
|
|
|
|
if $p->magic == 0x7312f8dc
|
|
|
|
set $stat = "OK"
|
|
|
|
end
|
|
|
|
if $p->magic == 0x99954317
|
|
|
|
set $stat = "FREED"
|
|
|
|
end
|
|
|
|
if $p->magic == 0xfb8277dc
|
|
|
|
set $stat = "CACHED"
|
|
|
|
end
|
2003-04-07 02:12:16 +08:00
|
|
|
set $filename = strrchr($p->filename, '/')
|
|
|
|
if !$filename
|
|
|
|
set $filename = $p->filename
|
|
|
|
else
|
|
|
|
set $filename = $filename + 1
|
|
|
|
end
|
2011-12-06 20:32:59 +08:00
|
|
|
printf " %p ", $aptr
|
2003-04-07 02:40:19 +08:00
|
|
|
if $p->size == sizeof(struct _zval_struct) && ((struct _zval_struct *)$aptr)->type >= 0 && ((struct _zval_struct *)$aptr)->type < 10
|
|
|
|
printf "ZVAL?(%-2d) ", $p->size
|
|
|
|
else
|
|
|
|
printf "%-9d ", $p->size
|
|
|
|
end
|
|
|
|
set $total_size = $total_size + $p->size
|
|
|
|
printf "%-06s %s:%d", $stat, $filename, $p->lineno
|
2003-04-07 01:53:17 +08:00
|
|
|
if $p->orig_filename
|
2003-04-07 02:12:16 +08:00
|
|
|
set $orig_filename = strrchr($p->orig_filename, '/')
|
|
|
|
if !$orig_filename
|
|
|
|
set $orig_filename = $p->orig_filename
|
|
|
|
else
|
|
|
|
set $orig_filename = $orig_filename + 1
|
|
|
|
end
|
|
|
|
printf " <= %s:%d\n", $orig_filename, $p->orig_lineno
|
|
|
|
else
|
|
|
|
printf "\n"
|
2003-04-07 01:53:17 +08:00
|
|
|
end
|
|
|
|
if $arg0 != 0
|
|
|
|
set $p = 0
|
|
|
|
set $not_found = 0
|
|
|
|
else
|
|
|
|
set $p = $p->pNext
|
|
|
|
end
|
|
|
|
else
|
|
|
|
set $p = $p->pNext
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if $not_found
|
2012-09-30 03:16:26 +08:00
|
|
|
printf "no such block that begins at %p.\n", $aptr
|
2003-04-07 01:53:17 +08:00
|
|
|
end
|
2003-04-07 02:40:19 +08:00
|
|
|
if $arg0 == 0
|
|
|
|
printf "-------------------------------------------------------------------------------\n"
|
|
|
|
printf " total: %d bytes\n", $total_size
|
|
|
|
end
|
2003-04-07 01:53:17 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
document zmemcheck
|
2003-04-07 02:12:16 +08:00
|
|
|
show status of a memory block.
|
|
|
|
usage: zmemcheck [ptr].
|
|
|
|
if ptr is 0, all blocks will be listed.
|
2003-03-31 01:45:33 +08:00
|
|
|
end
|