| 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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 // ExternalReferenceTable in serialize.cc manually. | 711 // ExternalReferenceTable in serialize.cc manually. |
| 712 | 712 |
| 713 static ExternalReference incremental_marking_record_write_function( | 713 static ExternalReference incremental_marking_record_write_function( |
| 714 Isolate* isolate); | 714 Isolate* isolate); |
| 715 static ExternalReference incremental_evacuation_record_write_function( | 715 static ExternalReference incremental_evacuation_record_write_function( |
| 716 Isolate* isolate); | 716 Isolate* isolate); |
| 717 static ExternalReference store_buffer_overflow_function( | 717 static ExternalReference store_buffer_overflow_function( |
| 718 Isolate* isolate); | 718 Isolate* isolate); |
| 719 static ExternalReference flush_icache_function(Isolate* isolate); | 719 static ExternalReference flush_icache_function(Isolate* isolate); |
| 720 static ExternalReference perform_gc_function(Isolate* isolate); | 720 static ExternalReference perform_gc_function(Isolate* isolate); |
| 721 static ExternalReference transcendental_cache_array_address(Isolate* isolate); | |
| 722 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 721 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
| 723 | 722 |
| 724 static ExternalReference get_date_field_function(Isolate* isolate); | 723 static ExternalReference get_date_field_function(Isolate* isolate); |
| 725 static ExternalReference date_cache_stamp(Isolate* isolate); | 724 static ExternalReference date_cache_stamp(Isolate* isolate); |
| 726 | 725 |
| 727 static ExternalReference get_make_code_young_function(Isolate* isolate); | 726 static ExternalReference get_make_code_young_function(Isolate* isolate); |
| 728 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); | 727 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); |
| 729 | 728 |
| 730 // Deoptimization support. | 729 // Deoptimization support. |
| 731 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 730 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 Isolate* isolate); | 776 Isolate* isolate); |
| 778 static ExternalReference old_pointer_space_allocation_limit_address( | 777 static ExternalReference old_pointer_space_allocation_limit_address( |
| 779 Isolate* isolate); | 778 Isolate* isolate); |
| 780 static ExternalReference old_data_space_allocation_top_address( | 779 static ExternalReference old_data_space_allocation_top_address( |
| 781 Isolate* isolate); | 780 Isolate* isolate); |
| 782 static ExternalReference old_data_space_allocation_limit_address( | 781 static ExternalReference old_data_space_allocation_limit_address( |
| 783 Isolate* isolate); | 782 Isolate* isolate); |
| 784 static ExternalReference new_space_high_promotion_mode_active_address( | 783 static ExternalReference new_space_high_promotion_mode_active_address( |
| 785 Isolate* isolate); | 784 Isolate* isolate); |
| 786 | 785 |
| 787 static ExternalReference double_fp_operation(Token::Value operation, | 786 static ExternalReference mod_two_doubles_operation(Isolate* isolate); |
| 788 Isolate* isolate); | |
| 789 static ExternalReference compare_doubles(Isolate* isolate); | |
| 790 static ExternalReference power_double_double_function(Isolate* isolate); | 787 static ExternalReference power_double_double_function(Isolate* isolate); |
| 791 static ExternalReference power_double_int_function(Isolate* isolate); | 788 static ExternalReference power_double_int_function(Isolate* isolate); |
| 792 | 789 |
| 793 static ExternalReference handle_scope_next_address(Isolate* isolate); | 790 static ExternalReference handle_scope_next_address(Isolate* isolate); |
| 794 static ExternalReference handle_scope_limit_address(Isolate* isolate); | 791 static ExternalReference handle_scope_limit_address(Isolate* isolate); |
| 795 static ExternalReference handle_scope_level_address(Isolate* isolate); | 792 static ExternalReference handle_scope_level_address(Isolate* isolate); |
| 796 | 793 |
| 797 static ExternalReference scheduled_exception_address(Isolate* isolate); | 794 static ExternalReference scheduled_exception_address(Isolate* isolate); |
| 798 static ExternalReference address_of_pending_message_obj(Isolate* isolate); | 795 static ExternalReference address_of_pending_message_obj(Isolate* isolate); |
| 799 static ExternalReference address_of_has_pending_message(Isolate* isolate); | 796 static ExternalReference address_of_has_pending_message(Isolate* isolate); |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 public: | 1062 public: |
| 1066 NullCallWrapper() { } | 1063 NullCallWrapper() { } |
| 1067 virtual ~NullCallWrapper() { } | 1064 virtual ~NullCallWrapper() { } |
| 1068 virtual void BeforeCall(int call_size) const { } | 1065 virtual void BeforeCall(int call_size) const { } |
| 1069 virtual void AfterCall() const { } | 1066 virtual void AfterCall() const { } |
| 1070 }; | 1067 }; |
| 1071 | 1068 |
| 1072 } } // namespace v8::internal | 1069 } } // namespace v8::internal |
| 1073 | 1070 |
| 1074 #endif // V8_ASSEMBLER_H_ | 1071 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |