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 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1871 date_cache_(NULL), | 1871 date_cache_(NULL), |
1872 call_descriptor_data_(NULL), | 1872 call_descriptor_data_(NULL), |
1873 // TODO(bmeurer) Initialized lazily because it depends on flags; can | 1873 // TODO(bmeurer) Initialized lazily because it depends on flags; can |
1874 // be fixed once the default isolate cleanup is done. | 1874 // be fixed once the default isolate cleanup is done. |
1875 random_number_generator_(NULL), | 1875 random_number_generator_(NULL), |
1876 rail_mode_(PERFORMANCE_DEFAULT), | 1876 rail_mode_(PERFORMANCE_DEFAULT), |
1877 serializer_enabled_(enable_serializer), | 1877 serializer_enabled_(enable_serializer), |
1878 has_fatal_error_(false), | 1878 has_fatal_error_(false), |
1879 initialized_from_snapshot_(false), | 1879 initialized_from_snapshot_(false), |
1880 is_tail_call_elimination_enabled_(true), | 1880 is_tail_call_elimination_enabled_(true), |
| 1881 is_profiling_(false), |
1881 cpu_profiler_(NULL), | 1882 cpu_profiler_(NULL), |
1882 heap_profiler_(NULL), | 1883 heap_profiler_(NULL), |
1883 function_entry_hook_(NULL), | 1884 function_entry_hook_(NULL), |
1884 deferred_handles_head_(NULL), | 1885 deferred_handles_head_(NULL), |
1885 optimizing_compile_dispatcher_(NULL), | 1886 optimizing_compile_dispatcher_(NULL), |
1886 stress_deopt_count_(0), | 1887 stress_deopt_count_(0), |
1887 virtual_handler_register_(NULL), | 1888 virtual_handler_register_(NULL), |
1888 virtual_slot_register_(NULL), | 1889 virtual_slot_register_(NULL), |
1889 next_optimization_id_(0), | 1890 next_optimization_id_(0), |
1890 js_calls_from_api_counter_(0), | 1891 js_calls_from_api_counter_(0), |
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3065 // Then check whether this scope intercepts. | 3066 // Then check whether this scope intercepts. |
3066 if ((flag & intercept_mask_)) { | 3067 if ((flag & intercept_mask_)) { |
3067 intercepted_flags_ |= flag; | 3068 intercepted_flags_ |= flag; |
3068 return true; | 3069 return true; |
3069 } | 3070 } |
3070 return false; | 3071 return false; |
3071 } | 3072 } |
3072 | 3073 |
3073 } // namespace internal | 3074 } // namespace internal |
3074 } // namespace v8 | 3075 } // namespace v8 |
OLD | NEW |