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

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: address comments 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
« no previous file with comments | « runtime/vm/object_x64_test.cc ('k') | runtime/vm/stub_code_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
}
« no previous file with comments | « runtime/vm/object_x64_test.cc ('k') | runtime/vm/stub_code_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698