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

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

Issue 2738413002: [regexp] Port RegExpExecStub to CSA (mostly) (Closed)
Patch Set: Fix arm64 cobbled code register Created 3 years, 9 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
Index: src/s390/interface-descriptors-s390.cc
diff --git a/src/s390/interface-descriptors-s390.cc b/src/s390/interface-descriptors-s390.cc
index 8060cfe94282e2696f0ee7455a3e5b7b48cccc8d..83c08782d60725fee3abdcb0159fb9bf63b3e363 100644
--- a/src/s390/interface-descriptors-s390.cc
+++ b/src/s390/interface-descriptors-s390.cc
@@ -56,6 +56,12 @@ const Register MathPowIntegerDescriptor::exponent() {
return MathPowTaggedDescriptor::exponent();
}
+const Register RegExpExecDescriptor::StringRegister() { return r2; }
+const Register RegExpExecDescriptor::LastIndexRegister() { return r3; }
+const Register RegExpExecDescriptor::StringStartRegister() { return r4; }
+const Register RegExpExecDescriptor::StringEndRegister() { return r5; }
+const Register RegExpExecDescriptor::CodeRegister() { return r9; }
+
const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; }
const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; }

Powered by Google App Engine
This is Rietveld 408576698