| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #ifndef V8_ISOLATE_H_ | 5 #ifndef V8_ISOLATE_H_ |
| 6 #define V8_ISOLATE_H_ | 6 #define V8_ISOLATE_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 /* Part of the state of liveedit. */ \ | 371 /* Part of the state of liveedit. */ \ |
| 372 V(FunctionInfoListener*, active_function_info_listener, NULL) \ | 372 V(FunctionInfoListener*, active_function_info_listener, NULL) \ |
| 373 /* State for Relocatable. */ \ | 373 /* State for Relocatable. */ \ |
| 374 V(Relocatable*, relocatable_top, NULL) \ | 374 V(Relocatable*, relocatable_top, NULL) \ |
| 375 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \ | 375 V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \ |
| 376 V(Object*, string_stream_current_security_token, NULL) \ | 376 V(Object*, string_stream_current_security_token, NULL) \ |
| 377 V(ExternalReferenceTable*, external_reference_table, NULL) \ | 377 V(ExternalReferenceTable*, external_reference_table, NULL) \ |
| 378 V(HashMap*, external_reference_map, NULL) \ | 378 V(HashMap*, external_reference_map, NULL) \ |
| 379 V(HashMap*, root_index_map, NULL) \ | 379 V(HashMap*, root_index_map, NULL) \ |
| 380 V(int, pending_microtask_count, 0) \ | 380 V(int, pending_microtask_count, 0) \ |
| 381 V(bool, autorun_microtasks, true) \ |
| 381 V(HStatistics*, hstatistics, NULL) \ | 382 V(HStatistics*, hstatistics, NULL) \ |
| 382 V(CompilationStatistics*, turbo_statistics, NULL) \ | 383 V(CompilationStatistics*, turbo_statistics, NULL) \ |
| 383 V(HTracer*, htracer, NULL) \ | 384 V(HTracer*, htracer, NULL) \ |
| 384 V(CodeTracer*, code_tracer, NULL) \ | 385 V(CodeTracer*, code_tracer, NULL) \ |
| 385 V(bool, fp_stubs_generated, false) \ | 386 V(bool, fp_stubs_generated, false) \ |
| 386 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ | 387 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ |
| 387 V(PromiseRejectCallback, promise_reject_callback, NULL) \ | 388 V(PromiseRejectCallback, promise_reject_callback, NULL) \ |
| 388 V(const v8::StartupData*, snapshot_blob, NULL) \ | 389 V(const v8::StartupData*, snapshot_blob, NULL) \ |
| 389 ISOLATE_INIT_SIMULATOR_LIST(V) | 390 ISOLATE_INIT_SIMULATOR_LIST(V) |
| 390 | 391 |
| (...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1573 | 1574 |
| 1574 EmbeddedVector<char, 128> filename_; | 1575 EmbeddedVector<char, 128> filename_; |
| 1575 FILE* file_; | 1576 FILE* file_; |
| 1576 int scope_depth_; | 1577 int scope_depth_; |
| 1577 }; | 1578 }; |
| 1578 | 1579 |
| 1579 } // namespace internal | 1580 } // namespace internal |
| 1580 } // namespace v8 | 1581 } // namespace v8 |
| 1581 | 1582 |
| 1582 #endif // V8_ISOLATE_H_ | 1583 #endif // V8_ISOLATE_H_ |
| OLD | NEW |