| Index: src/x64/lithium-x64.h
|
| diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h
|
| index 182e0f57e27525879c035e37256dba5a1c3aa010..56d04e8a3a3011efd9b0a89148780f576e07e3a3 100644
|
| --- a/src/x64/lithium-x64.h
|
| +++ b/src/x64/lithium-x64.h
|
| @@ -83,11 +83,9 @@ class LCodeGen;
|
| V(CmpConstantEqAndBranch) \
|
| V(CmpID) \
|
| V(CmpIDAndBranch) \
|
| - V(CmpJSObjectEq) \
|
| - V(CmpJSObjectEqAndBranch) \
|
| + V(CmpObjectEq) \
|
| + V(CmpObjectEqAndBranch) \
|
| V(CmpMapAndBranch) \
|
| - V(CmpSymbolEq) \
|
| - V(CmpSymbolEqAndBranch) \
|
| V(CmpT) \
|
| V(ConstantD) \
|
| V(ConstantI) \
|
| @@ -620,48 +618,26 @@ class LUnaryMathOperation: public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LCmpJSObjectEq: public LTemplateInstruction<1, 2, 0> {
|
| +class LCmpObjectEq: public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| - LCmpJSObjectEq(LOperand* left, LOperand* right) {
|
| + LCmpObjectEq(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| inputs_[1] = right;
|
| }
|
|
|
| - DECLARE_CONCRETE_INSTRUCTION(CmpJSObjectEq, "cmp-jsobject-eq")
|
| + DECLARE_CONCRETE_INSTRUCTION(CmpObjectEq, "cmp-object-eq")
|
| };
|
|
|
|
|
| -class LCmpJSObjectEqAndBranch: public LControlInstruction<2, 0> {
|
| +class LCmpObjectEqAndBranch: public LControlInstruction<2, 0> {
|
| public:
|
| - LCmpJSObjectEqAndBranch(LOperand* left, LOperand* right) {
|
| + LCmpObjectEqAndBranch(LOperand* left, LOperand* right) {
|
| inputs_[0] = left;
|
| inputs_[1] = right;
|
| }
|
|
|
| - DECLARE_CONCRETE_INSTRUCTION(CmpJSObjectEqAndBranch,
|
| - "cmp-jsobject-eq-and-branch")
|
| -};
|
| -
|
| -
|
| -class LCmpSymbolEq: public LTemplateInstruction<1, 2, 0> {
|
| - public:
|
| - LCmpSymbolEq(LOperand* left, LOperand* right) {
|
| - inputs_[0] = left;
|
| - inputs_[1] = right;
|
| - }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(CmpSymbolEq, "cmp-symbol-eq")
|
| -};
|
| -
|
| -
|
| -class LCmpSymbolEqAndBranch: public LControlInstruction<2, 0> {
|
| - public:
|
| - LCmpSymbolEqAndBranch(LOperand* left, LOperand* right) {
|
| - inputs_[0] = left;
|
| - inputs_[1] = right;
|
| - }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(CmpSymbolEqAndBranch, "cmp-symbol-eq-and-branch")
|
| + DECLARE_CONCRETE_INSTRUCTION(CmpObjectEqAndBranch,
|
| + "cmp-object-eq-and-branch")
|
| };
|
|
|
|
|
|
|