| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 V(ArmVcvtF64F32) \ | 87 V(ArmVcvtF64F32) \ |
| 88 V(ArmVcvtF32S32) \ | 88 V(ArmVcvtF32S32) \ |
| 89 V(ArmVcvtF32U32) \ | 89 V(ArmVcvtF32U32) \ |
| 90 V(ArmVcvtF64S32) \ | 90 V(ArmVcvtF64S32) \ |
| 91 V(ArmVcvtF64U32) \ | 91 V(ArmVcvtF64U32) \ |
| 92 V(ArmVcvtS32F32) \ | 92 V(ArmVcvtS32F32) \ |
| 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(ArmVmovLowU32F64) \ | 98 V(ArmVmovLowU32F64) \ |
| 98 V(ArmVmovLowF64U32) \ | 99 V(ArmVmovLowF64U32) \ |
| 99 V(ArmVmovHighU32F64) \ | 100 V(ArmVmovHighU32F64) \ |
| 100 V(ArmVmovHighF64U32) \ | 101 V(ArmVmovHighF64U32) \ |
| 101 V(ArmVmovF64U32U32) \ | 102 V(ArmVmovF64U32U32) \ |
| 102 V(ArmVldrF32) \ | 103 V(ArmVldrF32) \ |
| 103 V(ArmVstrF32) \ | 104 V(ArmVstrF32) \ |
| 104 V(ArmVldrF64) \ | 105 V(ArmVldrF64) \ |
| 105 V(ArmVstrF64) \ | 106 V(ArmVstrF64) \ |
| 106 V(ArmFloat32Max) \ | 107 V(ArmFloat32Max) \ |
| (...skipping 27 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 |