| OLD | NEW |
| 1 # Copyright 2017 the V8 project authors. All rights reserved. | 1 # Copyright 2017 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can | 2 # Use of this source code is governed by a BSD-style license that can |
| 3 # be found in the LICENSE file. | 3 # be found in the LICENSE file. |
| 4 | 4 |
| 5 # This file is automatically generated by mkgrokdump and should not | 5 # This file is automatically generated by mkgrokdump and should not |
| 6 # be modified manually. | 6 # be modified manually. |
| 7 | 7 |
| 8 # List of known V8 instance types. | 8 # List of known V8 instance types. |
| 9 INSTANCE_TYPES = { | 9 INSTANCE_TYPES = { |
| 10 0: "INTERNALIZED_STRING_TYPE", | 10 0: "INTERNALIZED_STRING_TYPE", |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 "EXIT", | 313 "EXIT", |
| 314 "JAVA_SCRIPT", | 314 "JAVA_SCRIPT", |
| 315 "OPTIMIZED", | 315 "OPTIMIZED", |
| 316 "WASM_COMPILED", | 316 "WASM_COMPILED", |
| 317 "WASM_TO_JS", | 317 "WASM_TO_JS", |
| 318 "JS_TO_WASM", | 318 "JS_TO_WASM", |
| 319 "WASM_INTERPRETER_ENTRY", | 319 "WASM_INTERPRETER_ENTRY", |
| 320 "INTERPRETED", | 320 "INTERPRETED", |
| 321 "STUB", | 321 "STUB", |
| 322 "STUB_FAILURE_TRAMPOLINE", | 322 "STUB_FAILURE_TRAMPOLINE", |
| 323 "BUILTIN_CONTINUATION", |
| 323 "INTERNAL", | 324 "INTERNAL", |
| 324 "CONSTRUCT", | 325 "CONSTRUCT", |
| 325 "ARGUMENTS_ADAPTOR", | 326 "ARGUMENTS_ADAPTOR", |
| 326 "BUILTIN", | 327 "BUILTIN", |
| 327 "BUILTIN_EXIT", | 328 "BUILTIN_EXIT", |
| 328 ) | 329 ) |
| 329 | 330 |
| 330 # This set of constants is generated from a shipping build. | 331 # This set of constants is generated from a shipping build. |
| OLD | NEW |