OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 \ | 561 \ |
562 /* Number format and parse. */ \ | 562 /* Number format and parse. */ \ |
563 F(CreateNumberFormat, 3, 1) \ | 563 F(CreateNumberFormat, 3, 1) \ |
564 F(InternalNumberFormat, 2, 1) \ | 564 F(InternalNumberFormat, 2, 1) \ |
565 F(InternalNumberParse, 2, 1) \ | 565 F(InternalNumberParse, 2, 1) \ |
566 \ | 566 \ |
567 /* Collator. */ \ | 567 /* Collator. */ \ |
568 F(CreateCollator, 3, 1) \ | 568 F(CreateCollator, 3, 1) \ |
569 F(InternalCompare, 3, 1) \ | 569 F(InternalCompare, 3, 1) \ |
570 \ | 570 \ |
| 571 /* String.prototype.normalize. */ \ |
| 572 F(StringNormalize, 2, 1) \ |
| 573 \ |
571 /* Break iterator. */ \ | 574 /* Break iterator. */ \ |
572 F(CreateBreakIterator, 3, 1) \ | 575 F(CreateBreakIterator, 3, 1) \ |
573 F(BreakIteratorAdoptText, 2, 1) \ | 576 F(BreakIteratorAdoptText, 2, 1) \ |
574 F(BreakIteratorFirst, 1, 1) \ | 577 F(BreakIteratorFirst, 1, 1) \ |
575 F(BreakIteratorNext, 1, 1) \ | 578 F(BreakIteratorNext, 1, 1) \ |
576 F(BreakIteratorCurrent, 1, 1) \ | 579 F(BreakIteratorCurrent, 1, 1) \ |
577 F(BreakIteratorBreakType, 1, 1) \ | 580 F(BreakIteratorBreakType, 1, 1) \ |
578 | 581 |
579 #else | 582 #else |
580 #define RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) | 583 #define RUNTIME_FUNCTION_LIST_I18N_SUPPORT(F) |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
624 F(ObjectEquals, 2, 1) \ | 627 F(ObjectEquals, 2, 1) \ |
625 F(IsObject, 1, 1) \ | 628 F(IsObject, 1, 1) \ |
626 F(IsFunction, 1, 1) \ | 629 F(IsFunction, 1, 1) \ |
627 F(IsUndetectableObject, 1, 1) \ | 630 F(IsUndetectableObject, 1, 1) \ |
628 F(IsSpecObject, 1, 1) \ | 631 F(IsSpecObject, 1, 1) \ |
629 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ | 632 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ |
630 F(MathPow, 2, 1) \ | 633 F(MathPow, 2, 1) \ |
631 F(MathSqrt, 1, 1) \ | 634 F(MathSqrt, 1, 1) \ |
632 F(MathLog, 1, 1) \ | 635 F(MathLog, 1, 1) \ |
633 F(IsMinusZero, 1, 1) \ | 636 F(IsMinusZero, 1, 1) \ |
634 F(IsRegExpEquivalent, 2, 1) \ | |
635 F(HasCachedArrayIndex, 1, 1) \ | 637 F(HasCachedArrayIndex, 1, 1) \ |
636 F(GetCachedArrayIndex, 1, 1) \ | 638 F(GetCachedArrayIndex, 1, 1) \ |
637 F(FastAsciiArrayJoin, 2, 1) \ | 639 F(FastAsciiArrayJoin, 2, 1) \ |
638 F(GeneratorNext, 2, 1) \ | 640 F(GeneratorNext, 2, 1) \ |
639 F(GeneratorThrow, 2, 1) \ | 641 F(GeneratorThrow, 2, 1) \ |
640 F(DebugBreakInOptimizedCode, 0, 1) | 642 F(DebugBreakInOptimizedCode, 0, 1) |
641 | 643 |
642 | 644 |
643 // ---------------------------------------------------------------------------- | 645 // ---------------------------------------------------------------------------- |
644 // INLINE_RUNTIME_FUNCTION_LIST defines all inlined functions accessed | 646 // INLINE_RUNTIME_FUNCTION_LIST defines all inlined functions accessed |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
862 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 864 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
863 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 865 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
864 | 866 |
865 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 867 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
866 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 868 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
867 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 869 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
868 | 870 |
869 } } // namespace v8::internal | 871 } } // namespace v8::internal |
870 | 872 |
871 #endif // V8_RUNTIME_H_ | 873 #endif // V8_RUNTIME_H_ |
OLD | NEW |