| 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 "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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |