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

Unified Diff: src/compiler/verifier.cc

Issue 612043003: Add inlining for intrinsics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix bug. Created 6 years, 2 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 04005009557fd73e9c144a103be9ddfad13da943..7aed6a93bcd88a5c66b3720d954a3edc548be626 100644
--- a/src/compiler/verifier.cc
+++ b/src/compiler/verifier.cc
@@ -486,6 +486,14 @@ GenericGraphVisit::Control Verifier::Visitor::Pre(Node* node) {
CHECK(bounds(node).upper->Is(Type::Boolean()));
break;
}
+ case IrOpcode::kIsSmi:
+ CHECK(bounds(Operand(node)).upper->Is(Type::Any()));
+ CHECK(bounds(node).upper->Is(Type::Boolean()));
+ break;
+ case IrOpcode::kIsNonNegativeSmi:
+ CHECK(bounds(Operand(node)).upper->Is(Type::Any()));
+ CHECK(bounds(node).upper->Is(Type::Boolean()));
+ break;
case IrOpcode::kChangeTaggedToInt32: {
// Signed32 /\ Tagged -> Signed32 /\ UntaggedInt32

Powered by Google App Engine
This is Rietveld 408576698