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

Side by Side Diff: tools/gdbinit

Issue 659363002: More details printed for Map, DescriptorArray and TransitionArray. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: gdbinit updated Created 6 years, 1 month 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 | « src/transitions-inl.h ('k') | 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
1 # Copyright 2014 the V8 project authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Print HeapObjects. 5 # Print HeapObjects.
6 define job 6 define job
7 print ((v8::internal::HeapObject*)($arg0))->Print() 7 print ((v8::internal::HeapObject*)($arg0))->Print()
8 end 8 end
9 document job 9 document job
10 Print a v8 JavaScript object 10 Print a v8 JavaScript object
11 Usage: job tagged_ptr 11 Usage: job tagged_ptr
12 end 12 end
13 13
14 # Print Code objects containing given PC. 14 # Print Code objects containing given PC.
15 define jco 15 define jco
16 job (v8::internal::Isolate::Current()->FindCodeObject((v8::internal::Address)$ar g0)) 16 job (v8::internal::Isolate::Current()->FindCodeObject((v8::internal::Address)$ar g0))
17 end 17 end
18 document jco 18 document jco
19 Print a v8 Code object from an internal code address 19 Print a v8 Code object from an internal code address
20 Usage: jco pc 20 Usage: jco pc
21 end 21 end
22 22
23 # Print DescriptorArray.
24 define jda
25 print ((v8::internal::DescriptorArray*)($arg0))->Print()
26 end
27 document jda
28 Print a v8 DescriptorArray object
29 Usage: jda tagged_ptr
30 end
31
32 # Print TransitionArray.
33 define jta
34 print ((v8::internal::TransitionArray*)($arg0))->Print()
35 end
36 document jta
37 Print a v8 TransitionArray object
38 Usage: jta tagged_ptr
39 end
40
23 # Print JavaScript stack trace. 41 # Print JavaScript stack trace.
24 define jst 42 define jst
25 print v8::internal::Isolate::Current()->PrintStack(stdout) 43 print v8::internal::Isolate::Current()->PrintStack(stdout)
26 end 44 end
27 document jst 45 document jst
28 Print the current JavaScript stack trace 46 Print the current JavaScript stack trace
29 Usage: jst 47 Usage: jst
30 end 48 end
31 49
32 set disassembly-flavor intel 50 set disassembly-flavor intel
33 set disable-randomization off 51 set disable-randomization off
OLDNEW
« no previous file with comments | « src/transitions-inl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698