Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: src/crankshaft/arm64/lithium-arm64.cc

Issue 1845553002: [crankshaft] Get rid of the StoreFrameContext instruction. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698