| 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/base/platform/time.h" | 9 #include "src/base/platform/time.h" |
| 10 #include "src/objects.h" | 10 #include "src/objects.h" |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 F(ToFastProperties, 1, 1) \ | 396 F(ToFastProperties, 1, 1) \ |
| 397 F(AllocateHeapNumber, 0, 1) \ | 397 F(AllocateHeapNumber, 0, 1) \ |
| 398 F(NewObject, 2, 1) \ | 398 F(NewObject, 2, 1) \ |
| 399 F(FinalizeInstanceSize, 1, 1) \ | 399 F(FinalizeInstanceSize, 1, 1) \ |
| 400 F(LoadMutableDouble, 2, 1) \ | 400 F(LoadMutableDouble, 2, 1) \ |
| 401 F(TryMigrateInstance, 1, 1) \ | 401 F(TryMigrateInstance, 1, 1) \ |
| 402 F(IsJSGlobalProxy, 1, 1) \ | 402 F(IsJSGlobalProxy, 1, 1) \ |
| 403 F(DefineAccessorPropertyUnchecked, 5, 1) \ | 403 F(DefineAccessorPropertyUnchecked, 5, 1) \ |
| 404 F(DefineDataPropertyInLiteral, 5, 1) \ | 404 F(DefineDataPropertyInLiteral, 5, 1) \ |
| 405 F(GetDataProperty, 2, 1) \ | 405 F(GetDataProperty, 2, 1) \ |
| 406 F(GetConstructorName, 1, 1) \ |
| 406 F(HasFastPackedElements, 1, 1) \ | 407 F(HasFastPackedElements, 1, 1) \ |
| 407 F(ValueOf, 1, 1) \ | 408 F(ValueOf, 1, 1) \ |
| 408 F(IsJSReceiver, 1, 1) \ | 409 F(IsJSReceiver, 1, 1) \ |
| 409 F(ClassOf, 1, 1) \ | 410 F(ClassOf, 1, 1) \ |
| 410 F(DefineGetterPropertyUnchecked, 4, 1) \ | 411 F(DefineGetterPropertyUnchecked, 4, 1) \ |
| 411 F(DefineSetterPropertyUnchecked, 4, 1) \ | 412 F(DefineSetterPropertyUnchecked, 4, 1) \ |
| 412 F(ToObject, 1, 1) \ | 413 F(ToObject, 1, 1) \ |
| 413 F(ToPrimitive, 1, 1) \ | 414 F(ToPrimitive, 1, 1) \ |
| 414 F(ToPrimitive_Number, 1, 1) \ | 415 F(ToPrimitive_Number, 1, 1) \ |
| 415 F(ToPrimitive_String, 1, 1) \ | 416 F(ToPrimitive_String, 1, 1) \ |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1137 | 1138 |
| 1138 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1139 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1139 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1140 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1140 STATIC_ASSERT(LANGUAGE_END == 3); | 1141 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1141 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1142 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1142 | 1143 |
| 1143 } // namespace internal | 1144 } // namespace internal |
| 1144 } // namespace v8 | 1145 } // namespace v8 |
| 1145 | 1146 |
| 1146 #endif // V8_RUNTIME_RUNTIME_H_ | 1147 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |