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 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1283 | 1283 |
1284 LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) { | 1284 LInstruction* LChunkBuilder::DoCallNew(HCallNew* instr) { |
1285 LOperand* constructor = UseFixed(instr->constructor(), rdi); | 1285 LOperand* constructor = UseFixed(instr->constructor(), rdi); |
1286 argument_count_ -= instr->argument_count(); | 1286 argument_count_ -= instr->argument_count(); |
1287 LCallNew* result = new(zone()) LCallNew(constructor); | 1287 LCallNew* result = new(zone()) LCallNew(constructor); |
1288 return MarkAsCall(DefineFixed(result, rax), instr); | 1288 return MarkAsCall(DefineFixed(result, rax), instr); |
1289 } | 1289 } |
1290 | 1290 |
1291 | 1291 |
1292 LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) { | 1292 LInstruction* LChunkBuilder::DoCallNewArray(HCallNewArray* instr) { |
1293 ASSERT(FLAG_optimize_constructed_arrays); | |
1294 LOperand* constructor = UseFixed(instr->constructor(), rdi); | 1293 LOperand* constructor = UseFixed(instr->constructor(), rdi); |
1295 argument_count_ -= instr->argument_count(); | 1294 argument_count_ -= instr->argument_count(); |
1296 LCallNewArray* result = new(zone()) LCallNewArray(constructor); | 1295 LCallNewArray* result = new(zone()) LCallNewArray(constructor); |
1297 return MarkAsCall(DefineFixed(result, rax), instr); | 1296 return MarkAsCall(DefineFixed(result, rax), instr); |
1298 } | 1297 } |
1299 | 1298 |
1300 | 1299 |
1301 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { | 1300 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { |
1302 LOperand* function = UseFixed(instr->function(), rdi); | 1301 LOperand* function = UseFixed(instr->function(), rdi); |
1303 argument_count_ -= instr->argument_count(); | 1302 argument_count_ -= instr->argument_count(); |
(...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2601 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2600 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2602 LOperand* object = UseRegister(instr->object()); | 2601 LOperand* object = UseRegister(instr->object()); |
2603 LOperand* index = UseTempRegister(instr->index()); | 2602 LOperand* index = UseTempRegister(instr->index()); |
2604 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2603 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2605 } | 2604 } |
2606 | 2605 |
2607 | 2606 |
2608 } } // namespace v8::internal | 2607 } } // namespace v8::internal |
2609 | 2608 |
2610 #endif // V8_TARGET_ARCH_X64 | 2609 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |