Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: tools/gdbinit

Issue 375503009: Add gdbinit to tools/ directory. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: add copyright header Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 the V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
Michael Starzinger 2014/07/07 16:14:30 nit: I have this comment in my file, maybe it's he
Jakob Kummerow 2014/07/07 16:21:19 Done.
5 define job
6 print ((v8::internal::HeapObject*)($arg0))->Print()
7 end
8 document job
9 Print a v8 JavaScript object
10 Usage: job tagged_ptr
11 end
12
Michael Starzinger 2014/07/07 16:14:30 # Additional V8 command: Print code object contain
Jakob Kummerow 2014/07/07 16:21:19 Done.
13 define jco
14 job (v8::internal::Isolate::Current()->FindCodeObject((v8::internal::Address)$ar g0))
15 end
16 document jco
17 Print a v8 Code object from an internal code address
18 Usage: jco pc
19 end
20
Michael Starzinger 2014/07/07 16:14:29 # Additional V8 command: Print stack trace.
Jakob Kummerow 2014/07/07 16:21:18 Done.
21 define jst
22 print v8::internal::Isolate::Current()->PrintStack(stdout)
23 end
24 document jst
25 Print the current JavaScript stack trace
26 Usage: jst
27 end
Michael Starzinger 2014/07/07 16:14:30 nit: Maybe add an empty newline to separate the la
Jakob Kummerow 2014/07/07 16:21:18 Done.
28 set disassembly-flavor intel
29 set disable-randomization off
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698