Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/assembler.h

Issue 2487173002: [turbofan] Advance bytecode offset after lazy deopt. (Closed)
Patch Set: Rebased. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/builtins/arm/builtins-arm.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
892 // Isolate as an external reference. 892 // Isolate as an external reference.
893 static ExternalReference isolate_address(Isolate* isolate); 893 static ExternalReference isolate_address(Isolate* isolate);
894 894
895 // One-of-a-kind references. These references are not part of a general 895 // One-of-a-kind references. These references are not part of a general
896 // pattern. This means that they have to be added to the 896 // pattern. This means that they have to be added to the
897 // ExternalReferenceTable in serialize.cc manually. 897 // ExternalReferenceTable in serialize.cc manually.
898 898
899 static ExternalReference interpreter_dispatch_table_address(Isolate* isolate); 899 static ExternalReference interpreter_dispatch_table_address(Isolate* isolate);
900 static ExternalReference interpreter_dispatch_counters(Isolate* isolate); 900 static ExternalReference interpreter_dispatch_counters(Isolate* isolate);
901 901
902 static ExternalReference interpreter_advance_bytecode_offset(
903 Isolate* isolate);
904
902 static ExternalReference incremental_marking_record_write_function( 905 static ExternalReference incremental_marking_record_write_function(
903 Isolate* isolate); 906 Isolate* isolate);
904 static ExternalReference incremental_marking_record_write_code_entry_function( 907 static ExternalReference incremental_marking_record_write_code_entry_function(
905 Isolate* isolate); 908 Isolate* isolate);
906 static ExternalReference store_buffer_overflow_function( 909 static ExternalReference store_buffer_overflow_function(
907 Isolate* isolate); 910 Isolate* isolate);
908 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); 911 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
909 912
910 static ExternalReference get_date_field_function(Isolate* isolate); 913 static ExternalReference get_date_field_function(Isolate* isolate);
911 static ExternalReference date_cache_stamp(Isolate* isolate); 914 static ExternalReference date_cache_stamp(Isolate* isolate);
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 std::vector<ConstantPoolEntry> shared_entries; 1283 std::vector<ConstantPoolEntry> shared_entries;
1281 }; 1284 };
1282 1285
1283 Label emitted_label_; // Records pc_offset of emitted pool 1286 Label emitted_label_; // Records pc_offset of emitted pool
1284 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1287 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1285 }; 1288 };
1286 1289
1287 } // namespace internal 1290 } // namespace internal
1288 } // namespace v8 1291 } // namespace v8
1289 #endif // V8_ASSEMBLER_H_ 1292 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/builtins/arm/builtins-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698