| 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 "EXIT", | 315 "EXIT", |
| 316 "JAVA_SCRIPT", | 316 "JAVA_SCRIPT", |
| 317 "OPTIMIZED", | 317 "OPTIMIZED", |
| 318 "WASM_COMPILED", | 318 "WASM_COMPILED", |
| 319 "WASM_TO_JS", | 319 "WASM_TO_JS", |
| 320 "JS_TO_WASM", | 320 "JS_TO_WASM", |
| 321 "WASM_INTERPRETER_ENTRY", | 321 "WASM_INTERPRETER_ENTRY", |
| 322 "INTERPRETED", | 322 "INTERPRETED", |
| 323 "STUB", | 323 "STUB", |
| 324 "STUB_FAILURE_TRAMPOLINE", | 324 "STUB_FAILURE_TRAMPOLINE", |
| 325 "BUILTIN_CONTINUATION", |
| 326 "JAVA_SCRIPT_BUILTIN_CONTINUATION", |
| 325 "INTERNAL", | 327 "INTERNAL", |
| 326 "CONSTRUCT", | 328 "CONSTRUCT", |
| 327 "ARGUMENTS_ADAPTOR", | 329 "ARGUMENTS_ADAPTOR", |
| 328 "BUILTIN", | 330 "BUILTIN", |
| 329 "BUILTIN_EXIT", | 331 "BUILTIN_EXIT", |
| 330 ) | 332 ) |
| 331 | 333 |
| 332 # This set of constants is generated from a shipping build. | 334 # This set of constants is generated from a shipping build. |
| OLD | NEW |