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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
59 V(MipsMinD) \ | 59 V(MipsMinD) \ |
60 V(MipsFloat32RoundDown) \ | 60 V(MipsFloat32RoundDown) \ |
61 V(MipsFloat32RoundTruncate) \ | 61 V(MipsFloat32RoundTruncate) \ |
62 V(MipsFloat32RoundUp) \ | 62 V(MipsFloat32RoundUp) \ |
63 V(MipsFloat32RoundTiesEven) \ | 63 V(MipsFloat32RoundTiesEven) \ |
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) \ |
akos.palfi.imgtec
2015/12/18 00:31:44
Please add MipsCvtSW.
dusan.milosavljevic
2015/12/18 12:22:37
Done.
| |
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) \ |
77 V(MipsLb) \ | 81 V(MipsLb) \ |
78 V(MipsLbu) \ | 82 V(MipsLbu) \ |
79 V(MipsSb) \ | 83 V(MipsSb) \ |
80 V(MipsLh) \ | 84 V(MipsLh) \ |
81 V(MipsLhu) \ | 85 V(MipsLhu) \ |
82 V(MipsSh) \ | 86 V(MipsSh) \ |
83 V(MipsLw) \ | 87 V(MipsLw) \ |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
116 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 120 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
117 V(MRI) /* [%r0 + K] */ \ | 121 V(MRI) /* [%r0 + K] */ \ |
118 V(MRR) /* [%r0 + %r1] */ | 122 V(MRR) /* [%r0 + %r1] */ |
119 | 123 |
120 | 124 |
121 } // namespace compiler | 125 } // namespace compiler |
122 } // namespace internal | 126 } // namespace internal |
123 } // namespace v8 | 127 } // namespace v8 |
124 | 128 |
125 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 129 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |