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_ARM_INSTRUCTION_CODES_ARM_H_ | 5 #ifndef V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ |
6 #define V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ | 6 #define V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 namespace compiler { | 10 namespace compiler { |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 V(ArmVcvtU32F32) \ | 93 V(ArmVcvtU32F32) \ |
94 V(ArmVcvtS32F64) \ | 94 V(ArmVcvtS32F64) \ |
95 V(ArmVcvtU32F64) \ | 95 V(ArmVcvtU32F64) \ |
96 V(ArmVmovU32F32) \ | 96 V(ArmVmovU32F32) \ |
97 V(ArmVmovF32U32) \ | 97 V(ArmVmovF32U32) \ |
98 V(ArmVmovLowU32F64) \ | 98 V(ArmVmovLowU32F64) \ |
99 V(ArmVmovLowF64U32) \ | 99 V(ArmVmovLowF64U32) \ |
100 V(ArmVmovHighU32F64) \ | 100 V(ArmVmovHighU32F64) \ |
101 V(ArmVmovHighF64U32) \ | 101 V(ArmVmovHighF64U32) \ |
102 V(ArmVmovF64U32U32) \ | 102 V(ArmVmovF64U32U32) \ |
| 103 V(ArmVmovU32U32F64) \ |
103 V(ArmVldrF32) \ | 104 V(ArmVldrF32) \ |
104 V(ArmVstrF32) \ | 105 V(ArmVstrF32) \ |
105 V(ArmVldrF64) \ | 106 V(ArmVldrF64) \ |
106 V(ArmVstrF64) \ | 107 V(ArmVstrF64) \ |
107 V(ArmFloat64Max) \ | 108 V(ArmFloat64Max) \ |
108 V(ArmFloat64Min) \ | 109 V(ArmFloat64Min) \ |
109 V(ArmFloat64SilenceNaN) \ | 110 V(ArmFloat64SilenceNaN) \ |
110 V(ArmLdrb) \ | 111 V(ArmLdrb) \ |
111 V(ArmLdrsb) \ | 112 V(ArmLdrsb) \ |
112 V(ArmStrb) \ | 113 V(ArmStrb) \ |
(...skipping 21 matching lines...) Expand all Loading... |
134 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ | 135 V(Operand2_R_ASR_R) /* %r0 ASR %r1 */ \ |
135 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ | 136 V(Operand2_R_LSL_R) /* %r0 LSL %r1 */ \ |
136 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ | 137 V(Operand2_R_LSR_R) /* %r0 LSR %r1 */ \ |
137 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ | 138 V(Operand2_R_ROR_R) /* %r0 ROR %r1 */ |
138 | 139 |
139 } // namespace compiler | 140 } // namespace compiler |
140 } // namespace internal | 141 } // namespace internal |
141 } // namespace v8 | 142 } // namespace v8 |
142 | 143 |
143 #endif // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ | 144 #endif // V8_COMPILER_ARM_INSTRUCTION_CODES_ARM_H_ |
OLD | NEW |