| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 V(MipsCeilWD) \ | 75 V(MipsCeilWD) \ |
| 76 V(MipsTruncWS) \ | 76 V(MipsTruncWS) \ |
| 77 V(MipsRoundWS) \ | 77 V(MipsRoundWS) \ |
| 78 V(MipsFloorWS) \ | 78 V(MipsFloorWS) \ |
| 79 V(MipsCeilWS) \ | 79 V(MipsCeilWS) \ |
| 80 V(MipsTruncUwD) \ | 80 V(MipsTruncUwD) \ |
| 81 V(MipsTruncUwS) \ | 81 V(MipsTruncUwS) \ |
| 82 V(MipsCvtDW) \ | 82 V(MipsCvtDW) \ |
| 83 V(MipsCvtDUw) \ | 83 V(MipsCvtDUw) \ |
| 84 V(MipsCvtSW) \ | 84 V(MipsCvtSW) \ |
| 85 V(MipsCvtSUw) \ |
| 85 V(MipsLb) \ | 86 V(MipsLb) \ |
| 86 V(MipsLbu) \ | 87 V(MipsLbu) \ |
| 87 V(MipsSb) \ | 88 V(MipsSb) \ |
| 88 V(MipsLh) \ | 89 V(MipsLh) \ |
| 89 V(MipsLhu) \ | 90 V(MipsLhu) \ |
| 90 V(MipsSh) \ | 91 V(MipsSh) \ |
| 91 V(MipsLw) \ | 92 V(MipsLw) \ |
| 92 V(MipsSw) \ | 93 V(MipsSw) \ |
| 93 V(MipsLwc1) \ | 94 V(MipsLwc1) \ |
| 94 V(MipsSwc1) \ | 95 V(MipsSwc1) \ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 123 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 124 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
| 124 V(MRI) /* [%r0 + K] */ \ | 125 V(MRI) /* [%r0 + K] */ \ |
| 125 V(MRR) /* [%r0 + %r1] */ | 126 V(MRR) /* [%r0 + %r1] */ |
| 126 | 127 |
| 127 | 128 |
| 128 } // namespace compiler | 129 } // namespace compiler |
| 129 } // namespace internal | 130 } // namespace internal |
| 130 } // namespace v8 | 131 } // namespace v8 |
| 131 | 132 |
| 132 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 133 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| OLD | NEW |