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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 V(MipsFloat64RoundDown) \ | 64 V(MipsFloat64RoundDown) \ |
65 V(MipsFloat64RoundTruncate) \ | 65 V(MipsFloat64RoundTruncate) \ |
66 V(MipsFloat64RoundUp) \ | 66 V(MipsFloat64RoundUp) \ |
67 V(MipsFloat64RoundTiesEven) \ | 67 V(MipsFloat64RoundTiesEven) \ |
68 V(MipsCvtSD) \ | 68 V(MipsCvtSD) \ |
69 V(MipsCvtDS) \ | 69 V(MipsCvtDS) \ |
70 V(MipsTruncWD) \ | 70 V(MipsTruncWD) \ |
71 V(MipsRoundWD) \ | 71 V(MipsRoundWD) \ |
72 V(MipsFloorWD) \ | 72 V(MipsFloorWD) \ |
73 V(MipsCeilWD) \ | 73 V(MipsCeilWD) \ |
| 74 V(MipsTruncWS) \ |
| 75 V(MipsRoundWS) \ |
| 76 V(MipsFloorWS) \ |
| 77 V(MipsCeilWS) \ |
74 V(MipsTruncUwD) \ | 78 V(MipsTruncUwD) \ |
75 V(MipsCvtDW) \ | 79 V(MipsCvtDW) \ |
76 V(MipsCvtDUw) \ | 80 V(MipsCvtDUw) \ |
| 81 V(MipsCvtSW) \ |
77 V(MipsLb) \ | 82 V(MipsLb) \ |
78 V(MipsLbu) \ | 83 V(MipsLbu) \ |
79 V(MipsSb) \ | 84 V(MipsSb) \ |
80 V(MipsLh) \ | 85 V(MipsLh) \ |
81 V(MipsLhu) \ | 86 V(MipsLhu) \ |
82 V(MipsSh) \ | 87 V(MipsSh) \ |
83 V(MipsLw) \ | 88 V(MipsLw) \ |
84 V(MipsSw) \ | 89 V(MipsSw) \ |
85 V(MipsLwc1) \ | 90 V(MipsLwc1) \ |
86 V(MipsSwc1) \ | 91 V(MipsSwc1) \ |
(...skipping 29 matching lines...) Expand all Loading... |
116 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 121 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
117 V(MRI) /* [%r0 + K] */ \ | 122 V(MRI) /* [%r0 + K] */ \ |
118 V(MRR) /* [%r0 + %r1] */ | 123 V(MRR) /* [%r0 + %r1] */ |
119 | 124 |
120 | 125 |
121 } // namespace compiler | 126 } // namespace compiler |
122 } // namespace internal | 127 } // namespace internal |
123 } // namespace v8 | 128 } // namespace v8 |
124 | 129 |
125 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 130 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |