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

Unified Diff: runtime/vm/flow_graph_compiler_arm.cc

Issue 2272793004: Update some switchable call stub names and comments. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: . Created 4 years, 4 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/code_generator.cc ('k') | runtime/vm/flow_graph_compiler_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler_arm.cc
diff --git a/runtime/vm/flow_graph_compiler_arm.cc b/runtime/vm/flow_graph_compiler_arm.cc
index 7a52718fc2b983b19c1515c91082bcbb5d874974..dadc66a42fa226989e57cf224da8e942bd8b78fb 100644
--- a/runtime/vm/flow_graph_compiler_arm.cc
+++ b/runtime/vm/flow_graph_compiler_arm.cc
@@ -1334,7 +1334,7 @@ void FlowGraphCompiler::EmitMegamorphicInstanceCall(
__ Comment("Slow case: megamorphic call");
}
__ LoadObject(R9, cache);
- __ ldr(LR, Address(THR, Thread::megamorphic_lookup_checked_entry_offset()));
+ __ ldr(LR, Address(THR, Thread::megamorphic_call_checked_entry_offset()));
__ blx(LR);
__ Bind(&done);
@@ -1375,7 +1375,7 @@ void FlowGraphCompiler::EmitSwitchableInstanceCall(
LocationSummary* locs) {
ASSERT(ic_data.NumArgsTested() == 1);
const Code& initial_stub = Code::ZoneHandle(
- StubCode::ICLookupThroughFunction_entry()->code());
+ StubCode::ICCallThroughFunction_entry()->code());
__ Comment("SwitchableCall");
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/flow_graph_compiler_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698