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

Unified Diff: src/interpreter/interpreter.h

Issue 2733563002: [ic] Inline LoadIC into LdaNamedProperty bytecode handler (Closed)
Patch Set: Remove LoadFeedbackSlot Created 3 years, 9 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/ic/accessor-assembler.cc ('k') | src/interpreter/interpreter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interpreter/interpreter.h
diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h
index ac36815f14f5e052dcba1d9202619f1e8e3d22db..6a9c8d477e47c552eabbf7fe1eee959bb4f804b6 100644
--- a/src/interpreter/interpreter.h
+++ b/src/interpreter/interpreter.h
@@ -147,9 +147,14 @@ class Interpreter {
void DoStaLookupSlot(LanguageMode language_mode,
InterpreterAssembler* assembler);
- // Generates code to load a global.
- void BuildLoadGlobal(int slot_operand_index, int name_operand_index,
- TypeofMode typeof_mode, InterpreterAssembler* assembler);
+ // Generates code to load a global property.
+ void BuildLoadGlobalIC(int slot_operand_index, int name_operand_index,
+ TypeofMode typeof_mode,
+ InterpreterAssembler* assembler);
+
+ // Generates code to load a property.
+ void BuildLoadIC(int recv_operand_index, int slot_operand_index,
+ int name_operand_index, InterpreterAssembler* assembler);
// Generates code to prepare the result for ForInPrepare. Cache data
// are placed into the consecutive series of registers starting at
« no previous file with comments | « src/ic/accessor-assembler.cc ('k') | src/interpreter/interpreter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698