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

Unified Diff: src/ic/ic-conventions.h

Issue 523583002: Multiple stubs can point to the same calling convention. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ports. Created 6 years, 4 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
« no previous file with comments | « src/ic/ia32/ic-conventions-ia32.cc ('k') | src/ic/x64/ic-conventions-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ic-conventions.h
diff --git a/src/ic/ic-conventions.h b/src/ic/ic-conventions.h
index 35ef65dc14116f8451af80acf12e01bf9f7fbcc5..28d4d66a068e505cab04d3876f08cbaa738e060b 100644
--- a/src/ic/ic-conventions.h
+++ b/src/ic/ic-conventions.h
@@ -58,6 +58,14 @@ class StoreConvention {
// stub implementations requires it to be initialized.
static const Register MapRegister();
};
+
+
+class InstanceofConvention {
+ public:
+ enum ParameterIndices { kLeftIndex, kRightIndex, kParameterCount };
+ static const Register left();
+ static const Register right();
+};
}
} // namespace v8::internal
« no previous file with comments | « src/ic/ia32/ic-conventions-ia32.cc ('k') | src/ic/x64/ic-conventions-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698