OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_X64_INSTRUCTION_CODES_X64_H_ | 5 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 namespace compiler { | 10 namespace compiler { |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 V(X64Lea) \ | 141 V(X64Lea) \ |
142 V(X64Dec32) \ | 142 V(X64Dec32) \ |
143 V(X64Inc32) \ | 143 V(X64Inc32) \ |
144 V(X64Push) \ | 144 V(X64Push) \ |
145 V(X64Poke) \ | 145 V(X64Poke) \ |
146 V(X64StackCheck) \ | 146 V(X64StackCheck) \ |
147 V(X64Xchgb) \ | 147 V(X64Xchgb) \ |
148 V(X64Xchgw) \ | 148 V(X64Xchgw) \ |
149 V(X64Xchgl) \ | 149 V(X64Xchgl) \ |
150 V(X64Int32x4Create) \ | 150 V(X64Int32x4Create) \ |
151 V(X64Int32x4ExtractLane) | 151 V(X64Int32x4ExtractLane) \ |
| 152 V(X64Int32x4ReplaceLane) \ |
| 153 V(X64Int32x4Add) \ |
| 154 V(X64Int32x4Sub) |
152 | 155 |
153 // Addressing modes represent the "shape" of inputs to an instruction. | 156 // Addressing modes represent the "shape" of inputs to an instruction. |
154 // Many instructions support multiple addressing modes. Addressing modes | 157 // Many instructions support multiple addressing modes. Addressing modes |
155 // are encoded into the InstructionCode of the instruction and tell the | 158 // are encoded into the InstructionCode of the instruction and tell the |
156 // code generator after register allocation which assembler method to call. | 159 // code generator after register allocation which assembler method to call. |
157 // | 160 // |
158 // We use the following local notation for addressing modes: | 161 // We use the following local notation for addressing modes: |
159 // | 162 // |
160 // M = memory operand | 163 // M = memory operand |
161 // R = base register | 164 // R = base register |
(...skipping 18 matching lines...) Expand all Loading... |
180 V(M1I) /* [ %r2*1 + K] */ \ | 183 V(M1I) /* [ %r2*1 + K] */ \ |
181 V(M2I) /* [ %r2*2 + K] */ \ | 184 V(M2I) /* [ %r2*2 + K] */ \ |
182 V(M4I) /* [ %r2*4 + K] */ \ | 185 V(M4I) /* [ %r2*4 + K] */ \ |
183 V(M8I) /* [ %r2*8 + K] */ | 186 V(M8I) /* [ %r2*8 + K] */ |
184 | 187 |
185 } // namespace compiler | 188 } // namespace compiler |
186 } // namespace internal | 189 } // namespace internal |
187 } // namespace v8 | 190 } // namespace v8 |
188 | 191 |
189 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 192 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
OLD | NEW |