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

Unified Diff: src/builtins.h

Issue 2144643004: [builtins] Turn StoreIC_Miss and StoreIC_Slow builtins to TurboFan code stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | « no previous file | src/builtins.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins.h
diff --git a/src/builtins.h b/src/builtins.h
index 76e0df3ed9a2bf4b3e47e75eef0f1218f81330b6..e60dbc5ce7fd0222a1ee47cb6200592af0e18c23 100644
--- a/src/builtins.h
+++ b/src/builtins.h
@@ -249,7 +249,6 @@ class CodeStubAssembler;
V(InterpreterEnterBytecodeDispatch, BUILTIN, kNoExtraICState) \
\
V(KeyedLoadIC_Miss, BUILTIN, kNoExtraICState) \
- V(StoreIC_Miss, BUILTIN, kNoExtraICState) \
V(KeyedStoreIC_Miss, BUILTIN, kNoExtraICState) \
V(LoadIC_Getter_ForDeopt, LOAD_IC, kNoExtraICState) \
V(KeyedLoadIC_Megamorphic, KEYED_LOAD_IC, kNoExtraICState) \
@@ -370,12 +369,14 @@ class CodeStubAssembler;
V(LoadGlobalIC_SlowInsideTypeof, HANDLER, Code::LOAD_GLOBAL_IC, \
LoadGlobalWithVector) \
V(LoadIC_Miss, BUILTIN, kNoExtraICState, LoadWithVector) \
- V(LoadIC_Slow, HANDLER, Code::LOAD_IC, LoadWithVector)
+ V(LoadIC_Slow, HANDLER, Code::LOAD_IC, LoadWithVector) \
+ V(StoreIC_Miss, BUILTIN, kNoExtraICState, VectorStoreIC) \
+ V(StoreIC_SlowSloppy, HANDLER, Code::STORE_IC, VectorStoreIC) \
+ V(StoreIC_SlowStrict, HANDLER, Code::STORE_IC, VectorStoreIC)
// Define list of builtin handlers implemented in assembly.
#define BUILTIN_LIST_H(V) \
V(KeyedLoadIC_Slow, KEYED_LOAD_IC) \
- V(StoreIC_Slow, STORE_IC) \
V(KeyedStoreIC_Slow, KEYED_STORE_IC) \
V(LoadIC_Normal, LOAD_IC) \
V(StoreIC_Normal, STORE_IC)
« no previous file with comments | « no previous file | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698