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

Unified Diff: runtime/vm/intrinsifier_mips.cc

Issue 1192103004: VM: New calling convention for generated code. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: ARM64 port Created 5 years, 3 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: runtime/vm/intrinsifier_mips.cc
diff --git a/runtime/vm/intrinsifier_mips.cc b/runtime/vm/intrinsifier_mips.cc
index d5df53304f102d24ec04997f901c3346bd6c0eb2..9dab789b3433f9672b4974a0a451079a1bd4674b 100644
--- a/runtime/vm/intrinsifier_mips.cc
+++ b/runtime/vm/intrinsifier_mips.cc
@@ -2125,6 +2125,7 @@ void Intrinsifier::JSRegExp_ExecuteMatch(Assembler* assembler) {
__ mov(S5, ZR);
// Tail-call the function.
+ __ lw(CODE_REG, FieldAddress(T0, Function::code_offset()));
__ lw(T3, FieldAddress(T0, Function::entry_point_offset()));
__ jr(T3);
}

Powered by Google App Engine
This is Rietveld 408576698