| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 } | 744 } |
| 745 | 745 |
| 746 // Shift operations can only deoptimize if we do a logical shift by 0 and | 746 // Shift operations can only deoptimize if we do a logical shift by 0 and |
| 747 // the result cannot be truncated to int32. | 747 // the result cannot be truncated to int32. |
| 748 bool does_deopt = false; | 748 bool does_deopt = false; |
| 749 if (op == Token::SHR && constant_value == 0) { | 749 if (op == Token::SHR && constant_value == 0) { |
| 750 if (FLAG_opt_safe_uint32_operations) { | 750 if (FLAG_opt_safe_uint32_operations) { |
| 751 does_deopt = !instr->CheckFlag(HInstruction::kUint32); | 751 does_deopt = !instr->CheckFlag(HInstruction::kUint32); |
| 752 } else { | 752 } else { |
| 753 for (HUseIterator it(instr->uses()); !it.Done(); it.Advance()) { | 753 for (HUseIterator it(instr->uses()); !it.Done(); it.Advance()) { |
| 754 if (!it.value()->CheckFlag(HValue::kTruncatingToInt32) && | 754 if (!it.value()->CheckFlag(HValue::kTruncatingToInt32)) { |
| 755 !it.value()->CheckFlag(HValue::kTruncatingToSmi)) { | |
| 756 does_deopt = true; | 755 does_deopt = true; |
| 757 break; | 756 break; |
| 758 } | 757 } |
| 759 } | 758 } |
| 760 } | 759 } |
| 761 } | 760 } |
| 762 | 761 |
| 763 LInstruction* result = | 762 LInstruction* result = |
| 764 DefineSameAsFirst(new(zone()) LShiftI(op, left, right, does_deopt)); | 763 DefineSameAsFirst(new(zone()) LShiftI(op, left, right, does_deopt)); |
| 765 return does_deopt ? AssignEnvironment(result) : result; | 764 return does_deopt ? AssignEnvironment(result) : result; |
| (...skipping 1804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2570 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2569 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2571 LOperand* object = UseRegister(instr->object()); | 2570 LOperand* object = UseRegister(instr->object()); |
| 2572 LOperand* index = UseTempRegister(instr->index()); | 2571 LOperand* index = UseTempRegister(instr->index()); |
| 2573 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2572 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2574 } | 2573 } |
| 2575 | 2574 |
| 2576 | 2575 |
| 2577 } } // namespace v8::internal | 2576 } } // namespace v8::internal |
| 2578 | 2577 |
| 2579 #endif // V8_TARGET_ARCH_X64 | 2578 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |