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 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1316 LOperand* context = UseFixed(instr->context(), rsi); | 1316 LOperand* context = UseFixed(instr->context(), rsi); |
1317 LOperand* constructor = UseFixed(instr->constructor(), rdi); | 1317 LOperand* constructor = UseFixed(instr->constructor(), rdi); |
1318 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor); | 1318 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor); |
1319 return MarkAsCall(DefineFixed(result, rax), instr); | 1319 return MarkAsCall(DefineFixed(result, rax), instr); |
1320 } | 1320 } |
1321 | 1321 |
1322 | 1322 |
1323 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { | 1323 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { |
1324 LOperand* context = UseFixed(instr->context(), rsi); | 1324 LOperand* context = UseFixed(instr->context(), rsi); |
1325 LOperand* function = UseFixed(instr->function(), rdi); | 1325 LOperand* function = UseFixed(instr->function(), rdi); |
1326 LCallFunction* call = new(zone()) LCallFunction(context, function); | 1326 LCallFunction* result = new(zone()) LCallFunction(context, function); |
1327 LInstruction* result = DefineFixed(call, rax); | 1327 return MarkAsCall(DefineFixed(result, rax), instr); |
1328 if (instr->IsTailCall()) return result; | |
1329 return MarkAsCall(result, instr); | |
1330 } | 1328 } |
1331 | 1329 |
1332 | 1330 |
1333 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { | 1331 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { |
1334 LOperand* context = UseFixed(instr->context(), rsi); | 1332 LOperand* context = UseFixed(instr->context(), rsi); |
1335 LCallRuntime* result = new(zone()) LCallRuntime(context); | 1333 LCallRuntime* result = new(zone()) LCallRuntime(context); |
1336 return MarkAsCall(DefineFixed(result, rax), instr); | 1334 return MarkAsCall(DefineFixed(result, rax), instr); |
1337 } | 1335 } |
1338 | 1336 |
1339 | 1337 |
(...skipping 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2613 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2611 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2614 LOperand* object = UseRegister(instr->object()); | 2612 LOperand* object = UseRegister(instr->object()); |
2615 LOperand* index = UseTempRegister(instr->index()); | 2613 LOperand* index = UseTempRegister(instr->index()); |
2616 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2614 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2617 } | 2615 } |
2618 | 2616 |
2619 | 2617 |
2620 } } // namespace v8::internal | 2618 } } // namespace v8::internal |
2621 | 2619 |
2622 #endif // V8_TARGET_ARCH_X64 | 2620 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |