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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 V(MipsUswc1) \ | 112 V(MipsUswc1) \ |
113 V(MipsLdc1) \ | 113 V(MipsLdc1) \ |
114 V(MipsUldc1) \ | 114 V(MipsUldc1) \ |
115 V(MipsSdc1) \ | 115 V(MipsSdc1) \ |
116 V(MipsUsdc1) \ | 116 V(MipsUsdc1) \ |
117 V(MipsFloat64ExtractLowWord32) \ | 117 V(MipsFloat64ExtractLowWord32) \ |
118 V(MipsFloat64ExtractHighWord32) \ | 118 V(MipsFloat64ExtractHighWord32) \ |
119 V(MipsFloat64InsertLowWord32) \ | 119 V(MipsFloat64InsertLowWord32) \ |
120 V(MipsFloat64InsertHighWord32) \ | 120 V(MipsFloat64InsertHighWord32) \ |
121 V(MipsFloat64SilenceNaN) \ | 121 V(MipsFloat64SilenceNaN) \ |
| 122 V(MipsFloat32Max) \ |
122 V(MipsFloat64Max) \ | 123 V(MipsFloat64Max) \ |
| 124 V(MipsFloat32Min) \ |
123 V(MipsFloat64Min) \ | 125 V(MipsFloat64Min) \ |
124 V(MipsPush) \ | 126 V(MipsPush) \ |
125 V(MipsStoreToStackSlot) \ | 127 V(MipsStoreToStackSlot) \ |
126 V(MipsByteSwap32) \ | 128 V(MipsByteSwap32) \ |
127 V(MipsStackClaim) | 129 V(MipsStackClaim) |
128 | 130 |
129 // Addressing modes represent the "shape" of inputs to an instruction. | 131 // Addressing modes represent the "shape" of inputs to an instruction. |
130 // Many instructions support multiple addressing modes. Addressing modes | 132 // Many instructions support multiple addressing modes. Addressing modes |
131 // are encoded into the InstructionCode of the instruction and tell the | 133 // are encoded into the InstructionCode of the instruction and tell the |
132 // code generator after register allocation which assembler method to call. | 134 // code generator after register allocation which assembler method to call. |
(...skipping 10 matching lines...) Expand all Loading... |
143 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 145 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
144 V(MRI) /* [%r0 + K] */ \ | 146 V(MRI) /* [%r0 + K] */ \ |
145 V(MRR) /* [%r0 + %r1] */ | 147 V(MRR) /* [%r0 + %r1] */ |
146 | 148 |
147 | 149 |
148 } // namespace compiler | 150 } // namespace compiler |
149 } // namespace internal | 151 } // namespace internal |
150 } // namespace v8 | 152 } // namespace v8 |
151 | 153 |
152 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 154 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |