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 1747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1758 random_number_generator_(NULL), | 1758 random_number_generator_(NULL), |
1759 serializer_enabled_(enable_serializer), | 1759 serializer_enabled_(enable_serializer), |
1760 has_fatal_error_(false), | 1760 has_fatal_error_(false), |
1761 initialized_from_snapshot_(false), | 1761 initialized_from_snapshot_(false), |
1762 cpu_profiler_(NULL), | 1762 cpu_profiler_(NULL), |
1763 heap_profiler_(NULL), | 1763 heap_profiler_(NULL), |
1764 function_entry_hook_(NULL), | 1764 function_entry_hook_(NULL), |
1765 deferred_handles_head_(NULL), | 1765 deferred_handles_head_(NULL), |
1766 optimizing_compile_dispatcher_(NULL), | 1766 optimizing_compile_dispatcher_(NULL), |
1767 stress_deopt_count_(0), | 1767 stress_deopt_count_(0), |
| 1768 vector_store_virtual_register_(NULL), |
1768 next_optimization_id_(0), | 1769 next_optimization_id_(0), |
1769 #if TRACE_MAPS | 1770 #if TRACE_MAPS |
1770 next_unique_sfi_id_(0), | 1771 next_unique_sfi_id_(0), |
1771 #endif | 1772 #endif |
1772 use_counter_callback_(NULL), | 1773 use_counter_callback_(NULL), |
1773 basic_block_profiler_(NULL) { | 1774 basic_block_profiler_(NULL) { |
1774 { | 1775 { |
1775 base::LockGuard<base::Mutex> lock_guard(thread_data_table_mutex_.Pointer()); | 1776 base::LockGuard<base::Mutex> lock_guard(thread_data_table_mutex_.Pointer()); |
1776 CHECK(thread_data_table_); | 1777 CHECK(thread_data_table_); |
1777 } | 1778 } |
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2822 // Then check whether this scope intercepts. | 2823 // Then check whether this scope intercepts. |
2823 if ((flag & intercept_mask_)) { | 2824 if ((flag & intercept_mask_)) { |
2824 intercepted_flags_ |= flag; | 2825 intercepted_flags_ |= flag; |
2825 return true; | 2826 return true; |
2826 } | 2827 } |
2827 return false; | 2828 return false; |
2828 } | 2829 } |
2829 | 2830 |
2830 } // namespace internal | 2831 } // namespace internal |
2831 } // namespace v8 | 2832 } // namespace v8 |
OLD | NEW |