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/code-factory.h

Issue 1912633002: [ic] Split LoadIC into LoadGlobalIC and LoadIC. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebasing 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
« no previous file with comments | « src/builtins.cc ('k') | src/code-factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-factory.h
diff --git a/src/code-factory.h b/src/code-factory.h
index dbc35771dc03f23be32ad63a6364244abdfd1bd5..fdb1ddd27287f8d31f515bce1437704aa4d7de68 100644
--- a/src/code-factory.h
+++ b/src/code-factory.h
@@ -32,9 +32,11 @@ class Callable final BASE_EMBEDDED {
class CodeFactory final {
public:
// Initial states for ICs.
- static Callable LoadIC(Isolate* isolate, TypeofMode typeof_mode);
- static Callable LoadICInOptimizedCode(Isolate* isolate,
- TypeofMode typeof_mode);
+ static Callable LoadIC(Isolate* isolate);
+ static Callable LoadICInOptimizedCode(Isolate* isolate);
+ static Callable LoadGlobalIC(Isolate* isolate, TypeofMode typeof_mode);
+ static Callable LoadGlobalICInOptimizedCode(Isolate* isolate,
+ TypeofMode typeof_mode);
static Callable KeyedLoadIC(Isolate* isolate);
static Callable KeyedLoadICInOptimizedCode(Isolate* isolate);
static Callable CallIC(Isolate* isolate, int argc,
« no previous file with comments | « src/builtins.cc ('k') | src/code-factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698