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

Unified Diff: src/compiler/live-range-separator.h

Issue 1472803004: [turbofan] Simplified splintering code. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler/live-range-separator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/live-range-separator.h
diff --git a/src/compiler/live-range-separator.h b/src/compiler/live-range-separator.h
index c8e6edc20b341c4f514f2916b0b9c3fa1c4f9ad0..57bc98235dda6ac082aa940be0921659ef94d445 100644
--- a/src/compiler/live-range-separator.h
+++ b/src/compiler/live-range-separator.h
@@ -47,6 +47,11 @@ class LiveRangeMerger final : public ZoneObject {
RegisterAllocationData* data() const { return data_; }
Zone* zone() const { return zone_; }
+ // Mark ranges spilled in deferred blocks, that also cover non-deferred code.
+ // We do nothing special for ranges fully contained in deferred blocks,
+ // because they would "spill in deferred blocks" anyway.
+ void MarkRangesSpilledInDeferredBlocks();
+
RegisterAllocationData* const data_;
Zone* const zone_;
« no previous file with comments | « no previous file | src/compiler/live-range-separator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698