summaryrefslogtreecommitdiffstats
path: root/tools/gdb
Commit message (Collapse)AuthorAgeFilesLines
* Add FilePath to the gdb pretty printers.tony@chromium.org2011-03-041-5/+17
| | | | | | Review URL: http://codereview.chromium.org/6621017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76956 0039d316-1c4b-4281-b951-d872f2087c98
* gdb: print GURLs as stringsevan@chromium.org2011-03-041-1/+7
| | | | | | | | | | | | | | | | | | | | This makes a struct with a GURL in it display as a single line in gdb, e.g.: $1 = { x_ = 123, url_ = "file:///foo/bar" } As always, you can print the full GURL with all of the components using the "p/r" command: (gdb) p/r obj->url_ $1 = { (parsed field offsets dump out here for 20 lines) } Review URL: http://codereview.chromium.org/6627015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76942 0039d316-1c4b-4281-b951-d872f2087c98
* gdb: check in a gdb module for printing string16evan@chromium.org2011-03-031-0/+31
| | | | | | | | This just reuses the string-printing code from the WebKit module. Review URL: http://codereview.chromium.org/6596118 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76680 0039d316-1c4b-4281-b951-d872f2087c98
* Delete obsolete gdb scripts. These have been moved to WebKit.evan@chromium.org2010-10-211-171/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63444 0039d316-1c4b-4281-b951-d872f2087c98
* Improved debugging python GDB helpers.evan@chromium.org2010-02-171-1/+76
| | | | | | | | | | | | | | | | Added printing for WebCore::QualifiedName. Added a new command that will print the path from a WebCore::Node to the root. The command is really only half-baked, but hopefully will provide a good starting point for other new commands. (And it did help me track down an SVG bug.) BUG=none TEST=none Patch from Bryan Yeung <bryeung@chromium.org>. Review URL: http://codereview.chromium.org/598051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39215 0039d316-1c4b-4281-b951-d872f2087c98
* linux: add a gdb pretty-print module for WebCore typesevan@chromium.org2010-01-141-0/+96
Now I can see e.g. Indic scripts in my string literals while debugging. Review URL: http://codereview.chromium.org/548019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36288 0039d316-1c4b-4281-b951-d872f2087c98