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_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 <memory> | 8 #include <memory> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
937 F(BinaryOpIC_Miss, 2, 1) \ | 937 F(BinaryOpIC_Miss, 2, 1) \ |
938 F(BinaryOpIC_MissWithAllocationSite, 3, 1) \ | 938 F(BinaryOpIC_MissWithAllocationSite, 3, 1) \ |
939 F(CallIC_Miss, 3, 1) \ | 939 F(CallIC_Miss, 3, 1) \ |
940 F(CompareIC_Miss, 3, 1) \ | 940 F(CompareIC_Miss, 3, 1) \ |
941 F(ElementsTransitionAndStoreIC_Miss, 6, 1) \ | 941 F(ElementsTransitionAndStoreIC_Miss, 6, 1) \ |
942 F(KeyedLoadIC_Miss, 4, 1) \ | 942 F(KeyedLoadIC_Miss, 4, 1) \ |
943 F(KeyedLoadIC_MissFromStubFailure, 4, 1) \ | 943 F(KeyedLoadIC_MissFromStubFailure, 4, 1) \ |
944 F(KeyedStoreIC_Miss, 5, 1) \ | 944 F(KeyedStoreIC_Miss, 5, 1) \ |
945 F(KeyedStoreIC_Slow, 5, 1) \ | 945 F(KeyedStoreIC_Slow, 5, 1) \ |
946 F(LoadElementWithInterceptor, 2, 1) \ | 946 F(LoadElementWithInterceptor, 2, 1) \ |
947 F(LoadGlobalIC_Miss, 2, 1) \ | 947 F(LoadGlobalIC_Miss, 3, 1) \ |
948 F(LoadGlobalIC_Slow, 2, 1) \ | 948 F(LoadGlobalIC_Slow, 1, 1) \ |
949 F(LoadIC_Miss, 4, 1) \ | 949 F(LoadIC_Miss, 4, 1) \ |
950 F(LoadPropertyWithInterceptor, 3, 1) \ | 950 F(LoadPropertyWithInterceptor, 3, 1) \ |
951 F(LoadPropertyWithInterceptorOnly, 3, 1) \ | 951 F(LoadPropertyWithInterceptorOnly, 3, 1) \ |
952 F(StoreCallbackProperty, 6, 1) \ | 952 F(StoreCallbackProperty, 6, 1) \ |
953 F(StoreIC_Miss, 5, 1) \ | 953 F(StoreIC_Miss, 5, 1) \ |
954 F(StorePropertyWithInterceptor, 3, 1) \ | 954 F(StorePropertyWithInterceptor, 3, 1) \ |
955 F(ToBooleanIC_Miss, 1, 1) \ | 955 F(ToBooleanIC_Miss, 1, 1) \ |
956 F(Unreachable, 0, 1) | 956 F(Unreachable, 0, 1) |
957 | 957 |
958 #define FOR_EACH_INTRINSIC_RETURN_OBJECT(F) \ | 958 #define FOR_EACH_INTRINSIC_RETURN_OBJECT(F) \ |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1128 | 1128 |
1129 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1129 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1130 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1130 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1131 STATIC_ASSERT(LANGUAGE_END == 2); | 1131 STATIC_ASSERT(LANGUAGE_END == 2); |
1132 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1132 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
1133 | 1133 |
1134 } // namespace internal | 1134 } // namespace internal |
1135 } // namespace v8 | 1135 } // namespace v8 |
1136 | 1136 |
1137 #endif // V8_RUNTIME_RUNTIME_H_ | 1137 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |