| 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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 | 890 |
| 891 explicit ExternalReference(const SCTableReference& table_ref); | 891 explicit ExternalReference(const SCTableReference& table_ref); |
| 892 | 892 |
| 893 // Isolate as an external reference. | 893 // Isolate as an external reference. |
| 894 static ExternalReference isolate_address(Isolate* isolate); | 894 static ExternalReference isolate_address(Isolate* isolate); |
| 895 | 895 |
| 896 // One-of-a-kind references. These references are not part of a general | 896 // One-of-a-kind references. These references are not part of a general |
| 897 // pattern. This means that they have to be added to the | 897 // pattern. This means that they have to be added to the |
| 898 // ExternalReferenceTable in serialize.cc manually. | 898 // ExternalReferenceTable in serialize.cc manually. |
| 899 | 899 |
| 900 static ExternalReference interpreter_dispatch_table_address(Isolate* isolate); |
| 901 |
| 900 static ExternalReference incremental_marking_record_write_function( | 902 static ExternalReference incremental_marking_record_write_function( |
| 901 Isolate* isolate); | 903 Isolate* isolate); |
| 902 static ExternalReference incremental_marking_record_write_code_entry_function( | 904 static ExternalReference incremental_marking_record_write_code_entry_function( |
| 903 Isolate* isolate); | 905 Isolate* isolate); |
| 904 static ExternalReference store_buffer_overflow_function( | 906 static ExternalReference store_buffer_overflow_function( |
| 905 Isolate* isolate); | 907 Isolate* isolate); |
| 906 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 908 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
| 907 | 909 |
| 908 static ExternalReference get_date_field_function(Isolate* isolate); | 910 static ExternalReference get_date_field_function(Isolate* isolate); |
| 909 static ExternalReference date_cache_stamp(Isolate* isolate); | 911 static ExternalReference date_cache_stamp(Isolate* isolate); |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1299 std::vector<ConstantPoolEntry> shared_entries; | 1301 std::vector<ConstantPoolEntry> shared_entries; |
| 1300 }; | 1302 }; |
| 1301 | 1303 |
| 1302 Label emitted_label_; // Records pc_offset of emitted pool | 1304 Label emitted_label_; // Records pc_offset of emitted pool |
| 1303 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1305 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
| 1304 }; | 1306 }; |
| 1305 | 1307 |
| 1306 } // namespace internal | 1308 } // namespace internal |
| 1307 } // namespace v8 | 1309 } // namespace v8 |
| 1308 #endif // V8_ASSEMBLER_H_ | 1310 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |