| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 F(HomeObjectSymbol, 0, 1) \ | 84 F(HomeObjectSymbol, 0, 1) \ |
| 85 F(DefineClass, 4, 1) \ | 85 F(DefineClass, 4, 1) \ |
| 86 F(InstallClassNameAccessor, 1, 1) \ | 86 F(InstallClassNameAccessor, 1, 1) \ |
| 87 F(InstallClassNameAccessorWithCheck, 1, 1) \ | 87 F(InstallClassNameAccessorWithCheck, 1, 1) \ |
| 88 F(LoadFromSuper, 3, 1) \ | 88 F(LoadFromSuper, 3, 1) \ |
| 89 F(LoadKeyedFromSuper, 3, 1) \ | 89 F(LoadKeyedFromSuper, 3, 1) \ |
| 90 F(StoreToSuper_Strict, 4, 1) \ | 90 F(StoreToSuper_Strict, 4, 1) \ |
| 91 F(StoreToSuper_Sloppy, 4, 1) \ | 91 F(StoreToSuper_Sloppy, 4, 1) \ |
| 92 F(StoreKeyedToSuper_Strict, 4, 1) \ | 92 F(StoreKeyedToSuper_Strict, 4, 1) \ |
| 93 F(StoreKeyedToSuper_Sloppy, 4, 1) \ | 93 F(StoreKeyedToSuper_Sloppy, 4, 1) \ |
| 94 F(GetSuperConstructor, 1, 1) \ | 94 F(GetSuperConstructor, 1, 1) |
| 95 F(CallWithSpread, -1, 1) | |
| 96 | 95 |
| 97 #define FOR_EACH_INTRINSIC_COLLECTIONS(F) \ | 96 #define FOR_EACH_INTRINSIC_COLLECTIONS(F) \ |
| 98 F(StringGetRawHashField, 1, 1) \ | 97 F(StringGetRawHashField, 1, 1) \ |
| 99 F(TheHole, 0, 1) \ | 98 F(TheHole, 0, 1) \ |
| 100 F(JSCollectionGetTable, 1, 1) \ | 99 F(JSCollectionGetTable, 1, 1) \ |
| 101 F(GenericHash, 1, 1) \ | 100 F(GenericHash, 1, 1) \ |
| 102 F(SetInitialize, 1, 1) \ | 101 F(SetInitialize, 1, 1) \ |
| 103 F(SetGrow, 1, 1) \ | 102 F(SetGrow, 1, 1) \ |
| 104 F(SetShrink, 1, 1) \ | 103 F(SetShrink, 1, 1) \ |
| 105 F(SetClear, 1, 1) \ | 104 F(SetClear, 1, 1) \ |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1151 | 1150 |
| 1152 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1151 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1153 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1152 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1154 STATIC_ASSERT(LANGUAGE_END == 2); | 1153 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1155 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1154 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1156 | 1155 |
| 1157 } // namespace internal | 1156 } // namespace internal |
| 1158 } // namespace v8 | 1157 } // namespace v8 |
| 1159 | 1158 |
| 1160 #endif // V8_RUNTIME_RUNTIME_H_ | 1159 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |