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 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 static ExternalReference random_uint32_function(Isolate* isolate); | 718 static ExternalReference random_uint32_function(Isolate* isolate); |
719 static ExternalReference transcendental_cache_array_address(Isolate* isolate); | 719 static ExternalReference transcendental_cache_array_address(Isolate* isolate); |
720 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 720 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
721 | 721 |
722 static ExternalReference get_date_field_function(Isolate* isolate); | 722 static ExternalReference get_date_field_function(Isolate* isolate); |
723 static ExternalReference date_cache_stamp(Isolate* isolate); | 723 static ExternalReference date_cache_stamp(Isolate* isolate); |
724 | 724 |
725 static ExternalReference get_make_code_young_function(Isolate* isolate); | 725 static ExternalReference get_make_code_young_function(Isolate* isolate); |
726 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); | 726 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); |
727 | 727 |
728 // New heap objects tracking support. | |
729 static ExternalReference record_object_allocation_function(Isolate* isolate); | |
730 | |
731 // Deoptimization support. | 728 // Deoptimization support. |
732 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 729 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
733 static ExternalReference compute_output_frames_function(Isolate* isolate); | 730 static ExternalReference compute_output_frames_function(Isolate* isolate); |
734 | 731 |
735 // Log support. | 732 // Log support. |
736 static ExternalReference log_enter_external_function(Isolate* isolate); | 733 static ExternalReference log_enter_external_function(Isolate* isolate); |
737 static ExternalReference log_leave_external_function(Isolate* isolate); | 734 static ExternalReference log_leave_external_function(Isolate* isolate); |
738 | 735 |
739 // Static data in the keyed lookup cache. | 736 // Static data in the keyed lookup cache. |
740 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); | 737 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1069 public: | 1066 public: |
1070 NullCallWrapper() { } | 1067 NullCallWrapper() { } |
1071 virtual ~NullCallWrapper() { } | 1068 virtual ~NullCallWrapper() { } |
1072 virtual void BeforeCall(int call_size) const { } | 1069 virtual void BeforeCall(int call_size) const { } |
1073 virtual void AfterCall() const { } | 1070 virtual void AfterCall() const { } |
1074 }; | 1071 }; |
1075 | 1072 |
1076 } } // namespace v8::internal | 1073 } } // namespace v8::internal |
1077 | 1074 |
1078 #endif // V8_ASSEMBLER_H_ | 1075 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |