| 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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 ExternalReference ExternalReference::handle_scope_limit_address() { | 663 ExternalReference ExternalReference::handle_scope_limit_address() { |
| 664 return ExternalReference(HandleScope::current_limit_address()); | 664 return ExternalReference(HandleScope::current_limit_address()); |
| 665 } | 665 } |
| 666 | 666 |
| 667 | 667 |
| 668 ExternalReference ExternalReference::scheduled_exception_address() { | 668 ExternalReference ExternalReference::scheduled_exception_address() { |
| 669 return ExternalReference(Top::scheduled_exception_address()); | 669 return ExternalReference(Top::scheduled_exception_address()); |
| 670 } | 670 } |
| 671 | 671 |
| 672 | 672 |
| 673 ExternalReference ExternalReference::compile_array_pop_call() { | |
| 674 return ExternalReference(FUNCTION_ADDR(CompileArrayPopCall)); | |
| 675 } | |
| 676 | |
| 677 | |
| 678 ExternalReference ExternalReference::compile_array_push_call() { | |
| 679 return ExternalReference(FUNCTION_ADDR(CompileArrayPushCall)); | |
| 680 } | |
| 681 | |
| 682 | |
| 683 #ifndef V8_INTERPRETED_REGEXP | 673 #ifndef V8_INTERPRETED_REGEXP |
| 684 | 674 |
| 685 ExternalReference ExternalReference::re_check_stack_guard_state() { | 675 ExternalReference ExternalReference::re_check_stack_guard_state() { |
| 686 Address function; | 676 Address function; |
| 687 #ifdef V8_TARGET_ARCH_X64 | 677 #ifdef V8_TARGET_ARCH_X64 |
| 688 function = FUNCTION_ADDR(RegExpMacroAssemblerX64::CheckStackGuardState); | 678 function = FUNCTION_ADDR(RegExpMacroAssemblerX64::CheckStackGuardState); |
| 689 #elif V8_TARGET_ARCH_IA32 | 679 #elif V8_TARGET_ARCH_IA32 |
| 690 function = FUNCTION_ADDR(RegExpMacroAssemblerIA32::CheckStackGuardState); | 680 function = FUNCTION_ADDR(RegExpMacroAssemblerIA32::CheckStackGuardState); |
| 691 #elif V8_TARGET_ARCH_ARM | 681 #elif V8_TARGET_ARCH_ARM |
| 692 function = FUNCTION_ADDR(RegExpMacroAssemblerARM::CheckStackGuardState); | 682 function = FUNCTION_ADDR(RegExpMacroAssemblerARM::CheckStackGuardState); |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); | 789 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); |
| 800 } | 790 } |
| 801 | 791 |
| 802 | 792 |
| 803 ExternalReference ExternalReference::debug_step_in_fp_address() { | 793 ExternalReference ExternalReference::debug_step_in_fp_address() { |
| 804 return ExternalReference(Debug::step_in_fp_addr()); | 794 return ExternalReference(Debug::step_in_fp_addr()); |
| 805 } | 795 } |
| 806 #endif | 796 #endif |
| 807 | 797 |
| 808 } } // namespace v8::internal | 798 } } // namespace v8::internal |
| OLD | NEW |