Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index 2998219892efc01d7255d46be6b9097de0539153..66bfe8b7ac678063698c692ec0227fee7c908631 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -83,10 +83,10 @@ class LCodeGen; |
V(GetCachedArrayIndex) \ |
V(Goto) \ |
V(HasCachedArrayIndexAndBranch) \ |
+ V(HasInPrototypeChainAndBranch) \ |
V(HasInstanceTypeAndBranch) \ |
V(InnerAllocatedObject) \ |
V(InstanceOf) \ |
- V(InstanceOfKnownGlobal) \ |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
V(InvokeFunction) \ |
@@ -232,8 +232,6 @@ class LInstruction : public ZoneObject { |
void set_hydrogen_value(HValue* value) { hydrogen_value_ = value; } |
HValue* hydrogen_value() const { return hydrogen_value_; } |
- virtual void SetDeferredLazyDeoptimizationEnvironment(LEnvironment* env) { } |
- |
void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); } |
bool IsCall() const { return IsCallBits::decode(bit_field_); } |
@@ -1170,41 +1168,27 @@ class LInstanceOf final : public LTemplateInstruction<1, 3, 0> { |
inputs_[2] = right; |
} |
- LOperand* context() { return inputs_[0]; } |
- LOperand* left() { return inputs_[1]; } |
- LOperand* right() { return inputs_[2]; } |
+ LOperand* context() const { return inputs_[0]; } |
+ LOperand* left() const { return inputs_[1]; } |
+ LOperand* right() const { return inputs_[2]; } |
DECLARE_CONCRETE_INSTRUCTION(InstanceOf, "instance-of") |
}; |
-class LInstanceOfKnownGlobal final : public LTemplateInstruction<1, 2, 1> { |
+class LHasInPrototypeChainAndBranch final : public LControlInstruction<2, 0> { |
public: |
- LInstanceOfKnownGlobal(LOperand* context, LOperand* value, LOperand* temp) { |
- inputs_[0] = context; |
- inputs_[1] = value; |
- temps_[0] = temp; |
+ LHasInPrototypeChainAndBranch(LOperand* object, LOperand* prototype) { |
+ inputs_[0] = object; |
+ inputs_[1] = prototype; |
} |
- LOperand* context() { return inputs_[0]; } |
- LOperand* value() { return inputs_[1]; } |
- LOperand* temp() { return temps_[0]; } |
- |
- DECLARE_CONCRETE_INSTRUCTION(InstanceOfKnownGlobal, |
- "instance-of-known-global") |
- DECLARE_HYDROGEN_ACCESSOR(InstanceOfKnownGlobal) |
+ LOperand* object() const { return inputs_[0]; } |
+ LOperand* prototype() const { return inputs_[1]; } |
- Handle<JSFunction> function() const { return hydrogen()->function(); } |
- LEnvironment* GetDeferredLazyDeoptimizationEnvironment() { |
- return lazy_deopt_env_; |
- } |
- virtual void SetDeferredLazyDeoptimizationEnvironment( |
- LEnvironment* env) override { |
- lazy_deopt_env_ = env; |
- } |
- |
- private: |
- LEnvironment* lazy_deopt_env_; |
+ DECLARE_CONCRETE_INSTRUCTION(HasInPrototypeChainAndBranch, |
+ "has-in-prototype-chain-and-branch") |
+ DECLARE_HYDROGEN_ACCESSOR(HasInPrototypeChainAndBranch) |
}; |