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

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

Issue 2177483002: [turbofan] Handle impossible types (Type::None()) in the backend. (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/simplified-lowering.cc
diff --git a/src/compiler/simplified-lowering.cc b/src/compiler/simplified-lowering.cc
index 0e0e22e311e01e8a6539acbe84cfd8f151fc757c..ea0d0ff51e76dc3ad77377acf85113ab7a4928e9 100644
--- a/src/compiler/simplified-lowering.cc
+++ b/src/compiler/simplified-lowering.cc
@@ -568,7 +568,8 @@ class RepresentationSelector {
NodeInfo* info = GetInfo(node);
queue_.pop();
info->set_visited();
- TRACE(" visit #%d: %s\n", node->id(), node->op()->mnemonic());
+ TRACE(" visit #%d: %s (trunc: %s)\n", node->id(), node->op()->mnemonic(),
+ info->truncation().description());
VisitNode(node, info->truncation(), nullptr);
TRACE(" ==> output ");
PrintOutputInfo(info);
@@ -635,12 +636,12 @@ class RepresentationSelector {
info->set_queued();
nodes_.push_back(node);
queue_.push(node);
- TRACE(" initial: ");
+ TRACE(" initial #%i: ", node->id());
info->AddUse(use_info);
PrintTruncation(info->truncation());
return;
}
- TRACE(" queue?: ");
+ TRACE(" queue #%i?: ", node->id());
PrintTruncation(info->truncation());
if (info->AddUse(use_info)) {
// New usage information for the node is available.

Powered by Google App Engine
This is Rietveld 408576698