| Index: src/hydrogen.h
|
| diff --git a/src/hydrogen.h b/src/hydrogen.h
|
| index 271835b8fdad97f74aac6d7a5c700bd5ec6184f2..01f72869c3b0c3422acabf7d4f338bf011dcfe69 100644
|
| --- a/src/hydrogen.h
|
| +++ b/src/hydrogen.h
|
| @@ -1253,23 +1253,14 @@ class HGraphBuilder {
|
| LoadKeyedHoleMode load_mode,
|
| KeyedAccessStoreMode store_mode);
|
|
|
| - HInstruction* AddExternalArrayElementAccess(
|
| - HValue* external_elements,
|
| - HValue* checked_key,
|
| - HValue* val,
|
| - HValue* dependency,
|
| - ElementsKind elements_kind,
|
| - bool is_store);
|
| -
|
| - HInstruction* AddFastElementAccess(
|
| + HInstruction* AddElementAccess(
|
| HValue* elements,
|
| HValue* checked_key,
|
| HValue* val,
|
| HValue* dependency,
|
| ElementsKind elements_kind,
|
| bool is_store,
|
| - LoadKeyedHoleMode load_mode,
|
| - KeyedAccessStoreMode store_mode);
|
| + LoadKeyedHoleMode load_mode = NEVER_RETURN_HOLE);
|
|
|
| HLoadNamedField* BuildLoadNamedField(HValue* object, HObjectAccess access);
|
| HInstruction* BuildLoadStringLength(HValue* object, HValue* checked_value);
|
| @@ -2196,7 +2187,6 @@ class HOptimizedGraphBuilder V8_FINAL
|
| HValue* key,
|
| HValue* val,
|
| SmallMapList* maps,
|
| - BailoutId ast_id,
|
| int position,
|
| bool is_store,
|
| KeyedAccessStoreMode store_mode,
|
| @@ -2206,7 +2196,6 @@ class HOptimizedGraphBuilder V8_FINAL
|
| HValue* key,
|
| HValue* val,
|
| Expression* expr,
|
| - BailoutId ast_id,
|
| int position,
|
| bool is_store,
|
| bool* has_side_effects);
|
|
|