| 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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 return ExternalReference(Redirect( | 703 return ExternalReference(Redirect( |
| 704 FUNCTION_ADDR(NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16))); | 704 FUNCTION_ADDR(NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16))); |
| 705 } | 705 } |
| 706 | 706 |
| 707 ExternalReference ExternalReference::re_word_character_map() { | 707 ExternalReference ExternalReference::re_word_character_map() { |
| 708 return ExternalReference( | 708 return ExternalReference( |
| 709 NativeRegExpMacroAssembler::word_character_map_address()); | 709 NativeRegExpMacroAssembler::word_character_map_address()); |
| 710 } | 710 } |
| 711 | 711 |
| 712 ExternalReference ExternalReference::address_of_static_offsets_vector() { | 712 ExternalReference ExternalReference::address_of_static_offsets_vector() { |
| 713 return ExternalReference(OffsetsVector::static_offsets_vector_address()); | 713 return ExternalReference(OffsetsVector::static_offsets_vector_address( |
| 714 Isolate::Current())); |
| 714 } | 715 } |
| 715 | 716 |
| 716 ExternalReference ExternalReference::address_of_regexp_stack_memory_address() { | 717 ExternalReference ExternalReference::address_of_regexp_stack_memory_address() { |
| 717 return ExternalReference(RegExpStack::memory_address()); | 718 return ExternalReference(RegExpStack::memory_address()); |
| 718 } | 719 } |
| 719 | 720 |
| 720 ExternalReference ExternalReference::address_of_regexp_stack_memory_size() { | 721 ExternalReference ExternalReference::address_of_regexp_stack_memory_size() { |
| 721 return ExternalReference(RegExpStack::memory_size_address()); | 722 return ExternalReference(RegExpStack::memory_size_address()); |
| 722 } | 723 } |
| 723 | 724 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); | 798 return ExternalReference(Redirect(FUNCTION_ADDR(Debug::Break))); |
| 798 } | 799 } |
| 799 | 800 |
| 800 | 801 |
| 801 ExternalReference ExternalReference::debug_step_in_fp_address() { | 802 ExternalReference ExternalReference::debug_step_in_fp_address() { |
| 802 return ExternalReference(Debug::step_in_fp_addr()); | 803 return ExternalReference(Debug::step_in_fp_addr()); |
| 803 } | 804 } |
| 804 #endif | 805 #endif |
| 805 | 806 |
| 806 } } // namespace v8::internal | 807 } } // namespace v8::internal |
| OLD | NEW |