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 2439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2450 // We only need a scratch register if we have a write barrier or we | 2450 // We only need a scratch register if we have a write barrier or we |
2451 // have a store into the properties array (not in-object-property). | 2451 // have a store into the properties array (not in-object-property). |
2452 LOperand* temp = (!instr->is_in_object() || needs_write_barrier || | 2452 LOperand* temp = (!instr->is_in_object() || needs_write_barrier || |
2453 needs_write_barrier_for_map) ? TempRegister() : NULL; | 2453 needs_write_barrier_for_map) ? TempRegister() : NULL; |
2454 | 2454 |
2455 // We need a temporary register for write barrier of the map field. | 2455 // We need a temporary register for write barrier of the map field. |
2456 LOperand* temp_map = needs_write_barrier_for_map ? TempRegister() : NULL; | 2456 LOperand* temp_map = needs_write_barrier_for_map ? TempRegister() : NULL; |
2457 | 2457 |
2458 LStoreNamedField* result = | 2458 LStoreNamedField* result = |
2459 new(zone()) LStoreNamedField(obj, val, temp, temp_map); | 2459 new(zone()) LStoreNamedField(obj, val, temp, temp_map); |
2460 if (FLAG_track_fields && instr->field_representation().IsSmi()) { | 2460 if ((FLAG_track_fields && instr->field_representation().IsSmi()) || |
| 2461 (FLAG_track_heap_object_fields && |
| 2462 instr->field_representation().IsHeapObject())) { |
2461 return AssignEnvironment(result); | 2463 return AssignEnvironment(result); |
2462 } | 2464 } |
2463 return result; | 2465 return result; |
2464 } | 2466 } |
2465 | 2467 |
2466 | 2468 |
2467 LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) { | 2469 LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) { |
2468 LOperand* context = UseFixed(instr->context(), esi); | 2470 LOperand* context = UseFixed(instr->context(), esi); |
2469 LOperand* object = UseFixed(instr->object(), edx); | 2471 LOperand* object = UseFixed(instr->object(), edx); |
2470 LOperand* value = UseFixed(instr->value(), eax); | 2472 LOperand* value = UseFixed(instr->value(), eax); |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2766 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2768 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2767 LOperand* object = UseRegister(instr->object()); | 2769 LOperand* object = UseRegister(instr->object()); |
2768 LOperand* index = UseTempRegister(instr->index()); | 2770 LOperand* index = UseTempRegister(instr->index()); |
2769 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2771 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2770 } | 2772 } |
2771 | 2773 |
2772 | 2774 |
2773 } } // namespace v8::internal | 2775 } } // namespace v8::internal |
2774 | 2776 |
2775 #endif // V8_TARGET_ARCH_IA32 | 2777 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |