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

Unified Diff: src/compiler/verifier.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/verifier.cc
diff --git a/src/compiler/verifier.cc b/src/compiler/verifier.cc
index 46cd825ff970d59a95cb6bdecf5636f46745c02c..3a03a643ba9e1243f6a0e1fbc6de679e5f9cbbdc 100644
--- a/src/compiler/verifier.cc
+++ b/src/compiler/verifier.cc
@@ -946,6 +946,13 @@ void Verifier::Visitor::Check(Node* node) {
// CheckUpperIs(node, to));
break;
}
+ case IrOpcode::kImpossibleToWord32:
+ case IrOpcode::kImpossibleToWord64:
+ case IrOpcode::kImpossibleToFloat32:
+ case IrOpcode::kImpossibleToFloat64:
+ case IrOpcode::kImpossibleToTagged:
+ case IrOpcode::kImpossibleToBit:
+ break;
case IrOpcode::kCheckBounds:
CheckValueInputIs(node, 0, Type::Any());

Powered by Google App Engine
This is Rietveld 408576698