| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 V(Mips64Ldc1) \ | 143 V(Mips64Ldc1) \ |
| 144 V(Mips64Uldc1) \ | 144 V(Mips64Uldc1) \ |
| 145 V(Mips64Sdc1) \ | 145 V(Mips64Sdc1) \ |
| 146 V(Mips64Usdc1) \ | 146 V(Mips64Usdc1) \ |
| 147 V(Mips64BitcastDL) \ | 147 V(Mips64BitcastDL) \ |
| 148 V(Mips64BitcastLD) \ | 148 V(Mips64BitcastLD) \ |
| 149 V(Mips64Float64ExtractLowWord32) \ | 149 V(Mips64Float64ExtractLowWord32) \ |
| 150 V(Mips64Float64ExtractHighWord32) \ | 150 V(Mips64Float64ExtractHighWord32) \ |
| 151 V(Mips64Float64InsertLowWord32) \ | 151 V(Mips64Float64InsertLowWord32) \ |
| 152 V(Mips64Float64InsertHighWord32) \ | 152 V(Mips64Float64InsertHighWord32) \ |
| 153 V(Mips64Float32Max) \ |
| 153 V(Mips64Float64Max) \ | 154 V(Mips64Float64Max) \ |
| 155 V(Mips64Float32Min) \ |
| 154 V(Mips64Float64Min) \ | 156 V(Mips64Float64Min) \ |
| 155 V(Mips64Float64SilenceNaN) \ | 157 V(Mips64Float64SilenceNaN) \ |
| 156 V(Mips64Push) \ | 158 V(Mips64Push) \ |
| 157 V(Mips64StoreToStackSlot) \ | 159 V(Mips64StoreToStackSlot) \ |
| 158 V(Mips64ByteSwap64) \ | 160 V(Mips64ByteSwap64) \ |
| 159 V(Mips64ByteSwap32) \ | 161 V(Mips64ByteSwap32) \ |
| 160 V(Mips64StackClaim) | 162 V(Mips64StackClaim) |
| 161 | 163 |
| 162 // Addressing modes represent the "shape" of inputs to an instruction. | 164 // Addressing modes represent the "shape" of inputs to an instruction. |
| 163 // Many instructions support multiple addressing modes. Addressing modes | 165 // Many instructions support multiple addressing modes. Addressing modes |
| (...skipping 12 matching lines...) Expand all Loading... |
| 176 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 178 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
| 177 V(MRI) /* [%r0 + K] */ \ | 179 V(MRI) /* [%r0 + K] */ \ |
| 178 V(MRR) /* [%r0 + %r1] */ | 180 V(MRR) /* [%r0 + %r1] */ |
| 179 | 181 |
| 180 | 182 |
| 181 } // namespace compiler | 183 } // namespace compiler |
| 182 } // namespace internal | 184 } // namespace internal |
| 183 } // namespace v8 | 185 } // namespace v8 |
| 184 | 186 |
| 185 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 187 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
| OLD | NEW |