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

Side by Side Diff: src/compiler/code-generator-impl.h

Issue 1380863004: Revert of Reland: Remove register index/code indirection (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « src/compiler/code-generator.cc ('k') | src/compiler/graph-visualizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef V8_COMPILER_CODE_GENERATOR_IMPL_H_ 5 #ifndef V8_COMPILER_CODE_GENERATOR_IMPL_H_
6 #define V8_COMPILER_CODE_GENERATOR_IMPL_H_ 6 #define V8_COMPILER_CODE_GENERATOR_IMPL_H_
7 7
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/compiler/code-generator.h" 9 #include "src/compiler/code-generator.h"
10 #include "src/compiler/instruction.h" 10 #include "src/compiler/instruction.h"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 Label* ToLabel(InstructionOperand* op) { 90 Label* ToLabel(InstructionOperand* op) {
91 return gen_->GetLabel(ToRpoNumber(op)); 91 return gen_->GetLabel(ToRpoNumber(op));
92 } 92 }
93 93
94 RpoNumber ToRpoNumber(InstructionOperand* op) { 94 RpoNumber ToRpoNumber(InstructionOperand* op) {
95 return ToConstant(op).ToRpoNumber(); 95 return ToConstant(op).ToRpoNumber();
96 } 96 }
97 97
98 Register ToRegister(InstructionOperand* op) { 98 Register ToRegister(InstructionOperand* op) {
99 return RegisterOperand::cast(op)->GetRegister(); 99 return Register::FromAllocationIndex(RegisterOperand::cast(op)->index());
100 } 100 }
101 101
102 DoubleRegister ToDoubleRegister(InstructionOperand* op) { 102 DoubleRegister ToDoubleRegister(InstructionOperand* op) {
103 return DoubleRegisterOperand::cast(op)->GetDoubleRegister(); 103 return DoubleRegister::FromAllocationIndex(
104 DoubleRegisterOperand::cast(op)->index());
104 } 105 }
105 106
106 Constant ToConstant(InstructionOperand* op) { 107 Constant ToConstant(InstructionOperand* op) {
107 if (op->IsImmediate()) { 108 if (op->IsImmediate()) {
108 return gen_->code()->GetImmediate(ImmediateOperand::cast(op)); 109 return gen_->code()->GetImmediate(ImmediateOperand::cast(op));
109 } 110 }
110 return gen_->code()->GetConstant( 111 return gen_->code()->GetConstant(
111 ConstantOperand::cast(op)->virtual_register()); 112 ConstantOperand::cast(op)->virtual_register());
112 } 113 }
113 114
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 #elif V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X64 163 #elif V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X64
163 masm->ud2(); 164 masm->ud2();
164 #endif 165 #endif
165 } 166 }
166 167
167 } // namespace compiler 168 } // namespace compiler
168 } // namespace internal 169 } // namespace internal
169 } // namespace v8 170 } // namespace v8
170 171
171 #endif // V8_COMPILER_CODE_GENERATOR_IMPL_H 172 #endif // V8_COMPILER_CODE_GENERATOR_IMPL_H
OLDNEW
« no previous file with comments | « src/compiler/code-generator.cc ('k') | src/compiler/graph-visualizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698