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

Unified Diff: src/ic.h

Issue 385953004: Enum RegisterInfo renamed to ParameterIndices. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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
« no previous file with comments | « src/code-stubs.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic.h
diff --git a/src/ic.h b/src/ic.h
index 262893f3965dadb443509791578306b3fd04021e..4647c9c6d1853acabd46b073cc8f7636f6e74b2b 100644
--- a/src/ic.h
+++ b/src/ic.h
@@ -396,10 +396,10 @@ class LoadIC: public IC {
class ContextualModeBits: public BitField<ContextualMode, 0, 1> {};
STATIC_ASSERT(static_cast<int>(NOT_CONTEXTUAL) == 0);
- enum RegisterInfo {
+ enum ParameterIndices {
kReceiverIndex,
kNameIndex,
- kRegisterArgumentCount
+ kParameterCount
};
static const Register ReceiverRegister();
static const Register NameRegister();
@@ -583,11 +583,11 @@ class StoreIC: public IC {
static const ExtraICState kStrictModeState =
1 << StrictModeState::kShift;
- enum RegisterInfo {
+ enum ParameterIndices {
kReceiverIndex,
kNameIndex,
kValueIndex,
- kRegisterArgumentCount
+ kParameterCount
};
static const Register ReceiverRegister();
static const Register NameRegister();
« no previous file with comments | « src/code-stubs.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698