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

Unified Diff: src/builtins/builtins.h

Issue 2608883002: [builtins] Move several CodeStub-based ICs to builtins (Closed)
Patch Set: Created 3 years, 12 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 | « BUILD.gn ('k') | src/builtins/builtins-ic.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins.h
diff --git a/src/builtins/builtins.h b/src/builtins/builtins.h
index d6d5a1f1e8a50907f7b49605495215a9024558fa..414c514658a71a11bbc07312e1a6c008e2bb576c 100644
--- a/src/builtins/builtins.h
+++ b/src/builtins/builtins.h
@@ -437,6 +437,24 @@ namespace internal {
CPP(JsonParse) \
CPP(JsonStringify) \
\
+ /* ICs */ \
+ TFS(LoadIC, LOAD_IC, kNoExtraICState, LoadWithVector) \
+ TFS(LoadICTrampoline, LOAD_IC, kNoExtraICState, Load) \
+ TFS(KeyedLoadIC, KEYED_LOAD_IC, kNoExtraICState, LoadWithVector) \
+ TFS(KeyedLoadICTrampoline, KEYED_LOAD_IC, kNoExtraICState, Load) \
+ TFS(StoreIC, STORE_IC, kNoExtraICState, StoreWithVector) \
+ TFS(StoreICTrampoline, STORE_IC, kNoExtraICState, Store) \
+ TFS(StoreICStrict, STORE_IC, StoreICState::kStrictModeState, \
+ StoreWithVector) \
+ TFS(StoreICStrictTrampoline, STORE_IC, StoreICState::kStrictModeState, \
+ Store) \
+ TFS(KeyedStoreIC, KEYED_STORE_IC, kNoExtraICState, StoreWithVector) \
+ TFS(KeyedStoreICTrampoline, KEYED_STORE_IC, kNoExtraICState, Store) \
+ TFS(KeyedStoreICStrict, KEYED_STORE_IC, StoreICState::kStrictModeState, \
+ StoreWithVector) \
+ TFS(KeyedStoreICStrictTrampoline, KEYED_STORE_IC, \
+ StoreICState::kStrictModeState, Store) \
+ \
/* Math */ \
/* ES6 section 20.2.2.1 Math.abs ( x ) */ \
TFJ(MathAbs, 1) \
« no previous file with comments | « BUILD.gn ('k') | src/builtins/builtins-ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698