| Index: src/mips/lithium-mips.h
|
| diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
|
| index f41689e78e7ca8cdc9fea250e550951aa1d23a79..9b9b511f90b22579362886a1f81a46a5c443fe7d 100644
|
| --- a/src/mips/lithium-mips.h
|
| +++ b/src/mips/lithium-mips.h
|
| @@ -173,7 +173,11 @@ class LCodeGen;
|
| V(TypeofIsAndBranch) \
|
| V(UnaryMathOperation) \
|
| V(UnknownOSRValue) \
|
| - V(ValueOf)
|
| + V(ValueOf) \
|
| + V(ForInPrepareMap) \
|
| + V(ForInCacheArray) \
|
| + V(CheckMapValue) \
|
| + V(LoadFieldByIndex)
|
|
|
|
|
| #define DECLARE_CONCRETE_INSTRUCTION(type, mnemonic) \
|
| @@ -2072,6 +2076,62 @@ class LIn: public LTemplateInstruction<1, 2, 0> {
|
| };
|
|
|
|
|
| +class LForInPrepareMap: public LTemplateInstruction<1, 1, 0> {
|
| + public:
|
| + explicit LForInPrepareMap(LOperand* object) {
|
| + inputs_[0] = object;
|
| + }
|
| +
|
| + LOperand* object() { return inputs_[0]; }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(ForInPrepareMap, "for-in-prepare-map")
|
| +};
|
| +
|
| +
|
| +class LForInCacheArray: public LTemplateInstruction<1, 1, 0> {
|
| + public:
|
| + explicit LForInCacheArray(LOperand* map) {
|
| + inputs_[0] = map;
|
| + }
|
| +
|
| + LOperand* map() { return inputs_[0]; }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(ForInCacheArray, "for-in-cache-array")
|
| +
|
| + int idx() {
|
| + return HForInCacheArray::cast(this->hydrogen_value())->idx();
|
| + }
|
| +};
|
| +
|
| +
|
| +class LCheckMapValue: public LTemplateInstruction<0, 2, 0> {
|
| + public:
|
| + LCheckMapValue(LOperand* value, LOperand* map) {
|
| + inputs_[0] = value;
|
| + inputs_[1] = map;
|
| + }
|
| +
|
| + LOperand* value() { return inputs_[0]; }
|
| + LOperand* map() { return inputs_[1]; }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(CheckMapValue, "check-map-value")
|
| +};
|
| +
|
| +
|
| +class LLoadFieldByIndex: public LTemplateInstruction<1, 2, 0> {
|
| + public:
|
| + LLoadFieldByIndex(LOperand* object, LOperand* index) {
|
| + inputs_[0] = object;
|
| + inputs_[1] = index;
|
| + }
|
| +
|
| + LOperand* object() { return inputs_[0]; }
|
| + LOperand* index() { return inputs_[1]; }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(LoadFieldByIndex, "load-field-by-index")
|
| +};
|
| +
|
| +
|
| class LChunkBuilder;
|
| class LChunk: public ZoneObject {
|
| public:
|
|
|