| 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 #ifndef V8_ISOLATE_H_ | 5 #ifndef V8_ISOLATE_H_ |
| 6 #define V8_ISOLATE_H_ | 6 #define V8_ISOLATE_H_ |
| 7 | 7 |
| 8 #include "include/v8-debug.h" | 8 #include "include/v8-debug.h" |
| 9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
| 10 #include "src/assert-scope.h" | 10 #include "src/assert-scope.h" |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1027 if (date_cache != date_cache_) { | 1027 if (date_cache != date_cache_) { |
| 1028 delete date_cache_; | 1028 delete date_cache_; |
| 1029 } | 1029 } |
| 1030 date_cache_ = date_cache; | 1030 date_cache_ = date_cache; |
| 1031 } | 1031 } |
| 1032 | 1032 |
| 1033 Map* get_initial_js_array_map(ElementsKind kind); | 1033 Map* get_initial_js_array_map(ElementsKind kind); |
| 1034 | 1034 |
| 1035 bool IsFastArrayConstructorPrototypeChainIntact(); | 1035 bool IsFastArrayConstructorPrototypeChainIntact(); |
| 1036 | 1036 |
| 1037 CodeStubInterfaceDescriptor* | |
| 1038 code_stub_interface_descriptor(int index); | |
| 1039 | |
| 1040 CallInterfaceDescriptorData* call_descriptor_data(int index); | 1037 CallInterfaceDescriptorData* call_descriptor_data(int index); |
| 1041 | 1038 |
| 1042 void IterateDeferredHandles(ObjectVisitor* visitor); | 1039 void IterateDeferredHandles(ObjectVisitor* visitor); |
| 1043 void LinkDeferredHandles(DeferredHandles* deferred_handles); | 1040 void LinkDeferredHandles(DeferredHandles* deferred_handles); |
| 1044 void UnlinkDeferredHandles(DeferredHandles* deferred_handles); | 1041 void UnlinkDeferredHandles(DeferredHandles* deferred_handles); |
| 1045 | 1042 |
| 1046 #ifdef DEBUG | 1043 #ifdef DEBUG |
| 1047 bool IsDeferredHandle(Object** location); | 1044 bool IsDeferredHandle(Object** location); |
| 1048 #endif // DEBUG | 1045 #endif // DEBUG |
| 1049 | 1046 |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1557 } | 1554 } |
| 1558 | 1555 |
| 1559 EmbeddedVector<char, 128> filename_; | 1556 EmbeddedVector<char, 128> filename_; |
| 1560 FILE* file_; | 1557 FILE* file_; |
| 1561 int scope_depth_; | 1558 int scope_depth_; |
| 1562 }; | 1559 }; |
| 1563 | 1560 |
| 1564 } } // namespace v8::internal | 1561 } } // namespace v8::internal |
| 1565 | 1562 |
| 1566 #endif // V8_ISOLATE_H_ | 1563 #endif // V8_ISOLATE_H_ |
| OLD | NEW |