| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 F(ClassOf, 1, 1) \ | 415 F(ClassOf, 1, 1) \ |
| 416 F(DefineGetterPropertyUnchecked, 4, 1) \ | 416 F(DefineGetterPropertyUnchecked, 4, 1) \ |
| 417 F(DefineSetterPropertyUnchecked, 4, 1) \ | 417 F(DefineSetterPropertyUnchecked, 4, 1) \ |
| 418 F(ToObject, 1, 1) \ | 418 F(ToObject, 1, 1) \ |
| 419 F(ToPrimitive, 1, 1) \ | 419 F(ToPrimitive, 1, 1) \ |
| 420 F(ToPrimitive_Number, 1, 1) \ | 420 F(ToPrimitive_Number, 1, 1) \ |
| 421 F(ToPrimitive_String, 1, 1) \ | 421 F(ToPrimitive_String, 1, 1) \ |
| 422 F(ToNumber, 1, 1) \ | 422 F(ToNumber, 1, 1) \ |
| 423 F(ToInteger, 1, 1) \ | 423 F(ToInteger, 1, 1) \ |
| 424 F(ToLength, 1, 1) \ | 424 F(ToLength, 1, 1) \ |
| 425 F(ToIndex, 1, 1) \ |
| 425 F(ToString, 1, 1) \ | 426 F(ToString, 1, 1) \ |
| 426 F(ToName, 1, 1) \ | 427 F(ToName, 1, 1) \ |
| 427 F(SameValue, 2, 1) \ | 428 F(SameValue, 2, 1) \ |
| 428 F(SameValueZero, 2, 1) \ | 429 F(SameValueZero, 2, 1) \ |
| 429 F(Compare, 3, 1) \ | 430 F(Compare, 3, 1) \ |
| 430 F(HasInPrototypeChain, 2, 1) \ | 431 F(HasInPrototypeChain, 2, 1) \ |
| 431 F(CreateIterResultObject, 2, 1) \ | 432 F(CreateIterResultObject, 2, 1) \ |
| 432 F(IsAccessCheckNeeded, 1, 1) \ | 433 F(IsAccessCheckNeeded, 1, 1) \ |
| 433 F(CreateDataProperty, 3, 1) | 434 F(CreateDataProperty, 3, 1) |
| 434 | 435 |
| (...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 | 1145 |
| 1145 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1146 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1146 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1147 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1147 STATIC_ASSERT(LANGUAGE_END == 3); | 1148 STATIC_ASSERT(LANGUAGE_END == 3); |
| 1148 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1149 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
| 1149 | 1150 |
| 1150 } // namespace internal | 1151 } // namespace internal |
| 1151 } // namespace v8 | 1152 } // namespace v8 |
| 1152 | 1153 |
| 1153 #endif // V8_RUNTIME_RUNTIME_H_ | 1154 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |