Chromium Code Reviews

Unified Diff: src/compiler/simplified-operator.h

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.
Jump to:
View side-by-side diff with in-line comments
Index: src/compiler/simplified-operator.h
diff --git a/src/compiler/simplified-operator.h b/src/compiler/simplified-operator.h
index db29fd1fc5a345b20543997acbac914b6e96bb1c..1dbb6da25350281bfa641a4d1f5f149fa13cd4ea 100644
--- a/src/compiler/simplified-operator.h
+++ b/src/compiler/simplified-operator.h
@@ -155,6 +155,9 @@ class SimplifiedOperatorBuilder FINAL {
// store-element [base + index], length, value
const Operator* StoreElement(ElementAccess const&);
+ const Operator* IsSmi();
+ const Operator* IsNonNegativeSmi();
+
private:
Zone* zone() const { return zone_; }

Powered by Google App Engine