| Index: src/hydrogen.h
|
| diff --git a/src/hydrogen.h b/src/hydrogen.h
|
| index 2b0fc31ec20822ea08968f27a1ba217548e40d1c..6945212aaf62dd8cb30e6763d6b3d1f7519d8bd3 100644
|
| --- a/src/hydrogen.h
|
| +++ b/src/hydrogen.h
|
| @@ -1088,13 +1088,13 @@ class HGraphBuilder: public AstVisitor {
|
| HInstruction* BuildIncrement(bool returns_original_input,
|
| CountOperation* expr);
|
| HLoadNamedField* BuildLoadNamedField(HValue* object,
|
| - Property* expr,
|
| - Handle<Map> type,
|
| + Handle<Map> map,
|
| LookupResult* result,
|
| bool smi_and_map_check);
|
| - HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr);
|
| - HInstruction* BuildLoadKeyedGeneric(HValue* object,
|
| - HValue* key);
|
| + HInstruction* BuildLoadNamedGeneric(HValue* object,
|
| + Handle<String> name,
|
| + Property* expr);
|
| + HInstruction* BuildLoadKeyedGeneric(HValue* object, HValue* key);
|
| HInstruction* BuildExternalArrayElementAccess(
|
| HValue* external_elements,
|
| HValue* checked_key,
|
| @@ -1145,28 +1145,30 @@ class HGraphBuilder: public AstVisitor {
|
| bool* has_side_effects);
|
|
|
| HInstruction* BuildCallGetter(HValue* obj,
|
| - Property* expr,
|
| Handle<Map> map,
|
| - Handle<Object> callback,
|
| + Handle<AccessorPair> accessors,
|
| Handle<JSObject> holder);
|
| + bool IsAccessorCall(Handle<Map> map,
|
| + Handle<String> name,
|
| + Handle<AccessorPair>* accessors,
|
| + Handle<JSObject>* holder);
|
| HInstruction* BuildLoadNamed(HValue* object,
|
| - Property* prop,
|
| - Handle<Map> map,
|
| - Handle<String> name);
|
| + Handle<String> name,
|
| + Property* expr,
|
| + Handle<Map> map);
|
| HInstruction* BuildCallSetter(HValue* object,
|
| - Handle<String> name,
|
| HValue* value,
|
| Handle<Map> map,
|
| - Handle<Object> callback,
|
| + Handle<AccessorPair> accessors,
|
| Handle<JSObject> holder);
|
| HInstruction* BuildStoreNamed(HValue* object,
|
| + Handle<String> name,
|
| HValue* value,
|
| - Handle<Map> type,
|
| - Expression* key);
|
| + Handle<Map> map);
|
| HInstruction* BuildStoreNamedField(HValue* object,
|
| Handle<String> name,
|
| HValue* value,
|
| - Handle<Map> type,
|
| + Handle<Map> map,
|
| LookupResult* lookup,
|
| bool smi_and_map_check);
|
| HInstruction* BuildStoreNamedGeneric(HValue* object,
|
|
|