OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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/arm64/lithium-arm64.h" | 5 #include "src/crankshaft/arm64/lithium-arm64.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" | 9 #include "src/crankshaft/arm64/lithium-codegen-arm64.h" |
10 #include "src/crankshaft/hydrogen-osr.h" | 10 #include "src/crankshaft/hydrogen-osr.h" |
(...skipping 2635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2646 } | 2646 } |
2647 | 2647 |
2648 | 2648 |
2649 LInstruction* LChunkBuilder::DoWrapReceiver(HWrapReceiver* instr) { | 2649 LInstruction* LChunkBuilder::DoWrapReceiver(HWrapReceiver* instr) { |
2650 LOperand* receiver = UseRegister(instr->receiver()); | 2650 LOperand* receiver = UseRegister(instr->receiver()); |
2651 LOperand* function = UseRegister(instr->function()); | 2651 LOperand* function = UseRegister(instr->function()); |
2652 LWrapReceiver* result = new(zone()) LWrapReceiver(receiver, function); | 2652 LWrapReceiver* result = new(zone()) LWrapReceiver(receiver, function); |
2653 return AssignEnvironment(DefineAsRegister(result)); | 2653 return AssignEnvironment(DefineAsRegister(result)); |
2654 } | 2654 } |
2655 | 2655 |
2656 | |
2657 LInstruction* LChunkBuilder::DoStoreFrameContext(HStoreFrameContext* instr) { | |
2658 LOperand* context = UseRegisterAtStart(instr->context()); | |
2659 return new(zone()) LStoreFrameContext(context); | |
2660 } | |
2661 | |
2662 | |
2663 } // namespace internal | 2656 } // namespace internal |
2664 } // namespace v8 | 2657 } // namespace v8 |
OLD | NEW |