| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 V(Mips64MulD) \ | 80 V(Mips64MulD) \ |
| 81 V(Mips64DivD) \ | 81 V(Mips64DivD) \ |
| 82 V(Mips64ModD) \ | 82 V(Mips64ModD) \ |
| 83 V(Mips64AbsD) \ | 83 V(Mips64AbsD) \ |
| 84 V(Mips64NegD) \ | 84 V(Mips64NegD) \ |
| 85 V(Mips64SqrtD) \ | 85 V(Mips64SqrtD) \ |
| 86 V(Mips64MaxD) \ | 86 V(Mips64MaxD) \ |
| 87 V(Mips64MinD) \ | 87 V(Mips64MinD) \ |
| 88 V(Mips64MaddS) \ | 88 V(Mips64MaddS) \ |
| 89 V(Mips64MaddD) \ | 89 V(Mips64MaddD) \ |
| 90 V(Mips64MaddfS) \ | |
| 91 V(Mips64MaddfD) \ | |
| 92 V(Mips64MsubS) \ | 90 V(Mips64MsubS) \ |
| 93 V(Mips64MsubD) \ | 91 V(Mips64MsubD) \ |
| 94 V(Mips64MsubfS) \ | |
| 95 V(Mips64MsubfD) \ | |
| 96 V(Mips64Float64RoundDown) \ | 92 V(Mips64Float64RoundDown) \ |
| 97 V(Mips64Float64RoundTruncate) \ | 93 V(Mips64Float64RoundTruncate) \ |
| 98 V(Mips64Float64RoundUp) \ | 94 V(Mips64Float64RoundUp) \ |
| 99 V(Mips64Float64RoundTiesEven) \ | 95 V(Mips64Float64RoundTiesEven) \ |
| 100 V(Mips64Float32RoundDown) \ | 96 V(Mips64Float32RoundDown) \ |
| 101 V(Mips64Float32RoundTruncate) \ | 97 V(Mips64Float32RoundTruncate) \ |
| 102 V(Mips64Float32RoundUp) \ | 98 V(Mips64Float32RoundUp) \ |
| 103 V(Mips64Float32RoundTiesEven) \ | 99 V(Mips64Float32RoundTiesEven) \ |
| 104 V(Mips64CvtSD) \ | 100 V(Mips64CvtSD) \ |
| 105 V(Mips64CvtDS) \ | 101 V(Mips64CvtDS) \ |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 185 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
| 190 V(MRI) /* [%r0 + K] */ \ | 186 V(MRI) /* [%r0 + K] */ \ |
| 191 V(MRR) /* [%r0 + %r1] */ | 187 V(MRR) /* [%r0 + %r1] */ |
| 192 | 188 |
| 193 | 189 |
| 194 } // namespace compiler | 190 } // namespace compiler |
| 195 } // namespace internal | 191 } // namespace internal |
| 196 } // namespace v8 | 192 } // namespace v8 |
| 197 | 193 |
| 198 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 194 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| OLD | NEW |