| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 V(Mips64Dshr) \ | 54 V(Mips64Dshr) \ |
| 55 V(Mips64Dsar) \ | 55 V(Mips64Dsar) \ |
| 56 V(Mips64Ror) \ | 56 V(Mips64Ror) \ |
| 57 V(Mips64Dror) \ | 57 V(Mips64Dror) \ |
| 58 V(Mips64Mov) \ | 58 V(Mips64Mov) \ |
| 59 V(Mips64Tst) \ | 59 V(Mips64Tst) \ |
| 60 V(Mips64Cmp) \ | 60 V(Mips64Cmp) \ |
| 61 V(Mips64CmpS) \ | 61 V(Mips64CmpS) \ |
| 62 V(Mips64AddS) \ | 62 V(Mips64AddS) \ |
| 63 V(Mips64SubS) \ | 63 V(Mips64SubS) \ |
| 64 V(Mips64SubPreserveNanS) \ |
| 64 V(Mips64MulS) \ | 65 V(Mips64MulS) \ |
| 65 V(Mips64DivS) \ | 66 V(Mips64DivS) \ |
| 66 V(Mips64ModS) \ | 67 V(Mips64ModS) \ |
| 67 V(Mips64AbsS) \ | 68 V(Mips64AbsS) \ |
| 68 V(Mips64SqrtS) \ | 69 V(Mips64SqrtS) \ |
| 69 V(Mips64MaxS) \ | 70 V(Mips64MaxS) \ |
| 70 V(Mips64MinS) \ | 71 V(Mips64MinS) \ |
| 71 V(Mips64CmpD) \ | 72 V(Mips64CmpD) \ |
| 72 V(Mips64AddD) \ | 73 V(Mips64AddD) \ |
| 73 V(Mips64SubD) \ | 74 V(Mips64SubD) \ |
| 75 V(Mips64SubPreserveNanD) \ |
| 74 V(Mips64MulD) \ | 76 V(Mips64MulD) \ |
| 75 V(Mips64DivD) \ | 77 V(Mips64DivD) \ |
| 76 V(Mips64ModD) \ | 78 V(Mips64ModD) \ |
| 77 V(Mips64AbsD) \ | 79 V(Mips64AbsD) \ |
| 78 V(Mips64SqrtD) \ | 80 V(Mips64SqrtD) \ |
| 79 V(Mips64MaxD) \ | 81 V(Mips64MaxD) \ |
| 80 V(Mips64MinD) \ | 82 V(Mips64MinD) \ |
| 81 V(Mips64Float64RoundDown) \ | 83 V(Mips64Float64RoundDown) \ |
| 82 V(Mips64Float64RoundTruncate) \ | 84 V(Mips64Float64RoundTruncate) \ |
| 83 V(Mips64Float64RoundUp) \ | 85 V(Mips64Float64RoundUp) \ |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 159 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
| 158 V(MRI) /* [%r0 + K] */ \ | 160 V(MRI) /* [%r0 + K] */ \ |
| 159 V(MRR) /* [%r0 + %r1] */ | 161 V(MRR) /* [%r0 + %r1] */ |
| 160 | 162 |
| 161 | 163 |
| 162 } // namespace compiler | 164 } // namespace compiler |
| 163 } // namespace internal | 165 } // namespace internal |
| 164 } // namespace v8 | 166 } // namespace v8 |
| 165 | 167 |
| 166 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 168 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| OLD | NEW |