| 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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 // ExternalReferenceTable in serialize.cc manually. | 708 // ExternalReferenceTable in serialize.cc manually. |
| 709 | 709 |
| 710 static ExternalReference incremental_marking_record_write_function( | 710 static ExternalReference incremental_marking_record_write_function( |
| 711 Isolate* isolate); | 711 Isolate* isolate); |
| 712 static ExternalReference incremental_evacuation_record_write_function( | 712 static ExternalReference incremental_evacuation_record_write_function( |
| 713 Isolate* isolate); | 713 Isolate* isolate); |
| 714 static ExternalReference store_buffer_overflow_function( | 714 static ExternalReference store_buffer_overflow_function( |
| 715 Isolate* isolate); | 715 Isolate* isolate); |
| 716 static ExternalReference flush_icache_function(Isolate* isolate); | 716 static ExternalReference flush_icache_function(Isolate* isolate); |
| 717 static ExternalReference perform_gc_function(Isolate* isolate); | 717 static ExternalReference perform_gc_function(Isolate* isolate); |
| 718 static ExternalReference fill_heap_number_with_random_function( | |
| 719 Isolate* isolate); | |
| 720 static ExternalReference random_uint32_function(Isolate* isolate); | 718 static ExternalReference random_uint32_function(Isolate* isolate); |
| 721 static ExternalReference transcendental_cache_array_address(Isolate* isolate); | 719 static ExternalReference transcendental_cache_array_address(Isolate* isolate); |
| 722 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 720 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
| 723 | 721 |
| 724 static ExternalReference get_date_field_function(Isolate* isolate); | 722 static ExternalReference get_date_field_function(Isolate* isolate); |
| 725 static ExternalReference date_cache_stamp(Isolate* isolate); | 723 static ExternalReference date_cache_stamp(Isolate* isolate); |
| 726 | 724 |
| 727 static ExternalReference get_make_code_young_function(Isolate* isolate); | 725 static ExternalReference get_make_code_young_function(Isolate* isolate); |
| 728 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); | 726 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); |
| 729 | 727 |
| 730 // New heap objects tracking support. | |
| 731 static ExternalReference record_object_allocation_function(Isolate* isolate); | |
| 732 | |
| 733 // Deoptimization support. | 728 // Deoptimization support. |
| 734 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 729 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
| 735 static ExternalReference compute_output_frames_function(Isolate* isolate); | 730 static ExternalReference compute_output_frames_function(Isolate* isolate); |
| 736 | 731 |
| 737 // Log support. | 732 // Log support. |
| 738 static ExternalReference log_enter_external_function(Isolate* isolate); | 733 static ExternalReference log_enter_external_function(Isolate* isolate); |
| 739 static ExternalReference log_leave_external_function(Isolate* isolate); | 734 static ExternalReference log_leave_external_function(Isolate* isolate); |
| 740 | 735 |
| 741 // Static data in the keyed lookup cache. | 736 // Static data in the keyed lookup cache. |
| 742 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); | 737 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 public: | 1040 public: |
| 1046 NullCallWrapper() { } | 1041 NullCallWrapper() { } |
| 1047 virtual ~NullCallWrapper() { } | 1042 virtual ~NullCallWrapper() { } |
| 1048 virtual void BeforeCall(int call_size) const { } | 1043 virtual void BeforeCall(int call_size) const { } |
| 1049 virtual void AfterCall() const { } | 1044 virtual void AfterCall() const { } |
| 1050 }; | 1045 }; |
| 1051 | 1046 |
| 1052 } } // namespace v8::internal | 1047 } } // namespace v8::internal |
| 1053 | 1048 |
| 1054 #endif // V8_ASSEMBLER_H_ | 1049 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |