Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(494)

Side by Side Diff: src/isolate.h

Issue 2502293002: Reland of [refactoring] Split CodeAssemblerState out of CodeAssembler (Closed)
Patch Set: fix Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/interpreter/interpreter-assembler.cc ('k') | test/cctest/compiler/code-assembler-tester.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/interpreter/interpreter-assembler.cc ('k') | test/cctest/compiler/code-assembler-tester.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698