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 <memory> | 8 #include <memory> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
(...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1017 } | 1017 } |
1018 void InvalidateArraySpeciesProtector(); | 1018 void InvalidateArraySpeciesProtector(); |
1019 void InvalidateHasInstanceProtector(); | 1019 void InvalidateHasInstanceProtector(); |
1020 void InvalidateIsConcatSpreadableProtector(); | 1020 void InvalidateIsConcatSpreadableProtector(); |
1021 void InvalidateStringLengthOverflowProtector(); | 1021 void InvalidateStringLengthOverflowProtector(); |
1022 void InvalidateArrayIteratorProtector(); | 1022 void InvalidateArrayIteratorProtector(); |
1023 | 1023 |
1024 // Returns true if array is the initial array prototype in any native context. | 1024 // Returns true if array is the initial array prototype in any native context. |
1025 bool IsAnyInitialArrayPrototype(Handle<JSArray> array); | 1025 bool IsAnyInitialArrayPrototype(Handle<JSArray> array); |
1026 | 1026 |
1027 CallInterfaceDescriptorData* call_descriptor_data(int index); | 1027 V8_EXPORT_PRIVATE CallInterfaceDescriptorData* call_descriptor_data( |
| 1028 int index); |
1028 | 1029 |
1029 AccessCompilerData* access_compiler_data() { return access_compiler_data_; } | 1030 AccessCompilerData* access_compiler_data() { return access_compiler_data_; } |
1030 | 1031 |
1031 void IterateDeferredHandles(ObjectVisitor* visitor); | 1032 void IterateDeferredHandles(ObjectVisitor* visitor); |
1032 void LinkDeferredHandles(DeferredHandles* deferred_handles); | 1033 void LinkDeferredHandles(DeferredHandles* deferred_handles); |
1033 void UnlinkDeferredHandles(DeferredHandles* deferred_handles); | 1034 void UnlinkDeferredHandles(DeferredHandles* deferred_handles); |
1034 | 1035 |
1035 #ifdef DEBUG | 1036 #ifdef DEBUG |
1036 bool IsDeferredHandle(Object** location); | 1037 bool IsDeferredHandle(Object** location); |
1037 #endif // DEBUG | 1038 #endif // DEBUG |
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1678 | 1679 |
1679 EmbeddedVector<char, 128> filename_; | 1680 EmbeddedVector<char, 128> filename_; |
1680 FILE* file_; | 1681 FILE* file_; |
1681 int scope_depth_; | 1682 int scope_depth_; |
1682 }; | 1683 }; |
1683 | 1684 |
1684 } // namespace internal | 1685 } // namespace internal |
1685 } // namespace v8 | 1686 } // namespace v8 |
1686 | 1687 |
1687 #endif // V8_ISOLATE_H_ | 1688 #endif // V8_ISOLATE_H_ |
OLD | NEW |