| 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 2216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2227 | 2227 |
| 2228 LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { | 2228 LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { |
| 2229 LOperand* object = UseFixed(instr->enumerable(), a0); | 2229 LOperand* object = UseFixed(instr->enumerable(), a0); |
| 2230 LForInPrepareMap* result = new(zone()) LForInPrepareMap(object); | 2230 LForInPrepareMap* result = new(zone()) LForInPrepareMap(object); |
| 2231 return MarkAsCall(DefineFixed(result, v0), instr, CAN_DEOPTIMIZE_EAGERLY); | 2231 return MarkAsCall(DefineFixed(result, v0), instr, CAN_DEOPTIMIZE_EAGERLY); |
| 2232 } | 2232 } |
| 2233 | 2233 |
| 2234 | 2234 |
| 2235 LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) { | 2235 LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) { |
| 2236 LOperand* map = UseRegister(instr->map()); | 2236 LOperand* map = UseRegister(instr->map()); |
| 2237 LOperand* scratch = TempRegister(); | 2237 return AssignEnvironment(DefineAsRegister(new(zone()) LForInCacheArray(map))); |
| 2238 return AssignEnvironment(DefineAsRegister( | |
| 2239 new(zone()) LForInCacheArray(map, scratch))); | |
| 2240 } | 2238 } |
| 2241 | 2239 |
| 2242 | 2240 |
| 2243 LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) { | 2241 LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) { |
| 2244 LOperand* value = UseRegisterAtStart(instr->value()); | 2242 LOperand* value = UseRegisterAtStart(instr->value()); |
| 2245 LOperand* map = UseRegisterAtStart(instr->map()); | 2243 LOperand* map = UseRegisterAtStart(instr->map()); |
| 2246 return AssignEnvironment(new(zone()) LCheckMapValue(value, map)); | 2244 return AssignEnvironment(new(zone()) LCheckMapValue(value, map)); |
| 2247 } | 2245 } |
| 2248 | 2246 |
| 2249 | 2247 |
| 2250 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2248 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2251 LOperand* object = UseRegister(instr->object()); | 2249 LOperand* object = UseRegister(instr->object()); |
| 2252 LOperand* index = UseRegister(instr->index()); | 2250 LOperand* index = UseRegister(instr->index()); |
| 2253 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2251 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
| 2254 } | 2252 } |
| 2255 | 2253 |
| 2256 | 2254 |
| 2257 } } // namespace v8::internal | 2255 } } // namespace v8::internal |
| OLD | NEW |