| 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 2304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2315 LOperand* temp = TempRegister(); | 2315 LOperand* temp = TempRegister(); |
| 2316 LTrapAllocationMemento* result = | 2316 LTrapAllocationMemento* result = |
| 2317 new(zone()) LTrapAllocationMemento(object, temp); | 2317 new(zone()) LTrapAllocationMemento(object, temp); |
| 2318 return AssignEnvironment(result); | 2318 return AssignEnvironment(result); |
| 2319 } | 2319 } |
| 2320 | 2320 |
| 2321 | 2321 |
| 2322 LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) { | 2322 LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) { |
| 2323 bool is_in_object = instr->access().IsInobject(); | 2323 bool is_in_object = instr->access().IsInobject(); |
| 2324 bool needs_write_barrier = instr->NeedsWriteBarrier(); | 2324 bool needs_write_barrier = instr->NeedsWriteBarrier(); |
| 2325 bool needs_write_barrier_for_map = !instr->transition().is_null() && | 2325 bool needs_write_barrier_for_map = instr->has_transition() && |
| 2326 instr->NeedsWriteBarrierForMap(); | 2326 instr->NeedsWriteBarrierForMap(); |
| 2327 | 2327 |
| 2328 LOperand* obj; | 2328 LOperand* obj; |
| 2329 if (needs_write_barrier) { | 2329 if (needs_write_barrier) { |
| 2330 obj = is_in_object | 2330 obj = is_in_object |
| 2331 ? UseRegister(instr->object()) | 2331 ? UseRegister(instr->object()) |
| 2332 : UseTempRegister(instr->object()); | 2332 : UseTempRegister(instr->object()); |
| 2333 } else { | 2333 } else { |
| 2334 obj = needs_write_barrier_for_map | 2334 obj = needs_write_barrier_for_map |
| 2335 ? UseRegister(instr->object()) | 2335 ? UseRegister(instr->object()) |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2608 | 2608 |
| 2609 | 2609 |
| 2610 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2610 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2611 LOperand* object = UseRegister(instr->object()); | 2611 LOperand* object = UseRegister(instr->object()); |
| 2612 LOperand* index = UseRegister(instr->index()); | 2612 LOperand* index = UseRegister(instr->index()); |
| 2613 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2613 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
| 2614 } | 2614 } |
| 2615 | 2615 |
| 2616 | 2616 |
| 2617 } } // namespace v8::internal | 2617 } } // namespace v8::internal |
| OLD | NEW |