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

Unified Diff: src/ic/accessor-assembler.h

Issue 2511603002: [ic] Support data handlers in LoadGlobalIC. (Closed)
Patch Set: Addressing comments and fix Created 4 years, 1 month 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/accessor-assembler.h
diff --git a/src/ic/accessor-assembler.h b/src/ic/accessor-assembler.h
index 1d900f8c452392bac543eefe456d13c42e71aea4..fb363c51ba60f85a04ce14c2bd000b17c6a85b9e 100644
--- a/src/ic/accessor-assembler.h
+++ b/src/ic/accessor-assembler.h
@@ -18,10 +18,13 @@ class AccessorAssembler {
public:
static void GenerateLoadIC(compiler::CodeAssemblerState* state);
static void GenerateLoadICTrampoline(compiler::CodeAssemblerState* state);
- static void GenerateLoadICProtoArray(compiler::CodeAssemblerState* state);
- static void GenerateLoadGlobalIC(compiler::CodeAssemblerState* state);
+ static void GenerateLoadICProtoArray(
+ compiler::CodeAssemblerState* state,
+ bool throw_reference_error_if_nonexistent);
+ static void GenerateLoadGlobalIC(compiler::CodeAssemblerState* state,
+ TypeofMode typeof_mode);
static void GenerateLoadGlobalICTrampoline(
- compiler::CodeAssemblerState* state);
+ compiler::CodeAssemblerState* state, TypeofMode typeof_mode);
static void GenerateKeyedLoadICTF(compiler::CodeAssemblerState* state);
static void GenerateKeyedLoadICTrampolineTF(
compiler::CodeAssemblerState* state);
« no previous file with comments | « src/globals.h ('k') | src/ic/accessor-assembler.cc » ('j') | src/ic/accessor-assembler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698