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

Unified Diff: runtime/vm/runtime_entry_x64.cc

Issue 1268783003: Simplify constant pool usage in x64 code generator (by removing extra argument (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Make PP implicit in LoadPoolPointer 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 0e3cbc69a1768b3baa9116971ddf7f99ef693e6a..fe342dc0b1ab2261f5178cc24c0962c28f73b2f3 100644
--- a/runtime/vm/runtime_entry_x64.cc
+++ b/runtime/vm/runtime_entry_x64.cc
@@ -29,9 +29,9 @@ void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
// Argument count is not checked here, but in the runtime entry for a more
// informative error message.
ExternalLabel label(GetEntryPoint());
- __ LoadExternalLabel(RBX, &label, kNotPatchable, PP);
+ __ LoadExternalLabel(RBX, &label, kNotPatchable);
__ movq(R10, Immediate(argument_count));
- __ Call(&StubCode::CallToRuntimeLabel(), PP);
+ __ Call(&StubCode::CallToRuntimeLabel());
}
}

Powered by Google App Engine
This is Rietveld 408576698