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

Unified Diff: src/builtins/builtins.h

Issue 2608893002: [builtins] Move LoadGlobalICStub 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 | « no previous file | 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 cc755199aef78602d25485b804264e8eb0e9515f..4181bd8dbf6e04906bf75bdf72803ff9003fe8a1 100644
--- a/src/builtins/builtins.h
+++ b/src/builtins/builtins.h
@@ -454,6 +454,14 @@ namespace internal {
StoreWithVector) \
TFS(KeyedStoreICStrictTrampoline, KEYED_STORE_IC, \
StoreICState::kStrictModeState, Store) \
+ TFS(LoadGlobalIC, LOAD_GLOBAL_IC, LoadGlobalICState::kNotInsideTypeOfState, \
+ LoadGlobalWithVector) \
+ TFS(LoadGlobalICInsideTypeof, LOAD_GLOBAL_IC, \
+ LoadGlobalICState::kInsideTypeOfState, LoadGlobalWithVector) \
+ TFS(LoadGlobalICTrampoline, LOAD_GLOBAL_IC, \
+ LoadGlobalICState::kNotInsideTypeOfState, LoadGlobal) \
+ TFS(LoadGlobalICInsideTypeofTrampoline, LOAD_GLOBAL_IC, \
+ LoadGlobalICState::kInsideTypeOfState, LoadGlobal) \
\
/* Math */ \
/* ES6 section 20.2.2.1 Math.abs ( x ) */ \
« no previous file with comments | « no previous file | src/builtins/builtins-ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698