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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 F(IsConstructCall, 0, 1) \ | 640 F(IsConstructCall, 0, 1) \ |
641 F(CallFunction, -1 /* receiver + n args + function */, 1) \ | 641 F(CallFunction, -1 /* receiver + n args + function */, 1) \ |
642 F(DefaultConstructorCallSuper, 0, 1) \ | 642 F(DefaultConstructorCallSuper, 0, 1) \ |
643 F(ArgumentsLength, 0, 1) \ | 643 F(ArgumentsLength, 0, 1) \ |
644 F(Arguments, 1, 1) \ | 644 F(Arguments, 1, 1) \ |
645 F(ValueOf, 1, 1) \ | 645 F(ValueOf, 1, 1) \ |
646 F(SetValueOf, 2, 1) \ | 646 F(SetValueOf, 2, 1) \ |
647 F(DateField, 2 /* date object, field index */, 1) \ | 647 F(DateField, 2 /* date object, field index */, 1) \ |
648 F(StringCharFromCode, 1, 1) \ | 648 F(StringCharFromCode, 1, 1) \ |
649 F(StringCharAt, 2, 1) \ | 649 F(StringCharAt, 2, 1) \ |
| 650 F(OneByteSeqStringGetChar, 2, 1) \ |
650 F(OneByteSeqStringSetChar, 3, 1) \ | 651 F(OneByteSeqStringSetChar, 3, 1) \ |
| 652 F(TwoByteSeqStringGetChar, 2, 1) \ |
651 F(TwoByteSeqStringSetChar, 3, 1) \ | 653 F(TwoByteSeqStringSetChar, 3, 1) \ |
652 F(ObjectEquals, 2, 1) \ | 654 F(ObjectEquals, 2, 1) \ |
653 F(IsObject, 1, 1) \ | 655 F(IsObject, 1, 1) \ |
654 F(IsFunction, 1, 1) \ | 656 F(IsFunction, 1, 1) \ |
655 F(IsUndetectableObject, 1, 1) \ | 657 F(IsUndetectableObject, 1, 1) \ |
656 F(IsSpecObject, 1, 1) \ | 658 F(IsSpecObject, 1, 1) \ |
657 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ | 659 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ |
658 F(MathPow, 2, 1) \ | 660 F(MathPow, 2, 1) \ |
659 F(IsMinusZero, 1, 1) \ | 661 F(IsMinusZero, 1, 1) \ |
660 F(HasCachedArrayIndex, 1, 1) \ | 662 F(HasCachedArrayIndex, 1, 1) \ |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 | 904 |
903 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 905 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
904 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 906 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
905 STATIC_ASSERT(LANGUAGE_END == 3); | 907 STATIC_ASSERT(LANGUAGE_END == 3); |
906 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 908 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
907 | 909 |
908 } // namespace internal | 910 } // namespace internal |
909 } // namespace v8 | 911 } // namespace v8 |
910 | 912 |
911 #endif // V8_RUNTIME_RUNTIME_H_ | 913 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |