Index: src/ia32/lithium-codegen-ia32.cc |
diff --git a/src/ia32/lithium-codegen-ia32.cc b/src/ia32/lithium-codegen-ia32.cc |
index f8b28c48d9d43eb5442809bcd10354c74a2893f6..fb566d1dd1fb4231730cc2856b0a382c4415d5cd 100644 |
--- a/src/ia32/lithium-codegen-ia32.cc |
+++ b/src/ia32/lithium-codegen-ia32.cc |
@@ -5352,15 +5352,20 @@ void LCodeGen::DoDeferredTaggedToINoSSE2(LTaggedToINoSSE2* instr) { |
// Heap number map check. |
__ cmp(FieldOperand(input_reg, HeapObject::kMapOffset), |
factory()->heap_number_map()); |
- __ j(equal, &heap_number, Label::kNear); |
- // Check for undefined. Undefined is converted to zero for truncating |
- // conversions. |
- __ cmp(input_reg, factory()->undefined_value()); |
- __ RecordComment("Deferred TaggedToI: cannot truncate"); |
- DeoptimizeIf(not_equal, instr->environment()); |
- __ xor_(result_reg, result_reg); |
- __ jmp(&done, Label::kFar); |
- __ bind(&heap_number); |
+ if (instr->truncating()) { |
+ __ j(equal, &heap_number, Label::kNear); |
+ // Check for undefined. Undefined is converted to zero for truncating |
+ // conversions. |
+ __ cmp(input_reg, factory()->undefined_value()); |
+ __ RecordComment("Deferred TaggedToI: cannot truncate"); |
+ DeoptimizeIf(not_equal, instr->environment()); |
+ __ xor_(result_reg, result_reg); |
+ __ jmp(&done, Label::kFar); |
+ __ bind(&heap_number); |
+ } else { |
+ // Deoptimize if we don't have a heap number. |
+ DeoptimizeIf(not_equal, instr->environment()); |
+ } |
// Surprisingly, all of this crazy bit manipulation is considerably |
// faster than using the built-in x86 CPU conversion functions (about 6x). |