Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Side by Side Diff: src/assembler.cc

Issue 2811033: [Isolates] Remove even more statics. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: rebase and address comments Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/execution.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/execution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698