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_X87_INSTRUCTION_CODES_X87_H_ | 5 #ifndef V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
6 #define V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ | 6 #define V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
7 | 7 |
8 #include "src/compiler/instruction.h" | 8 #include "src/compiler/instruction.h" |
9 #include "src/compiler/instruction-codes.h" | 9 #include "src/compiler/instruction-codes.h" |
10 namespace v8 { | 10 namespace v8 { |
(...skipping 14 matching lines...) Expand all Loading... |
25 V(X87ImulHigh) \ | 25 V(X87ImulHigh) \ |
26 V(X87UmulHigh) \ | 26 V(X87UmulHigh) \ |
27 V(X87Idiv) \ | 27 V(X87Idiv) \ |
28 V(X87Udiv) \ | 28 V(X87Udiv) \ |
29 V(X87Not) \ | 29 V(X87Not) \ |
30 V(X87Neg) \ | 30 V(X87Neg) \ |
31 V(X87Shl) \ | 31 V(X87Shl) \ |
32 V(X87Shr) \ | 32 V(X87Shr) \ |
33 V(X87Sar) \ | 33 V(X87Sar) \ |
34 V(X87AddPair) \ | 34 V(X87AddPair) \ |
| 35 V(X87SubPair) \ |
35 V(X87ShlPair) \ | 36 V(X87ShlPair) \ |
36 V(X87ShrPair) \ | 37 V(X87ShrPair) \ |
37 V(X87SarPair) \ | 38 V(X87SarPair) \ |
38 V(X87Ror) \ | 39 V(X87Ror) \ |
39 V(X87Lzcnt) \ | 40 V(X87Lzcnt) \ |
40 V(X87Popcnt) \ | 41 V(X87Popcnt) \ |
41 V(X87Float32Cmp) \ | 42 V(X87Float32Cmp) \ |
42 V(X87Float32Add) \ | 43 V(X87Float32Add) \ |
43 V(X87Float32Sub) \ | 44 V(X87Float32Sub) \ |
44 V(X87Float32Mul) \ | 45 V(X87Float32Mul) \ |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 V(M2I) /* [ %r2*2 + K] */ \ | 124 V(M2I) /* [ %r2*2 + K] */ \ |
124 V(M4I) /* [ %r2*4 + K] */ \ | 125 V(M4I) /* [ %r2*4 + K] */ \ |
125 V(M8I) /* [ %r2*8 + K] */ \ | 126 V(M8I) /* [ %r2*8 + K] */ \ |
126 V(MI) /* [ K] */ | 127 V(MI) /* [ K] */ |
127 | 128 |
128 } // namespace compiler | 129 } // namespace compiler |
129 } // namespace internal | 130 } // namespace internal |
130 } // namespace v8 | 131 } // namespace v8 |
131 | 132 |
132 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ | 133 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
OLD | NEW |