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

Unified Diff: src/x64/interface-descriptors-x64.cc

Issue 1224793002: Loads and stores to global vars are now made via property cell shortcuts installed into parent scri… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressing comments Created 5 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/x64/full-codegen-x64.cc ('k') | src/x87/full-codegen-x87.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/interface-descriptors-x64.cc
diff --git a/src/x64/interface-descriptors-x64.cc b/src/x64/interface-descriptors-x64.cc
index 7602403508739cdcce27f420bda349b3ec32f742..685e9ffb5aa1c1094f85dfbe80662b913425a507 100644
--- a/src/x64/interface-descriptors-x64.cc
+++ b/src/x64/interface-descriptors-x64.cc
@@ -36,6 +36,17 @@ const Register VectorStoreICDescriptor::VectorRegister() { return rbx; }
const Register StoreTransitionDescriptor::MapRegister() { return rbx; }
+const Register LoadGlobalViaContextDescriptor::DepthRegister() { return rdx; }
+const Register LoadGlobalViaContextDescriptor::SlotRegister() { return rbx; }
+const Register LoadGlobalViaContextDescriptor::NameRegister() { return rcx; }
+
+
+const Register StoreGlobalViaContextDescriptor::DepthRegister() { return rdx; }
+const Register StoreGlobalViaContextDescriptor::SlotRegister() { return rbx; }
+const Register StoreGlobalViaContextDescriptor::NameRegister() { return rcx; }
+const Register StoreGlobalViaContextDescriptor::ValueRegister() { return rax; }
+
+
const Register ElementTransitionAndStoreDescriptor::MapRegister() {
return rbx;
}
« no previous file with comments | « src/x64/full-codegen-x64.cc ('k') | src/x87/full-codegen-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698