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_IA32_INSTRUCTION_CODES_IA32_H_ | 5 #ifndef V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ |
6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ | 6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 namespace compiler { | 10 namespace compiler { |
(...skipping 13 matching lines...) Expand all Loading... |
24 V(IA32UmulHigh) \ | 24 V(IA32UmulHigh) \ |
25 V(IA32Idiv) \ | 25 V(IA32Idiv) \ |
26 V(IA32Udiv) \ | 26 V(IA32Udiv) \ |
27 V(IA32Not) \ | 27 V(IA32Not) \ |
28 V(IA32Neg) \ | 28 V(IA32Neg) \ |
29 V(IA32Shl) \ | 29 V(IA32Shl) \ |
30 V(IA32Shr) \ | 30 V(IA32Shr) \ |
31 V(IA32Sar) \ | 31 V(IA32Sar) \ |
32 V(IA32AddPair) \ | 32 V(IA32AddPair) \ |
33 V(IA32SubPair) \ | 33 V(IA32SubPair) \ |
| 34 V(IA32MulPair) \ |
34 V(IA32ShlPair) \ | 35 V(IA32ShlPair) \ |
35 V(IA32ShrPair) \ | 36 V(IA32ShrPair) \ |
36 V(IA32SarPair) \ | 37 V(IA32SarPair) \ |
37 V(IA32Ror) \ | 38 V(IA32Ror) \ |
38 V(IA32Lzcnt) \ | 39 V(IA32Lzcnt) \ |
39 V(IA32Tzcnt) \ | 40 V(IA32Tzcnt) \ |
40 V(IA32Popcnt) \ | 41 V(IA32Popcnt) \ |
41 V(SSEFloat32Cmp) \ | 42 V(SSEFloat32Cmp) \ |
42 V(SSEFloat32Add) \ | 43 V(SSEFloat32Add) \ |
43 V(SSEFloat32Sub) \ | 44 V(SSEFloat32Sub) \ |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 V(M2I) /* [ %r2*2 + K] */ \ | 142 V(M2I) /* [ %r2*2 + K] */ \ |
142 V(M4I) /* [ %r2*4 + K] */ \ | 143 V(M4I) /* [ %r2*4 + K] */ \ |
143 V(M8I) /* [ %r2*8 + K] */ \ | 144 V(M8I) /* [ %r2*8 + K] */ \ |
144 V(MI) /* [ K] */ | 145 V(MI) /* [ K] */ |
145 | 146 |
146 } // namespace compiler | 147 } // namespace compiler |
147 } // namespace internal | 148 } // namespace internal |
148 } // namespace v8 | 149 } // namespace v8 |
149 | 150 |
150 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ | 151 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ |
OLD | NEW |