Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index f5f2879afd3ec8f836d37b578bc9a5e383d9f46f..bfffc9cfe005cd51aca21bddfc30f861f4b26f56 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1648,6 +1648,14 @@ LInstruction* LChunkBuilder::DoThrow(HThrow* instr) { |
} |
+LInstruction* LChunkBuilder::DoForceRepresentation(HForceRepresentation* bad) { |
+ // All HForceRepresentation instructions should be eliminated in the |
+ // representation change phase of Hydrogen. |
+ UNREACHABLE(); |
+ return NULL; |
+} |
+ |
+ |
LInstruction* LChunkBuilder::DoChange(HChange* instr) { |
Representation from = instr->from(); |
Representation to = instr->to(); |
@@ -1742,6 +1750,27 @@ LInstruction* LChunkBuilder::DoCheckMap(HCheckMap* instr) { |
} |
+LInstruction* LChunkBuilder::DoClampToUint8(HClampToUint8* instr) { |
+ HValue* value = instr->value(); |
+ Representation input_rep = value->representation(); |
+ LOperand* reg = UseRegister(value); |
+ if (input_rep.IsDouble()) { |
+ return DefineAsRegister(new LClampDToUint8(reg, |
+ TempRegister())); |
+ } else if (input_rep.IsInteger32()) { |
+ return DefineSameAsFirst(new LClampIToUint8(reg)); |
+ } else { |
+ ASSERT(input_rep.IsTagged()); |
+ // Register allocator doesn't (yet) support allocation of double |
+ // temps. Reserve xmm1 explicitly. |
+ LClampTToUint8* result = new LClampTToUint8(reg, |
+ TempRegister(), |
+ FixedTemp(xmm1)); |
+ return AssignEnvironment(DefineSameAsFirst(result)); |
+ } |
+} |
+ |
+ |
LInstruction* LChunkBuilder::DoReturn(HReturn* instr) { |
return new LReturn(UseFixed(instr->value(), rax)); |
} |