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

Unified Diff: src/compiler/dead-code-elimination.h

Issue 2140673007: [turbofan] Introduce explicit loop exits markers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Created 4 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 side-by-side diff with in-line comments
Download patch
Index: src/compiler/dead-code-elimination.h
diff --git a/src/compiler/dead-code-elimination.h b/src/compiler/dead-code-elimination.h
index e5996c88ff5f9a5a5476a7aaf112a021ba912610..8e18561b4b8d5014d0fccdd8f5e3c03a7f287f54 100644
--- a/src/compiler/dead-code-elimination.h
+++ b/src/compiler/dead-code-elimination.h
@@ -30,8 +30,11 @@ class DeadCodeElimination final : public AdvancedReducer {
private:
Reduction ReduceEnd(Node* node);
Reduction ReduceLoopOrMerge(Node* node);
+ Reduction ReduceLoopExit(Node* node);
Reduction ReduceNode(Node* node);
+ Reduction RemoveLoopExit(Node* node);
+
void TrimMergeOrPhi(Node* node, int size);
Graph* graph() const { return graph_; }

Powered by Google App Engine
This is Rietveld 408576698