summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorMitch Hagstrand <mhagstrand@gmail.com>2017-01-11 20:57:33 -0800
committerJoe Watkins <krakjoe@php.net>2017-01-12 09:10:12 +0000
commit1ee1f79e27fb4006d0400b38163b2ec0786fd130 (patch)
tree48f981050e503b1205720d59a2bd76be8020025e /.gdbinit
parentef42f49470c2d5a4c11aa67ebd78e43666555c53 (diff)
downloadphp-git-1ee1f79e27fb4006d0400b38163b2ec0786fd130.tar.gz
Fixed bug #72680 gdbinit print_cvs not prepared for PHP 7
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit41
1 files changed, 26 insertions, 15 deletions
diff --git a/.gdbinit b/.gdbinit
index 9b042794cc..09faf936da 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -29,24 +29,35 @@ document ____executor_globals
end
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
+ if $argc == 0
+ ____executor_globals
+ set $cv_ex_ptr = $eg.current_execute_data
+ else
+ set $cv_ex_ptr = (zend_execute_data *)$arg0
+ end
+ set $cv_count = $cv_ex_ptr.func.op_array.last_var
+ set $cv = $cv_ex_ptr.func.op_array.vars
+ set $cv_idx = 0
+ set $callFrameSize = (sizeof(zend_execute_data) + sizeof(zval) - 1) / sizeof(zval)
- 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
+ printf "Compiled variables count: %d\n\n", $cv_count
+ while $cv_idx < $cv_count
+ printf "[%d] '%s'\n", $cv_idx, $cv[$cv_idx].val
+ set $zvalue = ((zval *) $cv_ex_ptr) + $callFrameSize + $cv_idx
+ printzv $zvalue
+ set $cv_idx = $cv_idx + 1
end
end
+document print_cvs
+ Prints the compiled variables and their values.
+ If a zend_execute_data pointer is set this will print the compiled
+ variables of that scope. If no parameter is used it will use
+ current_execute_data for scope.
+
+ usage: print_cvs [zend_execute_data *]
+end
+
define dump_bt
set $ex = $arg0
while $ex
@@ -563,7 +574,7 @@ end
document print_zstr
print the length and contents of a zend string
- usage: print_zstr [ptr]
+ usage: print_zstr <ptr>
end
define zbacktrace