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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 V(Mips64Float64RoundTruncate) \ | 74 V(Mips64Float64RoundTruncate) \ |
75 V(Mips64Float64RoundUp) \ | 75 V(Mips64Float64RoundUp) \ |
76 V(Mips64Float64RoundTiesEven) \ | 76 V(Mips64Float64RoundTiesEven) \ |
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) \ |
| 85 V(Mips64FloorWD) \ |
| 86 V(Mips64CeilWD) \ |
84 V(Mips64TruncLS) \ | 87 V(Mips64TruncLS) \ |
85 V(Mips64TruncLD) \ | 88 V(Mips64TruncLD) \ |
86 V(Mips64TruncUwD) \ | 89 V(Mips64TruncUwD) \ |
87 V(Mips64TruncUlS) \ | 90 V(Mips64TruncUlS) \ |
88 V(Mips64TruncUlD) \ | 91 V(Mips64TruncUlD) \ |
89 V(Mips64CvtDW) \ | 92 V(Mips64CvtDW) \ |
90 V(Mips64CvtSL) \ | 93 V(Mips64CvtSL) \ |
91 V(Mips64CvtSUl) \ | 94 V(Mips64CvtSUl) \ |
92 V(Mips64CvtDL) \ | 95 V(Mips64CvtDL) \ |
93 V(Mips64CvtDUw) \ | 96 V(Mips64CvtDUw) \ |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 141 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
139 V(MRI) /* [%r0 + K] */ \ | 142 V(MRI) /* [%r0 + K] */ \ |
140 V(MRR) /* [%r0 + %r1] */ | 143 V(MRR) /* [%r0 + %r1] */ |
141 | 144 |
142 | 145 |
143 } // namespace compiler | 146 } // namespace compiler |
144 } // namespace internal | 147 } // namespace internal |
145 } // namespace v8 | 148 } // namespace v8 |
146 | 149 |
147 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 150 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |