| Index: src/ia32/lithium-ia32.h
|
| ===================================================================
|
| --- src/ia32/lithium-ia32.h (revision 8207)
|
| +++ src/ia32/lithium-ia32.h (working copy)
|
| @@ -80,7 +80,6 @@
|
| V(CmpSymbolEqAndBranch) \
|
| V(CmpMapAndBranch) \
|
| V(CmpT) \
|
| - V(CmpTAndBranch) \
|
| V(ConstantD) \
|
| V(ConstantI) \
|
| V(ConstantT) \
|
| @@ -102,7 +101,6 @@
|
| V(HasInstanceTypeAndBranch) \
|
| V(In) \
|
| V(InstanceOf) \
|
| - V(InstanceOfAndBranch) \
|
| V(InstanceOfKnownGlobal) \
|
| V(InstructionGap) \
|
| V(Integer32ToDouble) \
|
| @@ -920,20 +918,6 @@
|
| };
|
|
|
|
|
| -class LCmpTAndBranch: public LControlInstruction<2, 0> {
|
| - public:
|
| - LCmpTAndBranch(LOperand* left, LOperand* right) {
|
| - inputs_[0] = left;
|
| - inputs_[1] = right;
|
| - }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(CmpTAndBranch, "cmp-t-and-branch")
|
| - DECLARE_HYDROGEN_ACCESSOR(Compare)
|
| -
|
| - Token::Value op() const { return hydrogen()->token(); }
|
| -};
|
| -
|
| -
|
| class LInstanceOf: public LTemplateInstruction<1, 3, 0> {
|
| public:
|
| LInstanceOf(LOperand* context, LOperand* left, LOperand* right) {
|
| @@ -948,20 +932,6 @@
|
| };
|
|
|
|
|
| -class LInstanceOfAndBranch: public LControlInstruction<3, 0> {
|
| - public:
|
| - LInstanceOfAndBranch(LOperand* context, LOperand* left, LOperand* right) {
|
| - inputs_[0] = context;
|
| - inputs_[1] = left;
|
| - inputs_[2] = right;
|
| - }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(InstanceOfAndBranch, "instance-of-and-branch")
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| -};
|
| -
|
| -
|
| class LInstanceOfKnownGlobal: public LTemplateInstruction<1, 1, 1> {
|
| public:
|
| LInstanceOfKnownGlobal(LOperand* value, LOperand* temp) {
|
|
|