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 26 matching lines...) Expand all Loading... |
37 V(Mips64Xor) \ | 37 V(Mips64Xor) \ |
38 V(Mips64Clz) \ | 38 V(Mips64Clz) \ |
39 V(Mips64Shl) \ | 39 V(Mips64Shl) \ |
40 V(Mips64Shr) \ | 40 V(Mips64Shr) \ |
41 V(Mips64Sar) \ | 41 V(Mips64Sar) \ |
42 V(Mips64Ext) \ | 42 V(Mips64Ext) \ |
43 V(Mips64Ins) \ | 43 V(Mips64Ins) \ |
44 V(Mips64Dext) \ | 44 V(Mips64Dext) \ |
45 V(Mips64Dins) \ | 45 V(Mips64Dins) \ |
46 V(Mips64Dclz) \ | 46 V(Mips64Dclz) \ |
| 47 V(Mips64Ctz) \ |
| 48 V(Mips64Dctz) \ |
| 49 V(Mips64Popcnt) \ |
| 50 V(Mips64Dpopcnt) \ |
47 V(Mips64Dshl) \ | 51 V(Mips64Dshl) \ |
48 V(Mips64Dshr) \ | 52 V(Mips64Dshr) \ |
49 V(Mips64Dsar) \ | 53 V(Mips64Dsar) \ |
50 V(Mips64Ror) \ | 54 V(Mips64Ror) \ |
51 V(Mips64Dror) \ | 55 V(Mips64Dror) \ |
52 V(Mips64Mov) \ | 56 V(Mips64Mov) \ |
53 V(Mips64Tst) \ | 57 V(Mips64Tst) \ |
54 V(Mips64Cmp) \ | 58 V(Mips64Cmp) \ |
55 V(Mips64CmpS) \ | 59 V(Mips64CmpS) \ |
56 V(Mips64AddS) \ | 60 V(Mips64AddS) \ |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 152 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
149 V(MRI) /* [%r0 + K] */ \ | 153 V(MRI) /* [%r0 + K] */ \ |
150 V(MRR) /* [%r0 + %r1] */ | 154 V(MRR) /* [%r0 + %r1] */ |
151 | 155 |
152 | 156 |
153 } // namespace compiler | 157 } // namespace compiler |
154 } // namespace internal | 158 } // namespace internal |
155 } // namespace v8 | 159 } // namespace v8 |
156 | 160 |
157 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ | 161 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ |
OLD | NEW |