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

Unified Diff: src/compiler/simplified-lowering.cc

Issue 2137003002: [turbofan] Always run type propagation in SimplifiedLowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/simplified-lowering.cc
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc
index 1fe977a7b23732e0cbb301f69f30409cd8f6b7a0..58c0bf02a4082188df13d40d47320eac9c417418 100644
--- a/src/compiler/simplified-lowering.cc
+++ b/src/compiler/simplified-lowering.cc
@@ -569,10 +569,9 @@ class RepresentationSelector {
void Run(SimplifiedLowering* lowering) {
RunTruncationPropagationPhase();
- if (lowering->flags() & SimplifiedLowering::kTypeFeedbackEnabled) {
- ResetNodeInfoState();
- RunTypePropagationPhase();
- }
+ // Run type propagation.
+ ResetNodeInfoState();
+ RunTypePropagationPhase();
// Run lowering and change insertion phase.
TRACE("--{Simplified lowering phase}--\n");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698