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 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 incremental_marking_record_write_function( | 900 static ExternalReference incremental_marking_record_write_function( |
901 Isolate* isolate); | 901 Isolate* isolate); |
| 902 static ExternalReference incremental_marking_record_write_code_entry_function( |
| 903 Isolate* isolate); |
902 static ExternalReference store_buffer_overflow_function( | 904 static ExternalReference store_buffer_overflow_function( |
903 Isolate* isolate); | 905 Isolate* isolate); |
904 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 906 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
905 | 907 |
906 static ExternalReference get_date_field_function(Isolate* isolate); | 908 static ExternalReference get_date_field_function(Isolate* isolate); |
907 static ExternalReference date_cache_stamp(Isolate* isolate); | 909 static ExternalReference date_cache_stamp(Isolate* isolate); |
908 | 910 |
909 static ExternalReference get_make_code_young_function(Isolate* isolate); | 911 static ExternalReference get_make_code_young_function(Isolate* isolate); |
910 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); | 912 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); |
911 | 913 |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 std::vector<ConstantPoolEntry> shared_entries; | 1299 std::vector<ConstantPoolEntry> shared_entries; |
1298 }; | 1300 }; |
1299 | 1301 |
1300 Label emitted_label_; // Records pc_offset of emitted pool | 1302 Label emitted_label_; // Records pc_offset of emitted pool |
1301 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1303 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1302 }; | 1304 }; |
1303 | 1305 |
1304 } // namespace internal | 1306 } // namespace internal |
1305 } // namespace v8 | 1307 } // namespace v8 |
1306 #endif // V8_ASSEMBLER_H_ | 1308 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |