| 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 25 matching lines...) Expand all Loading... |
| 36 V(X87Popcnt) \ | 36 V(X87Popcnt) \ |
| 37 V(X87Float32Cmp) \ | 37 V(X87Float32Cmp) \ |
| 38 V(X87Float32Add) \ | 38 V(X87Float32Add) \ |
| 39 V(X87Float32Sub) \ | 39 V(X87Float32Sub) \ |
| 40 V(X87Float32Mul) \ | 40 V(X87Float32Mul) \ |
| 41 V(X87Float32Div) \ | 41 V(X87Float32Div) \ |
| 42 V(X87Float32Max) \ | 42 V(X87Float32Max) \ |
| 43 V(X87Float32Min) \ | 43 V(X87Float32Min) \ |
| 44 V(X87Float32Abs) \ | 44 V(X87Float32Abs) \ |
| 45 V(X87Float32Sqrt) \ | 45 V(X87Float32Sqrt) \ |
| 46 V(X87Float32Round) \ |
| 46 V(X87LoadFloat64Constant) \ | 47 V(X87LoadFloat64Constant) \ |
| 47 V(X87Float64Add) \ | 48 V(X87Float64Add) \ |
| 48 V(X87Float64Sub) \ | 49 V(X87Float64Sub) \ |
| 49 V(X87Float64Mul) \ | 50 V(X87Float64Mul) \ |
| 50 V(X87Float64Div) \ | 51 V(X87Float64Div) \ |
| 51 V(X87Float64Mod) \ | 52 V(X87Float64Mod) \ |
| 52 V(X87Float64Max) \ | 53 V(X87Float64Max) \ |
| 53 V(X87Float64Min) \ | 54 V(X87Float64Min) \ |
| 54 V(X87Float64Abs) \ | 55 V(X87Float64Abs) \ |
| 55 V(X87Int32ToFloat64) \ | 56 V(X87Int32ToFloat64) \ |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 V(M2I) /* [ %r2*2 + K] */ \ | 116 V(M2I) /* [ %r2*2 + K] */ \ |
| 116 V(M4I) /* [ %r2*4 + K] */ \ | 117 V(M4I) /* [ %r2*4 + K] */ \ |
| 117 V(M8I) /* [ %r2*8 + K] */ \ | 118 V(M8I) /* [ %r2*8 + K] */ \ |
| 118 V(MI) /* [ K] */ | 119 V(MI) /* [ K] */ |
| 119 | 120 |
| 120 } // namespace compiler | 121 } // namespace compiler |
| 121 } // namespace internal | 122 } // namespace internal |
| 122 } // namespace v8 | 123 } // namespace v8 |
| 123 | 124 |
| 124 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ | 125 #endif // V8_COMPILER_X87_INSTRUCTION_CODES_X87_H_ |
| OLD | NEW |