| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 | 743 |
| 744 LInstruction* LChunkBuilder::MarkAsCall(LInstruction* instr, | 744 LInstruction* LChunkBuilder::MarkAsCall(LInstruction* instr, |
| 745 HInstruction* hinstr, | 745 HInstruction* hinstr, |
| 746 CanDeoptimize can_deoptimize) { | 746 CanDeoptimize can_deoptimize) { |
| 747 #ifdef DEBUG | 747 #ifdef DEBUG |
| 748 instr->VerifyCall(); | 748 instr->VerifyCall(); |
| 749 #endif | 749 #endif |
| 750 instr->MarkAsCall(); | 750 instr->MarkAsCall(); |
| 751 instr = AssignPointerMap(instr); | 751 instr = AssignPointerMap(instr); |
| 752 | 752 |
| 753 if (hinstr->HasSideEffects()) { | 753 if (hinstr->HasObservableSideEffects()) { |
| 754 ASSERT(hinstr->next()->IsSimulate()); | 754 ASSERT(hinstr->next()->IsSimulate()); |
| 755 HSimulate* sim = HSimulate::cast(hinstr->next()); | 755 HSimulate* sim = HSimulate::cast(hinstr->next()); |
| 756 instr = SetInstructionPendingDeoptimizationEnvironment( | 756 instr = SetInstructionPendingDeoptimizationEnvironment( |
| 757 instr, sim->ast_id()); | 757 instr, sim->ast_id()); |
| 758 } | 758 } |
| 759 | 759 |
| 760 // If instruction does not have side-effects lazy deoptimization | 760 // If instruction does not have side-effects lazy deoptimization |
| 761 // after the call will try to deoptimize to the point before the call. | 761 // after the call will try to deoptimize to the point before the call. |
| 762 // Thus we still need to attach environment to this call even if | 762 // Thus we still need to attach environment to this call even if |
| 763 // call sequence can not deoptimize eagerly. | 763 // call sequence can not deoptimize eagerly. |
| 764 bool needs_environment = | 764 bool needs_environment = |
| 765 (can_deoptimize == CAN_DEOPTIMIZE_EAGERLY) || !hinstr->HasSideEffects(); | 765 (can_deoptimize == CAN_DEOPTIMIZE_EAGERLY) || |
| 766 !hinstr->HasObservableSideEffects(); |
| 766 if (needs_environment && !instr->HasEnvironment()) { | 767 if (needs_environment && !instr->HasEnvironment()) { |
| 767 instr = AssignEnvironment(instr); | 768 instr = AssignEnvironment(instr); |
| 768 } | 769 } |
| 769 | 770 |
| 770 return instr; | 771 return instr; |
| 771 } | 772 } |
| 772 | 773 |
| 773 | 774 |
| 774 LInstruction* LChunkBuilder::MarkAsSaveDoubles(LInstruction* instr) { | 775 LInstruction* LChunkBuilder::MarkAsSaveDoubles(LInstruction* instr) { |
| 775 instr->MarkAsSaveDoubles(); | 776 instr->MarkAsSaveDoubles(); |
| (...skipping 1417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2193 | 2194 |
| 2194 LInstruction* LChunkBuilder::DoIn(HIn* instr) { | 2195 LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
| 2195 LOperand* key = UseRegisterAtStart(instr->key()); | 2196 LOperand* key = UseRegisterAtStart(instr->key()); |
| 2196 LOperand* object = UseRegisterAtStart(instr->object()); | 2197 LOperand* object = UseRegisterAtStart(instr->object()); |
| 2197 LIn* result = new LIn(key, object); | 2198 LIn* result = new LIn(key, object); |
| 2198 return MarkAsCall(DefineFixed(result, v0), instr); | 2199 return MarkAsCall(DefineFixed(result, v0), instr); |
| 2199 } | 2200 } |
| 2200 | 2201 |
| 2201 | 2202 |
| 2202 } } // namespace v8::internal | 2203 } } // namespace v8::internal |
| OLD | NEW |