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 2261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2272 | 2272 |
2273 | 2273 |
2274 LInstruction* LChunkBuilder::DoIn(HIn* instr) { | 2274 LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
2275 LOperand* key = UseRegisterAtStart(instr->key()); | 2275 LOperand* key = UseRegisterAtStart(instr->key()); |
2276 LOperand* object = UseRegisterAtStart(instr->object()); | 2276 LOperand* object = UseRegisterAtStart(instr->object()); |
2277 LIn* result = new LIn(key, object); | 2277 LIn* result = new LIn(key, object); |
2278 return MarkAsCall(DefineFixed(result, v0), instr); | 2278 return MarkAsCall(DefineFixed(result, v0), instr); |
2279 } | 2279 } |
2280 | 2280 |
2281 | 2281 |
| 2282 LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { |
| 2283 LOperand* object = UseFixed(instr->enumerable(), a0); |
| 2284 LForInPrepareMap* result = new LForInPrepareMap(object); |
| 2285 return MarkAsCall(DefineFixed(result, v0), instr, CAN_DEOPTIMIZE_EAGERLY); |
| 2286 } |
| 2287 |
| 2288 |
| 2289 LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) { |
| 2290 LOperand* map = UseRegister(instr->map()); |
| 2291 return AssignEnvironment(DefineAsRegister( |
| 2292 new LForInCacheArray(map))); |
| 2293 } |
| 2294 |
| 2295 |
| 2296 LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) { |
| 2297 LOperand* value = UseRegisterAtStart(instr->value()); |
| 2298 LOperand* map = UseRegisterAtStart(instr->map()); |
| 2299 return AssignEnvironment(new LCheckMapValue(value, map)); |
| 2300 } |
| 2301 |
| 2302 |
| 2303 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2304 LOperand* object = UseRegister(instr->object()); |
| 2305 LOperand* index = UseRegister(instr->index()); |
| 2306 return DefineAsRegister(new LLoadFieldByIndex(object, index)); |
| 2307 } |
| 2308 |
| 2309 |
2282 } } // namespace v8::internal | 2310 } } // namespace v8::internal |
OLD | NEW |