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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 V(Mips64Tst) \ | 46 V(Mips64Tst) \ |
47 V(Mips64Cmp) \ | 47 V(Mips64Cmp) \ |
48 V(Mips64CmpS) \ | 48 V(Mips64CmpS) \ |
49 V(Mips64AddS) \ | 49 V(Mips64AddS) \ |
50 V(Mips64SubS) \ | 50 V(Mips64SubS) \ |
51 V(Mips64MulS) \ | 51 V(Mips64MulS) \ |
52 V(Mips64DivS) \ | 52 V(Mips64DivS) \ |
53 V(Mips64ModS) \ | 53 V(Mips64ModS) \ |
54 V(Mips64AbsS) \ | 54 V(Mips64AbsS) \ |
55 V(Mips64SqrtS) \ | 55 V(Mips64SqrtS) \ |
| 56 V(Mips64MaxS) \ |
| 57 V(Mips64MinS) \ |
56 V(Mips64CmpD) \ | 58 V(Mips64CmpD) \ |
57 V(Mips64AddD) \ | 59 V(Mips64AddD) \ |
58 V(Mips64SubD) \ | 60 V(Mips64SubD) \ |
59 V(Mips64MulD) \ | 61 V(Mips64MulD) \ |
60 V(Mips64DivD) \ | 62 V(Mips64DivD) \ |
61 V(Mips64ModD) \ | 63 V(Mips64ModD) \ |
62 V(Mips64AbsD) \ | 64 V(Mips64AbsD) \ |
63 V(Mips64SqrtD) \ | 65 V(Mips64SqrtD) \ |
| 66 V(Mips64MaxD) \ |
| 67 V(Mips64MinD) \ |
64 V(Mips64Float64RoundDown) \ | 68 V(Mips64Float64RoundDown) \ |
65 V(Mips64Float64RoundTruncate) \ | 69 V(Mips64Float64RoundTruncate) \ |
66 V(Mips64Float64RoundUp) \ | 70 V(Mips64Float64RoundUp) \ |
67 V(Mips64CvtSD) \ | 71 V(Mips64CvtSD) \ |
68 V(Mips64CvtDS) \ | 72 V(Mips64CvtDS) \ |
69 V(Mips64TruncWD) \ | 73 V(Mips64TruncWD) \ |
70 V(Mips64TruncUwD) \ | 74 V(Mips64TruncUwD) \ |
71 V(Mips64CvtDW) \ | 75 V(Mips64CvtDW) \ |
72 V(Mips64CvtDUw) \ | 76 V(Mips64CvtDUw) \ |
73 V(Mips64Lb) \ | 77 V(Mips64Lb) \ |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 115 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
112 V(MRI) /* [%r0 + K] */ \ | 116 V(MRI) /* [%r0 + K] */ \ |
113 V(MRR) /* [%r0 + %r1] */ | 117 V(MRR) /* [%r0 + %r1] */ |
114 | 118 |
115 | 119 |
116 } // namespace compiler | 120 } // namespace compiler |
117 } // namespace internal | 121 } // namespace internal |
118 } // namespace v8 | 122 } // namespace v8 |
119 | 123 |
120 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 124 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |