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 2674593003: [TypeFeedbackVector] Root feedback vectors at function literal site. (Closed)
Patch Set: REBASE+liveedit fix. Created 3 years, 10 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
« no previous file with comments | « test/unittests/interpreter/interpreter-assembler-unittest.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 TypeFeedbackVector 32 # Print TypeFeedbackVector
33 define jfv 33 define jfv
34 call _v8_internal_Print_TypeFeedbackVector((void*)($arg0)) 34 call _v8_internal_Print_TypeFeedbackVector((void*)($arg0))
35 end 35 end
36 document jfv 36 document jfv
37 Print a v8 TypeFeedbackVector object 37 Print a v8 TypeFeedbackVector object
38 Usage: jtv tagged_ptr 38 Usage: jtv tagged_ptr
39 end 39 end
40 40
41 # Print TypeFeedbackMetadata
42 define jfm
43 call _v8_internal_Print_TypeFeedbackMetadata((void*)($arg0))
44 end
45 document jfm
46 Print a v8 TypeFeedbackMetadata object
47 Usage: jtm tagged_ptr
48 end
49
50
41 # Print DescriptorArray. 51 # Print DescriptorArray.
42 define jda 52 define jda
43 call _v8_internal_Print_DescriptorArray((void*)($arg0)) 53 call _v8_internal_Print_DescriptorArray((void*)($arg0))
44 end 54 end
45 document jda 55 document jda
46 Print a v8 DescriptorArray object 56 Print a v8 DescriptorArray object
47 Usage: jda tagged_ptr 57 Usage: jda tagged_ptr
48 end 58 end
49 59
50 # Print LayoutDescriptor. 60 # Print LayoutDescriptor.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 print("%s -> %s %s (%s)\033[0m" % (color, prefix, match.group(2), match.grou p(1))) 118 print("%s -> %s %s (%s)\033[0m" % (color, prefix, match.group(2), match.grou p(1)))
109 end 119 end
110 end 120 end
111 document bta 121 document bta
112 Print stack trace with assertion scopes 122 Print stack trace with assertion scopes
113 Usage: bta 123 Usage: bta
114 end 124 end
115 125
116 set disassembly-flavor intel 126 set disassembly-flavor intel
117 set disable-randomization off 127 set disable-randomization off
OLDNEW
« no previous file with comments | « test/unittests/interpreter/interpreter-assembler-unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698