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 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 | 756 |
757 // One-of-a-kind references. These references are not part of a general | 757 // One-of-a-kind references. These references are not part of a general |
758 // pattern. This means that they have to be added to the | 758 // pattern. This means that they have to be added to the |
759 // ExternalReferenceTable in serialize.cc manually. | 759 // ExternalReferenceTable in serialize.cc manually. |
760 | 760 |
761 static ExternalReference incremental_marking_record_write_function( | 761 static ExternalReference incremental_marking_record_write_function( |
762 Isolate* isolate); | 762 Isolate* isolate); |
763 static ExternalReference store_buffer_overflow_function( | 763 static ExternalReference store_buffer_overflow_function( |
764 Isolate* isolate); | 764 Isolate* isolate); |
765 static ExternalReference flush_icache_function(Isolate* isolate); | 765 static ExternalReference flush_icache_function(Isolate* isolate); |
766 static ExternalReference perform_gc_function(Isolate* isolate); | |
767 static ExternalReference out_of_memory_function(Isolate* isolate); | |
768 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 766 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
769 | 767 |
770 static ExternalReference get_date_field_function(Isolate* isolate); | 768 static ExternalReference get_date_field_function(Isolate* isolate); |
771 static ExternalReference date_cache_stamp(Isolate* isolate); | 769 static ExternalReference date_cache_stamp(Isolate* isolate); |
772 | 770 |
773 static ExternalReference get_make_code_young_function(Isolate* isolate); | 771 static ExternalReference get_make_code_young_function(Isolate* isolate); |
774 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); | 772 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); |
775 | 773 |
776 // Deoptimization support. | 774 // Deoptimization support. |
777 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 775 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 | 1096 |
1099 private: | 1097 private: |
1100 int32_t multiplier_; | 1098 int32_t multiplier_; |
1101 int32_t shift_; | 1099 int32_t shift_; |
1102 }; | 1100 }; |
1103 | 1101 |
1104 | 1102 |
1105 } } // namespace v8::internal | 1103 } } // namespace v8::internal |
1106 | 1104 |
1107 #endif // V8_ASSEMBLER_H_ | 1105 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |