| OLD | NEW | 
|---|
| 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 | 
| (...skipping 22 matching lines...) Expand all  Loading... | 
| 33 define jta | 33 define jta | 
| 34 print ((v8::internal::TransitionArray*)($arg0))->Print() | 34 print ((v8::internal::TransitionArray*)($arg0))->Print() | 
| 35 end | 35 end | 
| 36 document jta | 36 document jta | 
| 37 Print a v8 TransitionArray object | 37 Print a v8 TransitionArray object | 
| 38 Usage: jta tagged_ptr | 38 Usage: jta tagged_ptr | 
| 39 end | 39 end | 
| 40 | 40 | 
| 41 # Print JavaScript stack trace. | 41 # Print JavaScript stack trace. | 
| 42 define jst | 42 define jst | 
| 43 print v8::internal::Isolate::Current()->PrintStack((FILE*) stdout) | 43 print v8::internal::Isolate::Current()->PrintStack((FILE*) stdout, 1) | 
| 44 end | 44 end | 
| 45 document jst | 45 document jst | 
| 46 Print the current JavaScript stack trace | 46 Print the current JavaScript stack trace | 
| 47 Usage: jst | 47 Usage: jst | 
| 48 end | 48 end | 
| 49 | 49 | 
| 50 set disassembly-flavor intel | 50 set disassembly-flavor intel | 
| 51 set disable-randomization off | 51 set disable-randomization off | 
| OLD | NEW | 
|---|