| 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_MIPS_INSTRUCTION_CODES_MIPS_H_ | 5 #ifndef V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| 6 #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 6 #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| 7 | 7 |
| 8 namespace v8 { | 8 namespace v8 { |
| 9 namespace internal { | 9 namespace internal { |
| 10 namespace compiler { | 10 namespace compiler { |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 V(Mips64Tst) \ | 64 V(Mips64Tst) \ |
| 65 V(Mips64Cmp) \ | 65 V(Mips64Cmp) \ |
| 66 V(Mips64CmpS) \ | 66 V(Mips64CmpS) \ |
| 67 V(Mips64AddS) \ | 67 V(Mips64AddS) \ |
| 68 V(Mips64SubS) \ | 68 V(Mips64SubS) \ |
| 69 V(Mips64SubPreserveNanS) \ | 69 V(Mips64SubPreserveNanS) \ |
| 70 V(Mips64MulS) \ | 70 V(Mips64MulS) \ |
| 71 V(Mips64DivS) \ | 71 V(Mips64DivS) \ |
| 72 V(Mips64ModS) \ | 72 V(Mips64ModS) \ |
| 73 V(Mips64AbsS) \ | 73 V(Mips64AbsS) \ |
| 74 V(Mips64NegS) \ |
| 74 V(Mips64SqrtS) \ | 75 V(Mips64SqrtS) \ |
| 75 V(Mips64MaxS) \ | 76 V(Mips64MaxS) \ |
| 76 V(Mips64MinS) \ | 77 V(Mips64MinS) \ |
| 77 V(Mips64CmpD) \ | 78 V(Mips64CmpD) \ |
| 78 V(Mips64AddD) \ | 79 V(Mips64AddD) \ |
| 79 V(Mips64SubD) \ | 80 V(Mips64SubD) \ |
| 80 V(Mips64SubPreserveNanD) \ | 81 V(Mips64SubPreserveNanD) \ |
| 81 V(Mips64MulD) \ | 82 V(Mips64MulD) \ |
| 82 V(Mips64DivD) \ | 83 V(Mips64DivD) \ |
| 83 V(Mips64ModD) \ | 84 V(Mips64ModD) \ |
| 84 V(Mips64AbsD) \ | 85 V(Mips64AbsD) \ |
| 86 V(Mips64NegD) \ |
| 85 V(Mips64SqrtD) \ | 87 V(Mips64SqrtD) \ |
| 86 V(Mips64MaxD) \ | 88 V(Mips64MaxD) \ |
| 87 V(Mips64MinD) \ | 89 V(Mips64MinD) \ |
| 88 V(Mips64Float64RoundDown) \ | 90 V(Mips64Float64RoundDown) \ |
| 89 V(Mips64Float64RoundTruncate) \ | 91 V(Mips64Float64RoundTruncate) \ |
| 90 V(Mips64Float64RoundUp) \ | 92 V(Mips64Float64RoundUp) \ |
| 91 V(Mips64Float64RoundTiesEven) \ | 93 V(Mips64Float64RoundTiesEven) \ |
| 92 V(Mips64Float32RoundDown) \ | 94 V(Mips64Float32RoundDown) \ |
| 93 V(Mips64Float32RoundTruncate) \ | 95 V(Mips64Float32RoundTruncate) \ |
| 94 V(Mips64Float32RoundUp) \ | 96 V(Mips64Float32RoundUp) \ |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 176 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
| 175 V(MRI) /* [%r0 + K] */ \ | 177 V(MRI) /* [%r0 + K] */ \ |
| 176 V(MRR) /* [%r0 + %r1] */ | 178 V(MRR) /* [%r0 + %r1] */ |
| 177 | 179 |
| 178 | 180 |
| 179 } // namespace compiler | 181 } // namespace compiler |
| 180 } // namespace internal | 182 } // namespace internal |
| 181 } // namespace v8 | 183 } // namespace v8 |
| 182 | 184 |
| 183 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 185 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| OLD | NEW |