| 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/zone.h" | 10 #include "src/zone.h" |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 F(DisableAccessChecks, 1, 1) \ | 407 F(DisableAccessChecks, 1, 1) \ |
| 408 F(EnableAccessChecks, 1, 1) \ | 408 F(EnableAccessChecks, 1, 1) \ |
| 409 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 409 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
| 410 F(ObjectFreeze, 1, 1) \ | 410 F(ObjectFreeze, 1, 1) \ |
| 411 F(ObjectSeal, 1, 1) \ | 411 F(ObjectSeal, 1, 1) \ |
| 412 F(GetProperty, 2, 1) \ | 412 F(GetProperty, 2, 1) \ |
| 413 F(KeyedGetProperty, 2, 1) \ | 413 F(KeyedGetProperty, 2, 1) \ |
| 414 F(AddNamedProperty, 4, 1) \ | 414 F(AddNamedProperty, 4, 1) \ |
| 415 F(SetProperty, 4, 1) \ | 415 F(SetProperty, 4, 1) \ |
| 416 F(AddElement, 4, 1) \ | 416 F(AddElement, 4, 1) \ |
| 417 F(AppendElement, 2, 1) \ |
| 417 F(DeleteProperty, 3, 1) \ | 418 F(DeleteProperty, 3, 1) \ |
| 418 F(HasOwnProperty, 2, 1) \ | 419 F(HasOwnProperty, 2, 1) \ |
| 419 F(HasProperty, 2, 1) \ | 420 F(HasProperty, 2, 1) \ |
| 420 F(HasElement, 2, 1) \ | 421 F(HasElement, 2, 1) \ |
| 421 F(IsPropertyEnumerable, 2, 1) \ | 422 F(IsPropertyEnumerable, 2, 1) \ |
| 422 F(GetPropertyNames, 1, 1) \ | 423 F(GetPropertyNames, 1, 1) \ |
| 423 F(GetPropertyNamesFast, 1, 1) \ | 424 F(GetPropertyNamesFast, 1, 1) \ |
| 424 F(GetOwnPropertyNames, 2, 1) \ | 425 F(GetOwnPropertyNames, 2, 1) \ |
| 425 F(GetOwnElementNames, 1, 1) \ | 426 F(GetOwnElementNames, 1, 1) \ |
| 426 F(GetInterceptorInfo, 1, 1) \ | 427 F(GetInterceptorInfo, 1, 1) \ |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 872 | 873 |
| 873 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 874 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 874 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 875 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 875 STATIC_ASSERT(LANGUAGE_END == 3); | 876 STATIC_ASSERT(LANGUAGE_END == 3); |
| 876 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 877 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 877 | 878 |
| 878 } // namespace internal | 879 } // namespace internal |
| 879 } // namespace v8 | 880 } // namespace v8 |
| 880 | 881 |
| 881 #endif // V8_RUNTIME_RUNTIME_H_ | 882 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |