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

Side by Side Diff: src/assembler.cc

Issue 7302003: Support slots recording for compaction during incremental marking. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: fix presubmit, remove last debug check Created 9 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « src/assembler.h ('k') | src/heap.cc » ('j') | no next file with comments »
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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 739
740 ExternalReference ExternalReference:: 740 ExternalReference ExternalReference::
741 incremental_marking_record_write_function(Isolate* isolate) { 741 incremental_marking_record_write_function(Isolate* isolate) {
742 return ExternalReference(Redirect( 742 return ExternalReference(Redirect(
743 isolate, 743 isolate,
744 FUNCTION_ADDR(IncrementalMarking::RecordWriteFromCode))); 744 FUNCTION_ADDR(IncrementalMarking::RecordWriteFromCode)));
745 } 745 }
746 746
747 747
748 ExternalReference ExternalReference:: 748 ExternalReference ExternalReference::
749 incremental_evacuation_record_write_function(Isolate* isolate) {
750 return ExternalReference(Redirect(
751 isolate,
752 FUNCTION_ADDR(IncrementalMarking::RecordWriteForEvacuationFromCode)));
753 }
754
755
756 ExternalReference ExternalReference::
749 store_buffer_overflow_function(Isolate* isolate) { 757 store_buffer_overflow_function(Isolate* isolate) {
750 return ExternalReference(Redirect( 758 return ExternalReference(Redirect(
751 isolate, 759 isolate,
752 FUNCTION_ADDR(StoreBuffer::StoreBufferOverflow))); 760 FUNCTION_ADDR(StoreBuffer::StoreBufferOverflow)));
753 } 761 }
754 762
755 763
756 ExternalReference ExternalReference::perform_gc_function(Isolate* isolate) { 764 ExternalReference ExternalReference::perform_gc_function(Isolate* isolate) {
757 return 765 return
758 ExternalReference(Redirect(isolate, FUNCTION_ADDR(Runtime::PerformGC))); 766 ExternalReference(Redirect(isolate, FUNCTION_ADDR(Runtime::PerformGC)));
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); 1229 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position);
1222 state_.written_position = state_.current_position; 1230 state_.written_position = state_.current_position;
1223 written = true; 1231 written = true;
1224 } 1232 }
1225 1233
1226 // Return whether something was written. 1234 // Return whether something was written.
1227 return written; 1235 return written;
1228 } 1236 }
1229 1237
1230 } } // namespace v8::internal 1238 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698