| Index: src/stub-cache.h
|
| diff --git a/src/stub-cache.h b/src/stub-cache.h
|
| index bf10baee6d1ee2782a1457d68127b4f9fd04e269..fa5c8e4658406527a1442df7bd070c0699131978 100644
|
| --- a/src/stub-cache.h
|
| +++ b/src/stub-cache.h
|
| @@ -463,8 +463,7 @@ class NamedLoadHandlerCompiler : public PropertyHandlerCompiler {
|
|
|
| virtual ~NamedLoadHandlerCompiler() {}
|
|
|
| - Handle<Code> CompileLoadField(Handle<Name> name, FieldIndex index,
|
| - Representation representation);
|
| + Handle<Code> CompileLoadField(Handle<Name> name, FieldIndex index);
|
|
|
| Handle<Code> CompileLoadCallback(Handle<Name> name,
|
| Handle<ExecutableAccessorInfo> callback);
|
| @@ -472,7 +471,7 @@ class NamedLoadHandlerCompiler : public PropertyHandlerCompiler {
|
| Handle<Code> CompileLoadCallback(Handle<Name> name,
|
| const CallOptimization& call_optimization);
|
|
|
| - Handle<Code> CompileLoadConstant(Handle<Name> name, Handle<Object> value);
|
| + Handle<Code> CompileLoadConstant(Handle<Name> name, int constant_index);
|
|
|
| Handle<Code> CompileLoadInterceptor(Handle<Name> name);
|
|
|
| @@ -519,9 +518,6 @@ class NamedLoadHandlerCompiler : public PropertyHandlerCompiler {
|
|
|
| private:
|
| Handle<Code> CompileLoadNonexistent(Handle<Name> name);
|
| - void GenerateLoadField(Register reg,
|
| - FieldIndex field,
|
| - Representation representation);
|
| void GenerateLoadConstant(Handle<Object> value);
|
| void GenerateLoadCallback(Register reg,
|
| Handle<ExecutableAccessorInfo> callback);
|
|
|