Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index 0a16b65cb856df1e6503afd58516888e532ba779..0e3369cbce5720467f6ad4349d4ab01440f4fa6a 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -73,9 +73,9 @@ class LCodeGen; |
V(CheckNonSmi) \ |
V(CheckPrototypeMaps) \ |
V(CheckSmi) \ |
- V(ClampDoubleToUint8) \ |
+ V(ClampDToUint8) \ |
V(ClampIToUint8) \ |
- V(ClampTaggedToUint8) \ |
+ V(ClampTToUint8) \ |
V(ClassOfTest) \ |
V(ClassOfTestAndBranch) \ |
V(CmpID) \ |
@@ -1910,16 +1910,16 @@ class LCheckSmi: public LTemplateInstruction<0, 1, 0> { |
}; |
-class LClampDoubleToUint8: public LTemplateInstruction<1, 1, 1> { |
+class LClampDToUint8: public LTemplateInstruction<1, 1, 1> { |
public: |
- explicit LClampDoubleToUint8(LOperand* value, LOperand* temp) { |
+ LClampDToUint8(LOperand* value, LOperand* temp) { |
inputs_[0] = value; |
temps_[0] = temp; |
} |
LOperand* unclamped() { return inputs_[0]; } |
- DECLARE_CONCRETE_INSTRUCTION(ClampDoubleToUint8, "clamp-d-to-uint8") |
+ DECLARE_CONCRETE_INSTRUCTION(ClampDToUint8, "clamp-d-to-uint8") |
}; |
@@ -1935,11 +1935,11 @@ class LClampIToUint8: public LTemplateInstruction<1, 1, 0> { |
}; |
-class LClampTaggedToUint8: public LTemplateInstruction<1, 1, 2> { |
+class LClampTToUint8: public LTemplateInstruction<1, 1, 2> { |
public: |
- explicit LClampTaggedToUint8(LOperand* value, |
- LOperand* temp, |
- LOperand* temp2) { |
+ LClampTToUint8(LOperand* value, |
+ LOperand* temp, |
+ LOperand* temp2) { |
inputs_[0] = value; |
temps_[0] = temp; |
temps_[1] = temp2; |
@@ -1947,7 +1947,7 @@ class LClampTaggedToUint8: public LTemplateInstruction<1, 1, 2> { |
LOperand* unclamped() { return inputs_[0]; } |
- DECLARE_CONCRETE_INSTRUCTION(ClampTaggedToUint8, "clamp-t-to-uint8") |
+ DECLARE_CONCRETE_INSTRUCTION(ClampTToUint8, "clamp-t-to-uint8") |
}; |