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 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1403 LOperand* context = UseFixed(instr->context(), esi); | 1403 LOperand* context = UseFixed(instr->context(), esi); |
1404 LOperand* constructor = UseFixed(instr->constructor(), edi); | 1404 LOperand* constructor = UseFixed(instr->constructor(), edi); |
1405 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor); | 1405 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor); |
1406 return MarkAsCall(DefineFixed(result, eax), instr); | 1406 return MarkAsCall(DefineFixed(result, eax), instr); |
1407 } | 1407 } |
1408 | 1408 |
1409 | 1409 |
1410 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { | 1410 LInstruction* LChunkBuilder::DoCallFunction(HCallFunction* instr) { |
1411 LOperand* context = UseFixed(instr->context(), esi); | 1411 LOperand* context = UseFixed(instr->context(), esi); |
1412 LOperand* function = UseFixed(instr->function(), edi); | 1412 LOperand* function = UseFixed(instr->function(), edi); |
1413 LCallFunction* call = new(zone()) LCallFunction(context, function); | 1413 LCallFunction* result = new(zone()) LCallFunction(context, function); |
1414 LInstruction* result = DefineFixed(call, eax); | 1414 return MarkAsCall(DefineFixed(result, eax), instr); |
1415 if (instr->IsTailCall()) return result; | |
1416 return MarkAsCall(result, instr); | |
1417 } | 1415 } |
1418 | 1416 |
1419 | 1417 |
1420 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { | 1418 LInstruction* LChunkBuilder::DoCallRuntime(HCallRuntime* instr) { |
1421 LOperand* context = UseFixed(instr->context(), esi); | 1419 LOperand* context = UseFixed(instr->context(), esi); |
1422 return MarkAsCall(DefineFixed(new(zone()) LCallRuntime(context), eax), instr); | 1420 return MarkAsCall(DefineFixed(new(zone()) LCallRuntime(context), eax), instr); |
1423 } | 1421 } |
1424 | 1422 |
1425 | 1423 |
1426 LInstruction* LChunkBuilder::DoRor(HRor* instr) { | 1424 LInstruction* LChunkBuilder::DoRor(HRor* instr) { |
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2765 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2763 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2766 LOperand* object = UseRegister(instr->object()); | 2764 LOperand* object = UseRegister(instr->object()); |
2767 LOperand* index = UseTempRegister(instr->index()); | 2765 LOperand* index = UseTempRegister(instr->index()); |
2768 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2766 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2769 } | 2767 } |
2770 | 2768 |
2771 | 2769 |
2772 } } // namespace v8::internal | 2770 } } // namespace v8::internal |
2773 | 2771 |
2774 #endif // V8_TARGET_ARCH_IA32 | 2772 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |