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

Unified Diff: src/ic/handler-compiler.cc

Issue 2033423002: [builtins] Turn LoadIC_Miss and LoadIC_Slow builtins to TurboFan code stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@load-ic-stub-tf
Patch Set: Created 4 years, 6 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: src/ic/handler-compiler.cc
diff --git a/src/ic/handler-compiler.cc b/src/ic/handler-compiler.cc
index 2c8c0925aa37cd5d83d73b8869d8fb74310d1af4..6765d10040b5a3d4e01b66c541769c00190fd955 100644
--- a/src/ic/handler-compiler.cc
+++ b/src/ic/handler-compiler.cc
@@ -514,7 +514,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreTransition(
GenerateRestoreName(&miss, name);
PopVectorAndSlot();
- TailCallBuiltin(masm(), MissBuiltin(kind()));
+ TailCallMissHandler(masm(), kind());
return GetCode(kind(), name);
}
@@ -543,7 +543,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreField(LookupIterator* it) {
__ bind(&miss);
if (need_save_restore) PopVectorAndSlot();
- TailCallBuiltin(masm(), MissBuiltin(kind()));
+ TailCallMissHandler(masm(), kind());
return GetCode(kind(), it->name());
}

Powered by Google App Engine
This is Rietveld 408576698