OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/crankshaft/x64/lithium-x64.h" | 5 #include "src/crankshaft/x64/lithium-x64.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #if V8_TARGET_ARCH_X64 | 9 #if V8_TARGET_ARCH_X64 |
10 | 10 |
(...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 LOperand* context = UseFixed(instr->context(), rsi); | 996 LOperand* context = UseFixed(instr->context(), rsi); |
997 LInstanceOf* result = new (zone()) LInstanceOf(context, left, right); | 997 LInstanceOf* result = new (zone()) LInstanceOf(context, left, right); |
998 return MarkAsCall(DefineFixed(result, rax), instr); | 998 return MarkAsCall(DefineFixed(result, rax), instr); |
999 } | 999 } |
1000 | 1000 |
1001 | 1001 |
1002 LInstruction* LChunkBuilder::DoHasInPrototypeChainAndBranch( | 1002 LInstruction* LChunkBuilder::DoHasInPrototypeChainAndBranch( |
1003 HHasInPrototypeChainAndBranch* instr) { | 1003 HHasInPrototypeChainAndBranch* instr) { |
1004 LOperand* object = UseRegister(instr->object()); | 1004 LOperand* object = UseRegister(instr->object()); |
1005 LOperand* prototype = UseRegister(instr->prototype()); | 1005 LOperand* prototype = UseRegister(instr->prototype()); |
1006 return new (zone()) LHasInPrototypeChainAndBranch(object, prototype); | 1006 LHasInPrototypeChainAndBranch* result = |
| 1007 new (zone()) LHasInPrototypeChainAndBranch(object, prototype); |
| 1008 return AssignEnvironment(result); |
1007 } | 1009 } |
1008 | 1010 |
1009 | 1011 |
1010 LInstruction* LChunkBuilder::DoWrapReceiver(HWrapReceiver* instr) { | 1012 LInstruction* LChunkBuilder::DoWrapReceiver(HWrapReceiver* instr) { |
1011 LOperand* receiver = UseRegister(instr->receiver()); | 1013 LOperand* receiver = UseRegister(instr->receiver()); |
1012 LOperand* function = UseRegisterAtStart(instr->function()); | 1014 LOperand* function = UseRegisterAtStart(instr->function()); |
1013 LWrapReceiver* result = new(zone()) LWrapReceiver(receiver, function); | 1015 LWrapReceiver* result = new(zone()) LWrapReceiver(receiver, function); |
1014 return AssignEnvironment(DefineSameAsFirst(result)); | 1016 return AssignEnvironment(DefineSameAsFirst(result)); |
1015 } | 1017 } |
1016 | 1018 |
(...skipping 1661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2678 LAllocateBlockContext* result = | 2680 LAllocateBlockContext* result = |
2679 new(zone()) LAllocateBlockContext(context, function); | 2681 new(zone()) LAllocateBlockContext(context, function); |
2680 return MarkAsCall(DefineFixed(result, rsi), instr); | 2682 return MarkAsCall(DefineFixed(result, rsi), instr); |
2681 } | 2683 } |
2682 | 2684 |
2683 | 2685 |
2684 } // namespace internal | 2686 } // namespace internal |
2685 } // namespace v8 | 2687 } // namespace v8 |
2686 | 2688 |
2687 #endif // V8_TARGET_ARCH_X64 | 2689 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |