| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 F(IsSmi, 1, 1) \ | 407 F(IsSmi, 1, 1) \ |
| 408 F(GetRootNaN, 0, 1) \ | 408 F(GetRootNaN, 0, 1) \ |
| 409 F(GetHoleNaNUpper, 0, 1) \ | 409 F(GetHoleNaNUpper, 0, 1) \ |
| 410 F(GetHoleNaNLower, 0, 1) | 410 F(GetHoleNaNLower, 0, 1) |
| 411 | 411 |
| 412 | 412 |
| 413 #define FOR_EACH_INTRINSIC_OBJECT(F) \ | 413 #define FOR_EACH_INTRINSIC_OBJECT(F) \ |
| 414 F(GetPrototype, 1, 1) \ | 414 F(GetPrototype, 1, 1) \ |
| 415 F(InternalSetPrototype, 2, 1) \ | 415 F(InternalSetPrototype, 2, 1) \ |
| 416 F(SetPrototype, 2, 1) \ | 416 F(SetPrototype, 2, 1) \ |
| 417 F(GetOwnProperty, 2, 1) \ |
| 417 F(GetOwnProperty_Legacy, 2, 1) \ | 418 F(GetOwnProperty_Legacy, 2, 1) \ |
| 418 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ | 419 F(OptimizeObjectForAddingMultipleProperties, 2, 1) \ |
| 419 F(GetProperty, 2, 1) \ | 420 F(GetProperty, 2, 1) \ |
| 420 F(GetPropertyStrong, 2, 1) \ | 421 F(GetPropertyStrong, 2, 1) \ |
| 421 F(KeyedGetProperty, 2, 1) \ | 422 F(KeyedGetProperty, 2, 1) \ |
| 422 F(KeyedGetPropertyStrong, 2, 1) \ | 423 F(KeyedGetPropertyStrong, 2, 1) \ |
| 423 F(LoadGlobalViaContext, 1, 1) \ | 424 F(LoadGlobalViaContext, 1, 1) \ |
| 424 F(StoreGlobalViaContext_Sloppy, 2, 1) \ | 425 F(StoreGlobalViaContext_Sloppy, 2, 1) \ |
| 425 F(StoreGlobalViaContext_Strict, 2, 1) \ | 426 F(StoreGlobalViaContext_Strict, 2, 1) \ |
| 426 F(AddNamedProperty, 4, 1) \ | 427 F(AddNamedProperty, 4, 1) \ |
| (...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1223 | 1224 |
| 1224 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1225 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1225 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1226 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1226 STATIC_ASSERT(LANGUAGE_END == 3); | 1227 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1227 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1228 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1228 | 1229 |
| 1229 } // namespace internal | 1230 } // namespace internal |
| 1230 } // namespace v8 | 1231 } // namespace v8 |
| 1231 | 1232 |
| 1232 #endif // V8_RUNTIME_RUNTIME_H_ | 1233 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |