| 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 F(AddNamedProperty, 4, 1) \ | 445 F(AddNamedProperty, 4, 1) \ |
| 446 F(SetProperty, 4, 1) \ | 446 F(SetProperty, 4, 1) \ |
| 447 F(AddElement, 3, 1) \ | 447 F(AddElement, 3, 1) \ |
| 448 F(AppendElement, 2, 1) \ | 448 F(AppendElement, 2, 1) \ |
| 449 F(DeleteProperty_Sloppy, 2, 1) \ | 449 F(DeleteProperty_Sloppy, 2, 1) \ |
| 450 F(DeleteProperty_Strict, 2, 1) \ | 450 F(DeleteProperty_Strict, 2, 1) \ |
| 451 F(HasOwnProperty, 2, 1) \ | 451 F(HasOwnProperty, 2, 1) \ |
| 452 F(HasProperty, 2, 1) \ | 452 F(HasProperty, 2, 1) \ |
| 453 F(PropertyIsEnumerable, 2, 1) \ | 453 F(PropertyIsEnumerable, 2, 1) \ |
| 454 F(GetPropertyNamesFast, 1, 1) \ | 454 F(GetPropertyNamesFast, 1, 1) \ |
| 455 F(GetOwnPropertyNames, 2, 1) \ | 455 F(GetOwnPropertyKeys, 2, 1) \ |
| 456 F(GetOwnElementNames, 1, 1) \ | |
| 457 F(GetInterceptorInfo, 1, 1) \ | 456 F(GetInterceptorInfo, 1, 1) \ |
| 458 F(GetNamedInterceptorPropertyNames, 1, 1) \ | |
| 459 F(GetIndexedInterceptorElementNames, 1, 1) \ | |
| 460 F(OwnKeys, 1, 1) \ | |
| 461 F(ToFastProperties, 1, 1) \ | 457 F(ToFastProperties, 1, 1) \ |
| 462 F(AllocateHeapNumber, 0, 1) \ | 458 F(AllocateHeapNumber, 0, 1) \ |
| 463 F(NewObject, 2, 1) \ | 459 F(NewObject, 2, 1) \ |
| 464 F(FinalizeInstanceSize, 1, 1) \ | 460 F(FinalizeInstanceSize, 1, 1) \ |
| 465 F(GlobalProxy, 1, 1) \ | 461 F(GlobalProxy, 1, 1) \ |
| 466 F(LookupAccessor, 3, 1) \ | 462 F(LookupAccessor, 3, 1) \ |
| 467 F(LoadMutableDouble, 2, 1) \ | 463 F(LoadMutableDouble, 2, 1) \ |
| 468 F(TryMigrateInstance, 1, 1) \ | 464 F(TryMigrateInstance, 1, 1) \ |
| 469 F(IsJSGlobalProxy, 1, 1) \ | 465 F(IsJSGlobalProxy, 1, 1) \ |
| 470 F(DefineAccessorPropertyUnchecked, 5, 1) \ | 466 F(DefineAccessorPropertyUnchecked, 5, 1) \ |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 | 1250 |
| 1255 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1251 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1256 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1252 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1257 STATIC_ASSERT(LANGUAGE_END == 3); | 1253 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1258 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1254 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1259 | 1255 |
| 1260 } // namespace internal | 1256 } // namespace internal |
| 1261 } // namespace v8 | 1257 } // namespace v8 |
| 1262 | 1258 |
| 1263 #endif // V8_RUNTIME_RUNTIME_H_ | 1259 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |