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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 V(MipsMulD) \ | 50 V(MipsMulD) \ |
51 V(MipsDivD) \ | 51 V(MipsDivD) \ |
52 V(MipsModD) \ | 52 V(MipsModD) \ |
53 V(MipsAbsD) \ | 53 V(MipsAbsD) \ |
54 V(MipsSqrtD) \ | 54 V(MipsSqrtD) \ |
55 V(MipsMaxD) \ | 55 V(MipsMaxD) \ |
56 V(MipsMinD) \ | 56 V(MipsMinD) \ |
57 V(MipsFloat64RoundDown) \ | 57 V(MipsFloat64RoundDown) \ |
58 V(MipsFloat64RoundTruncate) \ | 58 V(MipsFloat64RoundTruncate) \ |
59 V(MipsFloat64RoundUp) \ | 59 V(MipsFloat64RoundUp) \ |
| 60 V(MipsFloat64RoundTiesEven) \ |
60 V(MipsCvtSD) \ | 61 V(MipsCvtSD) \ |
61 V(MipsCvtDS) \ | 62 V(MipsCvtDS) \ |
62 V(MipsTruncWD) \ | 63 V(MipsTruncWD) \ |
63 V(MipsTruncUwD) \ | 64 V(MipsTruncUwD) \ |
64 V(MipsCvtDW) \ | 65 V(MipsCvtDW) \ |
65 V(MipsCvtDUw) \ | 66 V(MipsCvtDUw) \ |
66 V(MipsLb) \ | 67 V(MipsLb) \ |
67 V(MipsLbu) \ | 68 V(MipsLbu) \ |
68 V(MipsSb) \ | 69 V(MipsSb) \ |
69 V(MipsLh) \ | 70 V(MipsLh) \ |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 106 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
106 V(MRI) /* [%r0 + K] */ \ | 107 V(MRI) /* [%r0 + K] */ \ |
107 V(MRR) /* [%r0 + %r1] */ | 108 V(MRR) /* [%r0 + %r1] */ |
108 | 109 |
109 | 110 |
110 } // namespace compiler | 111 } // namespace compiler |
111 } // namespace internal | 112 } // namespace internal |
112 } // namespace v8 | 113 } // namespace v8 |
113 | 114 |
114 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 115 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |