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

Unified Diff: src/ic/ic.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/ic.cc
diff --git a/src/ic/ic.cc b/src/ic/ic.cc
index eee7d6993445403d7734782091bb394bfcb75ce6..841a1869e8e0838b97a0d62f73f040c5eb042c2f 100644
--- a/src/ic/ic.cc
+++ b/src/ic/ic.cc
@@ -448,6 +448,10 @@ void CallIC::Clear(Isolate* isolate, Code* host, CallICNexus* nexus) {
}
}
+Handle<Code> LoadIC::slow_stub() const {
+ LoadICSlowStub stub(isolate());
+ return stub.GetCode();
+}
void LoadIC::Clear(Isolate* isolate, Code* host, LoadICNexus* nexus) {
if (IsCleared(nexus)) return;
« src/code-stubs.h ('K') | « src/ic/ic.h ('k') | src/ic/mips/handler-compiler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698