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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 V(Mips64CvtSUl) \ | 109 V(Mips64CvtSUl) \ |
110 V(Mips64CvtDL) \ | 110 V(Mips64CvtDL) \ |
111 V(Mips64CvtDUw) \ | 111 V(Mips64CvtDUw) \ |
112 V(Mips64CvtDUl) \ | 112 V(Mips64CvtDUl) \ |
113 V(Mips64Lb) \ | 113 V(Mips64Lb) \ |
114 V(Mips64Lbu) \ | 114 V(Mips64Lbu) \ |
115 V(Mips64Sb) \ | 115 V(Mips64Sb) \ |
116 V(Mips64Lh) \ | 116 V(Mips64Lh) \ |
117 V(Mips64Lhu) \ | 117 V(Mips64Lhu) \ |
118 V(Mips64Sh) \ | 118 V(Mips64Sh) \ |
| 119 V(Mips64Lw) \ |
| 120 V(Mips64Lwu) \ |
| 121 V(Mips64Sw) \ |
119 V(Mips64Ld) \ | 122 V(Mips64Ld) \ |
120 V(Mips64Lw) \ | |
121 V(Mips64Sw) \ | |
122 V(Mips64Sd) \ | 123 V(Mips64Sd) \ |
123 V(Mips64Lwc1) \ | 124 V(Mips64Lwc1) \ |
124 V(Mips64Swc1) \ | 125 V(Mips64Swc1) \ |
125 V(Mips64Ldc1) \ | 126 V(Mips64Ldc1) \ |
126 V(Mips64Sdc1) \ | 127 V(Mips64Sdc1) \ |
127 V(Mips64BitcastDL) \ | 128 V(Mips64BitcastDL) \ |
128 V(Mips64BitcastLD) \ | 129 V(Mips64BitcastLD) \ |
129 V(Mips64Float64ExtractLowWord32) \ | 130 V(Mips64Float64ExtractLowWord32) \ |
130 V(Mips64Float64ExtractHighWord32) \ | 131 V(Mips64Float64ExtractHighWord32) \ |
131 V(Mips64Float64InsertLowWord32) \ | 132 V(Mips64Float64InsertLowWord32) \ |
(...skipping 23 matching lines...) Expand all Loading... |
155 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 156 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
156 V(MRI) /* [%r0 + K] */ \ | 157 V(MRI) /* [%r0 + K] */ \ |
157 V(MRR) /* [%r0 + %r1] */ | 158 V(MRR) /* [%r0 + %r1] */ |
158 | 159 |
159 | 160 |
160 } // namespace compiler | 161 } // namespace compiler |
161 } // namespace internal | 162 } // namespace internal |
162 } // namespace v8 | 163 } // namespace v8 |
163 | 164 |
164 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 165 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |