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 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 | 886 |
887 // Isolate as an external reference. | 887 // Isolate as an external reference. |
888 static ExternalReference isolate_address(Isolate* isolate); | 888 static ExternalReference isolate_address(Isolate* isolate); |
889 | 889 |
890 // One-of-a-kind references. These references are not part of a general | 890 // One-of-a-kind references. These references are not part of a general |
891 // pattern. This means that they have to be added to the | 891 // pattern. This means that they have to be added to the |
892 // ExternalReferenceTable in serialize.cc manually. | 892 // ExternalReferenceTable in serialize.cc manually. |
893 | 893 |
894 static ExternalReference incremental_marking_record_write_function( | 894 static ExternalReference incremental_marking_record_write_function( |
895 Isolate* isolate); | 895 Isolate* isolate); |
| 896 static ExternalReference incremental_marking_record_write_code_entry_function( |
| 897 Isolate* isolate); |
896 static ExternalReference store_buffer_overflow_function( | 898 static ExternalReference store_buffer_overflow_function( |
897 Isolate* isolate); | 899 Isolate* isolate); |
898 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); | 900 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); |
899 | 901 |
900 static ExternalReference get_date_field_function(Isolate* isolate); | 902 static ExternalReference get_date_field_function(Isolate* isolate); |
901 static ExternalReference date_cache_stamp(Isolate* isolate); | 903 static ExternalReference date_cache_stamp(Isolate* isolate); |
902 | 904 |
903 static ExternalReference get_make_code_young_function(Isolate* isolate); | 905 static ExternalReference get_make_code_young_function(Isolate* isolate); |
904 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); | 906 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); |
905 | 907 |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1282 std::vector<ConstantPoolEntry> shared_entries; | 1284 std::vector<ConstantPoolEntry> shared_entries; |
1283 }; | 1285 }; |
1284 | 1286 |
1285 Label emitted_label_; // Records pc_offset of emitted pool | 1287 Label emitted_label_; // Records pc_offset of emitted pool |
1286 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1288 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1287 }; | 1289 }; |
1288 | 1290 |
1289 } // namespace internal | 1291 } // namespace internal |
1290 } // namespace v8 | 1292 } // namespace v8 |
1291 #endif // V8_ASSEMBLER_H_ | 1293 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |