| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 V(MipsSqrtS) \ | 53 V(MipsSqrtS) \ |
| 54 V(MipsMaxS) \ | 54 V(MipsMaxS) \ |
| 55 V(MipsMinS) \ | 55 V(MipsMinS) \ |
| 56 V(MipsCmpD) \ | 56 V(MipsCmpD) \ |
| 57 V(MipsAddD) \ | 57 V(MipsAddD) \ |
| 58 V(MipsSubD) \ | 58 V(MipsSubD) \ |
| 59 V(MipsMulD) \ | 59 V(MipsMulD) \ |
| 60 V(MipsDivD) \ | 60 V(MipsDivD) \ |
| 61 V(MipsModD) \ | 61 V(MipsModD) \ |
| 62 V(MipsAbsD) \ | 62 V(MipsAbsD) \ |
| 63 V(MipsLogD) \ |
| 63 V(MipsSqrtD) \ | 64 V(MipsSqrtD) \ |
| 64 V(MipsMaxD) \ | 65 V(MipsMaxD) \ |
| 65 V(MipsMinD) \ | 66 V(MipsMinD) \ |
| 66 V(MipsAddPair) \ | 67 V(MipsAddPair) \ |
| 67 V(MipsSubPair) \ | 68 V(MipsSubPair) \ |
| 68 V(MipsMulPair) \ | 69 V(MipsMulPair) \ |
| 69 V(MipsFloat32RoundDown) \ | 70 V(MipsFloat32RoundDown) \ |
| 70 V(MipsFloat32RoundTruncate) \ | 71 V(MipsFloat32RoundTruncate) \ |
| 71 V(MipsFloat32RoundUp) \ | 72 V(MipsFloat32RoundUp) \ |
| 72 V(MipsFloat32RoundTiesEven) \ | 73 V(MipsFloat32RoundTiesEven) \ |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 132 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
| 132 V(MRI) /* [%r0 + K] */ \ | 133 V(MRI) /* [%r0 + K] */ \ |
| 133 V(MRR) /* [%r0 + %r1] */ | 134 V(MRR) /* [%r0 + %r1] */ |
| 134 | 135 |
| 135 | 136 |
| 136 } // namespace compiler | 137 } // namespace compiler |
| 137 } // namespace internal | 138 } // namespace internal |
| 138 } // namespace v8 | 139 } // namespace v8 |
| 139 | 140 |
| 140 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 141 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| OLD | NEW |