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 2160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2171 ASSERT(instr->key()->representation().IsTagged()); | 2171 ASSERT(instr->key()->representation().IsTagged()); |
2172 ASSERT(instr->value()->representation().IsTagged()); | 2172 ASSERT(instr->value()->representation().IsTagged()); |
2173 | 2173 |
2174 return MarkAsCall( | 2174 return MarkAsCall( |
2175 new(zone()) LStoreKeyedGeneric(context, obj, key, val), instr); | 2175 new(zone()) LStoreKeyedGeneric(context, obj, key, val), instr); |
2176 } | 2176 } |
2177 | 2177 |
2178 | 2178 |
2179 LInstruction* LChunkBuilder::DoTransitionElementsKind( | 2179 LInstruction* LChunkBuilder::DoTransitionElementsKind( |
2180 HTransitionElementsKind* instr) { | 2180 HTransitionElementsKind* instr) { |
2181 LOperand* object = UseRegister(instr->object()); | |
2182 if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) { | 2181 if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) { |
| 2182 LOperand* object = UseRegister(instr->object()); |
2183 LOperand* new_map_reg = TempRegister(); | 2183 LOperand* new_map_reg = TempRegister(); |
2184 LTransitionElementsKind* result = | 2184 LTransitionElementsKind* result = |
2185 new(zone()) LTransitionElementsKind(object, NULL, new_map_reg); | 2185 new(zone()) LTransitionElementsKind(object, NULL, new_map_reg); |
2186 return result; | 2186 return result; |
2187 } else { | 2187 } else { |
| 2188 LOperand* object = UseFixed(instr->object(), a0); |
2188 LOperand* context = UseFixed(instr->context(), cp); | 2189 LOperand* context = UseFixed(instr->context(), cp); |
2189 LTransitionElementsKind* result = | 2190 LTransitionElementsKind* result = |
2190 new(zone()) LTransitionElementsKind(object, context, NULL); | 2191 new(zone()) LTransitionElementsKind(object, context, NULL); |
2191 return AssignPointerMap(result); | 2192 return MarkAsCall(result, instr); |
2192 } | 2193 } |
2193 } | 2194 } |
2194 | 2195 |
2195 | 2196 |
2196 LInstruction* LChunkBuilder::DoTrapAllocationMemento( | 2197 LInstruction* LChunkBuilder::DoTrapAllocationMemento( |
2197 HTrapAllocationMemento* instr) { | 2198 HTrapAllocationMemento* instr) { |
2198 LOperand* object = UseRegister(instr->object()); | 2199 LOperand* object = UseRegister(instr->object()); |
2199 LOperand* temp = TempRegister(); | 2200 LOperand* temp = TempRegister(); |
2200 LTrapAllocationMemento* result = | 2201 LTrapAllocationMemento* result = |
2201 new(zone()) LTrapAllocationMemento(object, temp); | 2202 new(zone()) LTrapAllocationMemento(object, temp); |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2489 | 2490 |
2490 | 2491 |
2491 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2492 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2492 LOperand* object = UseRegister(instr->object()); | 2493 LOperand* object = UseRegister(instr->object()); |
2493 LOperand* index = UseRegister(instr->index()); | 2494 LOperand* index = UseRegister(instr->index()); |
2494 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2495 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
2495 } | 2496 } |
2496 | 2497 |
2497 | 2498 |
2498 } } // namespace v8::internal | 2499 } } // namespace v8::internal |
OLD | NEW |