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

Unified Diff: runtime/vm/code_generator.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 | « no previous file | runtime/vm/flow_graph_compiler_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/code_generator.cc
diff --git a/runtime/vm/code_generator.cc b/runtime/vm/code_generator.cc
index ca1ba0bd52d019871ef330fb12e04197e41ccf63..d78098198b10086df9aa17ddee4a4546caa6cc89 100644
--- a/runtime/vm/code_generator.cc
+++ b/runtime/vm/code_generator.cc
@@ -1086,7 +1086,7 @@ DEFINE_RUNTIME_ENTRY(MonomorphicMiss, 1) {
// Patch to call through stub.
const Code& stub =
- Code::Handle(zone, StubCode::ICLookupThroughCode_entry()->code());
+ Code::Handle(zone, StubCode::ICCallThroughCode_entry()->code());
ASSERT(!Isolate::Current()->compilation_allowed());
CodePatcher::PatchSwitchableCallAt(caller_frame->pc(),
caller_code,
@@ -1190,7 +1190,7 @@ DEFINE_RUNTIME_ENTRY(MegamorphicCacheMissHandler, 3) {
const Code& caller_code =
Code::Handle(zone, caller_frame->LookupDartCode());
const Code& stub =
- Code::Handle(zone, StubCode::MegamorphicLookup_entry()->code());
+ Code::Handle(zone, StubCode::MegamorphicCall_entry()->code());
CodePatcher::PatchSwitchableCallAt(caller_frame->pc(), caller_code,
cache, stub);
« no previous file with comments | « no previous file | runtime/vm/flow_graph_compiler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698