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 2276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2287 | 2287 |
2288 LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { | 2288 LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { |
2289 LOperand* object = UseFixed(instr->enumerable(), r0); | 2289 LOperand* object = UseFixed(instr->enumerable(), r0); |
2290 LForInPrepareMap* result = new(zone()) LForInPrepareMap(object); | 2290 LForInPrepareMap* result = new(zone()) LForInPrepareMap(object); |
2291 return MarkAsCall(DefineFixed(result, r0), instr, CAN_DEOPTIMIZE_EAGERLY); | 2291 return MarkAsCall(DefineFixed(result, r0), instr, CAN_DEOPTIMIZE_EAGERLY); |
2292 } | 2292 } |
2293 | 2293 |
2294 | 2294 |
2295 LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) { | 2295 LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) { |
2296 LOperand* map = UseRegister(instr->map()); | 2296 LOperand* map = UseRegister(instr->map()); |
2297 LOperand* scratch = TempRegister(); | 2297 return AssignEnvironment(DefineAsRegister(new(zone()) LForInCacheArray(map))); |
2298 return AssignEnvironment(DefineAsRegister( | |
2299 new(zone()) LForInCacheArray(map, scratch))); | |
2300 } | 2298 } |
2301 | 2299 |
2302 | 2300 |
2303 LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) { | 2301 LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) { |
2304 LOperand* value = UseRegisterAtStart(instr->value()); | 2302 LOperand* value = UseRegisterAtStart(instr->value()); |
2305 LOperand* map = UseRegisterAtStart(instr->map()); | 2303 LOperand* map = UseRegisterAtStart(instr->map()); |
2306 return AssignEnvironment(new(zone()) LCheckMapValue(value, map)); | 2304 return AssignEnvironment(new(zone()) LCheckMapValue(value, map)); |
2307 } | 2305 } |
2308 | 2306 |
2309 | 2307 |
2310 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2308 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2311 LOperand* object = UseRegister(instr->object()); | 2309 LOperand* object = UseRegister(instr->object()); |
2312 LOperand* index = UseRegister(instr->index()); | 2310 LOperand* index = UseRegister(instr->index()); |
2313 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2311 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
2314 } | 2312 } |
2315 | 2313 |
2316 | 2314 |
2317 } } // namespace v8::internal | 2315 } } // namespace v8::internal |
OLD | NEW |