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 #include "src/isolate.h" | 5 #include "src/isolate.h" |
6 | 6 |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include <fstream> // NOLINT(readability/streams) | 9 #include <fstream> // NOLINT(readability/streams) |
10 #include <sstream> | 10 #include <sstream> |
(...skipping 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1771 random_number_generator_(NULL), | 1771 random_number_generator_(NULL), |
1772 serializer_enabled_(enable_serializer), | 1772 serializer_enabled_(enable_serializer), |
1773 has_fatal_error_(false), | 1773 has_fatal_error_(false), |
1774 initialized_from_snapshot_(false), | 1774 initialized_from_snapshot_(false), |
1775 cpu_profiler_(NULL), | 1775 cpu_profiler_(NULL), |
1776 heap_profiler_(NULL), | 1776 heap_profiler_(NULL), |
1777 function_entry_hook_(NULL), | 1777 function_entry_hook_(NULL), |
1778 deferred_handles_head_(NULL), | 1778 deferred_handles_head_(NULL), |
1779 optimizing_compile_dispatcher_(NULL), | 1779 optimizing_compile_dispatcher_(NULL), |
1780 stress_deopt_count_(0), | 1780 stress_deopt_count_(0), |
1781 vector_store_virtual_register_(NULL), | 1781 virtual_handler_register_(NULL), |
| 1782 virtual_slot_register_(NULL), |
1782 next_optimization_id_(0), | 1783 next_optimization_id_(0), |
1783 #if TRACE_MAPS | 1784 #if TRACE_MAPS |
1784 next_unique_sfi_id_(0), | 1785 next_unique_sfi_id_(0), |
1785 #endif | 1786 #endif |
1786 use_counter_callback_(NULL), | 1787 use_counter_callback_(NULL), |
1787 basic_block_profiler_(NULL), | 1788 basic_block_profiler_(NULL), |
1788 abort_on_uncaught_exception_callback_(NULL) { | 1789 abort_on_uncaught_exception_callback_(NULL) { |
1789 { | 1790 { |
1790 base::LockGuard<base::Mutex> lock_guard(thread_data_table_mutex_.Pointer()); | 1791 base::LockGuard<base::Mutex> lock_guard(thread_data_table_mutex_.Pointer()); |
1791 CHECK(thread_data_table_); | 1792 CHECK(thread_data_table_); |
(...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2837 // Then check whether this scope intercepts. | 2838 // Then check whether this scope intercepts. |
2838 if ((flag & intercept_mask_)) { | 2839 if ((flag & intercept_mask_)) { |
2839 intercepted_flags_ |= flag; | 2840 intercepted_flags_ |= flag; |
2840 return true; | 2841 return true; |
2841 } | 2842 } |
2842 return false; | 2843 return false; |
2843 } | 2844 } |
2844 | 2845 |
2845 } // namespace internal | 2846 } // namespace internal |
2846 } // namespace v8 | 2847 } // namespace v8 |
OLD | NEW |