| Index: src/mips/lithium-mips.h
|
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
|
| index 009b116fa01a24add90acb1c0ee1fa3ac30381b2..4bda5f7a38038587e9b4f5118fe28df750cf057d 100644
|
| --- a/src/mips/lithium-mips.h
|
| +++ b/src/mips/lithium-mips.h
|
| @@ -1575,6 +1575,12 @@ class LLoadKeyed V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| bool is_external() const {
|
| return hydrogen()->is_external();
|
| }
|
| + bool is_fixed_typed_array() const {
|
| + return hydrogen()->is_fixed_typed_array();
|
| + }
|
| + bool is_typed_elements() const {
|
| + return is_external() || is_fixed_typed_array();
|
| + }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(LoadKeyed, "load-keyed")
|
| DECLARE_HYDROGEN_ACCESSOR(LoadKeyed)
|
| @@ -2207,6 +2213,12 @@ class LStoreKeyed V8_FINAL : public LTemplateInstruction<0, 3, 0> {
|
| }
|
|
|
| bool is_external() const { return hydrogen()->is_external(); }
|
| + bool is_fixed_typed_array() const {
|
| + return hydrogen()->is_fixed_typed_array();
|
| + }
|
| + bool is_typed_elements() const {
|
| + return is_external() || is_fixed_typed_array();
|
| + }
|
| LOperand* elements() { return inputs_[0]; }
|
| LOperand* key() { return inputs_[1]; }
|
| LOperand* value() { return inputs_[2]; }
|
|
|