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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 // One-of-a-kind references. These references are not part of a general | 741 // One-of-a-kind references. These references are not part of a general |
742 // pattern. This means that they have to be added to the | 742 // pattern. This means that they have to be added to the |
743 // ExternalReferenceTable in serialize.cc manually. | 743 // ExternalReferenceTable in serialize.cc manually. |
744 | 744 |
745 static ExternalReference incremental_marking_record_write_function( | 745 static ExternalReference incremental_marking_record_write_function( |
746 Isolate* isolate); | 746 Isolate* isolate); |
747 static ExternalReference store_buffer_overflow_function( | 747 static ExternalReference store_buffer_overflow_function( |
748 Isolate* isolate); | 748 Isolate* isolate); |
749 static ExternalReference flush_icache_function(Isolate* isolate); | 749 static ExternalReference flush_icache_function(Isolate* isolate); |
750 static ExternalReference perform_gc_function(Isolate* isolate); | 750 static ExternalReference perform_gc_function(Isolate* isolate); |
| 751 static ExternalReference out_of_memory_function(Isolate* isolate); |
751 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 752 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
752 | 753 |
753 static ExternalReference get_date_field_function(Isolate* isolate); | 754 static ExternalReference get_date_field_function(Isolate* isolate); |
754 static ExternalReference date_cache_stamp(Isolate* isolate); | 755 static ExternalReference date_cache_stamp(Isolate* isolate); |
755 | 756 |
756 static ExternalReference get_make_code_young_function(Isolate* isolate); | 757 static ExternalReference get_make_code_young_function(Isolate* isolate); |
757 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); | 758 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); |
758 | 759 |
759 // Deoptimization support. | 760 // Deoptimization support. |
760 static ExternalReference new_deoptimizer_function(Isolate* isolate); | 761 static ExternalReference new_deoptimizer_function(Isolate* isolate); |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1081 | 1082 |
1082 private: | 1083 private: |
1083 int32_t multiplier_; | 1084 int32_t multiplier_; |
1084 int32_t shift_; | 1085 int32_t shift_; |
1085 }; | 1086 }; |
1086 | 1087 |
1087 | 1088 |
1088 } } // namespace v8::internal | 1089 } } // namespace v8::internal |
1089 | 1090 |
1090 #endif // V8_ASSEMBLER_H_ | 1091 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |