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

Unified Diff: runtime/vm/runtime_entry_x64.cc

Issue 1147303002: Support untagged object pool entries. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: rebased Created 5 years, 7 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 7d0779580bf6a49cd8cdbe658fb6462edd5205f4..be400a3aa813defc425c4147f0daaf0d40356791 100644
--- a/runtime/vm/runtime_entry_x64.cc
+++ b/runtime/vm/runtime_entry_x64.cc
@@ -30,7 +30,8 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
// informative error message.
__ movq(RBX, Immediate(GetEntryPoint()));
__ movq(R10, Immediate(argument_count));
- __ Call(&Isolate::Current()->stub_code()->CallToRuntimeLabel(), PP);
+ __ Call(&Isolate::Current()->stub_code()->CallToRuntimeLabel(), PP,
+ false); // No fixup. Stub is at a fixed place in the object pool.
}
}

Powered by Google App Engine
This is Rietveld 408576698