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

Side by Side Diff: src/runtime/runtime.h

Issue 1936393002: Make array __proto__ manipulations not disturb the species protector (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix review issues Created 4 years, 7 months 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
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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/base/platform/time.h" 9 #include "src/base/platform/time.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 F(HasFixedTypedArrayElements, 1, 1) \ 894 F(HasFixedTypedArrayElements, 1, 1) \
895 F(HasFastProperties, 1, 1) \ 895 F(HasFastProperties, 1, 1) \
896 F(HasFixedUint8Elements, 1, 1) \ 896 F(HasFixedUint8Elements, 1, 1) \
897 F(HasFixedInt8Elements, 1, 1) \ 897 F(HasFixedInt8Elements, 1, 1) \
898 F(HasFixedUint16Elements, 1, 1) \ 898 F(HasFixedUint16Elements, 1, 1) \
899 F(HasFixedInt16Elements, 1, 1) \ 899 F(HasFixedInt16Elements, 1, 1) \
900 F(HasFixedUint32Elements, 1, 1) \ 900 F(HasFixedUint32Elements, 1, 1) \
901 F(HasFixedInt32Elements, 1, 1) \ 901 F(HasFixedInt32Elements, 1, 1) \
902 F(HasFixedFloat32Elements, 1, 1) \ 902 F(HasFixedFloat32Elements, 1, 1) \
903 F(HasFixedFloat64Elements, 1, 1) \ 903 F(HasFixedFloat64Elements, 1, 1) \
904 F(HasFixedUint8ClampedElements, 1, 1) 904 F(HasFixedUint8ClampedElements, 1, 1) \
905 F(SpeciesProtector, 0, 1)
905 906
906 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ 907 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
907 F(ArrayBufferGetByteLength, 1, 1) \ 908 F(ArrayBufferGetByteLength, 1, 1) \
908 F(ArrayBufferSliceImpl, 4, 1) \ 909 F(ArrayBufferSliceImpl, 4, 1) \
909 F(ArrayBufferNeuter, 1, 1) \ 910 F(ArrayBufferNeuter, 1, 1) \
910 F(TypedArrayInitialize, 6, 1) \ 911 F(TypedArrayInitialize, 6, 1) \
911 F(TypedArrayInitializeFromArrayLike, 4, 1) \ 912 F(TypedArrayInitializeFromArrayLike, 4, 1) \
912 F(ArrayBufferViewGetByteLength, 1, 1) \ 913 F(ArrayBufferViewGetByteLength, 1, 1) \
913 F(ArrayBufferViewGetByteOffset, 1, 1) \ 914 F(ArrayBufferViewGetByteOffset, 1, 1) \
914 F(TypedArrayGetLength, 1, 1) \ 915 F(TypedArrayGetLength, 1, 1) \
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1160 1161
1161 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1162 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1162 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1163 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1163 STATIC_ASSERT(LANGUAGE_END == 3); 1164 STATIC_ASSERT(LANGUAGE_END == 3);
1164 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1165 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1165 1166
1166 } // namespace internal 1167 } // namespace internal
1167 } // namespace v8 1168 } // namespace v8
1168 1169
1169 #endif // V8_RUNTIME_RUNTIME_H_ 1170 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698