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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 V(X87ShrPair) \ | 42 V(X87ShrPair) \ |
43 V(X87SarPair) \ | 43 V(X87SarPair) \ |
44 V(X87Ror) \ | 44 V(X87Ror) \ |
45 V(X87Lzcnt) \ | 45 V(X87Lzcnt) \ |
46 V(X87Popcnt) \ | 46 V(X87Popcnt) \ |
47 V(X87Float32Cmp) \ | 47 V(X87Float32Cmp) \ |
48 V(X87Float32Add) \ | 48 V(X87Float32Add) \ |
49 V(X87Float32Sub) \ | 49 V(X87Float32Sub) \ |
50 V(X87Float32Mul) \ | 50 V(X87Float32Mul) \ |
51 V(X87Float32Div) \ | 51 V(X87Float32Div) \ |
52 V(X87Float32Max) \ | |
53 V(X87Float32Min) \ | |
54 V(X87Float32Abs) \ | 52 V(X87Float32Abs) \ |
55 V(X87Float32Sqrt) \ | 53 V(X87Float32Sqrt) \ |
56 V(X87Float32Round) \ | 54 V(X87Float32Round) \ |
57 V(X87LoadFloat64Constant) \ | 55 V(X87LoadFloat64Constant) \ |
58 V(X87Float64Add) \ | 56 V(X87Float64Add) \ |
59 V(X87Float64Sub) \ | 57 V(X87Float64Sub) \ |
60 V(X87Float64Mul) \ | 58 V(X87Float64Mul) \ |
61 V(X87Float64Div) \ | 59 V(X87Float64Div) \ |
62 V(X87Float64Mod) \ | 60 V(X87Float64Mod) \ |
63 V(X87Float64Max) \ | 61 V(X87Float64Max) \ |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 V(M2I) /* [ %r2*2 + K] */ \ | 131 V(M2I) /* [ %r2*2 + K] */ \ |
134 V(M4I) /* [ %r2*4 + K] */ \ | 132 V(M4I) /* [ %r2*4 + K] */ \ |
135 V(M8I) /* [ %r2*8 + K] */ \ | 133 V(M8I) /* [ %r2*8 + K] */ \ |
136 V(MI) /* [ K] */ | 134 V(MI) /* [ K] */ |
137 | 135 |
138 } // namespace compiler | 136 } // namespace compiler |
139 } // namespace internal | 137 } // namespace internal |
140 } // namespace v8 | 138 } // namespace v8 |
141 | 139 |
142 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ | 140 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
OLD | NEW |