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 1798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1809 materialized_object_store_(NULL), | 1809 materialized_object_store_(NULL), |
1810 capture_stack_trace_for_uncaught_exceptions_(false), | 1810 capture_stack_trace_for_uncaught_exceptions_(false), |
1811 stack_trace_for_uncaught_exceptions_frame_limit_(0), | 1811 stack_trace_for_uncaught_exceptions_frame_limit_(0), |
1812 stack_trace_for_uncaught_exceptions_options_(StackTrace::kOverview), | 1812 stack_trace_for_uncaught_exceptions_options_(StackTrace::kOverview), |
1813 memory_allocator_(NULL), | 1813 memory_allocator_(NULL), |
1814 keyed_lookup_cache_(NULL), | 1814 keyed_lookup_cache_(NULL), |
1815 context_slot_cache_(NULL), | 1815 context_slot_cache_(NULL), |
1816 descriptor_lookup_cache_(NULL), | 1816 descriptor_lookup_cache_(NULL), |
1817 handle_scope_implementer_(NULL), | 1817 handle_scope_implementer_(NULL), |
1818 unicode_cache_(NULL), | 1818 unicode_cache_(NULL), |
| 1819 runtime_zone_(&allocator_), |
| 1820 interface_descriptor_zone_(&allocator_), |
1819 inner_pointer_to_code_cache_(NULL), | 1821 inner_pointer_to_code_cache_(NULL), |
1820 global_handles_(NULL), | 1822 global_handles_(NULL), |
1821 eternal_handles_(NULL), | 1823 eternal_handles_(NULL), |
1822 thread_manager_(NULL), | 1824 thread_manager_(NULL), |
1823 has_installed_extensions_(false), | 1825 has_installed_extensions_(false), |
1824 regexp_stack_(NULL), | 1826 regexp_stack_(NULL), |
1825 date_cache_(NULL), | 1827 date_cache_(NULL), |
1826 call_descriptor_data_(NULL), | 1828 call_descriptor_data_(NULL), |
1827 // TODO(bmeurer) Initialized lazily because it depends on flags; can | 1829 // TODO(bmeurer) Initialized lazily because it depends on flags; can |
1828 // be fixed once the default isolate cleanup is done. | 1830 // be fixed once the default isolate cleanup is done. |
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2988 // Then check whether this scope intercepts. | 2990 // Then check whether this scope intercepts. |
2989 if ((flag & intercept_mask_)) { | 2991 if ((flag & intercept_mask_)) { |
2990 intercepted_flags_ |= flag; | 2992 intercepted_flags_ |= flag; |
2991 return true; | 2993 return true; |
2992 } | 2994 } |
2993 return false; | 2995 return false; |
2994 } | 2996 } |
2995 | 2997 |
2996 } // namespace internal | 2998 } // namespace internal |
2997 } // namespace v8 | 2999 } // namespace v8 |
OLD | NEW |