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

Side by Side Diff: tools/gdbinit

Issue 2537523002: [printing] Print properties backing store value and add a gdb macro for printing LayoutDescriptors. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « src/objects-printer.cc ('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 call _v8_internal_Print_Object((void*)($arg0)) 7 call _v8_internal_Print_Object((void*)($arg0))
8 end 8 end
9 document job 9 document job
10 Print a v8 JavaScript object 10 Print a v8 JavaScript object
(...skipping 20 matching lines...) Expand all
31 31
32 # Print DescriptorArray. 32 # Print DescriptorArray.
33 define jda 33 define jda
34 call _v8_internal_Print_DescriptorArray((void*)($arg0)) 34 call _v8_internal_Print_DescriptorArray((void*)($arg0))
35 end 35 end
36 document jda 36 document jda
37 Print a v8 DescriptorArray object 37 Print a v8 DescriptorArray object
38 Usage: jda tagged_ptr 38 Usage: jda tagged_ptr
39 end 39 end
40 40
41 # Print LayoutDescriptor.
42 define jld
43 call _v8_internal_Print_LayoutDescriptor((void*)($arg0))
44 end
45 document jld
46 Print a v8 LayoutDescriptor object
47 Usage: jld tagged_ptr
48 end
49
41 # Print TransitionArray. 50 # Print TransitionArray.
42 define jta 51 define jta
43 call _v8_internal_Print_TransitionArray((void*)($arg0)) 52 call _v8_internal_Print_TransitionArray((void*)($arg0))
44 end 53 end
45 document jta 54 document jta
46 Print a v8 TransitionArray object 55 Print a v8 TransitionArray object
47 Usage: jta tagged_ptr 56 Usage: jta tagged_ptr
48 end 57 end
49 58
50 # Print JavaScript stack trace. 59 # Print JavaScript stack trace.
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 print("%s -> %s %s (%s)\033[0m" % (color, prefix, match.group(2), match.grou p(1))) 99 print("%s -> %s %s (%s)\033[0m" % (color, prefix, match.group(2), match.grou p(1)))
91 end 100 end
92 end 101 end
93 document bta 102 document bta
94 Print stack trace with assertion scopes 103 Print stack trace with assertion scopes
95 Usage: bta 104 Usage: bta
96 end 105 end
97 106
98 set disassembly-flavor intel 107 set disassembly-flavor intel
99 set disable-randomization off 108 set disable-randomization off
OLDNEW
« no previous file with comments | « src/objects-printer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698