| 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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 | 704 |
| 705 // Isolate as an external reference. | 705 // Isolate as an external reference. |
| 706 static ExternalReference isolate_address(Isolate* isolate); | 706 static ExternalReference isolate_address(Isolate* isolate); |
| 707 | 707 |
| 708 // One-of-a-kind references. These references are not part of a general | 708 // One-of-a-kind references. These references are not part of a general |
| 709 // pattern. This means that they have to be added to the | 709 // pattern. This means that they have to be added to the |
| 710 // ExternalReferenceTable in serialize.cc manually. | 710 // ExternalReferenceTable in serialize.cc manually. |
| 711 | 711 |
| 712 static ExternalReference incremental_marking_record_write_function( | 712 static ExternalReference incremental_marking_record_write_function( |
| 713 Isolate* isolate); | 713 Isolate* isolate); |
| 714 static ExternalReference incremental_evacuation_record_write_function( | |
| 715 Isolate* isolate); | |
| 716 static ExternalReference store_buffer_overflow_function( | 714 static ExternalReference store_buffer_overflow_function( |
| 717 Isolate* isolate); | 715 Isolate* isolate); |
| 718 static ExternalReference flush_icache_function(Isolate* isolate); | 716 static ExternalReference flush_icache_function(Isolate* isolate); |
| 719 static ExternalReference perform_gc_function(Isolate* isolate); | 717 static ExternalReference perform_gc_function(Isolate* isolate); |
| 720 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 718 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
| 721 | 719 |
| 722 static ExternalReference get_date_field_function(Isolate* isolate); | 720 static ExternalReference get_date_field_function(Isolate* isolate); |
| 723 static ExternalReference date_cache_stamp(Isolate* isolate); | 721 static ExternalReference date_cache_stamp(Isolate* isolate); |
| 724 | 722 |
| 725 static ExternalReference get_make_code_young_function(Isolate* isolate); | 723 static ExternalReference get_make_code_young_function(Isolate* isolate); |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1035 public: | 1033 public: |
| 1036 NullCallWrapper() { } | 1034 NullCallWrapper() { } |
| 1037 virtual ~NullCallWrapper() { } | 1035 virtual ~NullCallWrapper() { } |
| 1038 virtual void BeforeCall(int call_size) const { } | 1036 virtual void BeforeCall(int call_size) const { } |
| 1039 virtual void AfterCall() const { } | 1037 virtual void AfterCall() const { } |
| 1040 }; | 1038 }; |
| 1041 | 1039 |
| 1042 } } // namespace v8::internal | 1040 } } // namespace v8::internal |
| 1043 | 1041 |
| 1044 #endif // V8_ASSEMBLER_H_ | 1042 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |