OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 ExternalReference ExternalReference::handle_scope_limit_address() { | 657 ExternalReference ExternalReference::handle_scope_limit_address() { |
658 return ExternalReference(HandleScope::current_limit_address()); | 658 return ExternalReference(HandleScope::current_limit_address()); |
659 } | 659 } |
660 | 660 |
661 | 661 |
662 ExternalReference ExternalReference::scheduled_exception_address() { | 662 ExternalReference ExternalReference::scheduled_exception_address() { |
663 return ExternalReference(Top::scheduled_exception_address()); | 663 return ExternalReference(Top::scheduled_exception_address()); |
664 } | 664 } |
665 | 665 |
666 | 666 |
| 667 ExternalReference ExternalReference::compile_array_pop_call() { |
| 668 return ExternalReference(FUNCTION_ADDR(CompileArrayPopCall)); |
| 669 } |
| 670 |
| 671 |
| 672 ExternalReference ExternalReference::compile_array_push_call() { |
| 673 return ExternalReference(FUNCTION_ADDR(CompileArrayPushCall)); |
| 674 } |
| 675 |
| 676 |
667 #ifdef V8_NATIVE_REGEXP | 677 #ifdef V8_NATIVE_REGEXP |
668 | 678 |
669 ExternalReference ExternalReference::re_check_stack_guard_state() { | 679 ExternalReference ExternalReference::re_check_stack_guard_state() { |
670 Address function; | 680 Address function; |
671 #ifdef V8_TARGET_ARCH_X64 | 681 #ifdef V8_TARGET_ARCH_X64 |
672 function = FUNCTION_ADDR(RegExpMacroAssemblerX64::CheckStackGuardState); | 682 function = FUNCTION_ADDR(RegExpMacroAssemblerX64::CheckStackGuardState); |
673 #elif V8_TARGET_ARCH_IA32 | 683 #elif V8_TARGET_ARCH_IA32 |
674 function = FUNCTION_ADDR(RegExpMacroAssemblerIA32::CheckStackGuardState); | 684 function = FUNCTION_ADDR(RegExpMacroAssemblerIA32::CheckStackGuardState); |
675 #elif V8_TARGET_ARCH_ARM | 685 #elif V8_TARGET_ARCH_ARM |
676 function = FUNCTION_ADDR(RegExpMacroAssemblerARM::CheckStackGuardState); | 686 function = FUNCTION_ADDR(RegExpMacroAssemblerARM::CheckStackGuardState); |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
783 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); | 793 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); |
784 } | 794 } |
785 | 795 |
786 | 796 |
787 ExternalReference ExternalReference::debug_step_in_fp_address() { | 797 ExternalReference ExternalReference::debug_step_in_fp_address() { |
788 return ExternalReference(Debug::step_in_fp_addr()); | 798 return ExternalReference(Debug::step_in_fp_addr()); |
789 } | 799 } |
790 #endif | 800 #endif |
791 | 801 |
792 } } // namespace v8::internal | 802 } } // namespace v8::internal |
OLD | NEW |