| 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 F(GetInterceptorInfo, 1, 1) \ | 386 F(GetInterceptorInfo, 1, 1) \ |
| 387 F(ToFastProperties, 1, 1) \ | 387 F(ToFastProperties, 1, 1) \ |
| 388 F(AllocateHeapNumber, 0, 1) \ | 388 F(AllocateHeapNumber, 0, 1) \ |
| 389 F(NewObject, 2, 1) \ | 389 F(NewObject, 2, 1) \ |
| 390 F(FinalizeInstanceSize, 1, 1) \ | 390 F(FinalizeInstanceSize, 1, 1) \ |
| 391 F(LoadMutableDouble, 2, 1) \ | 391 F(LoadMutableDouble, 2, 1) \ |
| 392 F(TryMigrateInstance, 1, 1) \ | 392 F(TryMigrateInstance, 1, 1) \ |
| 393 F(IsJSGlobalProxy, 1, 1) \ | 393 F(IsJSGlobalProxy, 1, 1) \ |
| 394 F(DefineAccessorPropertyUnchecked, 5, 1) \ | 394 F(DefineAccessorPropertyUnchecked, 5, 1) \ |
| 395 F(DefineDataPropertyInLiteral, 5, 1) \ | 395 F(DefineDataPropertyInLiteral, 5, 1) \ |
| 396 F(DefineDataProperty, 5, 1) \ |
| 396 F(GetDataProperty, 2, 1) \ | 397 F(GetDataProperty, 2, 1) \ |
| 397 F(GetConstructorName, 1, 1) \ | 398 F(GetConstructorName, 1, 1) \ |
| 398 F(HasFastPackedElements, 1, 1) \ | 399 F(HasFastPackedElements, 1, 1) \ |
| 399 F(ValueOf, 1, 1) \ | 400 F(ValueOf, 1, 1) \ |
| 400 F(IsJSReceiver, 1, 1) \ | 401 F(IsJSReceiver, 1, 1) \ |
| 401 F(ClassOf, 1, 1) \ | 402 F(ClassOf, 1, 1) \ |
| 402 F(DefineGetterPropertyUnchecked, 4, 1) \ | 403 F(DefineGetterPropertyUnchecked, 4, 1) \ |
| 403 F(DefineSetterPropertyUnchecked, 4, 1) \ | 404 F(DefineSetterPropertyUnchecked, 4, 1) \ |
| 404 F(ToObject, 1, 1) \ | 405 F(ToObject, 1, 1) \ |
| 405 F(ToPrimitive, 1, 1) \ | 406 F(ToPrimitive, 1, 1) \ |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1122 | 1123 |
| 1123 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1124 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1124 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1125 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1125 STATIC_ASSERT(LANGUAGE_END == 2); | 1126 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1126 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1127 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1127 | 1128 |
| 1128 } // namespace internal | 1129 } // namespace internal |
| 1129 } // namespace v8 | 1130 } // namespace v8 |
| 1130 | 1131 |
| 1131 #endif // V8_RUNTIME_RUNTIME_H_ | 1132 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |