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

Unified Diff: src/compiler/typer.cc

Issue 612043003: Add inlining for intrinsics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comments. 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/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index b34b5b1bdecc55a60304bbd1465ad1d277caa4b4..4d37c9739668ac2c6db4f6d5554180a3538bf468 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -1205,8 +1205,15 @@ Bounds Typer::Visitor::TypeStoreElement(Node* node) {
}
-// Machine operators.
+Bounds Typer::Visitor::TypeIsSmi(Node* node) { return Bounds(Type::Boolean()); }
+
+Bounds Typer::Visitor::TypeIsNonNegativeSmi(Node* node) {
+ return Bounds(Type::Boolean());
+}
+
+
+// Machine operators.
Bounds Typer::Visitor::TypeLoad(Node* node) {
return Bounds::Unbounded(zone());

Powered by Google App Engine
This is Rietveld 408576698