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

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

Issue 2435023002: Use a different map to distinguish eval contexts (Closed)
Patch Set: Fix ia32 port Created 4 years, 1 month 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
Index: src/ia32/interface-descriptors-ia32.cc
diff --git a/src/ia32/interface-descriptors-ia32.cc b/src/ia32/interface-descriptors-ia32.cc
index e6cd46d7f053031bee00357baae74fb5c048a208..87be9c0b99764d187c266c39fd48d3cd96dd2ba3 100644
--- a/src/ia32/interface-descriptors-ia32.cc
+++ b/src/ia32/interface-descriptors-ia32.cc
@@ -25,6 +25,11 @@ const Register FastNewFunctionContextDescriptor::FunctionRegister() {
}
const Register FastNewFunctionContextDescriptor::SlotsRegister() { return eax; }
+const Register FastNewEvalContextDescriptor::FunctionRegister() {
+ return edi;
+}
+const Register FastNewEvalContextDescriptor::SlotsRegister() { return eax; }
+
const Register LoadDescriptor::ReceiverRegister() { return edx; }
const Register LoadDescriptor::NameRegister() { return ecx; }
const Register LoadDescriptor::SlotRegister() { return eax; }
« src/ast/scopes.cc ('K') | « src/heap/heap.cc ('k') | src/interface-descriptors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698