Index: src/x64/ic-x64.cc |
diff --git a/src/x64/ic-x64.cc b/src/x64/ic-x64.cc |
index 61696ce1a249857008c0d168a3ce530da8b54188..2244f4a9aa783ffcf490f49809547da36404a2a6 100644 |
--- a/src/x64/ic-x64.cc |
+++ b/src/x64/ic-x64.cc |
@@ -1000,6 +1000,18 @@ const Register LoadIC::ReceiverRegister() { return rdx; } |
const Register LoadIC::NameRegister() { return rcx; } |
+const Register LoadIC::SlotRegister() { |
+ ASSERT(FLAG_vector_ics); |
+ return rax; |
+} |
+ |
+ |
+const Register LoadIC::VectorRegister() { |
+ ASSERT(FLAG_vector_ics); |
+ return rbx; |
+} |
+ |
+ |
const Register StoreIC::ReceiverRegister() { return rdx; } |
const Register StoreIC::NameRegister() { return rcx; } |
const Register StoreIC::ValueRegister() { return rax; } |