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

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

Issue 1611313003: Revert of Array length reduction should throw in strict mode if it can't delete an element. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « src/ppc/code-stubs-ppc.cc ('k') | src/x64/code-stubs-x64.cc » ('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_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/objects.h" 9 #include "src/objects.h"
10 #include "src/unicode.h" 10 #include "src/unicode.h"
(...skipping 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 F(KeyedLoadIC_Miss, 4, 1) \ 1023 F(KeyedLoadIC_Miss, 4, 1) \
1024 F(KeyedLoadIC_MissFromStubFailure, 4, 1) \ 1024 F(KeyedLoadIC_MissFromStubFailure, 4, 1) \
1025 F(KeyedStoreIC_Miss, 5, 1) \ 1025 F(KeyedStoreIC_Miss, 5, 1) \
1026 F(KeyedStoreIC_MissFromStubFailure, 5, 1) \ 1026 F(KeyedStoreIC_MissFromStubFailure, 5, 1) \
1027 F(KeyedStoreIC_Slow, 5, 1) \ 1027 F(KeyedStoreIC_Slow, 5, 1) \
1028 F(LoadElementWithInterceptor, 2, 1) \ 1028 F(LoadElementWithInterceptor, 2, 1) \
1029 F(LoadIC_Miss, 4, 1) \ 1029 F(LoadIC_Miss, 4, 1) \
1030 F(LoadIC_MissFromStubFailure, 4, 1) \ 1030 F(LoadIC_MissFromStubFailure, 4, 1) \
1031 F(LoadPropertyWithInterceptor, 3, 1) \ 1031 F(LoadPropertyWithInterceptor, 3, 1) \
1032 F(LoadPropertyWithInterceptorOnly, 3, 1) \ 1032 F(LoadPropertyWithInterceptorOnly, 3, 1) \
1033 F(StoreCallbackProperty, 6, 1) \ 1033 F(StoreCallbackProperty, 5, 1) \
1034 F(StoreIC_Miss, 5, 1) \ 1034 F(StoreIC_Miss, 5, 1) \
1035 F(StoreIC_MissFromStubFailure, 5, 1) \ 1035 F(StoreIC_MissFromStubFailure, 5, 1) \
1036 F(StoreIC_Slow, 5, 1) \ 1036 F(StoreIC_Slow, 5, 1) \
1037 F(StorePropertyWithInterceptor, 3, 1) \ 1037 F(StorePropertyWithInterceptor, 3, 1) \
1038 F(ToBooleanIC_Miss, 1, 1) \ 1038 F(ToBooleanIC_Miss, 1, 1) \
1039 F(Unreachable, 0, 1) 1039 F(Unreachable, 0, 1)
1040 1040
1041 1041
1042 #define FOR_EACH_INTRINSIC_RETURN_OBJECT(F) \ 1042 #define FOR_EACH_INTRINSIC_RETURN_OBJECT(F) \
1043 FOR_EACH_INTRINSIC_IC(F) \ 1043 FOR_EACH_INTRINSIC_IC(F) \
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1224 1224
1225 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1225 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1226 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1226 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1227 STATIC_ASSERT(LANGUAGE_END == 3); 1227 STATIC_ASSERT(LANGUAGE_END == 3);
1228 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1228 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1229 1229
1230 } // namespace internal 1230 } // namespace internal
1231 } // namespace v8 1231 } // namespace v8
1232 1232
1233 #endif // V8_RUNTIME_RUNTIME_H_ 1233 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/ppc/code-stubs-ppc.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698