| Index: src/interpreter/interpreter.h
|
| diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h
|
| index f3e73bcb37679ecb1070a0625cd4de555fcf4d7c..cb68bf671bf0216c1f1306ca8a526cf5ba6d486a 100644
|
| --- a/src/interpreter/interpreter.h
|
| +++ b/src/interpreter/interpreter.h
|
| @@ -59,12 +59,23 @@ class Interpreter {
|
| void DoCompareOp(Token::Value compare_op,
|
| compiler::InterpreterAssembler* assembler);
|
|
|
| - // Generates code to perform a property load via |ic|.
|
| - void DoPropertyLoadIC(Callable ic, compiler::InterpreterAssembler* assembler);
|
| + // Generates code to perform a global load via |ic|.
|
| + void DoLoadGlobal(Callable ic, compiler::InterpreterAssembler* assembler);
|
|
|
| - // Generates code to perform a property store via |ic|.
|
| - void DoPropertyStoreIC(Callable ic,
|
| - compiler::InterpreterAssembler* assembler);
|
| + // Generates code to perform a global store via |ic|.
|
| + void DoStoreGlobal(Callable ic, compiler::InterpreterAssembler* assembler);
|
| +
|
| + // Generates code to perform a named property load via |ic|.
|
| + void DoLoadIC(Callable ic, compiler::InterpreterAssembler* assembler);
|
| +
|
| + // Generates code to perform a keyed property load via |ic|.
|
| + void DoKeyedLoadIC(Callable ic, compiler::InterpreterAssembler* assembler);
|
| +
|
| + // Generates code to perform a namedproperty store via |ic|.
|
| + void DoStoreIC(Callable ic, compiler::InterpreterAssembler* assembler);
|
| +
|
| + // Generates code to perform a keyed property store via |ic|.
|
| + void DoKeyedStoreIC(Callable ic, compiler::InterpreterAssembler* assembler);
|
|
|
| // Generates code ro create a literal via |function_id|.
|
| void DoCreateLiteral(Runtime::FunctionId function_id,
|
|
|