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 <stdlib.h> | 5 #include <stdlib.h> |
6 | 6 |
7 #include <fstream> // NOLINT(readability/streams) | 7 #include <fstream> // NOLINT(readability/streams) |
8 #include <sstream> | 8 #include <sstream> |
9 | 9 |
10 #include "src/v8.h" | 10 #include "src/v8.h" |
(...skipping 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1650 eternal_handles_(NULL), | 1650 eternal_handles_(NULL), |
1651 thread_manager_(NULL), | 1651 thread_manager_(NULL), |
1652 has_installed_extensions_(false), | 1652 has_installed_extensions_(false), |
1653 string_tracker_(NULL), | 1653 string_tracker_(NULL), |
1654 regexp_stack_(NULL), | 1654 regexp_stack_(NULL), |
1655 date_cache_(NULL), | 1655 date_cache_(NULL), |
1656 call_descriptor_data_(NULL), | 1656 call_descriptor_data_(NULL), |
1657 // TODO(bmeurer) Initialized lazily because it depends on flags; can | 1657 // TODO(bmeurer) Initialized lazily because it depends on flags; can |
1658 // be fixed once the default isolate cleanup is done. | 1658 // be fixed once the default isolate cleanup is done. |
1659 random_number_generator_(NULL), | 1659 random_number_generator_(NULL), |
| 1660 store_buffer_hash_set_1_address_(NULL), |
| 1661 store_buffer_hash_set_2_address_(NULL), |
1660 serializer_enabled_(enable_serializer), | 1662 serializer_enabled_(enable_serializer), |
1661 has_fatal_error_(false), | 1663 has_fatal_error_(false), |
1662 initialized_from_snapshot_(false), | 1664 initialized_from_snapshot_(false), |
1663 cpu_profiler_(NULL), | 1665 cpu_profiler_(NULL), |
1664 heap_profiler_(NULL), | 1666 heap_profiler_(NULL), |
1665 function_entry_hook_(NULL), | 1667 function_entry_hook_(NULL), |
1666 deferred_handles_head_(NULL), | 1668 deferred_handles_head_(NULL), |
1667 optimizing_compiler_thread_(NULL), | 1669 optimizing_compiler_thread_(NULL), |
1668 stress_deopt_count_(0), | 1670 stress_deopt_count_(0), |
1669 next_optimization_id_(0), | 1671 next_optimization_id_(0), |
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2567 if (prev_ && prev_->Intercept(flag)) return true; | 2569 if (prev_ && prev_->Intercept(flag)) return true; |
2568 // Then check whether this scope intercepts. | 2570 // Then check whether this scope intercepts. |
2569 if ((flag & intercept_mask_)) { | 2571 if ((flag & intercept_mask_)) { |
2570 intercepted_flags_ |= flag; | 2572 intercepted_flags_ |= flag; |
2571 return true; | 2573 return true; |
2572 } | 2574 } |
2573 return false; | 2575 return false; |
2574 } | 2576 } |
2575 | 2577 |
2576 } } // namespace v8::internal | 2578 } } // namespace v8::internal |
OLD | NEW |