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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 V(X64Shr) \ | 43 V(X64Shr) \ |
44 V(X64Shr32) \ | 44 V(X64Shr32) \ |
45 V(X64Sar) \ | 45 V(X64Sar) \ |
46 V(X64Sar32) \ | 46 V(X64Sar32) \ |
47 V(X64Ror) \ | 47 V(X64Ror) \ |
48 V(X64Ror32) \ | 48 V(X64Ror32) \ |
49 V(X64Lzcnt) \ | 49 V(X64Lzcnt) \ |
50 V(X64Lzcnt32) \ | 50 V(X64Lzcnt32) \ |
51 V(X64Tzcnt) \ | 51 V(X64Tzcnt) \ |
52 V(X64Tzcnt32) \ | 52 V(X64Tzcnt32) \ |
| 53 V(X64Popcnt) \ |
53 V(X64Popcnt32) \ | 54 V(X64Popcnt32) \ |
54 V(SSEFloat32Cmp) \ | 55 V(SSEFloat32Cmp) \ |
55 V(SSEFloat32Add) \ | 56 V(SSEFloat32Add) \ |
56 V(SSEFloat32Sub) \ | 57 V(SSEFloat32Sub) \ |
57 V(SSEFloat32Mul) \ | 58 V(SSEFloat32Mul) \ |
58 V(SSEFloat32Div) \ | 59 V(SSEFloat32Div) \ |
59 V(SSEFloat32Abs) \ | 60 V(SSEFloat32Abs) \ |
60 V(SSEFloat32Neg) \ | 61 V(SSEFloat32Neg) \ |
61 V(SSEFloat32Sqrt) \ | 62 V(SSEFloat32Sqrt) \ |
62 V(SSEFloat32Max) \ | 63 V(SSEFloat32Max) \ |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 V(M1I) /* [ %r2*1 + K] */ \ | 159 V(M1I) /* [ %r2*1 + K] */ \ |
159 V(M2I) /* [ %r2*2 + K] */ \ | 160 V(M2I) /* [ %r2*2 + K] */ \ |
160 V(M4I) /* [ %r2*4 + K] */ \ | 161 V(M4I) /* [ %r2*4 + K] */ \ |
161 V(M8I) /* [ %r2*8 + K] */ | 162 V(M8I) /* [ %r2*8 + K] */ |
162 | 163 |
163 } // namespace compiler | 164 } // namespace compiler |
164 } // namespace internal | 165 } // namespace internal |
165 } // namespace v8 | 166 } // namespace v8 |
166 | 167 |
167 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ | 168 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ |
OLD | NEW |