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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 V(Mips64Float32RoundDown) \ | 77 V(Mips64Float32RoundDown) \ |
78 V(Mips64Float32RoundTruncate) \ | 78 V(Mips64Float32RoundTruncate) \ |
79 V(Mips64Float32RoundUp) \ | 79 V(Mips64Float32RoundUp) \ |
80 V(Mips64Float32RoundTiesEven) \ | 80 V(Mips64Float32RoundTiesEven) \ |
81 V(Mips64CvtSD) \ | 81 V(Mips64CvtSD) \ |
82 V(Mips64CvtDS) \ | 82 V(Mips64CvtDS) \ |
83 V(Mips64TruncWD) \ | 83 V(Mips64TruncWD) \ |
84 V(Mips64RoundWD) \ | 84 V(Mips64RoundWD) \ |
85 V(Mips64FloorWD) \ | 85 V(Mips64FloorWD) \ |
86 V(Mips64CeilWD) \ | 86 V(Mips64CeilWD) \ |
| 87 V(Mips64TruncWS) \ |
| 88 V(Mips64RoundWS) \ |
| 89 V(Mips64FloorWS) \ |
| 90 V(Mips64CeilWS) \ |
87 V(Mips64TruncLS) \ | 91 V(Mips64TruncLS) \ |
88 V(Mips64TruncLD) \ | 92 V(Mips64TruncLD) \ |
89 V(Mips64TruncUwD) \ | 93 V(Mips64TruncUwD) \ |
90 V(Mips64TruncUlS) \ | 94 V(Mips64TruncUlS) \ |
91 V(Mips64TruncUlD) \ | 95 V(Mips64TruncUlD) \ |
92 V(Mips64CvtDW) \ | 96 V(Mips64CvtDW) \ |
93 V(Mips64CvtSL) \ | 97 V(Mips64CvtSL) \ |
| 98 V(Mips64CvtSW) \ |
94 V(Mips64CvtSUl) \ | 99 V(Mips64CvtSUl) \ |
95 V(Mips64CvtDL) \ | 100 V(Mips64CvtDL) \ |
96 V(Mips64CvtDUw) \ | 101 V(Mips64CvtDUw) \ |
97 V(Mips64CvtDUl) \ | 102 V(Mips64CvtDUl) \ |
98 V(Mips64Lb) \ | 103 V(Mips64Lb) \ |
99 V(Mips64Lbu) \ | 104 V(Mips64Lbu) \ |
100 V(Mips64Sb) \ | 105 V(Mips64Sb) \ |
101 V(Mips64Lh) \ | 106 V(Mips64Lh) \ |
102 V(Mips64Lhu) \ | 107 V(Mips64Lhu) \ |
103 V(Mips64Sh) \ | 108 V(Mips64Sh) \ |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 146 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
142 V(MRI) /* [%r0 + K] */ \ | 147 V(MRI) /* [%r0 + K] */ \ |
143 V(MRR) /* [%r0 + %r1] */ | 148 V(MRR) /* [%r0 + %r1] */ |
144 | 149 |
145 | 150 |
146 } // namespace compiler | 151 } // namespace compiler |
147 } // namespace internal | 152 } // namespace internal |
148 } // namespace v8 | 153 } // namespace v8 |
149 | 154 |
150 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 155 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |