| 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 13 matching lines...) Expand all Loading... |
| 24 V(X87Imul) \ | 24 V(X87Imul) \ |
| 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(X87PairShl) \ |
| 34 V(X87Ror) \ | 35 V(X87Ror) \ |
| 35 V(X87Lzcnt) \ | 36 V(X87Lzcnt) \ |
| 36 V(X87Popcnt) \ | 37 V(X87Popcnt) \ |
| 37 V(X87Float32Cmp) \ | 38 V(X87Float32Cmp) \ |
| 38 V(X87Float32Add) \ | 39 V(X87Float32Add) \ |
| 39 V(X87Float32Sub) \ | 40 V(X87Float32Sub) \ |
| 40 V(X87Float32Mul) \ | 41 V(X87Float32Mul) \ |
| 41 V(X87Float32Div) \ | 42 V(X87Float32Div) \ |
| 42 V(X87Float32Max) \ | 43 V(X87Float32Max) \ |
| 43 V(X87Float32Min) \ | 44 V(X87Float32Min) \ |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 V(M2I) /* [ %r2*2 + K] */ \ | 120 V(M2I) /* [ %r2*2 + K] */ \ |
| 120 V(M4I) /* [ %r2*4 + K] */ \ | 121 V(M4I) /* [ %r2*4 + K] */ \ |
| 121 V(M8I) /* [ %r2*8 + K] */ \ | 122 V(M8I) /* [ %r2*8 + K] */ \ |
| 122 V(MI) /* [ K] */ | 123 V(MI) /* [ K] */ |
| 123 | 124 |
| 124 } // namespace compiler | 125 } // namespace compiler |
| 125 } // namespace internal | 126 } // namespace internal |
| 126 } // namespace v8 | 127 } // namespace v8 |
| 127 | 128 |
| 128 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ | 129 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
| OLD | NEW |