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

Unified Diff: runtime/vm/runtime_entry_x64.cc

Issue 1247783002: Make array allocation stub shared between isolates. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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
Index: runtime/vm/runtime_entry_x64.cc
diff --git a/runtime/vm/runtime_entry_x64.cc b/runtime/vm/runtime_entry_x64.cc
index 705eacd9473a4bea66763c644c3abd4c831d50b1..0e3cbc69a1768b3baa9116971ddf7f99ef693e6a 100644
--- a/runtime/vm/runtime_entry_x64.cc
+++ b/runtime/vm/runtime_entry_x64.cc
@@ -31,7 +31,7 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
ExternalLabel label(GetEntryPoint());
__ LoadExternalLabel(RBX, &label, kNotPatchable, PP);
__ movq(R10, Immediate(argument_count));
- __ Call(&Isolate::Current()->stub_code()->CallToRuntimeLabel(), PP);
+ __ Call(&StubCode::CallToRuntimeLabel(), PP);
}
}

Powered by Google App Engine
This is Rietveld 408576698