| 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 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1637 materialized_object_store_(NULL), | 1637 materialized_object_store_(NULL), |
| 1638 capture_stack_trace_for_uncaught_exceptions_(false), | 1638 capture_stack_trace_for_uncaught_exceptions_(false), |
| 1639 stack_trace_for_uncaught_exceptions_frame_limit_(0), | 1639 stack_trace_for_uncaught_exceptions_frame_limit_(0), |
| 1640 stack_trace_for_uncaught_exceptions_options_(StackTrace::kOverview), | 1640 stack_trace_for_uncaught_exceptions_options_(StackTrace::kOverview), |
| 1641 memory_allocator_(NULL), | 1641 memory_allocator_(NULL), |
| 1642 keyed_lookup_cache_(NULL), | 1642 keyed_lookup_cache_(NULL), |
| 1643 context_slot_cache_(NULL), | 1643 context_slot_cache_(NULL), |
| 1644 descriptor_lookup_cache_(NULL), | 1644 descriptor_lookup_cache_(NULL), |
| 1645 handle_scope_implementer_(NULL), | 1645 handle_scope_implementer_(NULL), |
| 1646 unicode_cache_(NULL), | 1646 unicode_cache_(NULL), |
| 1647 runtime_zone_(this), | |
| 1648 inner_pointer_to_code_cache_(NULL), | 1647 inner_pointer_to_code_cache_(NULL), |
| 1649 global_handles_(NULL), | 1648 global_handles_(NULL), |
| 1650 eternal_handles_(NULL), | 1649 eternal_handles_(NULL), |
| 1651 thread_manager_(NULL), | 1650 thread_manager_(NULL), |
| 1652 has_installed_extensions_(false), | 1651 has_installed_extensions_(false), |
| 1653 string_tracker_(NULL), | 1652 string_tracker_(NULL), |
| 1654 regexp_stack_(NULL), | 1653 regexp_stack_(NULL), |
| 1655 date_cache_(NULL), | 1654 date_cache_(NULL), |
| 1656 call_descriptor_data_(NULL), | 1655 call_descriptor_data_(NULL), |
| 1657 // TODO(bmeurer) Initialized lazily because it depends on flags; can | 1656 // TODO(bmeurer) Initialized lazily because it depends on flags; can |
| (...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2556 if (prev_ && prev_->Intercept(flag)) return true; | 2555 if (prev_ && prev_->Intercept(flag)) return true; |
| 2557 // Then check whether this scope intercepts. | 2556 // Then check whether this scope intercepts. |
| 2558 if ((flag & intercept_mask_)) { | 2557 if ((flag & intercept_mask_)) { |
| 2559 intercepted_flags_ |= flag; | 2558 intercepted_flags_ |= flag; |
| 2560 return true; | 2559 return true; |
| 2561 } | 2560 } |
| 2562 return false; | 2561 return false; |
| 2563 } | 2562 } |
| 2564 | 2563 |
| 2565 } } // namespace v8::internal | 2564 } } // namespace v8::internal |
| OLD | NEW |